ETH Price: $3,776.53 (+1.13%)
Gas: 4 Gwei

Token

Devious Demon Dudes (DEMON)
 

Overview

Max Total Supply

2,834 DEMON

Holders

781

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cubantoast.eth
Balance
4 DEMON
0xbd9a54c0cc23e75029116558d5bfc8e234743b0b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Devious Demon Dudes is a collection of 6666 unique Demon NFTs.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Demons

Compiler Version
v0.7.3+commit.9bfce1f6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-06
*/

// Sources flattened with hardhat v2.2.0 https://hardhat.org

// File @openzeppelin/contracts/introspection/[email protected]

// SPDX-License-Identifier: MIT

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/introspection/[email protected]


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 () internal {
        // 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/utils/[email protected]


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/token/ERC721/[email protected]


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/[email protected]


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/[email protected]


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/[email protected]


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/math/[email protected]


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/[email protected]


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/[email protected]


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/[email protected]


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/[email protected]


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/[email protected]


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_) public {
        _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/[email protected]


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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity >=0.6.0 <0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the {SafeMath}
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        // The {SafeMath} overflow check can be skipped here, see the comment at the top
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}


// File contracts/Demons.sol

pragma solidity ^0.7.3;






contract Demons is Ownable, ERC165, ERC721 {
    // Libraries
    using Counters for Counters.Counter;
    using Strings for uint256;
    using SafeMath for uint256;

    // Private fields
    Counters.Counter private _tokenIds;
    string private ipfsUri = "https://ipfs.io/ipfs/";

    // Public constants
    uint256 public constant MAX_SUPPLY = 6666;

    // Public fields
    bool public open = false;

    string public folder = "";

    string public provenance = "";

    string public provenanceURI = "";

    bool public locked = false;

    modifier notLocked() {
        require(!locked, "Contract has been locked");
        _;
    }

    constructor() ERC721("Devious Demon Dudes", "DEMON") {
        _setBaseURI(
            "https://us-central1-demon-5183b.cloudfunctions.net/app/v1/"
        );
    }

    fallback() external payable {
        uint256 quantity = getQuantityFromValue(msg.value);
        mint(quantity);
    }

    // Public methods
    function mint(uint256 quantity) public payable {
        require(open, "Drop not open yet");
        require(quantity > 0, "Quantity must be at least 1");

        // Limit buys
        if (quantity > 66) {
            quantity = 66;
        }

        // Limit buys that exceed MAX_SUPPLY
        if (quantity.add(totalSupply()) > MAX_SUPPLY) {
            quantity = MAX_SUPPLY.sub(totalSupply());
        }

        uint256 price = getPrice(quantity);

        // Ensure enough ETH
        require(msg.value >= price, "Not enough ETH sent");

        for (uint256 i = 0; i < quantity; i++) {
            _mintInternal(msg.sender);
        }

        // Return any remaining ether after the buy
        uint256 remaining = msg.value.sub(price);

        if (remaining > 0) {
            (bool success, ) = msg.sender.call{value: remaining}("");
            require(success);
        }
    }

    function getQuantityFromValue(uint256 value) public view returns (uint256) {
        return value.div(0.0666 ether);
    }

    function getPrice(uint256 quantity) public view returns (uint256) {
        require(quantity <= MAX_SUPPLY);
        return quantity.mul(0.0666 ether);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            tokenId > 0 && tokenId <= totalSupply(),
            "URI query for nonexistent token"
        );
        // Construct IPFS URI or fallback
        if (bytes(folder).length > 0) {
            return
                string(
                    abi.encodePacked(ipfsUri, folder, "/", tokenId.toString())
                );
        }
        // Fallback to centralised URI
        return string(abi.encodePacked(baseURI(), tokenId.toString()));
    }

    // Admin methods
    function ownerMint(uint256 quantity) public onlyOwner {
        require(!open, "Owner cannot mint after sale opens");

        for (uint256 i = 0; i < quantity; i++) {
            _mintInternal(msg.sender);
        }
    }

    function openSale() external onlyOwner {
        open = true;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner notLocked {
        _setBaseURI(newBaseURI);
    }

    function setIpfsURI(string memory _ipfsUri) external onlyOwner notLocked {
        ipfsUri = _ipfsUri;
    }

    function setFolder(string memory _folder) external onlyOwner notLocked {
        folder = _folder;
    }

    function setProvenanceURI(string memory _provenanceURI)
        external
        onlyOwner
        notLocked
    {
        provenanceURI = _provenanceURI;
    }

    function setProvenance(string memory _provenance)
        external
        onlyOwner
        notLocked
    {
        provenance = _provenance;
    }

    function lock() external onlyOwner {
        locked = true;
    }

    function withdraw() public {
        uint256 bal = address(this).balance;

        uint256 twentyfive = bal.mul(25).div(100);
        payable(address(0xEC36697c3C8C8E385b37e17Df40dBCbE2dbd9ffC)).call{
            value: twentyfive
        }("");

        uint256 nine = bal.mul(9).div(100);
        payable(address(0xa38beF7Bf987ebb22D0D4eCAe61034DDc34Da283)).call{
            value: nine
        }("");

        uint256 eight1 = bal.mul(8).div(100);
        payable(address(0xc32A0F03E5dCe30Ce058f45CE34125Fe35a75f4E)).call{
            value: eight1
        }("");

        uint256 eight2 = bal.mul(8).div(100);
        payable(address(0x6609DFA1cb75d74f4fF39c8a5057bD111FBA5B22)).call{
            value: eight2
        }("");

        uint256 five = bal.mul(5).div(100);
        payable(address(0xacD95553B128b738012542FF9be4e4600761765e)).call{
            value: five
        }("");

        uint256 two1 = bal.mul(2).div(100);
        payable(address(0xfAa45d2fC42bA85706d09aAaa34AF8ac172ea18B)).call{
            value: two1
        }("");

        uint256 two2 = bal.mul(2).div(100);
        payable(address(0x95270f71252AF1F92E54c777237091F9382Ca5D8)).call{
            value: two2
        }("");

        uint256 pointsixtyeight = bal.mul(68).div(10000);
        payable(address(0x488CB7D6F7596ACcf0544913Aa9e0d0f38F315F4)).call{
            value: pointsixtyeight
        }("");

        uint256 pointzerofiveseven = bal.mul(57).div(100000);
        payable(address(0x846Fc2E54474805BB8bf06A39830fBBb1811C17D)).call{
            value: pointzerofiveseven
        }("");

        uint256 twentypointtwosixthree = bal.mul(20263).div(100000);
        payable(address(0x9361931dceaCb2795B8fA0481CeCf86055505dCE)).call{
            value: twentypointtwosixthree
        }("");

        uint256 ten = bal.mul(10).div(100);
        payable(address(0x3761F439D9416750360D9EEE241786BCEB1e0865)).call{
            value: ten
        }("");

        uint256 remaining = address(this).balance;
        payable(address(0x789e3C17c932b9d8908189aEFc76c52C114e6e45)).call{
            value: remaining
        }("");
    }

    function emergencyWithdraw() external onlyOwner {
        (bool success, ) =
            payable(owner()).call{value: address(this).balance}("");
        require(success);
    }

    function reserveTokens() public onlyOwner {
        for (uint256 i = 0; i < 66; i++) {
            _mintInternal(msg.sender);
        }
    }

    // Private Methods
    function _mintInternal(address owner) private {
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        _mint(owner, newItemId);
    }
}

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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"folder","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"getQuantityFromValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"open","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_folder","type":"string"}],"name":"setFolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_ipfsUri","type":"string"}],"name":"setIpfsURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceURI","type":"string"}],"name":"setProvenanceURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"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"}]

60806040526040518060400160405280601581526020017f68747470733a2f2f697066732e696f2f697066732f0000000000000000000000815250600c9080519060200190620000519291906200041b565b506000600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e9080519060200190620000949291906200041b565b5060405180602001604052806000815250600f9080519060200190620000bc9291906200041b565b506040518060200160405280600081525060109080519060200190620000e49291906200041b565b506000601160006101000a81548160ff0219169083151502179055503480156200010d57600080fd5b506040518060400160405280601381526020017f446576696f75732044656d6f6e204475646573000000000000000000000000008152506040518060400160405280600581526020017f44454d4f4e00000000000000000000000000000000000000000000000000000081525060006200018c620002ee60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002426301ffc9a760e01b620002f660201b60201c565b81600790805190602001906200025a9291906200041b565b508060089080519060200190620002739291906200041b565b506200028c6380ac58cd60e01b620002f660201b60201c565b620002a4635b5e139f60e01b620002f660201b60201c565b620002bc63780e9d6360e01b620002f660201b60201c565b5050620002e86040518060600160405280603a815260200162005708603a9139620003ff60201b60201c565b620004c1565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141562000393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b80600a9080519060200190620004179291906200041b565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045e57805160ff19168380011785556200048f565b828001600101855582156200048f579182015b828111156200048e57825182559160200191906001019062000471565b5b5090506200049e9190620004a2565b5090565b5b80821115620004bd576000816000905550600101620004a3565b5090565b61523780620004d16000396000f3fe60806040526004361061023f5760003560e01c806370a082311161012e578063c87b56dd116100ab578063f19e75d41161006f578063f19e75d414611134578063f2fde38b1461116f578063f83d08ba146111c0578063fcfff16f146111d7578063ffe630b51461120457610240565b8063c87b56dd14610f66578063cf3090121461101a578063db2e21bc14611047578063e75722301461105e578063e985e9c5146110ad57610240565b8063a00501a4116100f2578063a00501a414610c71578063a0712d6814610d01578063a22cb46514610d2f578063a9373d9414610d8c578063b88d4fde14610e5457610240565b806370a0823114610a5c57806371356d4714610ac1578063715018a614610b895780638da5cb5b14610ba057806395d89b4114610be157610240565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146107c057806355f804b31461080f5780636352211e146108d757806365477dc01461093c5780636c0360eb146109cc57610240565b80632f745c59146105cc578063316907341461063b57806332cb6b0c146107035780633ccfd60b1461072e57806342842e0e1461074557610240565b8063167ff46f11610203578063167ff46f146104a957806318160ddd146104c057806323b872dd146104eb57806327ac36c41461056657806329ed3f741461057d57610240565b806301ffc9a71461025957806306fdde03146102c9578063081812fc14610359578063095ea7b3146103be5780630f7309e81461041957610240565b5b600061024b346112cc565b9050610256816112ef565b50005b34801561026557600080fd5b506102b16004803603602081101561027c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611576565b60405180821515815260200191505060405180910390f35b3480156102d557600080fd5b506102de6115de565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561031e578082015181840152602081019050610303565b50505050905090810190601f16801561034b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036557600080fd5b506103926004803603602081101561037c57600080fd5b8101908080359060200190929190505050611680565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ca57600080fd5b50610417600480360360408110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061171b565b005b34801561042557600080fd5b5061042e61185f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561046e578082015181840152602081019050610453565b50505050905090810190601f16801561049b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104b557600080fd5b506104be6118fd565b005b3480156104cc57600080fd5b506104d56119c9565b6040518082815260200191505060405180910390f35b3480156104f757600080fd5b506105646004803603606081101561050e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119da565b005b34801561057257600080fd5b5061057b611a50565b005b34801561058957600080fd5b506105b6600480360360208110156105a057600080fd5b81019080803590602001909291905050506112cc565b6040518082815260200191505060405180910390f35b3480156105d857600080fd5b50610625600480360360408110156105ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b24565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506107016004803603602081101561065e57600080fd5b810190808035906020019064010000000081111561067b57600080fd5b82018360208201111561068d57600080fd5b803590602001918460018302840111640100000000831117156106af57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b7f565b005b34801561070f57600080fd5b50610718611ccb565b6040518082815260200191505060405180910390f35b34801561073a57600080fd5b50610743611cd1565b005b34801561075157600080fd5b506107be6004803603606081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612481565b005b3480156107cc57600080fd5b506107f9600480360360208110156107e357600080fd5b81019080803590602001909291905050506124a1565b6040518082815260200191505060405180910390f35b34801561081b57600080fd5b506108d56004803603602081101561083257600080fd5b810190808035906020019064010000000081111561084f57600080fd5b82018360208201111561086157600080fd5b8035906020019184600183028401116401000000008311171561088357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506124c4565b005b3480156108e357600080fd5b50610910600480360360208110156108fa57600080fd5b8101908080359060200190929190505050612602565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561094857600080fd5b50610951612639565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610991578082015181840152602081019050610976565b50505050905090810190601f1680156109be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109d857600080fd5b506109e16126d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a21578082015181840152602081019050610a06565b50505050905090810190601f168015610a4e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a6857600080fd5b50610aab60048036036020811015610a7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612779565b6040518082815260200191505060405180910390f35b348015610acd57600080fd5b50610b8760048036036020811015610ae457600080fd5b8101908080359060200190640100000000811115610b0157600080fd5b820183602082011115610b1357600080fd5b80359060200191846001830284011164010000000083111715610b3557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061284e565b005b348015610b9557600080fd5b50610b9e61299a565b005b348015610bac57600080fd5b50610bb5612b07565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bed57600080fd5b50610bf6612b30565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c36578082015181840152602081019050610c1b565b50505050905090810190601f168015610c635780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c7d57600080fd5b50610c86612bd2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cc6578082015181840152602081019050610cab565b50505050905090810190601f168015610cf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d2d60048036036020811015610d1757600080fd5b81019080803590602001909291905050506112ef565b005b348015610d3b57600080fd5b50610d8a60048036036040811015610d5257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612c70565b005b348015610d9857600080fd5b50610e5260048036036020811015610daf57600080fd5b8101908080359060200190640100000000811115610dcc57600080fd5b820183602082011115610dde57600080fd5b80359060200191846001830284011164010000000083111715610e0057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e26565b005b348015610e6057600080fd5b50610f6460048036036080811015610e7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ede57600080fd5b820183602082011115610ef057600080fd5b80359060200191846001830284011164010000000083111715610f1257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612f72565b005b348015610f7257600080fd5b50610f9f60048036036020811015610f8957600080fd5b8101908080359060200190929190505050612fea565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fdf578082015181840152602081019050610fc4565b50505050905090810190601f16801561100c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561102657600080fd5b5061102f6132c3565b60405180821515815260200191505060405180910390f35b34801561105357600080fd5b5061105c6132d6565b005b34801561106a57600080fd5b506110976004803603602081101561108157600080fd5b8101908080359060200190929190505050613402565b6040518082815260200191505060405180910390f35b3480156110b957600080fd5b5061111c600480360360408110156110d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613434565b60405180821515815260200191505060405180910390f35b34801561114057600080fd5b5061116d6004803603602081101561115757600080fd5b81019080803590602001909291905050506134c8565b005b34801561117b57600080fd5b506111be6004803603602081101561119257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613602565b005b3480156111cc57600080fd5b506111d56137f4565b005b3480156111e357600080fd5b506111ec6138c0565b60405180821515815260200191505060405180910390f35b34801561121057600080fd5b506112ca6004803603602081101561122757600080fd5b810190808035906020019064010000000081111561124457600080fd5b82018360208201111561125657600080fd5b8035906020019184600183028401116401000000008311171561127857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506138d3565b005b60006112e866ec9c58de0a800083613a1f90919063ffffffff16565b9050919050565b600d60009054906101000a900460ff16611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f44726f70206e6f74206f70656e2079657400000000000000000000000000000081525060200191505060405180910390fd5b600081116113e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5175616e74697479206d757374206265206174206c656173742031000000000081525060200191505060405180910390fd5b60428111156113f557604290505b611a0a6114126114036119c9565b83613aa890919063ffffffff16565b1115611437576114346114236119c9565b611a0a613b3090919063ffffffff16565b90505b600061144282613402565b9050803410156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4e6f7420656e6f756768204554482073656e740000000000000000000000000081525060200191505060405180910390fd5b60005b828110156114db576114ce33613bb3565b80806001019150506114bd565b5060006114f18234613b3090919063ffffffff16565b905060008111156115715760003373ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d806000811461155c576040519150601f19603f3d011682016040523d82523d6000602084013e611561565b606091505b505090508061156f57600080fd5b505b505050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116765780601f1061164b57610100808354040283529160200191611676565b820191906000526020600020905b81548152906001019060200180831161165957829003601f168201915b5050505050905090565b600061168b82613bd9565b6116e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615139602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061172682612602565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061518e6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166117cc613bf6565b73ffffffffffffffffffffffffffffffffffffffff1614806117fb57506117fa816117f5613bf6565b613434565b5b611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061506b6038913960400191505060405180910390fd5b61185a8383613bfe565b505050565b600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118f55780601f106118ca576101008083540402835291602001916118f5565b820191906000526020600020905b8154815290600101906020018083116118d857829003601f168201915b505050505081565b611905613bf6565b73ffffffffffffffffffffffffffffffffffffffff16611923612b07565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b60006119d56003613cb7565b905090565b6119eb6119e5613bf6565b82613ccc565b611a40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151d16031913960400191505060405180910390fd5b611a4b838383613dc0565b505050565b611a58613bf6565b73ffffffffffffffffffffffffffffffffffffffff16611a76612b07565b73ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b6042811015611b2157611b1433613bb3565b8080600101915050611b02565b50565b6000611b7782600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061400390919063ffffffff16565b905092915050565b611b87613bf6565b73ffffffffffffffffffffffffffffffffffffffff16611ba5612b07565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615611cb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600c9080519060200190611cc7929190614edd565b5050565b611a0a81565b60004790506000611cff6064611cf160198561401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073ec36697c3c8c8e385b37e17df40dbcbe2dbd9ffc73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611d73576040519150601f19603f3d011682016040523d82523d6000602084013e611d78565b606091505b5050506000611da46064611d9660098661401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073a38bef7bf987ebb22d0d4ecae61034ddc34da28373ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611e18576040519150601f19603f3d011682016040523d82523d6000602084013e611e1d565b606091505b5050506000611e496064611e3b60088761401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073c32a0f03e5dce30ce058f45ce34125fe35a75f4e73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611ebd576040519150601f19603f3d011682016040523d82523d6000602084013e611ec2565b606091505b5050506000611eee6064611ee060088861401d90919063ffffffff16565b613a1f90919063ffffffff16565b9050736609dfa1cb75d74f4ff39c8a5057bd111fba5b2273ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611f62576040519150601f19603f3d011682016040523d82523d6000602084013e611f67565b606091505b5050506000611f936064611f8560058961401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073acd95553b128b738012542ff9be4e4600761765e73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612007576040519150601f19603f3d011682016040523d82523d6000602084013e61200c565b606091505b5050506000612038606461202a60028a61401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073faa45d2fc42ba85706d09aaaa34af8ac172ea18b73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d80600081146120ac576040519150601f19603f3d011682016040523d82523d6000602084013e6120b1565b606091505b50505060006120dd60646120cf60028b61401d90919063ffffffff16565b613a1f90919063ffffffff16565b90507395270f71252af1f92e54c777237091f9382ca5d873ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612151576040519150601f19603f3d011682016040523d82523d6000602084013e612156565b606091505b505050600061218361271061217560448c61401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073488cb7d6f7596accf0544913aa9e0d0f38f315f473ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d80600081146121f7576040519150601f19603f3d011682016040523d82523d6000602084013e6121fc565b606091505b505050600061222a620186a061221c60398d61401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073846fc2e54474805bb8bf06a39830fbbb1811c17d73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d806000811461229e576040519150601f19603f3d011682016040523d82523d6000602084013e6122a3565b606091505b50505060006122d2620186a06122c4614f278e61401d90919063ffffffff16565b613a1f90919063ffffffff16565b9050739361931dceacb2795b8fa0481cecf86055505dce73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612346576040519150601f19603f3d011682016040523d82523d6000602084013e61234b565b606091505b50505060006123776064612369600a8f61401d90919063ffffffff16565b613a1f90919063ffffffff16565b9050733761f439d9416750360d9eee241786bceb1e086573ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d80600081146123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b505050600047905073789e3c17c932b9d8908189aefc76c52c114e6e4573ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d806000811461246a576040519150601f19603f3d011682016040523d82523d6000602084013e61246f565b606091505b50505050505050505050505050505050565b61249c83838360405180602001604052806000815250612f72565b505050565b6000806124b88360036140a390919063ffffffff16565b50905080915050919050565b6124cc613bf6565b73ffffffffffffffffffffffffffffffffffffffff166124ea612b07565b73ffffffffffffffffffffffffffffffffffffffff1614612573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff16156125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b6125ff816140cf565b50565b6000612632826040518060600160405280602981526020016150cd6029913960036140e99092919063ffffffff16565b9050919050565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126cf5780601f106126a4576101008083540402835291602001916126cf565b820191906000526020600020905b8154815290600101906020018083116126b257829003601f168201915b505050505081565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561276f5780601f106127445761010080835404028352916020019161276f565b820191906000526020600020905b81548152906001019060200180831161275257829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612800576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806150a3602a913960400191505060405180910390fd5b612847600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614108565b9050919050565b612856613bf6565b73ffffffffffffffffffffffffffffffffffffffff16612874612b07565b73ffffffffffffffffffffffffffffffffffffffff16146128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615612980576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600e9080519060200190612996929190614edd565b5050565b6129a2613bf6565b73ffffffffffffffffffffffffffffffffffffffff166129c0612b07565b73ffffffffffffffffffffffffffffffffffffffff1614612a49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612bc85780601f10612b9d57610100808354040283529160200191612bc8565b820191906000526020600020905b815481529060010190602001808311612bab57829003601f168201915b5050505050905090565b600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c685780601f10612c3d57610100808354040283529160200191612c68565b820191906000526020600020905b815481529060010190602001808311612c4b57829003601f168201915b505050505081565b612c78613bf6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000612d26613bf6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612dd3613bf6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612e2e613bf6565b73ffffffffffffffffffffffffffffffffffffffff16612e4c612b07565b73ffffffffffffffffffffffffffffffffffffffff1614612ed5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615612f58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b8060109080519060200190612f6e929190614edd565b5050565b612f83612f7d613bf6565b83613ccc565b612fd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151d16031913960400191505060405180910390fd5b612fe48484848461411d565b50505050565b60606000821180156130035750612fff6119c9565b8211155b613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000600e80546001816001161561010002031660029004905011156131ee57600c600e6130a18461418f565b60405160200180848054600181600116156101000203166002900480156130ff5780601f106130dd5761010080835404028352918201916130ff565b820191906000526020600020905b8154815290600101906020018083116130eb575b5050838054600181600116156101000203166002900480156131585780601f10613136576101008083540402835291820191613158565b820191906000526020600020905b815481529060010190602001808311613144575b5050807f2f0000000000000000000000000000000000000000000000000000000000000081525060010182805190602001908083835b602083106131b1578051825260208201915060208101905060208303925061318e565b6001836020036101000a038019825116818451168082178552505050505050905001935050505060405160208183030381529060405290506132be565b6131f66126d7565b6131ff8361418f565b6040516020018083805190602001908083835b602083106132355780518252602082019150602081019050602083039250613212565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106132865780518252602082019150602081019050602083039250613263565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b6132de613bf6565b73ffffffffffffffffffffffffffffffffffffffff166132fc612b07565b73ffffffffffffffffffffffffffffffffffffffff1614613385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061338f612b07565b73ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d80600081146133ec576040519150601f19603f3d011682016040523d82523d6000602084013e6133f1565b606091505b50509050806133ff57600080fd5b50565b6000611a0a82111561341357600080fd5b61342d66ec9c58de0a80008361401d90919063ffffffff16565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6134d0613bf6565b73ffffffffffffffffffffffffffffffffffffffff166134ee612b07565b73ffffffffffffffffffffffffffffffffffffffff1614613577576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600d60009054906101000a900460ff16156135dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151af6022913960400191505060405180910390fd5b60005b818110156135fe576135f133613bb3565b80806001019150506135e0565b5050565b61360a613bf6565b73ffffffffffffffffffffffffffffffffffffffff16613628612b07565b73ffffffffffffffffffffffffffffffffffffffff16146136b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613737576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614fcf6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6137fc613bf6565b73ffffffffffffffffffffffffffffffffffffffff1661381a612b07565b73ffffffffffffffffffffffffffffffffffffffff16146138a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6138db613bf6565b73ffffffffffffffffffffffffffffffffffffffff166138f9612b07565b73ffffffffffffffffffffffffffffffffffffffff1614613982576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615613a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600f9080519060200190613a1b929190614edd565b5050565b6000808211613a96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613a9f57fe5b04905092915050565b600080828401905083811015613b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600082821115613ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b613bbd600b6142d6565b6000613bc9600b6142ec565b9050613bd582826142fa565b5050565b6000613bef8260036144ee90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613c7183612602565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613cc582600001614508565b9050919050565b6000613cd782613bd9565b613d2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061503f602c913960400191505060405180910390fd5b6000613d3783612602565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613da657508373ffffffffffffffffffffffffffffffffffffffff16613d8e84611680565b73ffffffffffffffffffffffffffffffffffffffff16145b80613db75750613db68185613434565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613de082612602565b73ffffffffffffffffffffffffffffffffffffffff1614613e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151656029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ff56024913960400191505060405180910390fd5b613edd838383614519565b613ee8600082613bfe565b613f3981600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061451e90919063ffffffff16565b50613f8b81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061453890919063ffffffff16565b50613fa2818360036145529092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006140128360000183614587565b60001c905092915050565b600080831415614030576000905061409d565b600082840290508284828161404157fe5b0414614098576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151186021913960400191505060405180910390fd5b809150505b92915050565b6000806000806140b6866000018661460a565b915091508160001c8160001c9350935050509250929050565b80600a90805190602001906140e5929190614edd565b5050565b60006140fc846000018460001b846146a3565b60001c90509392505050565b600061411682600001614799565b9050919050565b614128848484613dc0565b614134848484846147aa565b614189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614f9d6032913960400191505060405180910390fd5b50505050565b606060008214156141d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506142d1565b600082905060005b60008214614201578080600101915050600a82816141f957fe5b0491506141df565b60608167ffffffffffffffff8111801561421a57600080fd5b506040519080825280601f01601f19166020018201604052801561424d5781602001600182028036833780820191505090505b50905060006001830390508593505b600084146142c957600a848161426e57fe5b0660300160f81b8282806001900393508151811061428857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816142c157fe5b04935061425c565b819450505050505b919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561439d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6143a681613bd9565b15614419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61442560008383614519565b61447681600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061453890919063ffffffff16565b5061448d818360036145529092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000614500836000018360001b6149c3565b905092915050565b600081600001805490509050919050565b505050565b6000614530836000018360001b6149e6565b905092915050565b600061454a836000018360001b614ace565b905092915050565b600061457e846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614b3e565b90509392505050565b6000818360000180549050116145e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f7b6022913960400191505060405180910390fd5b8260000182815481106145f757fe5b9060005260206000200154905092915050565b6000808284600001805490501161466c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150f66022913960400191505060405180910390fd5b600084600001848154811061467d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061476a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561472f578082015181840152602081019050614714565b50505050905090810190601f16801561475c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061477d57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006147cb8473ffffffffffffffffffffffffffffffffffffffff16614c1a565b6147d857600190506149bb565b606061494263150b7a0260e01b6147ed613bf6565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614871578082015181840152602081019050614856565b50505050905090810190601f16801561489e5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614f9d603291398773ffffffffffffffffffffffffffffffffffffffff16614c2d9092919063ffffffff16565b9050600081806020019051602081101561495b57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114614ac25760006001820390506000600186600001805490500390506000866000018281548110614a3157fe5b9060005260206000200154905080876000018481548110614a4e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480614a8657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614ac8565b60009150505b92915050565b6000614ada8383614c45565b614b33578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614b38565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614be557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614c13565b82856000016001830381548110614bf857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060614c3c8484600085614c68565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614cc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150196026913960400191505060405180910390fd5b614ccc85614c1a565b614d3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614d8e5780518252602082019150602081019050602083039250614d6b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614df0576040519150601f19603f3d011682016040523d82523d6000602084013e614df5565b606091505b5091509150614e05828286614e11565b92505050949350505050565b60608315614e2157829050614ed6565b600083511115614e345782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614e9b578082015181840152602081019050614e80565b50505050905090810190601f168015614ec85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614f1e57805160ff1916838001178555614f4c565b82800160010185558215614f4c579182015b82811115614f4b578251825591602001919060010190614f30565b5b509050614f599190614f5d565b5090565b5b80821115614f76576000816000905550600101614f5e565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724f776e65722063616e6e6f74206d696e742061667465722073616c65206f70656e734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a26469706673582212203e2f26baf0e1316627aac51574ede3fa2154122cbc122e8379024cdf47d89e8c64736f6c6343000703003368747470733a2f2f75732d63656e7472616c312d64656d6f6e2d35313833622e636c6f756466756e6374696f6e732e6e65742f6170702f76312f

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806370a082311161012e578063c87b56dd116100ab578063f19e75d41161006f578063f19e75d414611134578063f2fde38b1461116f578063f83d08ba146111c0578063fcfff16f146111d7578063ffe630b51461120457610240565b8063c87b56dd14610f66578063cf3090121461101a578063db2e21bc14611047578063e75722301461105e578063e985e9c5146110ad57610240565b8063a00501a4116100f2578063a00501a414610c71578063a0712d6814610d01578063a22cb46514610d2f578063a9373d9414610d8c578063b88d4fde14610e5457610240565b806370a0823114610a5c57806371356d4714610ac1578063715018a614610b895780638da5cb5b14610ba057806395d89b4114610be157610240565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146107c057806355f804b31461080f5780636352211e146108d757806365477dc01461093c5780636c0360eb146109cc57610240565b80632f745c59146105cc578063316907341461063b57806332cb6b0c146107035780633ccfd60b1461072e57806342842e0e1461074557610240565b8063167ff46f11610203578063167ff46f146104a957806318160ddd146104c057806323b872dd146104eb57806327ac36c41461056657806329ed3f741461057d57610240565b806301ffc9a71461025957806306fdde03146102c9578063081812fc14610359578063095ea7b3146103be5780630f7309e81461041957610240565b5b600061024b346112cc565b9050610256816112ef565b50005b34801561026557600080fd5b506102b16004803603602081101561027c57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611576565b60405180821515815260200191505060405180910390f35b3480156102d557600080fd5b506102de6115de565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561031e578082015181840152602081019050610303565b50505050905090810190601f16801561034b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036557600080fd5b506103926004803603602081101561037c57600080fd5b8101908080359060200190929190505050611680565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103ca57600080fd5b50610417600480360360408110156103e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061171b565b005b34801561042557600080fd5b5061042e61185f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561046e578082015181840152602081019050610453565b50505050905090810190601f16801561049b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104b557600080fd5b506104be6118fd565b005b3480156104cc57600080fd5b506104d56119c9565b6040518082815260200191505060405180910390f35b3480156104f757600080fd5b506105646004803603606081101561050e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119da565b005b34801561057257600080fd5b5061057b611a50565b005b34801561058957600080fd5b506105b6600480360360208110156105a057600080fd5b81019080803590602001909291905050506112cc565b6040518082815260200191505060405180910390f35b3480156105d857600080fd5b50610625600480360360408110156105ef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b24565b6040518082815260200191505060405180910390f35b34801561064757600080fd5b506107016004803603602081101561065e57600080fd5b810190808035906020019064010000000081111561067b57600080fd5b82018360208201111561068d57600080fd5b803590602001918460018302840111640100000000831117156106af57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b7f565b005b34801561070f57600080fd5b50610718611ccb565b6040518082815260200191505060405180910390f35b34801561073a57600080fd5b50610743611cd1565b005b34801561075157600080fd5b506107be6004803603606081101561076857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612481565b005b3480156107cc57600080fd5b506107f9600480360360208110156107e357600080fd5b81019080803590602001909291905050506124a1565b6040518082815260200191505060405180910390f35b34801561081b57600080fd5b506108d56004803603602081101561083257600080fd5b810190808035906020019064010000000081111561084f57600080fd5b82018360208201111561086157600080fd5b8035906020019184600183028401116401000000008311171561088357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506124c4565b005b3480156108e357600080fd5b50610910600480360360208110156108fa57600080fd5b8101908080359060200190929190505050612602565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561094857600080fd5b50610951612639565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610991578082015181840152602081019050610976565b50505050905090810190601f1680156109be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156109d857600080fd5b506109e16126d7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a21578082015181840152602081019050610a06565b50505050905090810190601f168015610a4e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610a6857600080fd5b50610aab60048036036020811015610a7f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612779565b6040518082815260200191505060405180910390f35b348015610acd57600080fd5b50610b8760048036036020811015610ae457600080fd5b8101908080359060200190640100000000811115610b0157600080fd5b820183602082011115610b1357600080fd5b80359060200191846001830284011164010000000083111715610b3557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061284e565b005b348015610b9557600080fd5b50610b9e61299a565b005b348015610bac57600080fd5b50610bb5612b07565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610bed57600080fd5b50610bf6612b30565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c36578082015181840152602081019050610c1b565b50505050905090810190601f168015610c635780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c7d57600080fd5b50610c86612bd2565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610cc6578082015181840152602081019050610cab565b50505050905090810190601f168015610cf35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d2d60048036036020811015610d1757600080fd5b81019080803590602001909291905050506112ef565b005b348015610d3b57600080fd5b50610d8a60048036036040811015610d5257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050612c70565b005b348015610d9857600080fd5b50610e5260048036036020811015610daf57600080fd5b8101908080359060200190640100000000811115610dcc57600080fd5b820183602082011115610dde57600080fd5b80359060200191846001830284011164010000000083111715610e0057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612e26565b005b348015610e6057600080fd5b50610f6460048036036080811015610e7757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ede57600080fd5b820183602082011115610ef057600080fd5b80359060200191846001830284011164010000000083111715610f1257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612f72565b005b348015610f7257600080fd5b50610f9f60048036036020811015610f8957600080fd5b8101908080359060200190929190505050612fea565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fdf578082015181840152602081019050610fc4565b50505050905090810190601f16801561100c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561102657600080fd5b5061102f6132c3565b60405180821515815260200191505060405180910390f35b34801561105357600080fd5b5061105c6132d6565b005b34801561106a57600080fd5b506110976004803603602081101561108157600080fd5b8101908080359060200190929190505050613402565b6040518082815260200191505060405180910390f35b3480156110b957600080fd5b5061111c600480360360408110156110d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613434565b60405180821515815260200191505060405180910390f35b34801561114057600080fd5b5061116d6004803603602081101561115757600080fd5b81019080803590602001909291905050506134c8565b005b34801561117b57600080fd5b506111be6004803603602081101561119257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613602565b005b3480156111cc57600080fd5b506111d56137f4565b005b3480156111e357600080fd5b506111ec6138c0565b60405180821515815260200191505060405180910390f35b34801561121057600080fd5b506112ca6004803603602081101561122757600080fd5b810190808035906020019064010000000081111561124457600080fd5b82018360208201111561125657600080fd5b8035906020019184600183028401116401000000008311171561127857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506138d3565b005b60006112e866ec9c58de0a800083613a1f90919063ffffffff16565b9050919050565b600d60009054906101000a900460ff16611371576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f44726f70206e6f74206f70656e2079657400000000000000000000000000000081525060200191505060405180910390fd5b600081116113e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f5175616e74697479206d757374206265206174206c656173742031000000000081525060200191505060405180910390fd5b60428111156113f557604290505b611a0a6114126114036119c9565b83613aa890919063ffffffff16565b1115611437576114346114236119c9565b611a0a613b3090919063ffffffff16565b90505b600061144282613402565b9050803410156114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4e6f7420656e6f756768204554482073656e740000000000000000000000000081525060200191505060405180910390fd5b60005b828110156114db576114ce33613bb3565b80806001019150506114bd565b5060006114f18234613b3090919063ffffffff16565b905060008111156115715760003373ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d806000811461155c576040519150601f19603f3d011682016040523d82523d6000602084013e611561565b606091505b505090508061156f57600080fd5b505b505050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116765780601f1061164b57610100808354040283529160200191611676565b820191906000526020600020905b81548152906001019060200180831161165957829003601f168201915b5050505050905090565b600061168b82613bd9565b6116e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615139602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061172682612602565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061518e6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166117cc613bf6565b73ffffffffffffffffffffffffffffffffffffffff1614806117fb57506117fa816117f5613bf6565b613434565b5b611850576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603881526020018061506b6038913960400191505060405180910390fd5b61185a8383613bfe565b505050565b600f8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118f55780601f106118ca576101008083540402835291602001916118f5565b820191906000526020600020905b8154815290600101906020018083116118d857829003601f168201915b505050505081565b611905613bf6565b73ffffffffffffffffffffffffffffffffffffffff16611923612b07565b73ffffffffffffffffffffffffffffffffffffffff16146119ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b60006119d56003613cb7565b905090565b6119eb6119e5613bf6565b82613ccc565b611a40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151d16031913960400191505060405180910390fd5b611a4b838383613dc0565b505050565b611a58613bf6565b73ffffffffffffffffffffffffffffffffffffffff16611a76612b07565b73ffffffffffffffffffffffffffffffffffffffff1614611aff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60005b6042811015611b2157611b1433613bb3565b8080600101915050611b02565b50565b6000611b7782600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061400390919063ffffffff16565b905092915050565b611b87613bf6565b73ffffffffffffffffffffffffffffffffffffffff16611ba5612b07565b73ffffffffffffffffffffffffffffffffffffffff1614611c2e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615611cb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600c9080519060200190611cc7929190614edd565b5050565b611a0a81565b60004790506000611cff6064611cf160198561401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073ec36697c3c8c8e385b37e17df40dbcbe2dbd9ffc73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611d73576040519150601f19603f3d011682016040523d82523d6000602084013e611d78565b606091505b5050506000611da46064611d9660098661401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073a38bef7bf987ebb22d0d4ecae61034ddc34da28373ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611e18576040519150601f19603f3d011682016040523d82523d6000602084013e611e1d565b606091505b5050506000611e496064611e3b60088761401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073c32a0f03e5dce30ce058f45ce34125fe35a75f4e73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611ebd576040519150601f19603f3d011682016040523d82523d6000602084013e611ec2565b606091505b5050506000611eee6064611ee060088861401d90919063ffffffff16565b613a1f90919063ffffffff16565b9050736609dfa1cb75d74f4ff39c8a5057bd111fba5b2273ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114611f62576040519150601f19603f3d011682016040523d82523d6000602084013e611f67565b606091505b5050506000611f936064611f8560058961401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073acd95553b128b738012542ff9be4e4600761765e73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612007576040519150601f19603f3d011682016040523d82523d6000602084013e61200c565b606091505b5050506000612038606461202a60028a61401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073faa45d2fc42ba85706d09aaaa34af8ac172ea18b73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d80600081146120ac576040519150601f19603f3d011682016040523d82523d6000602084013e6120b1565b606091505b50505060006120dd60646120cf60028b61401d90919063ffffffff16565b613a1f90919063ffffffff16565b90507395270f71252af1f92e54c777237091f9382ca5d873ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612151576040519150601f19603f3d011682016040523d82523d6000602084013e612156565b606091505b505050600061218361271061217560448c61401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073488cb7d6f7596accf0544913aa9e0d0f38f315f473ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d80600081146121f7576040519150601f19603f3d011682016040523d82523d6000602084013e6121fc565b606091505b505050600061222a620186a061221c60398d61401d90919063ffffffff16565b613a1f90919063ffffffff16565b905073846fc2e54474805bb8bf06a39830fbbb1811c17d73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d806000811461229e576040519150601f19603f3d011682016040523d82523d6000602084013e6122a3565b606091505b50505060006122d2620186a06122c4614f278e61401d90919063ffffffff16565b613a1f90919063ffffffff16565b9050739361931dceacb2795b8fa0481cecf86055505dce73ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d8060008114612346576040519150601f19603f3d011682016040523d82523d6000602084013e61234b565b606091505b50505060006123776064612369600a8f61401d90919063ffffffff16565b613a1f90919063ffffffff16565b9050733761f439d9416750360d9eee241786bceb1e086573ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d80600081146123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b505050600047905073789e3c17c932b9d8908189aefc76c52c114e6e4573ffffffffffffffffffffffffffffffffffffffff168160405180600001905060006040518083038185875af1925050503d806000811461246a576040519150601f19603f3d011682016040523d82523d6000602084013e61246f565b606091505b50505050505050505050505050505050565b61249c83838360405180602001604052806000815250612f72565b505050565b6000806124b88360036140a390919063ffffffff16565b50905080915050919050565b6124cc613bf6565b73ffffffffffffffffffffffffffffffffffffffff166124ea612b07565b73ffffffffffffffffffffffffffffffffffffffff1614612573576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff16156125f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b6125ff816140cf565b50565b6000612632826040518060600160405280602981526020016150cd6029913960036140e99092919063ffffffff16565b9050919050565b60108054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126cf5780601f106126a4576101008083540402835291602001916126cf565b820191906000526020600020905b8154815290600101906020018083116126b257829003601f168201915b505050505081565b6060600a8054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561276f5780601f106127445761010080835404028352916020019161276f565b820191906000526020600020905b81548152906001019060200180831161275257829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612800576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806150a3602a913960400191505060405180910390fd5b612847600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614108565b9050919050565b612856613bf6565b73ffffffffffffffffffffffffffffffffffffffff16612874612b07565b73ffffffffffffffffffffffffffffffffffffffff16146128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615612980576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600e9080519060200190612996929190614edd565b5050565b6129a2613bf6565b73ffffffffffffffffffffffffffffffffffffffff166129c0612b07565b73ffffffffffffffffffffffffffffffffffffffff1614612a49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612bc85780601f10612b9d57610100808354040283529160200191612bc8565b820191906000526020600020905b815481529060010190602001808311612bab57829003601f168201915b5050505050905090565b600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612c685780601f10612c3d57610100808354040283529160200191612c68565b820191906000526020600020905b815481529060010190602001808311612c4b57829003601f168201915b505050505081565b612c78613bf6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d19576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060066000612d26613bf6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612dd3613bf6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b612e2e613bf6565b73ffffffffffffffffffffffffffffffffffffffff16612e4c612b07565b73ffffffffffffffffffffffffffffffffffffffff1614612ed5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615612f58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b8060109080519060200190612f6e929190614edd565b5050565b612f83612f7d613bf6565b83613ccc565b612fd8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806151d16031913960400191505060405180910390fd5b612fe48484848461411d565b50505050565b60606000821180156130035750612fff6119c9565b8211155b613075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0081525060200191505060405180910390fd5b6000600e80546001816001161561010002031660029004905011156131ee57600c600e6130a18461418f565b60405160200180848054600181600116156101000203166002900480156130ff5780601f106130dd5761010080835404028352918201916130ff565b820191906000526020600020905b8154815290600101906020018083116130eb575b5050838054600181600116156101000203166002900480156131585780601f10613136576101008083540402835291820191613158565b820191906000526020600020905b815481529060010190602001808311613144575b5050807f2f0000000000000000000000000000000000000000000000000000000000000081525060010182805190602001908083835b602083106131b1578051825260208201915060208101905060208303925061318e565b6001836020036101000a038019825116818451168082178552505050505050905001935050505060405160208183030381529060405290506132be565b6131f66126d7565b6131ff8361418f565b6040516020018083805190602001908083835b602083106132355780518252602082019150602081019050602083039250613212565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106132865780518252602082019150602081019050602083039250613263565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405290505b919050565b601160009054906101000a900460ff1681565b6132de613bf6565b73ffffffffffffffffffffffffffffffffffffffff166132fc612b07565b73ffffffffffffffffffffffffffffffffffffffff1614613385576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600061338f612b07565b73ffffffffffffffffffffffffffffffffffffffff164760405180600001905060006040518083038185875af1925050503d80600081146133ec576040519150601f19603f3d011682016040523d82523d6000602084013e6133f1565b606091505b50509050806133ff57600080fd5b50565b6000611a0a82111561341357600080fd5b61342d66ec9c58de0a80008361401d90919063ffffffff16565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6134d0613bf6565b73ffffffffffffffffffffffffffffffffffffffff166134ee612b07565b73ffffffffffffffffffffffffffffffffffffffff1614613577576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600d60009054906101000a900460ff16156135dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806151af6022913960400191505060405180910390fd5b60005b818110156135fe576135f133613bb3565b80806001019150506135e0565b5050565b61360a613bf6565b73ffffffffffffffffffffffffffffffffffffffff16613628612b07565b73ffffffffffffffffffffffffffffffffffffffff16146136b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613737576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614fcf6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6137fc613bf6565b73ffffffffffffffffffffffffffffffffffffffff1661381a612b07565b73ffffffffffffffffffffffffffffffffffffffff16146138a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6138db613bf6565b73ffffffffffffffffffffffffffffffffffffffff166138f9612b07565b73ffffffffffffffffffffffffffffffffffffffff1614613982576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b601160009054906101000a900460ff1615613a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f436f6e747261637420686173206265656e206c6f636b6564000000000000000081525060200191505060405180910390fd5b80600f9080519060200190613a1b929190614edd565b5050565b6000808211613a96576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381613a9f57fe5b04905092915050565b600080828401905083811015613b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600082821115613ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b613bbd600b6142d6565b6000613bc9600b6142ec565b9050613bd582826142fa565b5050565b6000613bef8260036144ee90919063ffffffff16565b9050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613c7183612602565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000613cc582600001614508565b9050919050565b6000613cd782613bd9565b613d2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061503f602c913960400191505060405180910390fd5b6000613d3783612602565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613da657508373ffffffffffffffffffffffffffffffffffffffff16613d8e84611680565b73ffffffffffffffffffffffffffffffffffffffff16145b80613db75750613db68185613434565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613de082612602565b73ffffffffffffffffffffffffffffffffffffffff1614613e4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806151656029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613ed2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614ff56024913960400191505060405180910390fd5b613edd838383614519565b613ee8600082613bfe565b613f3981600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061451e90919063ffffffff16565b50613f8b81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061453890919063ffffffff16565b50613fa2818360036145529092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006140128360000183614587565b60001c905092915050565b600080831415614030576000905061409d565b600082840290508284828161404157fe5b0414614098576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806151186021913960400191505060405180910390fd5b809150505b92915050565b6000806000806140b6866000018661460a565b915091508160001c8160001c9350935050509250929050565b80600a90805190602001906140e5929190614edd565b5050565b60006140fc846000018460001b846146a3565b60001c90509392505050565b600061411682600001614799565b9050919050565b614128848484613dc0565b614134848484846147aa565b614189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614f9d6032913960400191505060405180910390fd5b50505050565b606060008214156141d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506142d1565b600082905060005b60008214614201578080600101915050600a82816141f957fe5b0491506141df565b60608167ffffffffffffffff8111801561421a57600080fd5b506040519080825280601f01601f19166020018201604052801561424d5781602001600182028036833780820191505090505b50905060006001830390508593505b600084146142c957600a848161426e57fe5b0660300160f81b8282806001900393508151811061428857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84816142c157fe5b04935061425c565b819450505050505b919050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561439d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6143a681613bd9565b15614419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b61442560008383614519565b61447681600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061453890919063ffffffff16565b5061448d818360036145529092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000614500836000018360001b6149c3565b905092915050565b600081600001805490509050919050565b505050565b6000614530836000018360001b6149e6565b905092915050565b600061454a836000018360001b614ace565b905092915050565b600061457e846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614b3e565b90509392505050565b6000818360000180549050116145e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f7b6022913960400191505060405180910390fd5b8260000182815481106145f757fe5b9060005260206000200154905092915050565b6000808284600001805490501161466c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806150f66022913960400191505060405180910390fd5b600084600001848154811061467d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000808460010160008581526020019081526020016000205490506000811415839061476a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561472f578082015181840152602081019050614714565b50505050905090810190601f16801561475c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061477d57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006147cb8473ffffffffffffffffffffffffffffffffffffffff16614c1a565b6147d857600190506149bb565b606061494263150b7a0260e01b6147ed613bf6565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015614871578082015181840152602081019050614856565b50505050905090810190601f16801561489e5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614f9d603291398773ffffffffffffffffffffffffffffffffffffffff16614c2d9092919063ffffffff16565b9050600081806020019051602081101561495b57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b60008083600101600084815260200190815260200160002054905060008114614ac25760006001820390506000600186600001805490500390506000866000018281548110614a3157fe5b9060005260206000200154905080876000018481548110614a4e57fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480614a8657fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050614ac8565b60009150505b92915050565b6000614ada8383614c45565b614b33578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614b38565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415614be557846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614c13565b82856000016001830381548110614bf857fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060614c3c8484600085614c68565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015614cc3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150196026913960400191505060405180910390fd5b614ccc85614c1a565b614d3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310614d8e5780518252602082019150602081019050602083039250614d6b565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614df0576040519150601f19603f3d011682016040523d82523d6000602084013e614df5565b606091505b5091509150614e05828286614e11565b92505050949350505050565b60608315614e2157829050614ed6565b600083511115614e345782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614e9b578082015181840152602081019050614e80565b50505050905090810190601f168015614ec85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614f1e57805160ff1916838001178555614f4c565b82800160010185558215614f4c579182015b82811115614f4b578251825591602001919060010190614f30565b5b509050614f599190614f5d565b5090565b5b80821115614f76576000816000905550600101614f5e565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724f776e65722063616e6e6f74206d696e742061667465722073616c65206f70656e734552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a26469706673582212203e2f26baf0e1316627aac51574ede3fa2154122cbc122e8379024cdf47d89e8c64736f6c63430007030033

Deployed Bytecode Sourcemap

68570:6709:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69466:16;69485:31;69506:9;69485:20;:31::i;:::-;69466:50;;69527:14;69532:8;69527:4;:14::i;:::-;69427:122;68570:6709;1960:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51671:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54457:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53987:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69032:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71706:69;;;;;;;;;;;;;:::i;:::-;;53465:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55347:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;74929:145;;;;;;;;;;;;;:::i;:::-;;70510:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53227:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71908:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68893:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72551:2181;;;;;;;;;;;;;:::i;:::-;;55723:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53753:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;71783:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;51427:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69070:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53046:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51144:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72026:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66388:148;;;;;;;;;;;;;:::i;:::-;;65737:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51840:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68998:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69580:922;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54750:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72140:166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55945:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70810:630;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69111:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;74740:181;;;;;;;;;;;;;:::i;:::-;;70642:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55116:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71470:228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66691:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72476:67;;;;;;;;;;;;;:::i;:::-;;68965:24;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72314:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70510:124;70576:7;70603:23;70613:12;70603:5;:9;;:23;;;;:::i;:::-;70596:30;;70510:124;;;:::o;69580:922::-;69646:4;;;;;;;;;;;69638:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69702:1;69691:8;:12;69683:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69786:2;69775:8;:13;69771:59;;;69816:2;69805:13;;69771:59;68930:4;69892:27;69905:13;:11;:13::i;:::-;69892:8;:12;;:27;;;;:::i;:::-;:40;69888:113;;;69960:29;69975:13;:11;:13::i;:::-;68930:4;69960:14;;:29;;;;:::i;:::-;69949:40;;69888:113;70013:13;70029:18;70038:8;70029;:18::i;:::-;70013:34;;70111:5;70098:9;:18;;70090:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70158:9;70153:91;70177:8;70173:1;:12;70153:91;;;70207:25;70221:10;70207:13;:25::i;:::-;70187:3;;;;;;;70153:91;;;;70309:17;70329:20;70343:5;70329:9;:13;;:20;;;;:::i;:::-;70309:40;;70378:1;70366:9;:13;70362:133;;;70397:12;70415:10;:15;;70438:9;70415:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70396:56;;;70475:7;70467:16;;;;;;70362:133;;69580:922;;;:::o;1960:150::-;2045:4;2069:20;:33;2090:11;2069:33;;;;;;;;;;;;;;;;;;;;;;;;;;;2062:40;;1960:150;;;:::o;51671:100::-;51725:13;51758:5;51751:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51671:100;:::o;54457:221::-;54533:7;54561:16;54569:7;54561;:16::i;:::-;54553:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54646:15;:24;54662:7;54646:24;;;;;;;;;;;;;;;;;;;;;54639:31;;54457:221;;;:::o;53987:404::-;54068:13;54084:23;54099:7;54084:14;:23::i;:::-;54068:39;;54132:5;54126:11;;:2;:11;;;;54118:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54212:5;54196:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54221:44;54245:5;54252:12;:10;:12::i;:::-;54221:23;:44::i;:::-;54196:69;54188:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54362:21;54371:2;54375:7;54362:8;:21::i;:::-;53987:404;;;:::o;69032:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71706:69::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71763:4:::1;71756;;:11;;;;;;;;;;;;;;;;;;71706:69::o:0;53465:211::-;53526:7;53647:21;:12;:19;:21::i;:::-;53640:28;;53465:211;:::o;55347:305::-;55508:41;55527:12;:10;:12::i;:::-;55541:7;55508:18;:41::i;:::-;55500:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55616:28;55626:4;55632:2;55636:7;55616:9;:28::i;:::-;55347:305;;;:::o;74929:145::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74987:9:::1;74982:85;75006:2;75002:1;:6;74982:85;;;75030:25;75044:10;75030:13;:25::i;:::-;75010:3;;;;;;;74982:85;;;;74929:145::o:0;53227:162::-;53324:7;53351:30;53375:5;53351:13;:20;53365:5;53351:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53344:37;;53227:162;;;;:::o;71908:110::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69187:6:::1;;;;;;;;;;;69186:7;69178:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;72002:8:::2;71992:7;:18;;;;;;;;;;;;:::i;:::-;;71908:110:::0;:::o;68893:41::-;68930:4;68893:41;:::o;72551:2181::-;72589:11;72603:21;72589:35;;72637:18;72658:20;72674:3;72658:11;72666:2;72658:3;:7;;:11;;;;:::i;:::-;:15;;:20;;;;:::i;:::-;72637:41;;72705:42;72689:65;;72776:10;72689:112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72814:12;72829:19;72844:3;72829:10;72837:1;72829:3;:7;;:10;;;;:::i;:::-;:14;;:19;;;;:::i;:::-;72814:34;;72875:42;72859:65;;72946:4;72859:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72978:14;72995:19;73010:3;72995:10;73003:1;72995:3;:7;;:10;;;;:::i;:::-;:14;;:19;;;;:::i;:::-;72978:36;;73041:42;73025:65;;73112:6;73025:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73146:14;73163:19;73178:3;73163:10;73171:1;73163:3;:7;;:10;;;;:::i;:::-;:14;;:19;;;;:::i;:::-;73146:36;;73209:42;73193:65;;73280:6;73193:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73314:12;73329:19;73344:3;73329:10;73337:1;73329:3;:7;;:10;;;;:::i;:::-;:14;;:19;;;;:::i;:::-;73314:34;;73375:42;73359:65;;73446:4;73359:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73478:12;73493:19;73508:3;73493:10;73501:1;73493:3;:7;;:10;;;;:::i;:::-;:14;;:19;;;;:::i;:::-;73478:34;;73539:42;73523:65;;73610:4;73523:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73642:12;73657:19;73672:3;73657:10;73665:1;73657:3;:7;;:10;;;;:::i;:::-;:14;;:19;;;;:::i;:::-;73642:34;;73703:42;73687:65;;73774:4;73687:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73806:23;73832:22;73848:5;73832:11;73840:2;73832:3;:7;;:11;;;;:::i;:::-;:15;;:22;;;;:::i;:::-;73806:48;;73881:42;73865:65;;73952:15;73865:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73995:26;74024:23;74040:6;74024:11;74032:2;74024:3;:7;;:11;;;;:::i;:::-;:15;;:23;;;;:::i;:::-;73995:52;;74074:42;74058:65;;74145:18;74058:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74191:30;74224:26;74243:6;74224:14;74232:5;74224:3;:7;;:14;;;;:::i;:::-;:18;;:26;;;;:::i;:::-;74191:59;;74277:42;74261:65;;74348:22;74261:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74398:11;74412:20;74428:3;74412:11;74420:2;74412:3;:7;;:11;;;;:::i;:::-;:15;;:20;;;;:::i;:::-;74398:34;;74459:42;74443:65;;74530:3;74443:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74561:17;74581:21;74561:41;;74629:42;74613:65;;74700:9;74613:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72551:2181;;;;;;;;;;;;;:::o;55723:151::-;55827:39;55844:4;55850:2;55854:7;55827:39;;;;;;;;;;;;:16;:39::i;:::-;55723:151;;;:::o;53753:172::-;53828:7;53849:15;53870:22;53886:5;53870:12;:15;;:22;;;;:::i;:::-;53848:44;;;53910:7;53903:14;;;53753:172;;;:::o;71783:117::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69187:6:::1;;;;;;;;;;;69186:7;69178:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;71869:23:::2;71881:10;71869:11;:23::i;:::-;71783:117:::0;:::o;51427:177::-;51499:7;51526:70;51543:7;51526:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51519:77;;51427:177;;;:::o;69070:32::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53046:97::-;53094:13;53127:8;53120:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53046:97;:::o;51144:221::-;51216:7;51261:1;51244:19;;:5;:19;;;;51236:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51328:29;:13;:20;51342:5;51328:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51321:36;;51144:221;;;:::o;72026:106::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69187:6:::1;;;;;;;;;;;69186:7;69178:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;72117:7:::2;72108:6;:16;;;;;;;;;;;;:::i;:::-;;72026:106:::0;:::o;66388:148::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66495:1:::1;66458:40;;66479:6;::::0;::::1;;;;;;;;66458:40;;;;;;;;;;;;66526:1;66509:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;66388:148::o:0;65737:87::-;65783:7;65810:6;;;;;;;;;;;65803:13;;65737:87;:::o;51840:104::-;51896:13;51929:7;51922:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51840:104;:::o;68998:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54750:295::-;54865:12;:10;:12::i;:::-;54853:24;;:8;:24;;;;54845:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54965:8;54920:18;:32;54939:12;:10;:12::i;:::-;54920:32;;;;;;;;;;;;;;;:42;54953:8;54920:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55018:8;54989:48;;55004:12;:10;:12::i;:::-;54989:48;;;55028:8;54989:48;;;;;;;;;;;;;;;;;;;;54750:295;;:::o;72140:166::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69187:6:::1;;;;;;;;;;;69186:7;69178:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;72284:14:::2;72268:13;:30;;;;;;;;;;;;:::i;:::-;;72140:166:::0;:::o;55945:285::-;56077:41;56096:12;:10;:12::i;:::-;56110:7;56077:18;:41::i;:::-;56069:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56183:39;56197:4;56203:2;56207:7;56216:5;56183:13;:39::i;:::-;55945:285;;;;:::o;70810:630::-;70928:13;70991:1;70981:7;:11;:39;;;;;71007:13;:11;:13::i;:::-;70996:7;:24;;70981:39;70959:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71160:1;71143:6;71137:20;;;;;;;;;;;;;;;;:24;71133:187;;;71248:7;71257:6;71270:18;:7;:16;:18::i;:::-;71231:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71178:130;;;;71133:187;71401:9;:7;:9::i;:::-;71412:18;:7;:16;:18::i;:::-;71384:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71370:62;;70810:630;;;;:::o;69111:26::-;;;;;;;;;;;;;:::o;74740:181::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74800:12:::1;74839:7;:5;:7::i;:::-;74831:21;;74860;74831:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74799:87;;;74905:7;74897:16;;;::::0;::::1;;66028:1;74740:181::o:0;70642:160::-;70699:7;68930:4;70727:8;:22;;70719:31;;;;;;70768:26;70781:12;70768:8;:12;;:26;;;;:::i;:::-;70761:33;;70642:160;;;:::o;55116:164::-;55213:4;55237:18;:25;55256:5;55237:25;;;;;;;;;;;;;;;:35;55263:8;55237:35;;;;;;;;;;;;;;;;;;;;;;;;;55230:42;;55116:164;;;;:::o;71470:228::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71544:4:::1;;;;;;;;;;;71543:5;71535:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71605:9;71600:91;71624:8;71620:1;:12;71600:91;;;71654:25;71668:10;71654:13;:25::i;:::-;71634:3;;;;;;;71600:91;;;;71470:228:::0;:::o;66691:244::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66800:1:::1;66780:22;;:8;:22;;;;66772:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66890:8;66861:38;;66882:6;::::0;::::1;;;;;;;;66861:38;;;;;;;;;;;;66919:8;66910:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;66691:244:::0;:::o;72476:67::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72531:4:::1;72522:6;;:13;;;;;;;;;;;;;;;;;;72476:67::o:0;68965:24::-;;;;;;;;;;;;;:::o;72314:154::-;65968:12;:10;:12::i;:::-;65957:23;;:7;:5;:7::i;:::-;:23;;;65949:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69187:6:::1;;;;;;;;;;;69186:7;69178:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;72449:11:::2;72436:10;:24;;;;;;;;;;;;:::i;:::-;;72314:154:::0;:::o;15478:153::-;15536:7;15568:1;15564;:5;15556:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15622:1;15618;:5;;;;;;15611:12;;15478:153;;;;:::o;13901:179::-;13959:7;13979:9;13995:1;13991;:5;13979:17;;14020:1;14015;:6;;14007:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14071:1;14064:8;;;13901:179;;;;:::o;14363:158::-;14421:7;14454:1;14449;:6;;14441:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14512:1;14508;:5;14501:12;;14363:158;;;;:::o;75106:170::-;75163:21;:9;:19;:21::i;:::-;75195:17;75215:19;:9;:17;:19::i;:::-;75195:39;;75245:23;75251:5;75258:9;75245:5;:23::i;:::-;75106:170;;:::o;57697:127::-;57762:4;57786:30;57808:7;57786:12;:21;;:30;;;;:::i;:::-;57779:37;;57697:127;;;:::o;3367:106::-;3420:15;3455:10;3448:17;;3367:106;:::o;63715:192::-;63817:2;63790:15;:24;63806:7;63790:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63873:7;63869:2;63835:46;;63844:23;63859:7;63844:14;:23::i;:::-;63835:46;;;;;;;;;;;;63715:192;;:::o;44400:123::-;44469:7;44496:19;44504:3;:10;;44496:7;:19::i;:::-;44489:26;;44400:123;;;:::o;57991:355::-;58084:4;58109:16;58117:7;58109;:16::i;:::-;58101:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58185:13;58201:23;58216:7;58201:14;:23::i;:::-;58185:39;;58254:5;58243:16;;:7;:16;;;:51;;;;58287:7;58263:31;;:20;58275:7;58263:11;:20::i;:::-;:31;;;58243:51;:94;;;;58298:39;58322:5;58329:7;58298:23;:39::i;:::-;58243:94;58235:103;;;57991:355;;;;:::o;61127:599::-;61252:4;61225:31;;:23;61240:7;61225:14;:23::i;:::-;:31;;;61217:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61353:1;61339:16;;:2;:16;;;;61331:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61409:39;61430:4;61436:2;61440:7;61409:20;:39::i;:::-;61513:29;61530:1;61534:7;61513:8;:29::i;:::-;61555:35;61582:7;61555:13;:19;61569:4;61555:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61601:30;61623:7;61601:13;:17;61615:2;61601:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61644:29;61661:7;61670:2;61644:12;:16;;:29;;;;;:::i;:::-;;61710:7;61706:2;61691:27;;61700:4;61691:27;;;;;;;;;;;;61127:599;;;:::o;36185:137::-;36256:7;36291:22;36295:3;:10;;36307:5;36291:3;:22::i;:::-;36283:31;;36276:38;;36185:137;;;;:::o;14780:220::-;14838:7;14867:1;14862;:6;14858:20;;;14877:1;14870:8;;;;14858:20;14889:9;14905:1;14901;:5;14889:17;;14934:1;14929;14925;:5;;;;;;:10;14917:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14991:1;14984:8;;;14780:220;;;;;:::o;44862:236::-;44942:7;44951;44972:11;44985:13;45002:22;45006:3;:10;;45018:5;45002:3;:22::i;:::-;44971:53;;;;45051:3;45043:12;;45081:5;45073:14;;45035:55;;;;;;44862:236;;;;;:::o;62327:100::-;62411:8;62400;:19;;;;;;;;;;;;:::i;:::-;;62327:100;:::o;46148:213::-;46255:7;46306:44;46311:3;:10;;46331:3;46323:12;;46337;46306:4;:44::i;:::-;46298:53;;46275:78;;46148:213;;;;;:::o;35727:114::-;35787:7;35814:19;35822:3;:10;;35814:7;:19::i;:::-;35807:26;;35727:114;;;:::o;57112:272::-;57226:28;57236:4;57242:2;57246:7;57226:9;:28::i;:::-;57273:48;57296:4;57302:2;57306:7;57315:5;57273:22;:48::i;:::-;57265:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57112:272;;;;:::o;46618:746::-;46674:13;46904:1;46895:5;:10;46891:53;;;46922:10;;;;;;;;;;;;;;;;;;;;;46891:53;46954:12;46969:5;46954:20;;46985:14;47010:78;47025:1;47017:4;:9;47010:78;;47043:8;;;;;;;47074:2;47066:10;;;;;;;;;47010:78;;;47098:19;47130:6;47120:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47098:39;;47148:13;47173:1;47164:6;:10;47148:26;;47192:5;47185:12;;47208:117;47223:1;47215:4;:9;47208:117;;47284:2;47277:4;:9;;;;;;47272:2;:14;47259:29;;47241:6;47248:7;;;;;;;47241:15;;;;;;;;;;;:47;;;;;;;;;;;47311:2;47303:10;;;;;;;;;47208:117;;;47349:6;47335:21;;;;;;46618:746;;;;:::o;68193:181::-;68365:1;68347:7;:14;;;:19;;;;;;;;;;;68193:181;:::o;68071:114::-;68136:7;68163;:14;;;68156:21;;68071:114;;;:::o;59612:404::-;59706:1;59692:16;;:2;:16;;;;59684:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59765:16;59773:7;59765;:16::i;:::-;59764:17;59756:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59827:45;59856:1;59860:2;59864:7;59827:20;:45::i;:::-;59885:30;59907:7;59885:13;:17;59899:2;59885:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59928:29;59945:7;59954:2;59928:12;:16;;:29;;;;;:::i;:::-;;60000:7;59996:2;59975:33;;59992:1;59975:33;;;;;;;;;;;;59612:404;;:::o;44161:151::-;44245:4;44269:35;44279:3;:10;;44299:3;44291:12;;44269:9;:35::i;:::-;44262:42;;44161:151;;;;:::o;40979:110::-;41035:7;41062:3;:12;;:19;;;;41055:26;;40979:110;;;:::o;64520:93::-;;;;:::o;35272:137::-;35342:4;35366:35;35374:3;:10;;35394:5;35386:14;;35366:7;:35::i;:::-;35359:42;;35272:137;;;;:::o;34965:131::-;35032:4;35056:32;35061:3;:10;;35081:5;35073:14;;35056:4;:32::i;:::-;35049:39;;34965:131;;;;:::o;43584:185::-;43673:4;43697:64;43702:3;:10;;43722:3;43714:12;;43752:5;43736:23;;43728:32;;43697:4;:64::i;:::-;43690:71;;43584:185;;;;;:::o;31223:204::-;31290:7;31339:5;31318:3;:11;;:18;;;;:26;31310:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31401:3;:11;;31413:5;31401:18;;;;;;;;;;;;;;;;31394:25;;31223:204;;;;:::o;41444:279::-;41511:7;41520;41570:5;41548:3;:12;;:19;;;;:27;41540:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41627:22;41652:3;:12;;41665:5;41652:19;;;;;;;;;;;;;;;;;;41627:44;;41690:5;:10;;;41702:5;:12;;;41682:33;;;;;41444:279;;;;;:::o;42941:319::-;43035:7;43055:16;43074:3;:12;;:17;43087:3;43074:17;;;;;;;;;;;;43055:36;;43122:1;43110:8;:13;;43125:12;43102:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43192:3;:12;;43216:1;43205:8;:12;43192:26;;;;;;;;;;;;;;;;;;:33;;;43185:40;;;42941:319;;;;;:::o;30770:109::-;30826:7;30853:3;:11;;:18;;;;30846:25;;30770:109;;;:::o;62992:604::-;63113:4;63140:15;:2;:13;;;:15::i;:::-;63135:60;;63179:4;63172:11;;;;63135:60;63205:23;63231:252;63284:45;;;63344:12;:10;:12::i;:::-;63371:4;63390:7;63412:5;63247:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63231:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63205:278;;63494:13;63521:10;63510:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63494:48;;48141:10;63571:16;;63561:26;;;:6;:26;;;;63553:35;;;;62992:604;;;;;;;:::o;40759:125::-;40830:4;40875:1;40854:3;:12;;:17;40867:3;40854:17;;;;;;;;;;;;:22;;40847:29;;40759:125;;;;:::o;28925:1544::-;28991:4;29109:18;29130:3;:12;;:19;29143:5;29130:19;;;;;;;;;;;;29109:40;;29180:1;29166:10;:15;29162:1300;;29528:21;29565:1;29552:10;:14;29528:38;;29581:17;29622:1;29601:3;:11;;:18;;;;:22;29581:42;;29868:17;29888:3;:11;;29900:9;29888:22;;;;;;;;;;;;;;;;29868:42;;30034:9;30005:3;:11;;30017:13;30005:26;;;;;;;;;;;;;;;:38;;;;30153:1;30137:13;:17;30111:3;:12;;:23;30124:9;30111:23;;;;;;;;;;;:43;;;;30263:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30358:3;:12;;:19;30371:5;30358:19;;;;;;;;;;;30351:26;;;30401:4;30394:11;;;;;;;;29162:1300;30445:5;30438:12;;;28925:1544;;;;;:::o;28335:414::-;28398:4;28420:21;28430:3;28435:5;28420:9;:21::i;:::-;28415:327;;28458:3;:11;;28475:5;28458:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28641:3;:11;;:18;;;;28619:3;:12;;:19;28632:5;28619:19;;;;;;;;;;;:40;;;;28681:4;28674:11;;;;28415:327;28725:5;28718:12;;28335:414;;;;;:::o;38259:692::-;38335:4;38451:16;38470:3;:12;;:17;38483:3;38470:17;;;;;;;;;;;;38451:36;;38516:1;38504:8;:13;38500:444;;;38571:3;:12;;38589:38;;;;;;;;38606:3;38589:38;;;;38619:5;38589:38;;;38571:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38786:3;:12;;:19;;;;38766:3;:12;;:17;38779:3;38766:17;;;;;;;;;;;:39;;;;38827:4;38820:11;;;;;38500:444;38900:5;38864:3;:12;;38888:1;38877:8;:12;38864:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38927:5;38920:12;;;38259:692;;;;;;:::o;19348:422::-;19408:4;19616:12;19727:7;19715:20;19707:28;;19761:1;19754:4;:8;19747:15;;;19348:422;;;:::o;22266:195::-;22369:12;22401:52;22423:6;22431:4;22437:1;22440:12;22401:21;:52::i;:::-;22394:59;;22266:195;;;;;:::o;30555:129::-;30628:4;30675:1;30652:3;:12;;:19;30665:5;30652:19;;;;;;;;;;;;:24;;30645:31;;30555:129;;;;:::o;23318:530::-;23445:12;23503:5;23478:21;:30;;23470:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23570:18;23581:6;23570:10;:18::i;:::-;23562:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23696:12;23710:23;23737:6;:11;;23757:5;23765:4;23737:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23695:75;;;;23788:52;23806:7;23815:10;23827:12;23788:17;:52::i;:::-;23781:59;;;;23318:530;;;;;;:::o;25858:742::-;25973:12;26002:7;25998:595;;;26033:10;26026:17;;;;25998:595;26167:1;26147:10;:17;:21;26143:439;;;26410:10;26404:17;26471:15;26458:10;26454:2;26450:19;26443:44;26358:148;26553:12;26546:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25858:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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