ETH Price: $3,416.64 (+3.66%)

Token

SatoshiPunks (SATOSHIPUNKS)
 

Overview

Max Total Supply

99 SATOSHIPUNKS

Holders

27

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Treemeat: Deployer
Balance
2 SATOSHIPUNKS
0x9e24184f3428b6b58eb9cd3344e075ea6cde3747
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:
SatoshiPunks

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/introspection/IERC165.sol

pragma solidity >=0.6.0 <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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity >=0.6.2 <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;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Metadata.sol

pragma solidity >=0.6.2 <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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity >=0.6.2 <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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity >=0.6.0 <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);
}

// File: @openzeppelin/contracts/introspection/ERC165.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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)
    {
        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)
    {
        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)
    {
        // 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)
    {
        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)
    {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/EnumerableSet.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/utils/EnumerableMap.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol

pragma solidity >=0.6.0 <0.8.0;

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */

contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return
            _tokenOwners.get(
                tokenId,
                "ERC721: owner query for nonexistent token"
            );
    }

    /**
     * @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 {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 ||
                ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

// File: @openzeppelin/contracts/access/Ownable.sol

pragma solidity >=0.6.0 <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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.7.0;
pragma abicoder v2;

contract SatoshiPunks is ERC721, Ownable {
    using SafeMath for uint256;

    string public PUNKS_PROVENANCE = ""; // IPFS PROVENANCE TO BE ADDED WHEN SOLD OUT

    string public LICENSE_TEXT = "";

    bool licenseLocked = false;

    uint256 public punkPrice = 490000000000000000; // 0.490 ETH

    uint256 public constant maxPunkPurchase = 3;

    uint256 public constant MAX_PUNKS = 99;

    bool public saleIsActive = false;

    event licenseisLocked(string _licenseText);

    constructor() ERC721("SatoshiPunks", "SATOSHIPUNKS") {}

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        msg.sender.transfer(balance);
    }

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

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(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;
        }
    }

    // Returns the license for tokens
    function tokenLicense(uint256 _id) public view returns (string memory) {
        require(_id < totalSupply(), "CHOOSE A PUNK WITHIN RANGE");
        return LICENSE_TEXT;
    }

    // Locks the license to prevent further changes
    function lockLicense() public onlyOwner {
        licenseLocked = true;
        emit licenseisLocked(LICENSE_TEXT);
    }

    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }

    function mintPunk(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Punk");
        require(
            numberOfTokens > 0 && numberOfTokens <= maxPunkPurchase,
            "Can only mint 20 tokens at a time"
        );
        require(
            totalSupply().add(numberOfTokens) <= MAX_PUNKS,
            "Purchase would exceed max supply of Punks"
        );
        require(
            msg.value >= punkPrice.mul(numberOfTokens),
            "Ether value sent is not correct"
        );
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 mintIndex = totalSupply();
            if (totalSupply() < MAX_PUNKS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function setPunkPrice(uint256 newPrice) public onlyOwner {
        punkPrice = newPrice;
    }
}

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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUNKS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUNKS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPunkPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPunk","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":[],"name":"punkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"newPrice","type":"uint256"}],"name":"setPunkPrice","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"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"}]

60a06040819052600060808190526200001b91600b91620001f3565b506040805160208101918290526000908190526200003c91600c91620001f3565b50600d805460ff199081169091556706ccd46763f10000600e55600f805490911690553480156200006c57600080fd5b506040518060400160405280600c81526020016b5361746f73686950756e6b7360a01b8152506040518060400160405280600c81526020016b5341544f53484950554e4b5360a01b815250620000cf6301ffc9a760e01b6200019460201b60201c565b8151620000e4906006906020850190620001f3565b508051620000fa906007906020840190620001f3565b506200010d6380ac58cd60e01b62000194565b6200011f635b5e139f60e01b62000194565b6200013163780e9d6360e01b62000194565b506000905062000140620001ef565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002d6565b6001600160e01b03198082161415620001ca5760405162461bcd60e51b8152600401620001c1906200029f565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200022b576000855562000276565b82601f106200024657805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027657825182559160200191906001019062000259565b506200028492915062000288565b5090565b5b8082111562000284576000815560010162000289565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b612b7480620002e66000396000f3fe60806040526004361061024f5760003560e01c80638462151c11610138578063b88d4fde116100b0578063d9b137b21161007f578063e985e9c511610064578063e985e9c514610619578063eb8d244414610639578063f2fde38b1461064e5761024f565b8063d9b137b2146105e4578063deb59b3b146106045761024f565b8063b88d4fde1461057a578063bf4702fc1461059a578063bf905d06146105af578063c87b56dd146105c45761024f565b8063a22cb46511610107578063b09904b5116100ec578063b09904b514610530578063b3a9a25814610550578063b6c20fc6146105655761024f565b8063a22cb465146104f0578063a442a8d4146105105761024f565b80638462151c146104845780638da5cb5b146104b157806395d89b41146104c65780639c3e72bd146104db5761024f565b80633ccfd60b116101cb5780636352211e1161019a57806370a082311161017f57806370a082311461043c578063715018a61461045c578063830ddb97146104715761024f565b80636352211e146104075780636c0360eb146104275761024f565b80633ccfd60b1461039257806342842e0e146103a75780634f6ccce7146103c757806355f804b3146103e75761024f565b8063109695231161022257806323b872dd1161020757806323b872dd1461033d5780632f745c591461035d57806334918dfd1461037d5761024f565b806310969523146102fb57806318160ddd1461031b5761024f565b806301ffc9a71461025457806306fdde031461028a578063081812fc146102ac578063095ea7b3146102d9575b600080fd5b34801561026057600080fd5b5061027461026f366004612093565b61066e565b6040516102819190612234565b60405180910390f35b34801561029657600080fd5b5061029f6106a9565b604051610281919061223f565b3480156102b857600080fd5b506102cc6102c7366004612111565b61073f565b60405161028191906121a0565b3480156102e557600080fd5b506102f96102f436600461206a565b61078b565b005b34801561030757600080fd5b506102f96103163660046120cb565b610823565b34801561032757600080fd5b50610330610879565b6040516102819190612a74565b34801561034957600080fd5b506102f9610358366004611f7c565b61088a565b34801561036957600080fd5b5061033061037836600461206a565b6108c2565b34801561038957600080fd5b506102f96108ed565b34801561039e57600080fd5b506102f9610940565b3480156103b357600080fd5b506102f96103c2366004611f7c565b6109ae565b3480156103d357600080fd5b506103306103e2366004612111565b6109c9565b3480156103f357600080fd5b506102f96104023660046120cb565b6109df565b34801561041357600080fd5b506102cc610422366004612111565b610a2a565b34801561043357600080fd5b5061029f610a52565b34801561044857600080fd5b50610330610457366004611f30565b610ab3565b34801561046857600080fd5b506102f9610afc565b6102f961047f366004612111565b610b92565b34801561049057600080fd5b506104a461049f366004611f30565b610c79565b60405161028191906121f0565b3480156104bd57600080fd5b506102cc610d27565b3480156104d257600080fd5b5061029f610d36565b3480156104e757600080fd5b5061029f610d97565b3480156104fc57600080fd5b506102f961050b366004612030565b610e25565b34801561051c57600080fd5b506102f961052b366004612111565b610ef3565b34801561053c57600080fd5b506102f961054b3660046120cb565b610f37565b34801561055c57600080fd5b50610330610fac565b34801561057157600080fd5b5061029f610fb2565b34801561058657600080fd5b506102f9610595366004611fb7565b61100d565b3480156105a657600080fd5b506102f961104c565b3480156105bb57600080fd5b506103306110d3565b3480156105d057600080fd5b5061029f6105df366004612111565b6110d8565b3480156105f057600080fd5b5061029f6105ff366004612111565b61121c565b34801561061057600080fd5b506103306112d6565b34801561062557600080fd5b50610274610634366004611f4a565b6112db565b34801561064557600080fd5b50610274611309565b34801561065a57600080fd5b506102f9610669366004611f30565b611312565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a826113e0565b61076f5760405162461bcd60e51b8152600401610766906127da565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079682610a2a565b9050806001600160a01b0316836001600160a01b031614156107ca5760405162461bcd60e51b81526004016107669061294c565b806001600160a01b03166107dc6113ed565b6001600160a01b031614806107f857506107f8816106346113ed565b6108145760405162461bcd60e51b81526004016107669061264c565b61081e83836113f1565b505050565b61082b6113ed565b6001600160a01b031661083c610d27565b6001600160a01b0316146108625760405162461bcd60e51b815260040161076690612826565b805161087590600b906020840190611e14565b5050565b6000610885600261146c565b905090565b61089b6108956113ed565b82611477565b6108b75760405162461bcd60e51b8152600401610766906129e0565b61081e8383836114fc565b6001600160a01b03821660009081526001602052604081206108e4908361160a565b90505b92915050565b6108f56113ed565b6001600160a01b0316610906610d27565b6001600160a01b03161461092c5760405162461bcd60e51b815260040161076690612826565b600f805460ff19811660ff90911615179055565b6109486113ed565b6001600160a01b0316610959610d27565b6001600160a01b03161461097f5760405162461bcd60e51b815260040161076690612826565b6040514790339082156108fc029083906000818181858888f19350505050158015610875573d6000803e3d6000fd5b61081e8383836040518060200160405280600081525061100d565b6000806109d7600284611616565b509392505050565b6109e76113ed565b6001600160a01b03166109f8610d27565b6001600160a01b031614610a1e5760405162461bcd60e51b815260040161076690612826565b610a2781611632565b50565b60006108e782604051806060016040528060298152602001612b166029913960029190611645565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107355780601f1061070a57610100808354040283529160200191610735565b60006001600160a01b038216610adb5760405162461bcd60e51b8152600401610766906126a9565b6001600160a01b03821660009081526001602052604090206108e79061146c565b610b046113ed565b6001600160a01b0316610b15610d27565b6001600160a01b031614610b3b5760405162461bcd60e51b815260040161076690612826565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b600f5460ff16610bb45760405162461bcd60e51b81526004016107669061231e565b600081118015610bc5575060038111155b610be15760405162461bcd60e51b8152600401610766906125ef565b6063610bf582610bef610879565b9061165c565b1115610c135760405162461bcd60e51b815260040161076690612444565b600e54610c209082611681565b341015610c3f5760405162461bcd60e51b81526004016107669061256c565b60005b81811015610875576000610c54610879565b90506063610c60610879565b1015610c7057610c7033826116bb565b50600101610c42565b60606000610c8683610ab3565b905080610ca35750506040805160008152602081019091526106a4565b60008167ffffffffffffffff81118015610cbc57600080fd5b50604051908082528060200260200182016040528015610ce6578160200160208202803683370190505b50905060005b82811015610d1d57610cfe85826108c2565b828281518110610d0a57fe5b6020908102919091010152600101610cec565b5091506106a49050565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107355780601f1061070a57610100808354040283529160200191610735565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b505050505081565b610e2d6113ed565b6001600160a01b0316826001600160a01b03161415610e5e5760405162461bcd60e51b815260040161076690612535565b8060056000610e6b6113ed565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eaf6113ed565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ee79190612234565b60405180910390a35050565b610efb6113ed565b6001600160a01b0316610f0c610d27565b6001600160a01b031614610f325760405162461bcd60e51b815260040161076690612826565b600e55565b610f3f6113ed565b6001600160a01b0316610f50610d27565b6001600160a01b031614610f765760405162461bcd60e51b815260040161076690612826565b600d5460ff1615610f995760405162461bcd60e51b8152600401610766906129a9565b805161087590600c906020840190611e14565b600e5481565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e1d5780601f10610df257610100808354040283529160200191610e1d565b61101e6110186113ed565b83611477565b61103a5760405162461bcd60e51b8152600401610766906129e0565b611046848484846116d5565b50505050565b6110546113ed565b6001600160a01b0316611065610d27565b6001600160a01b03161461108b5760405162461bcd60e51b815260040161076690612826565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906110c990600c90612252565b60405180910390a1565b600381565b60606110e3826113e0565b6110ff5760405162461bcd60e51b8152600401610766906128b8565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905060006111a3610a52565b90508051600014156111b7575090506106a4565b8151156111e95780826040516020016111d1929190612171565b604051602081830303815290604052925050506106a4565b806111f385611708565b604051602001611204929190612171565b60405160208183030381529060405292505050919050565b6060611226610879565b82106112445760405162461bcd60e51b815260040161076690612915565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112ca5780601f1061129f576101008083540402835291602001916112ca565b820191906000526020600020905b8154815290600101906020018083116112ad57829003601f168201915b50505050509050919050565b606381565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b61131a6113ed565b6001600160a01b031661132b610d27565b6001600160a01b0316146113515760405162461bcd60e51b815260040161076690612826565b6001600160a01b0381166113775760405162461bcd60e51b8152600401610766906123b0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006108e7600283611817565b3390565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061143382610a2a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006108e782611823565b6000611482826113e0565b61149e5760405162461bcd60e51b8152600401610766906125a3565b60006114a983610a2a565b9050806001600160a01b0316846001600160a01b031614806114e45750836001600160a01b03166114d98461073f565b6001600160a01b0316145b806114f457506114f481856112db565b949350505050565b826001600160a01b031661150f82610a2a565b6001600160a01b0316146115355760405162461bcd60e51b81526004016107669061285b565b6001600160a01b03821661155b5760405162461bcd60e51b8152600401610766906124d8565b61156683838361081e565b6115716000826113f1565b6001600160a01b03831660009081526001602052604090206115939082611827565b506001600160a01b03821660009081526001602052604090206115b69082611833565b506115c36002828461183f565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108e48383611855565b6000808080611625868661189a565b9097909650945050505050565b8051610875906009906020840190611e14565b60006116528484846118f6565b90505b9392505050565b6000828201838110156108e45760405162461bcd60e51b8152600401610766906124a1565b600082611690575060006108e7565b8282028284828161169d57fe5b04146108e45760405162461bcd60e51b81526004016107669061277d565b610875828260405180602001604052806000815250611955565b6116e08484846114fc565b6116ec84848484611988565b6110465760405162461bcd60e51b815260040161076690612353565b606081611749575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526106a4565b8160005b811561176157600101600a8204915061174d565b60008167ffffffffffffffff8111801561177a57600080fd5b506040519080825280601f01601f1916602001820160405280156117a5576020820181803683370190505b50859350905060001982015b831561180e57600a840660300160f81b828280600190039350815181106117d457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a840493506117b1565b50949350505050565b60006108e48383611aa9565b5490565b60006108e48383611ac1565b60006108e48383611b87565b600061165284846001600160a01b038516611bd1565b815460009082106118785760405162461bcd60e51b8152600401610766906122dc565b82600001828154811061188757fe5b9060005260206000200154905092915050565b8154600090819083106118bf5760405162461bcd60e51b815260040161076690612706565b60008460000184815481106118d057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816119265760405162461bcd60e51b8152600401610766919061223f565b5084600001600182038154811061193957fe5b9060005260206000209060020201600101549150509392505050565b61195f8383611c68565b61196c6000848484611988565b61081e5760405162461bcd60e51b815260040161076690612353565b600061199c846001600160a01b0316611d2c565b6119a8575060016114f4565b6000611a5a630a85bd0160e11b6119bd6113ed565b8887876040516024016119d394939291906121b4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001612ae4603291396001600160a01b0388169190611d32565b9050600081806020019051810190611a7291906120af565b7fffffffff0000000000000000000000000000000000000000000000000000000016630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611b7d5783546000198083019190810190600090879083908110611af457fe5b9060005260206000200154905080876000018481548110611b1157fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611b4157fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108e7565b60009150506108e7565b6000611b938383611aa9565b611bc9575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108e7565b5060006108e7565b600082815260018401602052604081205480611c36575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611655565b82856000016001830381548110611c4957fe5b9060005260206000209060020201600101819055506000915050611655565b6001600160a01b038216611c8e5760405162461bcd60e51b815260040161076690612748565b611c97816113e0565b15611cb45760405162461bcd60e51b81526004016107669061240d565b611cc06000838361081e565b6001600160a01b0382166000908152600160205260409020611ce29082611833565b50611cef6002828461183f565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611652848460008585611d4685611d2c565b611d625760405162461bcd60e51b815260040161076690612a3d565b600080866001600160a01b03168587604051611d7e9190612155565b60006040518083038185875af1925050503d8060008114611dbb576040519150601f19603f3d011682016040523d82523d6000602084013e611dc0565b606091505b5091509150611dd0828286611ddb565b979650505050505050565b60608315611dea575081611655565b825115611dfa5782518084602001fd5b8160405162461bcd60e51b8152600401610766919061223f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611e4a5760008555611e90565b82601f10611e6357805160ff1916838001178555611e90565b82800160010185558215611e90579182015b82811115611e90578251825591602001919060010190611e75565b50611e9c929150611ea0565b5090565b5b80821115611e9c5760008155600101611ea1565b600067ffffffffffffffff80841115611eca57fe5b604051601f8501601f191681016020018281118282101715611ee857fe5b604052848152915081838501861015611f0057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106a457600080fd5b600060208284031215611f41578081fd5b6108e482611f19565b60008060408385031215611f5c578081fd5b611f6583611f19565b9150611f7360208401611f19565b90509250929050565b600080600060608486031215611f90578081fd5b611f9984611f19565b9250611fa760208501611f19565b9150604084013590509250925092565b60008060008060808587031215611fcc578081fd5b611fd585611f19565b9350611fe360208601611f19565b925060408501359150606085013567ffffffffffffffff811115612005578182fd5b8501601f81018713612015578182fd5b61202487823560208401611eb5565b91505092959194509250565b60008060408385031215612042578182fd5b61204b83611f19565b91506020830135801515811461205f578182fd5b809150509250929050565b6000806040838503121561207c578182fd5b61208583611f19565b946020939093013593505050565b6000602082840312156120a4578081fd5b81356108e481612ab5565b6000602082840312156120c0578081fd5b81516108e481612ab5565b6000602082840312156120dc578081fd5b813567ffffffffffffffff8111156120f2578182fd5b8201601f81018413612102578182fd5b6114f484823560208401611eb5565b600060208284031215612122578081fd5b5035919050565b60008151808452612141816020860160208601612a89565b601f01601f19169290920160200192915050565b60008251612167818460208701612a89565b9190910192915050565b60008351612183818460208801612a89565b835190830190612197818360208801612a89565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121e66080830184612129565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122285783518352928401929184019160010161220c565b50909695505050505050565b901515815260200190565b6000602082526108e46020830184612129565b600060208083018184528285546001808216600081146122795760018114612297576122cf565b60028304607f16855260ff19831660408901526060880193506122cf565b600283048086526122a78a612a7d565b885b828110156122c55781548b8201604001529084019088016122a9565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f53616c65206d7573742062652061637469766520746f206d696e742050756e6b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201527f206f662050756e6b730000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60408201527f6500000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b6020808252601a908201527f43484f4f534520412050554e4b2057495448494e2052414e4745000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f4c6963656e736520616c7265616479206c6f636b656400000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b83811015612aa4578181015183820152602001612a8c565b838111156110465750506000910152565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a2757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ae9b181041726cc3b200edfa948f84dd25305c2c84fa87823cfd713c83082bea64736f6c63430007060033

Deployed Bytecode

0x60806040526004361061024f5760003560e01c80638462151c11610138578063b88d4fde116100b0578063d9b137b21161007f578063e985e9c511610064578063e985e9c514610619578063eb8d244414610639578063f2fde38b1461064e5761024f565b8063d9b137b2146105e4578063deb59b3b146106045761024f565b8063b88d4fde1461057a578063bf4702fc1461059a578063bf905d06146105af578063c87b56dd146105c45761024f565b8063a22cb46511610107578063b09904b5116100ec578063b09904b514610530578063b3a9a25814610550578063b6c20fc6146105655761024f565b8063a22cb465146104f0578063a442a8d4146105105761024f565b80638462151c146104845780638da5cb5b146104b157806395d89b41146104c65780639c3e72bd146104db5761024f565b80633ccfd60b116101cb5780636352211e1161019a57806370a082311161017f57806370a082311461043c578063715018a61461045c578063830ddb97146104715761024f565b80636352211e146104075780636c0360eb146104275761024f565b80633ccfd60b1461039257806342842e0e146103a75780634f6ccce7146103c757806355f804b3146103e75761024f565b8063109695231161022257806323b872dd1161020757806323b872dd1461033d5780632f745c591461035d57806334918dfd1461037d5761024f565b806310969523146102fb57806318160ddd1461031b5761024f565b806301ffc9a71461025457806306fdde031461028a578063081812fc146102ac578063095ea7b3146102d9575b600080fd5b34801561026057600080fd5b5061027461026f366004612093565b61066e565b6040516102819190612234565b60405180910390f35b34801561029657600080fd5b5061029f6106a9565b604051610281919061223f565b3480156102b857600080fd5b506102cc6102c7366004612111565b61073f565b60405161028191906121a0565b3480156102e557600080fd5b506102f96102f436600461206a565b61078b565b005b34801561030757600080fd5b506102f96103163660046120cb565b610823565b34801561032757600080fd5b50610330610879565b6040516102819190612a74565b34801561034957600080fd5b506102f9610358366004611f7c565b61088a565b34801561036957600080fd5b5061033061037836600461206a565b6108c2565b34801561038957600080fd5b506102f96108ed565b34801561039e57600080fd5b506102f9610940565b3480156103b357600080fd5b506102f96103c2366004611f7c565b6109ae565b3480156103d357600080fd5b506103306103e2366004612111565b6109c9565b3480156103f357600080fd5b506102f96104023660046120cb565b6109df565b34801561041357600080fd5b506102cc610422366004612111565b610a2a565b34801561043357600080fd5b5061029f610a52565b34801561044857600080fd5b50610330610457366004611f30565b610ab3565b34801561046857600080fd5b506102f9610afc565b6102f961047f366004612111565b610b92565b34801561049057600080fd5b506104a461049f366004611f30565b610c79565b60405161028191906121f0565b3480156104bd57600080fd5b506102cc610d27565b3480156104d257600080fd5b5061029f610d36565b3480156104e757600080fd5b5061029f610d97565b3480156104fc57600080fd5b506102f961050b366004612030565b610e25565b34801561051c57600080fd5b506102f961052b366004612111565b610ef3565b34801561053c57600080fd5b506102f961054b3660046120cb565b610f37565b34801561055c57600080fd5b50610330610fac565b34801561057157600080fd5b5061029f610fb2565b34801561058657600080fd5b506102f9610595366004611fb7565b61100d565b3480156105a657600080fd5b506102f961104c565b3480156105bb57600080fd5b506103306110d3565b3480156105d057600080fd5b5061029f6105df366004612111565b6110d8565b3480156105f057600080fd5b5061029f6105ff366004612111565b61121c565b34801561061057600080fd5b506103306112d6565b34801561062557600080fd5b50610274610634366004611f4a565b6112db565b34801561064557600080fd5b50610274611309565b34801561065a57600080fd5b506102f9610669366004611f30565b611312565b7fffffffff00000000000000000000000000000000000000000000000000000000811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a826113e0565b61076f5760405162461bcd60e51b8152600401610766906127da565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079682610a2a565b9050806001600160a01b0316836001600160a01b031614156107ca5760405162461bcd60e51b81526004016107669061294c565b806001600160a01b03166107dc6113ed565b6001600160a01b031614806107f857506107f8816106346113ed565b6108145760405162461bcd60e51b81526004016107669061264c565b61081e83836113f1565b505050565b61082b6113ed565b6001600160a01b031661083c610d27565b6001600160a01b0316146108625760405162461bcd60e51b815260040161076690612826565b805161087590600b906020840190611e14565b5050565b6000610885600261146c565b905090565b61089b6108956113ed565b82611477565b6108b75760405162461bcd60e51b8152600401610766906129e0565b61081e8383836114fc565b6001600160a01b03821660009081526001602052604081206108e4908361160a565b90505b92915050565b6108f56113ed565b6001600160a01b0316610906610d27565b6001600160a01b03161461092c5760405162461bcd60e51b815260040161076690612826565b600f805460ff19811660ff90911615179055565b6109486113ed565b6001600160a01b0316610959610d27565b6001600160a01b03161461097f5760405162461bcd60e51b815260040161076690612826565b6040514790339082156108fc029083906000818181858888f19350505050158015610875573d6000803e3d6000fd5b61081e8383836040518060200160405280600081525061100d565b6000806109d7600284611616565b509392505050565b6109e76113ed565b6001600160a01b03166109f8610d27565b6001600160a01b031614610a1e5760405162461bcd60e51b815260040161076690612826565b610a2781611632565b50565b60006108e782604051806060016040528060298152602001612b166029913960029190611645565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107355780601f1061070a57610100808354040283529160200191610735565b60006001600160a01b038216610adb5760405162461bcd60e51b8152600401610766906126a9565b6001600160a01b03821660009081526001602052604090206108e79061146c565b610b046113ed565b6001600160a01b0316610b15610d27565b6001600160a01b031614610b3b5760405162461bcd60e51b815260040161076690612826565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b600f5460ff16610bb45760405162461bcd60e51b81526004016107669061231e565b600081118015610bc5575060038111155b610be15760405162461bcd60e51b8152600401610766906125ef565b6063610bf582610bef610879565b9061165c565b1115610c135760405162461bcd60e51b815260040161076690612444565b600e54610c209082611681565b341015610c3f5760405162461bcd60e51b81526004016107669061256c565b60005b81811015610875576000610c54610879565b90506063610c60610879565b1015610c7057610c7033826116bb565b50600101610c42565b60606000610c8683610ab3565b905080610ca35750506040805160008152602081019091526106a4565b60008167ffffffffffffffff81118015610cbc57600080fd5b50604051908082528060200260200182016040528015610ce6578160200160208202803683370190505b50905060005b82811015610d1d57610cfe85826108c2565b828281518110610d0a57fe5b6020908102919091010152600101610cec565b5091506106a49050565b600a546001600160a01b031690565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107355780601f1061070a57610100808354040283529160200191610735565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b505050505081565b610e2d6113ed565b6001600160a01b0316826001600160a01b03161415610e5e5760405162461bcd60e51b815260040161076690612535565b8060056000610e6b6113ed565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eaf6113ed565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ee79190612234565b60405180910390a35050565b610efb6113ed565b6001600160a01b0316610f0c610d27565b6001600160a01b031614610f325760405162461bcd60e51b815260040161076690612826565b600e55565b610f3f6113ed565b6001600160a01b0316610f50610d27565b6001600160a01b031614610f765760405162461bcd60e51b815260040161076690612826565b600d5460ff1615610f995760405162461bcd60e51b8152600401610766906129a9565b805161087590600c906020840190611e14565b600e5481565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e1d5780601f10610df257610100808354040283529160200191610e1d565b61101e6110186113ed565b83611477565b61103a5760405162461bcd60e51b8152600401610766906129e0565b611046848484846116d5565b50505050565b6110546113ed565b6001600160a01b0316611065610d27565b6001600160a01b03161461108b5760405162461bcd60e51b815260040161076690612826565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b0906110c990600c90612252565b60405180910390a1565b600381565b60606110e3826113e0565b6110ff5760405162461bcd60e51b8152600401610766906128b8565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b5050505050905060006111a3610a52565b90508051600014156111b7575090506106a4565b8151156111e95780826040516020016111d1929190612171565b604051602081830303815290604052925050506106a4565b806111f385611708565b604051602001611204929190612171565b60405160208183030381529060405292505050919050565b6060611226610879565b82106112445760405162461bcd60e51b815260040161076690612915565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112ca5780601f1061129f576101008083540402835291602001916112ca565b820191906000526020600020905b8154815290600101906020018083116112ad57829003601f168201915b50505050509050919050565b606381565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b61131a6113ed565b6001600160a01b031661132b610d27565b6001600160a01b0316146113515760405162461bcd60e51b815260040161076690612826565b6001600160a01b0381166113775760405162461bcd60e51b8152600401610766906123b0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006108e7600283611817565b3390565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061143382610a2a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006108e782611823565b6000611482826113e0565b61149e5760405162461bcd60e51b8152600401610766906125a3565b60006114a983610a2a565b9050806001600160a01b0316846001600160a01b031614806114e45750836001600160a01b03166114d98461073f565b6001600160a01b0316145b806114f457506114f481856112db565b949350505050565b826001600160a01b031661150f82610a2a565b6001600160a01b0316146115355760405162461bcd60e51b81526004016107669061285b565b6001600160a01b03821661155b5760405162461bcd60e51b8152600401610766906124d8565b61156683838361081e565b6115716000826113f1565b6001600160a01b03831660009081526001602052604090206115939082611827565b506001600160a01b03821660009081526001602052604090206115b69082611833565b506115c36002828461183f565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108e48383611855565b6000808080611625868661189a565b9097909650945050505050565b8051610875906009906020840190611e14565b60006116528484846118f6565b90505b9392505050565b6000828201838110156108e45760405162461bcd60e51b8152600401610766906124a1565b600082611690575060006108e7565b8282028284828161169d57fe5b04146108e45760405162461bcd60e51b81526004016107669061277d565b610875828260405180602001604052806000815250611955565b6116e08484846114fc565b6116ec84848484611988565b6110465760405162461bcd60e51b815260040161076690612353565b606081611749575060408051808201909152600181527f300000000000000000000000000000000000000000000000000000000000000060208201526106a4565b8160005b811561176157600101600a8204915061174d565b60008167ffffffffffffffff8111801561177a57600080fd5b506040519080825280601f01601f1916602001820160405280156117a5576020820181803683370190505b50859350905060001982015b831561180e57600a840660300160f81b828280600190039350815181106117d457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a840493506117b1565b50949350505050565b60006108e48383611aa9565b5490565b60006108e48383611ac1565b60006108e48383611b87565b600061165284846001600160a01b038516611bd1565b815460009082106118785760405162461bcd60e51b8152600401610766906122dc565b82600001828154811061188757fe5b9060005260206000200154905092915050565b8154600090819083106118bf5760405162461bcd60e51b815260040161076690612706565b60008460000184815481106118d057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816119265760405162461bcd60e51b8152600401610766919061223f565b5084600001600182038154811061193957fe5b9060005260206000209060020201600101549150509392505050565b61195f8383611c68565b61196c6000848484611988565b61081e5760405162461bcd60e51b815260040161076690612353565b600061199c846001600160a01b0316611d2c565b6119a8575060016114f4565b6000611a5a630a85bd0160e11b6119bd6113ed565b8887876040516024016119d394939291906121b4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001612ae4603291396001600160a01b0388169190611d32565b9050600081806020019051810190611a7291906120af565b7fffffffff0000000000000000000000000000000000000000000000000000000016630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611b7d5783546000198083019190810190600090879083908110611af457fe5b9060005260206000200154905080876000018481548110611b1157fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611b4157fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108e7565b60009150506108e7565b6000611b938383611aa9565b611bc9575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108e7565b5060006108e7565b600082815260018401602052604081205480611c36575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611655565b82856000016001830381548110611c4957fe5b9060005260206000209060020201600101819055506000915050611655565b6001600160a01b038216611c8e5760405162461bcd60e51b815260040161076690612748565b611c97816113e0565b15611cb45760405162461bcd60e51b81526004016107669061240d565b611cc06000838361081e565b6001600160a01b0382166000908152600160205260409020611ce29082611833565b50611cef6002828461183f565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611652848460008585611d4685611d2c565b611d625760405162461bcd60e51b815260040161076690612a3d565b600080866001600160a01b03168587604051611d7e9190612155565b60006040518083038185875af1925050503d8060008114611dbb576040519150601f19603f3d011682016040523d82523d6000602084013e611dc0565b606091505b5091509150611dd0828286611ddb565b979650505050505050565b60608315611dea575081611655565b825115611dfa5782518084602001fd5b8160405162461bcd60e51b8152600401610766919061223f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611e4a5760008555611e90565b82601f10611e6357805160ff1916838001178555611e90565b82800160010185558215611e90579182015b82811115611e90578251825591602001919060010190611e75565b50611e9c929150611ea0565b5090565b5b80821115611e9c5760008155600101611ea1565b600067ffffffffffffffff80841115611eca57fe5b604051601f8501601f191681016020018281118282101715611ee857fe5b604052848152915081838501861015611f0057600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106a457600080fd5b600060208284031215611f41578081fd5b6108e482611f19565b60008060408385031215611f5c578081fd5b611f6583611f19565b9150611f7360208401611f19565b90509250929050565b600080600060608486031215611f90578081fd5b611f9984611f19565b9250611fa760208501611f19565b9150604084013590509250925092565b60008060008060808587031215611fcc578081fd5b611fd585611f19565b9350611fe360208601611f19565b925060408501359150606085013567ffffffffffffffff811115612005578182fd5b8501601f81018713612015578182fd5b61202487823560208401611eb5565b91505092959194509250565b60008060408385031215612042578182fd5b61204b83611f19565b91506020830135801515811461205f578182fd5b809150509250929050565b6000806040838503121561207c578182fd5b61208583611f19565b946020939093013593505050565b6000602082840312156120a4578081fd5b81356108e481612ab5565b6000602082840312156120c0578081fd5b81516108e481612ab5565b6000602082840312156120dc578081fd5b813567ffffffffffffffff8111156120f2578182fd5b8201601f81018413612102578182fd5b6114f484823560208401611eb5565b600060208284031215612122578081fd5b5035919050565b60008151808452612141816020860160208601612a89565b601f01601f19169290920160200192915050565b60008251612167818460208701612a89565b9190910192915050565b60008351612183818460208801612a89565b835190830190612197818360208801612a89565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526121e66080830184612129565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122285783518352928401929184019160010161220c565b50909695505050505050565b901515815260200190565b6000602082526108e46020830184612129565b600060208083018184528285546001808216600081146122795760018114612297576122cf565b60028304607f16855260ff19831660408901526060880193506122cf565b600283048086526122a78a612a7d565b885b828110156122c55781548b8201604001529084019088016122a9565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f53616c65206d7573742062652061637469766520746f206d696e742050756e6b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526029908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201527f206f662050756e6b730000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60408201527f6500000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b6020808252601a908201527f43484f4f534520412050554e4b2057495448494e2052414e4745000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f4c6963656e736520616c7265616479206c6f636b656400000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b83811015612aa4578181015183820152602001612a8c565b838111156110465750506000910152565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a2757600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220ae9b181041726cc3b200edfa948f84dd25305c2c84fa87823cfd713c83082bea64736f6c63430007060033

Deployed Bytecode Sourcemap

70440:3145:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10514:200;;;;;;;;;;-1:-1:-1;10514:200:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53994:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57002:308::-;;;;;;;;;;-1:-1:-1;57002:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56501:435::-;;;;;;;;;;-1:-1:-1;56501:435:0;;;;;:::i;:::-;;:::i;:::-;;71150:126;;;;;;;;;;-1:-1:-1;71150:126:0;;;;;:::i;:::-;;:::i;55929:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;58061:376::-;;;;;;;;;;-1:-1:-1;58061:376:0;;;;;:::i;:::-;;:::i;55641:212::-;;;;;;;;;;-1:-1:-1;55641:212:0;;;;;:::i;:::-;;:::i;71391:89::-;;;;;;;;;;;;;:::i;71008:134::-;;;;;;;;;;;;;:::i;58508:185::-;;;;;;;;;;-1:-1:-1;58508:185:0;;;;;:::i;:::-;;:::i;56217:222::-;;;;;;;;;;-1:-1:-1;56217:222:0;;;;;:::i;:::-;;:::i;71284:99::-;;;;;;;;;;-1:-1:-1;71284:99:0;;;;;:::i;:::-;;:::i;53638:289::-;;;;;;;;;;-1:-1:-1;53638:289:0;;;;;:::i;:::-;;:::i;55460:97::-;;;;;;;;;;;;;:::i;53268:308::-;;;;;;;;;;-1:-1:-1;53268:308:0;;;;;:::i;:::-;;:::i;69801:148::-;;;;;;;;;;;;;:::i;72687:791::-;;;;;;:::i;:::-;;:::i;71488:572::-;;;;;;;;;;-1:-1:-1;71488:572:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;69150:87::-;;;;;;;;;;;;;:::i;54163:104::-;;;;;;;;;;;;;:::i;70612:31::-;;;;;;;;;;;;;:::i;57382:327::-;;;;;;;;;;-1:-1:-1;57382:327:0;;;;;:::i;:::-;;:::i;73486:96::-;;;;;;;;;;-1:-1:-1;73486:96:0;;;;;:::i;:::-;;:::i;72505:174::-;;;;;;;;;;-1:-1:-1;72505:174:0;;;;;:::i;:::-;;:::i;70687:45::-;;;;;;;;;;;;;:::i;70523:35::-;;;;;;;;;;;;;:::i;58764:365::-;;;;;;;;;;-1:-1:-1;58764:365:0;;;;;:::i;:::-;;:::i;72346:124::-;;;;;;;;;;;;;:::i;70754:43::-;;;;;;;;;;;;;:::i;54338:879::-;;;;;;;;;;-1:-1:-1;54338:879:0;;;;;:::i;:::-;;:::i;72107:178::-;;;;;;;;;;-1:-1:-1;72107:178:0;;;;;:::i;:::-;;:::i;70806:38::-;;;;;;;;;;;;;:::i;57780:214::-;;;;;;;;;;-1:-1:-1;57780:214:0;;;;;:::i;:::-;;:::i;70853:32::-;;;;;;;;;;;;;:::i;70104:281::-;;;;;;;;;;-1:-1:-1;70104:281:0;;;;;:::i;:::-;;:::i;10514:200::-;10673:33;;;10644:4;10673:33;;;;;;;;;;;;;10514:200;;;;:::o;53994:100::-;54081:5;54074:12;;;;;;;;-1:-1:-1;;54074:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54048:13;;54074:12;;54081:5;;54074:12;;54081:5;54074:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53994:100;:::o;57002:308::-;57123:7;57170:16;57178:7;57170;:16::i;:::-;57148:110;;;;-1:-1:-1;;;57148:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;57278:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57278:24:0;;57002:308::o;56501:435::-;56582:13;56598:23;56613:7;56598:14;:23::i;:::-;56582:39;;56646:5;-1:-1:-1;;;;;56640:11:0;:2;-1:-1:-1;;;;;56640:11:0;;;56632:57;;;;-1:-1:-1;;;56632:57:0;;;;;;;:::i;:::-;56740:5;-1:-1:-1;;;;;56724:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;56724:21:0;;:86;;;;56766:44;56790:5;56797:12;:10;:12::i;56766:44::-;56702:192;;;;-1:-1:-1;;;56702:192:0;;;;;;;:::i;:::-;56907:21;56916:2;56920:7;56907:8;:21::i;:::-;56501:435;;;:::o;71150:126::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;71235:33;;::::1;::::0;:16:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71150:126:::0;:::o;55929:211::-;55990:7;56111:21;:12;:19;:21::i;:::-;56104:28;;55929:211;:::o;58061:376::-;58270:41;58289:12;:10;:12::i;:::-;58303:7;58270:18;:41::i;:::-;58248:140;;;;-1:-1:-1;;;58248:140:0;;;;;;;:::i;:::-;58401:28;58411:4;58417:2;58421:7;58401:9;:28::i;55641:212::-;-1:-1:-1;;;;;55815:20:0;;55783:7;55815:20;;;:13;:20;;;;;:30;;55839:5;55815:23;:30::i;:::-;55808:37;;55641:212;;;;;:::o;71391:89::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;71460:12:::1;::::0;;-1:-1:-1;;71444:28:0;::::1;71460:12;::::0;;::::1;71459:13;71444:28;::::0;;71391:89::o;71008:134::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;71106:28:::1;::::0;71074:21:::1;::::0;71106:10:::1;::::0;:28;::::1;;;::::0;71074:21;;71056:15:::1;71106:28:::0;71056:15;71106:28;71074:21;71106:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;58508:185:::0;58646:39;58663:4;58669:2;58673:7;58646:39;;;;;;;;;;;;:16;:39::i;56217:222::-;56337:7;;56384:22;:12;56400:5;56384:15;:22::i;:::-;-1:-1:-1;56362:44:0;56217:222;-1:-1:-1;;;56217:222:0:o;71284:99::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;71355:20:::1;71367:7;71355:11;:20::i;:::-;71284:99:::0;:::o;53638:289::-;53755:7;53800:119;53835:7;53800:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;55460:97::-;55541:8;55534:15;;;;;;;;-1:-1:-1;;55534:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55508:13;;55534:15;;55541:8;;55534:15;;55541:8;55534:15;;;;;;;;;;;;;;;;;;;;;;;;53268:308;53385:7;-1:-1:-1;;;;;53432:19:0;;53410:111;;;;-1:-1:-1;;;53410:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53539:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;69801:148::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;69892:6:::1;::::0;69871:40:::1;::::0;69908:1:::1;::::0;-1:-1:-1;;;;;69892:6:0::1;::::0;69871:40:::1;::::0;69908:1;;69871:40:::1;69922:6;:19:::0;;-1:-1:-1;;69922:19:0::1;::::0;;69801:148::o;72687:791::-;72763:12;;;;72755:57;;;;-1:-1:-1;;;72755:57:0;;;;;;;:::i;:::-;72862:1;72845:14;:18;:55;;;;;70796:1;72867:14;:33;;72845:55;72823:138;;;;-1:-1:-1;;;72823:138:0;;;;;;;:::i;:::-;70842:2;72994:33;73012:14;72994:13;:11;:13::i;:::-;:17;;:33::i;:::-;:46;;72972:137;;;;-1:-1:-1;;;72972:137:0;;;;;;;:::i;:::-;73155:9;;:29;;73169:14;73155:13;:29::i;:::-;73142:9;:42;;73120:123;;;;-1:-1:-1;;;73120:123:0;;;;;;;:::i;:::-;73259:9;73254:217;73278:14;73274:1;:18;73254:217;;;73314:17;73334:13;:11;:13::i;:::-;73314:33;;70842:2;73366:13;:11;:13::i;:::-;:25;73362:98;;;73412:32;73422:10;73434:9;73412;:32::i;:::-;-1:-1:-1;73294:3:0;;73254:217;;71488:572;71577:16;71611:18;71632:17;71642:6;71632:9;:17::i;:::-;71611:38;-1:-1:-1;71664:15:0;71660:393;;-1:-1:-1;;71741:16:0;;;71755:1;71741:16;;;;;;;;71734:23;;71660:393;71790:23;71830:10;71816:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71816:25:0;;71790:51;;71856:13;71884:130;71908:10;71900:5;:18;71884:130;;;71964:34;71984:6;71992:5;71964:19;:34::i;:::-;71948:6;71955:5;71948:13;;;;;;;;;;;;;;;;;:50;71920:7;;71884:130;;;-1:-1:-1;72035:6:0;-1:-1:-1;72028:13:0;;-1:-1:-1;72028:13:0;69150:87;69223:6;;-1:-1:-1;;;;;69223:6:0;69150:87;:::o;54163:104::-;54252:7;54245:14;;;;;;;;-1:-1:-1;;54245:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54219:13;;54245:14;;54252:7;;54245:14;;54252:7;54245:14;;;;;;;;;;;;;;;;;;;;;;;;70612:31;;;;;;;;;;;;;;;-1:-1:-1;;70612:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57382:327::-;57529:12;:10;:12::i;:::-;-1:-1:-1;;;;;57517:24:0;:8;-1:-1:-1;;;;;57517:24:0;;;57509:62;;;;-1:-1:-1;;;57509:62:0;;;;;;;:::i;:::-;57629:8;57584:18;:32;57603:12;:10;:12::i;:::-;-1:-1:-1;;;;;57584:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;57584:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;57584:53:0;;;;;;;;;;;57668:12;:10;:12::i;:::-;-1:-1:-1;;;;;57653:48:0;;57692:8;57653:48;;;;;;:::i;:::-;;;;;;;;57382:327;;:::o;73486:96::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;73554:9:::1;:20:::0;73486:96::o;72505:174::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;72588:13:::1;::::0;::::1;;:22;72580:57;;;;-1:-1:-1::0;;;72580:57:0::1;;;;;;;:::i;:::-;72648:23:::0;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;70687:45::-:0;;;;:::o;70523:35::-;;;;;;;;;;;;;;;-1:-1:-1;;70523:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58764:365;58953:41;58972:12;:10;:12::i;:::-;58986:7;58953:18;:41::i;:::-;58931:140;;;;-1:-1:-1;;;58931:140:0;;;;;;;:::i;:::-;59082:39;59096:4;59102:2;59106:7;59115:5;59082:13;:39::i;:::-;58764:365;;;;:::o;72346:124::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;72397:13:::1;:20:::0;;-1:-1:-1;;72397:20:0::1;72413:4;72397:20;::::0;;72433:29:::1;::::0;::::1;::::0;::::1;::::0;72449:12:::1;::::0;72433:29:::1;:::i;:::-;;;;;;;;72346:124::o:0;70754:43::-;70796:1;70754:43;:::o;54338:879::-;54456:13;54509:16;54517:7;54509;:16::i;:::-;54487:113;;;;-1:-1:-1;;;54487:113:0;;;;;;;:::i;:::-;54613:23;54639:19;;;:10;:19;;;;;;;;54613:45;;;;;;;;;;;-1:-1:-1;;54613:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;54639:19;;54613:45;;;54639:19;54613:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54669:18;54690:9;:7;:9::i;:::-;54669:30;;54781:4;54775:18;54797:1;54775:23;54771:72;;;-1:-1:-1;54822:9:0;-1:-1:-1;54815:16:0;;54771:72;54947:23;;:27;54943:108;;55022:4;55028:9;55005:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54991:48;;;;;;54943:108;55183:4;55189:18;:7;:16;:18::i;:::-;55166:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55152:57;;;;54338:879;;;:::o;72107:178::-;72163:13;72203;:11;:13::i;:::-;72197:3;:19;72189:58;;;;-1:-1:-1;;;72189:58:0;;;;;;;:::i;:::-;72265:12;72258:19;;;;;;;;;;;;;-1:-1:-1;;72258:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;72265:12;72258:19;;72265:12;72258:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72107:178;;;:::o;70806:38::-;70842:2;70806:38;:::o;57780:214::-;-1:-1:-1;;;;;57951:25:0;;;57922:4;57951:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57780:214::o;70853:32::-;;;;;;:::o;70104:281::-;69381:12;:10;:12::i;:::-;-1:-1:-1;;;;;69370:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;69370:23:0;;69362:68;;;;-1:-1:-1;;;69362:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;70207:22:0;::::1;70185:110;;;;-1:-1:-1::0;;;70185:110:0::1;;;;;;;:::i;:::-;70332:6;::::0;70311:38:::1;::::0;-1:-1:-1;;;;;70311:38:0;;::::1;::::0;70332:6:::1;::::0;70311:38:::1;::::0;70332:6:::1;::::0;70311:38:::1;70360:6;:17:::0;;-1:-1:-1;;70360:17:0::1;-1:-1:-1::0;;;;;70360:17:0;;;::::1;::::0;;;::::1;::::0;;70104:281::o;60676:127::-;60741:4;60765:30;:12;60787:7;60765:21;:30::i;667:106::-;755:10;667:106;:::o;67090:192::-;67165:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;67165:29:0;-1:-1:-1;;;;;67165:29:0;;;;;;;;:24;;67219:23;67165:24;67219:14;:23::i;:::-;-1:-1:-1;;;;;67210:46:0;;;;;;;;;;;67090:192;;:::o;46331:155::-;46427:7;46459:19;46467:3;46459:7;:19::i;60970:459::-;61099:4;61143:16;61151:7;61143;:16::i;:::-;61121:110;;;;-1:-1:-1;;;61121:110:0;;;;;;;:::i;:::-;61242:13;61258:23;61273:7;61258:14;:23::i;:::-;61242:39;;61311:5;-1:-1:-1;;;;;61300:16:0;:7;-1:-1:-1;;;;;61300:16:0;;:64;;;;61357:7;-1:-1:-1;;;;;61333:31:0;:20;61345:7;61333:11;:20::i;:::-;-1:-1:-1;;;;;61333:31:0;;61300:64;:120;;;;61381:39;61405:5;61412:7;61381:23;:39::i;:::-;61292:129;60970:459;-1:-1:-1;;;;60970:459:0:o;64281:670::-;64454:4;-1:-1:-1;;;;;64427:31:0;:23;64442:7;64427:14;:23::i;:::-;-1:-1:-1;;;;;64427:31:0;;64405:122;;;;-1:-1:-1;;;64405:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64564:16:0;;64556:65;;;;-1:-1:-1;;;64556:65:0;;;;;;;:::i;:::-;64634:39;64655:4;64661:2;64665:7;64634:20;:39::i;:::-;64738:29;64755:1;64759:7;64738:8;:29::i;:::-;-1:-1:-1;;;;;64780:19:0;;;;;;:13;:19;;;;;:35;;64807:7;64780:26;:35::i;:::-;-1:-1:-1;;;;;;64826:17:0;;;;;;:13;:17;;;;;:30;;64848:7;64826:21;:30::i;:::-;-1:-1:-1;64869:29:0;:12;64886:7;64895:2;64869:16;:29::i;:::-;;64935:7;64931:2;-1:-1:-1;;;;;64916:27:0;64925:4;-1:-1:-1;;;;;64916:27:0;;;;;;;;;;;64281:670;;;:::o;37773:169::-;37871:7;37911:22;37915:3;37927:5;37911:3;:22::i;46834:268::-;46941:7;;;;47006:22;47010:3;47022:5;47006:3;:22::i;:::-;46975:53;;;;-1:-1:-1;46834:268:0;-1:-1:-1;;;;;46834:268:0:o;65612:100::-;65685:19;;;;:8;;:19;;;;;:::i;48216:292::-;48357:7;48439:44;48444:3;48464;48470:12;48439:4;:44::i;:::-;48431:53;-1:-1:-1;48216:292:0;;;;;;:::o;14282:179::-;14340:7;14372:5;;;14396:6;;;;14388:46;;;;-1:-1:-1;;;14388:46:0;;;;;;;:::i;15161:220::-;15219:7;15243:6;15239:20;;-1:-1:-1;15258:1:0;15251:8;;15239:20;15282:5;;;15286:1;15282;:5;:1;15306:5;;;;;:10;15298:56;;;;-1:-1:-1;;;15298:56:0;;;;;;;:::i;61772:110::-;61848:26;61858:2;61862:7;61848:26;;;;;;;;;;;;:9;:26::i;60011:352::-;60168:28;60178:4;60184:2;60188:7;60168:9;:28::i;:::-;60229:48;60252:4;60258:2;60262:7;60271:5;60229:22;:48::i;:::-;60207:148;;;;-1:-1:-1;;;60207:148:0;;;;;;;:::i;48755:748::-;48811:13;49032:10;49028:53;;-1:-1:-1;49059:10:0;;;;;;;;;;;;;;;;;;;49028:53;49106:5;49091:12;49147:78;49154:9;;49147:78;;49180:8;;49211:2;49203:10;;;;49147:78;;;49235:19;49267:6;49257:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49257:17:0;-1:-1:-1;49329:5:0;;-1:-1:-1;49235:39:0;-1:-1:-1;;;49301:10:0;;49345:119;49352:9;;49345:119;;49422:2;49415:4;:9;49409:2;:16;49396:31;;49378:6;49385:7;;;;;;;49378:15;;;;;;;;;;;:49;;;;;;;;;;-1:-1:-1;49450:2:0;49442:10;;;;49345:119;;;-1:-1:-1;49488:6:0;48755:748;-1:-1:-1;;;;48755:748:0:o;46060:183::-;46171:4;46200:35;46210:3;46230;46200:9;:35::i;42676:110::-;42759:19;;42676:110::o;36795:160::-;36883:4;36912:35;36920:3;36940:5;36912:7;:35::i;36488:131::-;36555:4;36579:32;36584:3;36604:5;36579:4;:32::i;45426:219::-;45549:4;45573:64;45578:3;45598;-1:-1:-1;;;;;45612:23:0;;45573:4;:64::i;32439:273::-;32580:18;;32533:7;;32580:26;-1:-1:-1;32558:110:0;;;;-1:-1:-1;;;32558:110:0;;;;;;;:::i;:::-;32686:3;:11;;32698:5;32686:18;;;;;;;;;;;;;;;;32679:25;;32439:273;;;;:::o;43151:348::-;43301:19;;43245:7;;;;43301:27;-1:-1:-1;43279:111:0;;;;-1:-1:-1;;;43279:111:0;;;;;;;:::i;:::-;43403:22;43428:3;:12;;43441:5;43428:19;;;;;;;;;;;;;;;;;;43403:44;;43466:5;:10;;;43478:5;:12;;;43458:33;;;;;43151:348;;;;;:::o;44749:353::-;44877:7;44916:17;;;:12;;;:17;;;;;;44967:12;44952:13;44944:36;;;;-1:-1:-1;;;44944:36:0;;;;;;;;:::i;:::-;;45034:3;:12;;45058:1;45047:8;:12;45034:26;;;;;;;;;;;;;;;;;;:33;;;45027:40;;;44749:353;;;;;:::o;62109:321::-;62239:18;62245:2;62249:7;62239:5;:18::i;:::-;62290:54;62321:1;62325:2;62329:7;62338:5;62290:22;:54::i;:::-;62268:154;;;;-1:-1:-1;;;62268:154:0;;;;;;;:::i;66277:694::-;66432:4;66454:15;:2;-1:-1:-1;;;;;66454:13:0;;:15::i;:::-;66449:60;;-1:-1:-1;66493:4:0;66486:11;;66449:60;66519:23;66545:313;-1:-1:-1;;;66680:12:0;:10;:12::i;:::-;66711:4;66734:7;66760:5;66575:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66545:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;66545:15:0;;;:313;:15;:313::i;:::-;66519:339;;66869:13;66896:10;66885:32;;;;;;;;;;;;:::i;:::-;66936:26;;-1:-1:-1;;;66936:26:0;;-1:-1:-1;;;66277:694:0;;;;;;:::o;42424:157::-;42522:4;42551:17;;;:12;;;;;:17;;;;;;:22;;;42424:157::o;30086:1557::-;30152:4;30291:19;;;:12;;;:19;;;;;;30327:15;;30323:1313;;30775:18;;-1:-1:-1;;30726:14:0;;;;30775:22;;;;30702:21;;30775:3;;:22;;31062;;;;;;;;;;;;;;31042:42;;31208:9;31179:3;:11;;31191:13;31179:26;;;;;;;;;;;;;;;;;;;:38;;;;31285:23;;;31327:1;31285:12;;;:23;;;;;;31311:17;;;31285:43;;31437:17;;31285:3;;31437:17;;;;;;;;;;;;;;;;;;;;;;31532:3;:12;;:19;31545:5;31532:19;;;;;;;;;;;31525:26;;;31575:4;31568:11;;;;;;;;30323:1313;31619:5;31612:12;;;;;29496:414;29559:4;29581:21;29591:3;29596:5;29581:9;:21::i;:::-;29576:327;;-1:-1:-1;29619:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;29802:18;;29780:19;;;:12;;;:19;;;;;;:40;;;;29835:11;;29576:327;-1:-1:-1;29886:5:0;29879:12;;39866:737;39976:4;40111:17;;;:12;;;:17;;;;;;40145:13;40141:455;;-1:-1:-1;;40243:36:0;;;;;;;;;;;;;;;;;;40225:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;40438:19;;40418:17;;;:12;;;:17;;;;;;;:39;40472:11;;40141:455;40552:5;40516:3;:12;;40540:1;40529:8;:12;40516:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;40579:5;40572:12;;;;;62766:404;-1:-1:-1;;;;;62846:16:0;;62838:61;;;;-1:-1:-1;;;62838:61:0;;;;;;;:::i;:::-;62919:16;62927:7;62919;:16::i;:::-;62918:17;62910:58;;;;-1:-1:-1;;;62910:58:0;;;;;;;:::i;:::-;62981:45;63010:1;63014:2;63018:7;62981:20;:45::i;:::-;-1:-1:-1;;;;;63039:17:0;;;;;;:13;:17;;;;;:30;;63061:7;63039:21;:30::i;:::-;-1:-1:-1;63082:29:0;:12;63099:7;63108:2;63082:16;:29::i;:::-;-1:-1:-1;63129:33:0;;63154:7;;-1:-1:-1;;;;;63129:33:0;;;63146:1;;63129:33;;63146:1;;63129:33;62766:404;;:::o;19821:444::-;20201:20;20249:8;;;19821:444::o;22858:229::-;22995:12;23027:52;23049:6;23057:4;23063:1;23066:12;22995;24406:18;24417:6;24406:10;:18::i;:::-;24398:60;;;;-1:-1:-1;;;24398:60:0;;;;;;;:::i;:::-;24532:12;24546:23;24573:6;-1:-1:-1;;;;;24573:11:0;24592:5;24613:4;24573:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24531:97;;;;24646:52;24664:7;24673:10;24685:12;24646:17;:52::i;:::-;24639:59;24074:632;-1:-1:-1;;;;;;;24074:632:0:o;26997:777::-;27147:12;27176:7;27172:595;;;-1:-1:-1;27207:10:0;27200:17;;27172:595;27321:17;;:21;27317:439;;27584:10;27578:17;27645:15;27632:10;27628:2;27624:19;27617:44;27532:148;27727:12;27720:20;;-1:-1:-1;;;27720:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:589:1;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;270:2;247:17;;-1:-1:-1;;243:31:1;231:44;;277:4;227:55;297:18;;;317:22;;;294:46;291:2;;;343:9;291:2;370;363:22;418;;;403:6;-1:-1:-1;403:6:1;455:16;;;452:25;-1:-1:-1;449:2:1;;;490:1;487;480:12;449:2;540:6;535:3;528:4;520:6;516:17;503:44;595:1;588:4;579:6;571;567:19;563:30;556:41;;;90:513;;;;;:::o;608:198::-;678:20;;-1:-1:-1;;;;;727:54:1;;717:65;;707:2;;796:1;793;786:12;811:198;;923:2;911:9;902:7;898:23;894:32;891:2;;;944:6;936;929:22;891:2;972:31;993:9;972:31;:::i;1014:274::-;;;1143:2;1131:9;1122:7;1118:23;1114:32;1111:2;;;1164:6;1156;1149:22;1111:2;1192:31;1213:9;1192:31;:::i;:::-;1182:41;;1242:40;1278:2;1267:9;1263:18;1242:40;:::i;:::-;1232:50;;1101:187;;;;;:::o;1293:342::-;;;;1439:2;1427:9;1418:7;1414:23;1410:32;1407:2;;;1460:6;1452;1445:22;1407:2;1488:31;1509:9;1488:31;:::i;:::-;1478:41;;1538:40;1574:2;1563:9;1559:18;1538:40;:::i;:::-;1528:50;;1625:2;1614:9;1610:18;1597:32;1587:42;;1397:238;;;;;:::o;1640:702::-;;;;;1812:3;1800:9;1791:7;1787:23;1783:33;1780:2;;;1834:6;1826;1819:22;1780:2;1862:31;1883:9;1862:31;:::i;:::-;1852:41;;1912:40;1948:2;1937:9;1933:18;1912:40;:::i;:::-;1902:50;;1999:2;1988:9;1984:18;1971:32;1961:42;;2054:2;2043:9;2039:18;2026:32;2081:18;2073:6;2070:30;2067:2;;;2118:6;2110;2103:22;2067:2;2146:22;;2199:4;2191:13;;2187:27;-1:-1:-1;2177:2:1;;2233:6;2225;2218:22;2177:2;2261:75;2328:7;2323:2;2310:16;2305:2;2301;2297:11;2261:75;:::i;:::-;2251:85;;;1770:572;;;;;;;:::o;2347:369::-;;;2473:2;2461:9;2452:7;2448:23;2444:32;2441:2;;;2494:6;2486;2479:22;2441:2;2522:31;2543:9;2522:31;:::i;:::-;2512:41;;2603:2;2592:9;2588:18;2575:32;2650:5;2643:13;2636:21;2629:5;2626:32;2616:2;;2677:6;2669;2662:22;2616:2;2705:5;2695:15;;;2431:285;;;;;:::o;2721:266::-;;;2850:2;2838:9;2829:7;2825:23;2821:32;2818:2;;;2871:6;2863;2856:22;2818:2;2899:31;2920:9;2899:31;:::i;:::-;2889:41;2977:2;2962:18;;;;2949:32;;-1:-1:-1;;;2808:179:1:o;2992:257::-;;3103:2;3091:9;3082:7;3078:23;3074:32;3071:2;;;3124:6;3116;3109:22;3071:2;3168:9;3155:23;3187:32;3213:5;3187:32;:::i;3254:261::-;;3376:2;3364:9;3355:7;3351:23;3347:32;3344:2;;;3397:6;3389;3382:22;3344:2;3434:9;3428:16;3453:32;3479:5;3453:32;:::i;3520:482::-;;3642:2;3630:9;3621:7;3617:23;3613:32;3610:2;;;3663:6;3655;3648:22;3610:2;3708:9;3695:23;3741:18;3733:6;3730:30;3727:2;;;3778:6;3770;3763:22;3727:2;3806:22;;3859:4;3851:13;;3847:27;-1:-1:-1;3837:2:1;;3893:6;3885;3878:22;3837:2;3921:75;3988:7;3983:2;3970:16;3965:2;3961;3957:11;3921:75;:::i;4007:190::-;;4119:2;4107:9;4098:7;4094:23;4090:32;4087:2;;;4140:6;4132;4125:22;4087:2;-1:-1:-1;4168:23:1;;4077:120;-1:-1:-1;4077:120:1:o;4202:259::-;;4283:5;4277:12;4310:6;4305:3;4298:19;4326:63;4382:6;4375:4;4370:3;4366:14;4359:4;4352:5;4348:16;4326:63;:::i;:::-;4443:2;4422:15;-1:-1:-1;;4418:29:1;4409:39;;;;4450:4;4405:50;;4253:208;-1:-1:-1;;4253:208:1:o;4466:274::-;;4633:6;4627:13;4649:53;4695:6;4690:3;4683:4;4675:6;4671:17;4649:53;:::i;:::-;4718:16;;;;;4603:137;-1:-1:-1;;4603:137:1:o;4745:470::-;;4962:6;4956:13;4978:53;5024:6;5019:3;5012:4;5004:6;5000:17;4978:53;:::i;:::-;5094:13;;5053:16;;;;5116:57;5094:13;5053:16;5150:4;5138:17;;5116:57;:::i;:::-;5189:20;;4932:283;-1:-1:-1;;;;4932:283:1:o;5220:226::-;-1:-1:-1;;;;;5384:55:1;;;;5366:74;;5354:2;5339:18;;5321:125::o;5451:529::-;;-1:-1:-1;;;;;5771:2:1;5763:6;5759:15;5748:9;5741:34;5823:2;5815:6;5811:15;5806:2;5795:9;5791:18;5784:43;;5863:6;5858:2;5847:9;5843:18;5836:34;5906:3;5901:2;5890:9;5886:18;5879:31;5927:47;5969:3;5958:9;5954:19;5946:6;5927:47;:::i;:::-;5919:55;5670:310;-1:-1:-1;;;;;;5670:310:1:o;5985:635::-;6156:2;6208:21;;;6278:13;;6181:18;;;6300:22;;;5985:635;;6156:2;6379:15;;;;6353:2;6338:18;;;5985:635;6425:169;6439:6;6436:1;6433:13;6425:169;;;6500:13;;6488:26;;6569:15;;;;6534:12;;;;6461:1;6454:9;6425:169;;;-1:-1:-1;6611:3:1;;6136:484;-1:-1:-1;;;;;;6136:484:1:o;6625:187::-;6790:14;;6783:22;6765:41;;6753:2;6738:18;;6720:92::o;6817:221::-;;6966:2;6955:9;6948:21;6986:46;7028:2;7017:9;7013:18;7005:6;6986:46;:::i;7043:979::-;;7181:2;7221;7210:9;7206:18;7251:2;7240:9;7233:21;7274:4;7310:6;7304:13;7336:1;7368:2;7357:9;7353:18;7385:1;7380:178;;;;7572:1;7567:429;;;;7346:650;;7380:178;7435:1;7420:17;;7439:4;7416:28;7401:44;;-1:-1:-1;;7485:24:1;;7480:2;7465:18;;7458:52;7545:2;7530:18;;;-1:-1:-1;7380:178:1;;7567:429;7617:1;7606:9;7602:17;7647:6;7639;7632:22;7682:39;7714:6;7682:39;:::i;:::-;7743:4;7760:180;7774:6;7771:1;7768:13;7760:180;;;7867:14;;7843:17;;;7862:2;7839:26;7832:50;7910:16;;;;7789:10;;7760:180;;;7964:17;;7983:2;7960:26;;-1:-1:-1;;;7346:650:1;-1:-1:-1;8013:3:1;;7161:861;-1:-1:-1;;;;;;;7161:861:1:o;8027:398::-;8229:2;8211:21;;;8268:2;8248:18;;;8241:30;8307:34;8302:2;8287:18;;8280:62;-1:-1:-1;;;8373:2:1;8358:18;;8351:32;8415:3;8400:19;;8201:224::o;8430:356::-;8632:2;8614:21;;;8651:18;;;8644:30;8710:34;8705:2;8690:18;;8683:62;8777:2;8762:18;;8604:182::o;8791:414::-;8993:2;8975:21;;;9032:2;9012:18;;;9005:30;9071:34;9066:2;9051:18;;9044:62;9142:20;9137:2;9122:18;;9115:48;9195:3;9180:19;;8965:240::o;9210:402::-;9412:2;9394:21;;;9451:2;9431:18;;;9424:30;9490:34;9485:2;9470:18;;9463:62;9561:8;9556:2;9541:18;;9534:36;9602:3;9587:19;;9384:228::o;9617:352::-;9819:2;9801:21;;;9858:2;9838:18;;;9831:30;9897;9892:2;9877:18;;9870:58;9960:2;9945:18;;9791:178::o;9974:405::-;10176:2;10158:21;;;10215:2;10195:18;;;10188:30;10254:34;10249:2;10234:18;;10227:62;10325:11;10320:2;10305:18;;10298:39;10369:3;10354:19;;10148:231::o;10384:351::-;10586:2;10568:21;;;10625:2;10605:18;;;10598:30;10664:29;10659:2;10644:18;;10637:57;10726:2;10711:18;;10558:177::o;10740:400::-;10942:2;10924:21;;;10981:2;10961:18;;;10954:30;11020:34;11015:2;11000:18;;10993:62;11091:6;11086:2;11071:18;;11064:34;11130:3;11115:19;;10914:226::o;11145:349::-;11347:2;11329:21;;;11386:2;11366:18;;;11359:30;11425:27;11420:2;11405:18;;11398:55;11485:2;11470:18;;11319:175::o;11499:355::-;11701:2;11683:21;;;11740:2;11720:18;;;11713:30;11779:33;11774:2;11759:18;;11752:61;11845:2;11830:18;;11673:181::o;12266:408::-;12468:2;12450:21;;;12507:2;12487:18;;;12480:30;12546:34;12541:2;12526:18;;12519:62;-1:-1:-1;;;12612:2:1;12597:18;;12590:42;12664:3;12649:19;;12440:234::o;12679:397::-;12881:2;12863:21;;;12920:2;12900:18;;;12893:30;12959:34;12954:2;12939:18;;12932:62;13030:3;13025:2;13010:18;;13003:31;13066:3;13051:19;;12853:223::o;13081:420::-;13283:2;13265:21;;;13322:2;13302:18;;;13295:30;13361:34;13356:2;13341:18;;13334:62;13432:26;13427:2;13412:18;;13405:54;13491:3;13476:19;;13255:246::o;13506:406::-;13708:2;13690:21;;;13747:2;13727:18;;;13720:30;13786:34;13781:2;13766:18;;13759:62;13857:12;13852:2;13837:18;;13830:40;13902:3;13887:19;;13680:232::o;13917:398::-;14119:2;14101:21;;;14158:2;14138:18;;;14131:30;14197:34;14192:2;14177:18;;14170:62;-1:-1:-1;;;14263:2:1;14248:18;;14241:32;14305:3;14290:19;;14091:224::o;14320:356::-;14522:2;14504:21;;;14541:18;;;14534:30;14600:34;14595:2;14580:18;;14573:62;14667:2;14652:18;;14494:182::o;14681:397::-;14883:2;14865:21;;;14922:2;14902:18;;;14895:30;14961:34;14956:2;14941:18;;14934:62;15032:3;15027:2;15012:18;;15005:31;15068:3;15053:19;;14855:223::o;15083:408::-;15285:2;15267:21;;;15324:2;15304:18;;;15297:30;15363:34;15358:2;15343:18;;15336:62;-1:-1:-1;;;15429:2:1;15414:18;;15407:42;15481:3;15466:19;;15257:234::o;15496:356::-;15698:2;15680:21;;;15717:18;;;15710:30;15776:34;15771:2;15756:18;;15749:62;15843:2;15828:18;;15670:182::o;15857:405::-;16059:2;16041:21;;;16098:2;16078:18;;;16071:30;16137:34;16132:2;16117:18;;16110:62;16208:11;16203:2;16188:18;;16181:39;16252:3;16237:19;;16031:231::o;16267:411::-;16469:2;16451:21;;;16508:2;16488:18;;;16481:30;16547:34;16542:2;16527:18;;16520:62;16618:17;16613:2;16598:18;;16591:45;16668:3;16653:19;;16441:237::o;16683:350::-;16885:2;16867:21;;;16924:2;16904:18;;;16897:30;16963:28;16958:2;16943:18;;16936:56;17024:2;17009:18;;16857:176::o;17038:397::-;17240:2;17222:21;;;17279:2;17259:18;;;17252:30;17318:34;17313:2;17298:18;;17291:62;17389:3;17384:2;17369:18;;17362:31;17425:3;17410:19;;17212:223::o;17440:346::-;17642:2;17624:21;;;17681:2;17661:18;;;17654:30;17720:24;17715:2;17700:18;;17693:52;17777:2;17762:18;;17614:172::o;17791:413::-;17993:2;17975:21;;;18032:2;18012:18;;;18005:30;18071:34;18066:2;18051:18;;18044:62;18142:19;18137:2;18122:18;;18115:47;18194:3;18179:19;;17965:239::o;18209:353::-;18411:2;18393:21;;;18450:2;18430:18;;;18423:30;18489:31;18484:2;18469:18;;18462:59;18553:2;18538:18;;18383:179::o;18567:177::-;18713:25;;;18701:2;18686:18;;18668:76::o;18749:129::-;;18817:17;;;18867:4;18851:21;;;18807:71::o;18883:258::-;18955:1;18965:113;18979:6;18976:1;18973:13;18965:113;;;19055:11;;;19049:18;19036:11;;;19029:39;19001:2;18994:10;18965:113;;;19096:6;19093:1;19090:13;19087:2;;;-1:-1:-1;;19131:1:1;19113:16;;19106:27;18936:205::o;19146:179::-;19233:66;19226:5;19222:78;19215:5;19212:89;19202:2;;19315:1;19312;19305:12

Swarm Source

ipfs://ae9b181041726cc3b200edfa948f84dd25305c2c84fa87823cfd713c83082bea
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.