ETH Price: $2,450.18 (-0.04%)
Gas: 8.41 Gwei

Token

Taciturn-robot (Talin)
 

Overview

Max Total Supply

7,624 Talin

Holders

608

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Talin
0xc85b41afd5cb1095e1f4441b0bbeb5d61c8a7395
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Taciturn-robot Talin is the world’s first spiritual talisman collection of 8248 unique NFTs. Minting on the Ethereum blockchain, each Talin is manually designed 3D art that represents one-of-a-kind Taoist talismans which are known to drive away the evil spirits and bring more fortune.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Metart

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-15
*/

//SPDX-License-Identifier: UNLICENSED 
pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    } 
 
    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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




/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



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

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


/**
 * @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/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

    struct Set {
        // Storage of set values
        bytes32[] _values;

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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


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

    // AddressToUintMap
    struct AddressToUintMap {
        Map _inner;
    }
    function set(AddressToUintMap storage map, address key, uint value) internal returns (bool) {
       return _set(map._inner,bytes32(uint256(uint160(key))),bytes32(value));
    }

    function remove(AddressToUintMap storage map, address key) internal returns (bool) {
        return _remove(map._inner, bytes32(uint256(uint160(key))));
    }

    function contains(AddressToUintMap storage map, address key) internal view returns (bool) {
        return _contains(map._inner, bytes32(uint256(uint160(key))));
    }
 
    function length(AddressToUintMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }
 
    function at(AddressToUintMap storage map, uint256 index) internal view returns (address,uint256) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (address(uint160(uint256(key))),uint256(key));
    }

    function tryGet(AddressToUintMap storage map, address key) internal view returns (bool, uint256) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(uint256(uint160(key))));
        return (success,  uint256(value));
    }
     
    function get(AddressToUintMap storage map, address key) internal view returns (uint256) {
        return uint256(_get(map._inner,bytes32(uint256(uint160(key)))));
    }
    function get(AddressToUintMap storage map, address key, string memory errorMessage) internal view returns (uint256) {
         return uint256(_get(map._inner,bytes32(uint256(uint160(key))),errorMessage));
    }
}

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

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

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

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

/**
 * @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/Ownable.sol


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

contract Metart is ERC721,Ownable{

    using EnumerableSet for EnumerableSet.AddressSet;
    using EnumerableMap for EnumerableMap.AddressToUintMap;
 
    using SafeMath for uint256;
    string public verifyHash = "";
 
    uint256 public constant Max_Number = 8248;
  

    bool public saleIsActive = false;
 
    bool public secondSale = false;
 
    uint256 public indexReserveSale = 0;
 
    uint256 public   startOvertSale = 889;
 
    uint256 public mint_Number_Curr = 1624;
    //init 0.08 ETH
    uint256 public nftPrice = 80000000000000000;  
 
    mapping (uint256 => address) private _tokenPledge;

 
    // White List
    EnumerableMap.AddressToUintMap private whiteList;
    // black List
    EnumerableSet.AddressSet private blackList;

    event  SetWhiteList(address _address);

    event  SetBlackList(address _address);

    event  RemoveWhiteList(address _address);

    event  RemoveBlackList(address _address);

    event  MintMetart(address _address,uint256 _token,uint8 _style,uint256 _price);

    event  SetActiveSalePlan(uint index);
    event  Pledge(uint256 tokenid,address to);

    event SetMintCurrMax(uint256 _mintCurrMax ,uint256 _price);
    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
    
    }
    function _pledge(address to, uint256 tokenId) internal  {
        _tokenPledge[tokenId] = to;
        emit Pledge(tokenId,to);
    }

    function pledge(address to, uint256 tokenId) public   {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "pledge to current owner");
        require(_msgSender() == owner   ,"pledge caller is not owner" );
        _pledge(to, tokenId);
    }

    function removePledge(uint256 tokenId) public   {
        address pledgeadress = _tokenPledge[tokenId]; 
        require(_msgSender() == pledgeadress ||_msgSender()== Ownable.owner(),"pledge caller is not owner" );
        _pledge(address(0), tokenId);
    }

    function pledegeOf(uint256 _tokenid) public  view returns(address){ 
        return _tokenPledge[_tokenid];
    }
    function setMintCurrMax(uint256 mintCurrMax,uint256 price) public onlyOwner{
        require(mintCurrMax >= totalSupply().sub(indexReserveSale).add(startOvertSale) && mintCurrMax <=Max_Number ,"mintCurrMax failed");
        mint_Number_Curr = mintCurrMax;
        nftPrice = price;
        emit SetMintCurrMax(mintCurrMax,price);
    }

    
    function setWhiteList(address _address)  public onlyOwner{
        require(_address != address(0), "zero address");
        require(!whiteList.contains(_address),"The whitelist already exists");
        whiteList.set(_address,0);
        emit  SetWhiteList(_address);
    }

    function removeWhileList(address _address) public onlyOwner{
        require(_address != address(0), "zero address");
        require(whiteList.get(_address) == 0,"address mint NFT cannot be removed");
        whiteList.remove(_address);
        emit  RemoveWhiteList(_address);
    }

    function existsWhileList(address _address) public view returns(bool,uint256){ 
        require(_address != address(0), "zero address");
        return whiteList.tryGet(_address); 
    }

     function setBlackList(address _address)  public onlyOwner{
        require(_address != address(0), "zero address");
        require(!blackList.contains(_address),"The blacklist already exists");
        blackList.add(_address);
        emit  SetBlackList(_address);
    }

    function removeBlackList(address _address) public onlyOwner{
        require(_address != address(0), "zero address");
        blackList.remove(_address);
        emit  RemoveBlackList(_address);
    }

    function existsBlackList(address _address) public view returns(bool){ 
        require(_address != address(0), "zero address");
        return blackList.contains(_address);
    }
    
    function setVerifyHash(string memory _hash) public onlyOwner {
        require(bytes(_hash).length != 0,"can only be set one");
        verifyHash = _hash;
    }

    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
 
    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipSecondSale() public onlyOwner { 
        secondSale = !secondSale;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }
    
    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
      
        _checkTransfer(from, tokenId);
        _transfer(from, to, tokenId);
         
    }

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

    function _checkTransfer(address from,   uint256 tokenId) internal view {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        require(secondSale,"Not transferable for the time being");
        require(!blackList.contains(from),"The address is in the blacklist");
        require(pledegeOf(tokenId) == address(0),"the NFT is currently pledged");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
    
        _checkTransfer(from, tokenId);
        _safeTransfer(from, to, tokenId, _data);
        
    } 
    function  mintPreSales(address[] memory _addresss) public onlyOwner{
        require(saleIsActive, "Sale must be active to mint Metart");
        require(totalSupply().sub(indexReserveSale).add(startOvertSale).add(_addresss.length) <=mint_Number_Curr  , "Purchase would exceed max supply of Tokens");
        for(uint256 i = 0; i < _addresss.length; i++) {
            uint256 mintIndex = totalSupply().sub(indexReserveSale).add(startOvertSale); 
            if (mintIndex <= mint_Number_Curr) {
                _safeMint(_addresss[i], mintIndex); 
                emit  MintMetart(msg.sender,mintIndex,3,0);
            }
        } 
  
    }
    
    function mintPreSalesBatch(address _addresss, uint8  _number) public onlyOwner   {
        require(saleIsActive, "Sale must be active to mint Metart");
        require(totalSupply().sub(indexReserveSale).add(startOvertSale).add(_number) <=mint_Number_Curr  , "Purchase would exceed max supply of Tokens");
        for (uint256 j=0;j<_number;j++){
            uint256 mintIndex = totalSupply().sub(indexReserveSale).add(startOvertSale); 
                if (mintIndex <= mint_Number_Curr) {
                    _safeMint(_addresss, mintIndex); 
                    emit  MintMetart(msg.sender,mintIndex,3,0);
                }
        }  
    }
   
    /**
    * Mint NFT Coin
    */
    function mintMetart(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Metart");
        require(numberOfTokens <= 20, "Can only mint 20 tokens at a time");
        uint mintToken = totalSupply().sub(indexReserveSale).add(startOvertSale);
        require(mintToken.add(numberOfTokens) <= mint_Number_Curr, "Purchase would exceed max supply of tokens");
        require(nftPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        for(uint i = 0; i < numberOfTokens; i++) {  
            uint mintIndex = totalSupply().sub(indexReserveSale).add(startOvertSale); 
            if (mintIndex <= mint_Number_Curr) {
                _safeMint(msg.sender, mintIndex);
                emit MintMetart(msg.sender,mintIndex,1,nftPrice);
            }
        }
    
    }
 
    function mintMetartReserve() public   {
        require(saleIsActive, "Sale must be active to mint Metart");
        require(indexReserveSale < startOvertSale-1,"The remaining NFT has been cast");
        (bool isexist,uint256 number) =  whiteList.tryGet(msg.sender);
        require(isexist && number < 1,"Addresses are not whitelisted or addresses have been cast in NFT");

        _safeMint(msg.sender, indexReserveSale+1);
        emit MintMetart(msg.sender,indexReserveSale+1,2,0);
        indexReserveSale = indexReserveSale + 1;
        whiteList.set(msg.sender,number+1);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"_token","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"_style","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"MintMetart","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":false,"internalType":"uint256","name":"tokenid","type":"uint256"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"Pledge","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"RemoveBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"RemoveWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"SetActiveSalePlan","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"SetBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintCurrMax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SetMintCurrMax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"SetWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Max_Number","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"existsBlackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"existsWhileList","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSecondSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"indexReserveSale","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintMetart","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintMetartReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresss","type":"address[]"}],"name":"mintPreSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addresss","type":"address"},{"internalType":"uint8","name":"_number","type":"uint8"}],"name":"mintPreSalesBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint_Number_Curr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"pledegeOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"pledge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"removePledge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhileList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"secondSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintCurrMax","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintCurrMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setVerifyHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startOvertSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"verifyHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b92919062000490565b506000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600d55610379600e55610658600f5567011c37937e0800006010553480156200008c57600080fd5b50604051620065173803806200651783398181016040526040811015620000b257600080fd5b8101908080516040519392919084640100000000821115620000d357600080fd5b83820191506020820185811115620000ea57600080fd5b82518660018202830111640100000000821117156200010857600080fd5b8083526020830192505050908051906020019080838360005b838110156200013e57808201518184015260208101905062000121565b50505050905090810190601f1680156200016c5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200019057600080fd5b83820191506020820185811115620001a757600080fd5b8251866001820283011164010000000082111715620001c557600080fd5b8083526020830192505050908051906020019080838360005b83811015620001fb578082015181840152602081019050620001de565b50505050905090810190601f168015620002295780820380516001836020036101000a031916815260200191505b5060405250505081816200024a6301ffc9a760e01b6200037f60201b60201c565b81600690805190602001906200026292919062000490565b5080600790805190602001906200027b92919062000490565b50620002946380ac58cd60e01b6200037f60201b60201c565b620002ac635b5e139f60e01b6200037f60201b60201c565b620002c463780e9d6360e01b6200037f60201b60201c565b50506000620002d86200048860201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350505062000536565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200041c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004d357805160ff191683800117855562000504565b8280016001018555821562000504579182015b8281111562000503578251825591602001919060010190620004e6565b5b50905062000513919062000517565b5090565b5b808211156200053257600081600090555060010162000518565b5090565b615fd180620005466000396000f3fe6080604052600436106102875760003560e01c806355f804b31161015a57806395d89b41116100c1578063c87b56dd1161007a578063c87b56dd1461118a578063e4997dc51461123e578063e985e9c51461128f578063eb8d244414611316578063ef35668214611343578063f2fde38b1461136e57610287565b806395d89b4114610e95578063a22cb46514610f25578063a53c20c814610f82578063a9b5a05814611012578063b88d4fde1461104d578063c5464ae81461115f57610287565b806371a6d0aa1161011357806371a6d0aa14610c655780637259863c14610cb65780637270024114610d7b578063743b345214610dcc57806381b724ba14610e275780638da5cb5b14610e5457610287565b806355f804b314610a155780635a85b86b14610add5780636352211e14610af45780636c0360eb14610b5957806370a0823114610be9578063715018a614610c4e57610287565b80632f745c59116101fe57806342842e0e116101b757806342842e0e1461080657806342fa30f2146108815780634433f1cb146108e85780634bb2be33146109135780634dc63d7e146109585780634f6ccce7146109c657610287565b80632f745c591461062557806332af69a91461069457806334918dfd146106bf57806339e899ee146106d65780633ccfd60b146107275780633e90b76d1461073e57610287565b80630d39fc81116102505780630d39fc81146104b157806318160ddd146104dc57806318af5361146105075780631fb8e2b51461056557806323b872dd1461057c57806328eec1f1146105f757610287565b8062317e951461028c57806301ffc9a7146102f157806306fdde0314610361578063081812fc146103f1578063095ea7b314610456575b600080fd5b34801561029857600080fd5b506102c5600480360360208110156102af57600080fd5b81019080803590602001909291905050506113bf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102fd57600080fd5b506103496004803603602081101561031457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506113fc565b60405180821515815260200191505060405180910390f35b34801561036d57600080fd5b50610376611463565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103b657808201518184015260208101905061039b565b50505050905090810190601f1680156103e35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103fd57600080fd5b5061042a6004803603602081101561041457600080fd5b8101908080359060200190929190505050611505565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561046257600080fd5b506104af6004803603604081101561047957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115a0565b005b3480156104bd57600080fd5b506104c66116e4565b6040518082815260200191505060405180910390f35b3480156104e857600080fd5b506104f16116ea565b6040518082815260200191505060405180910390f35b34801561051357600080fd5b506105636004803603604081101561052a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff1690602001909291905050506116fb565b005b34801561057157600080fd5b5061057a61197e565b005b34801561058857600080fd5b506105f56004803603606081101561059f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b81565b005b6106236004803603602081101561060d57600080fd5b8101908080359060200190929190505050611b9b565b005b34801561063157600080fd5b5061067e6004803603604081101561064857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e53565b6040518082815260200191505060405180910390f35b3480156106a057600080fd5b506106a9611eae565b6040518082815260200191505060405180910390f35b3480156106cb57600080fd5b506106d4611eb4565b005b3480156106e257600080fd5b50610725600480360360208110156106f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8f565b005b34801561073357600080fd5b5061073c6121d0565b005b34801561074a57600080fd5b506108046004803603602081101561076157600080fd5b810190808035906020019064010000000081111561077e57600080fd5b82018360208201111561079057600080fd5b803590602001918460018302840111640100000000831117156107b257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506122ce565b005b34801561081257600080fd5b5061087f6004803603606081101561082957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061240f565b005b34801561088d57600080fd5b506108d0600480360360208110156108a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061242f565b60405180821515815260200191505060405180910390f35b3480156108f457600080fd5b506108fd6124ee565b6040518082815260200191505060405180910390f35b34801561091f57600080fd5b506109566004803603604081101561093657600080fd5b8101908080359060200190929190803590602001909291905050506124f4565b005b34801561096457600080fd5b506109a76004803603602081101561097b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126a7565b6040518083151581526020018281526020019250505060405180910390f35b3480156109d257600080fd5b506109ff600480360360208110156109e957600080fd5b810190808035906020019092919050505061276a565b6040518082815260200191505060405180910390f35b348015610a2157600080fd5b50610adb60048036036020811015610a3857600080fd5b8101908080359060200190640100000000811115610a5557600080fd5b820183602082011115610a6757600080fd5b80359060200191846001830284011164010000000083111715610a8957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061278d565b005b348015610ae957600080fd5b50610af2612848565b005b348015610b0057600080fd5b50610b2d60048036036020811015610b1757600080fd5b8101908080359060200190929190505050612923565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b6557600080fd5b50610b6e61295a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bae578082015181840152602081019050610b93565b50505050905090810190601f168015610bdb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bf557600080fd5b50610c3860048036036020811015610c0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129fc565b6040518082815260200191505060405180910390f35b348015610c5a57600080fd5b50610c63612ad1565b005b348015610c7157600080fd5b50610cb460048036036020811015610c8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c41565b005b348015610cc257600080fd5b50610d7960048036036020811015610cd957600080fd5b8101908080359060200190640100000000811115610cf657600080fd5b820183602082011115610d0857600080fd5b80359060200191846020830284011164010000000083111715610d2a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612e64565b005b348015610d8757600080fd5b50610dca60048036036020811015610d9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130f5565b005b348015610dd857600080fd5b50610e2560048036036040811015610def57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613333565b005b348015610e3357600080fd5b50610e3c613499565b60405180821515815260200191505060405180910390f35b348015610e6057600080fd5b50610e696134ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ea157600080fd5b50610eaa6134d6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610eea578082015181840152602081019050610ecf565b50505050905090810190601f168015610f175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f3157600080fd5b50610f8060048036036040811015610f4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050613578565b005b348015610f8e57600080fd5b50610f9761372e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fd7578082015181840152602081019050610fbc565b50505050905090810190601f1680156110045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561101e57600080fd5b5061104b6004803603602081101561103557600080fd5b81019080803590602001909291905050506137cc565b005b34801561105957600080fd5b5061115d6004803603608081101561107057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156110d757600080fd5b8201836020820111156110e957600080fd5b8035906020019184600183028401116401000000008311171561110b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506138ff565b005b34801561116b57600080fd5b5061117461391b565b6040518082815260200191505060405180910390f35b34801561119657600080fd5b506111c3600480360360208110156111ad57600080fd5b8101908080359060200190929190505050613921565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156112035780820151818401526020810190506111e8565b50505050905090810190601f1680156112305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561124a57600080fd5b5061128d6004803603602081101561126157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bf2565b005b34801561129b57600080fd5b506112fe600480360360408110156112b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613da9565b60405180821515815260200191505060405180910390f35b34801561132257600080fd5b5061132b613e3d565b60405180821515815260200191505060405180910390f35b34801561134f57600080fd5b50611358613e50565b6040518082815260200191505060405180910390f35b34801561137a57600080fd5b506113bd6004803603602081101561139157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613e56565b005b60006011600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114fb5780601f106114d0576101008083540402835291602001916114fb565b820191906000526020600020905b8154815290600101906020018083116114de57829003601f168201915b5050505050905090565b60006115108261404b565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615ea4602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006115ab82612923565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615f286021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611651614068565b73ffffffffffffffffffffffffffffffffffffffff161480611680575061167f8161167a614068565b613da9565b5b6116d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180615d6c6038913960400191505060405180910390fd5b6116df8383614070565b505050565b60105481565b60006116f66002614129565b905090565b611703614068565b73ffffffffffffffffffffffffffffffffffffffff166117216134ac565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900460ff1661180f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b600f546118578260ff16611849600e5461183b600d5461182d6116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b6141c190919063ffffffff16565b11156118ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cab602a913960400191505060405180910390fd5b60005b8160ff168110156119795760006118ee600e546118e0600d546118d26116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f54811161196b576119038482614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d338260036000604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a15b5080806001019150506118b1565b505050565b600c60009054906101000a900460ff166119e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b6001600e5403600d5410611a5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5468652072656d61696e696e67204e465420686173206265656e20636173740081525060200191505060405180910390fd5b600080611a7633601261426790919063ffffffff16565b91509150818015611a875750600181105b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180615df76040913960400191505060405180910390fd5b611aeb336001600d5401614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d336001600d540160026000604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a16001600d5401600d81905550611b7c336001830160126142a99092919063ffffffff16565b505050565b611b8b83826142de565b611b968383836144de565b505050565b600c60009054906101000a900460ff16611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b6014811115611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615d4b6021913960400191505060405180910390fd5b6000611c8c600e54611c7e600d54611c706116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f54611ca483836141c190919063ffffffff16565b1115611cfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615e37602a913960400191505060405180910390fd5b34611d118360105461472190919063ffffffff16565b1115611d85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b82811015611e4e576000611dc2600e54611db4600d54611da66116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f548111611e4057611dd73382614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d33826001601054604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a15b508080600101915050611d88565b505050565b6000611ea682600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147a790919063ffffffff16565b905092915050565b600e5481565b611ebc614068565b73ffffffffffffffffffffffffffffffffffffffff16611eda6134ac565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b611f97614068565b73ffffffffffffffffffffffffffffffffffffffff16611fb56134ac565b73ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b6120f58160126147c190919063ffffffff16565b15612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f5468652077686974656c69737420616c7265616479206578697374730000000081525060200191505060405180910390fd5b61217f81600060126142a99092919063ffffffff16565b507f3990e3e141b903f4f5602428874be692206642a653b416f336d965e2f04813ce81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6121d8614068565b73ffffffffffffffffffffffffffffffffffffffff166121f66134ac565b73ffffffffffffffffffffffffffffffffffffffff161461227f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156122ca573d6000803e3d6000fd5b5050565b6122d6614068565b73ffffffffffffffffffffffffffffffffffffffff166122f46134ac565b73ffffffffffffffffffffffffffffffffffffffff161461237d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000815114156123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f63616e206f6e6c7920626520736574206f6e650000000000000000000000000081525060200191505060405180910390fd5b80600b908051906020019061240b929190615b4e565b5050565b61242a838383604051806020016040528060008152506138ff565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b6124e78260146147f190919063ffffffff16565b9050919050565b600d5481565b6124fc614068565b73ffffffffffffffffffffffffffffffffffffffff1661251a6134ac565b73ffffffffffffffffffffffffffffffffffffffff16146125a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6125d3600e546125c5600d546125b76116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b82101580156125e457506120388211155b612656576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d696e74437572724d6178206661696c6564000000000000000000000000000081525060200191505060405180910390fd5b81600f81905550806010819055507f95ae6ca1761edb5b1ec2e7b77a81465ed5a67c86d79e3af4cae8c05d346721b88282604051808381526020018281526020019250505060405180910390a15050565b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b61276183601261426790919063ffffffff16565b91509150915091565b60008061278183600261482190919063ffffffff16565b50905080915050919050565b612795614068565b73ffffffffffffffffffffffffffffffffffffffff166127b36134ac565b73ffffffffffffffffffffffffffffffffffffffff161461283c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6128458161484d565b50565b612850614068565b73ffffffffffffffffffffffffffffffffffffffff1661286e6134ac565b73ffffffffffffffffffffffffffffffffffffffff16146128f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b600061295382604051806060016040528060298152602001615dce6029913960026148679092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129f25780601f106129c7576101008083540402835291602001916129f2565b820191906000526020600020905b8154815290600101906020018083116129d557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615da4602a913960400191505060405180910390fd5b612aca600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614886565b9050919050565b612ad9614068565b73ffffffffffffffffffffffffffffffffffffffff16612af76134ac565b73ffffffffffffffffffffffffffffffffffffffff1614612b80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612c49614068565b73ffffffffffffffffffffffffffffffffffffffff16612c676134ac565b73ffffffffffffffffffffffffffffffffffffffff1614612cf0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000612da982601261489b90919063ffffffff16565b14612dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615f7a6022913960400191505060405180910390fd5b612e138160126148ce90919063ffffffff16565b507f1e17ee0599b7c09bb1d0ff1e8086007909da8bfba5c7d18319cb558e66db37ee81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b612e6c614068565b73ffffffffffffffffffffffffffffffffffffffff16612e8a6134ac565b73ffffffffffffffffffffffffffffffffffffffff1614612f13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900460ff16612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b600f54612fbe8251612fb0600e54612fa2600d54612f946116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b6141c190919063ffffffff16565b1115613015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cab602a913960400191505060405180910390fd5b60005b81518110156130f1576000613053600e54613045600d546130376116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f5481116130e35761307b83838151811061306d57fe5b602002602001015182614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d338260036000604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a15b508080600101915050613018565b5050565b6130fd614068565b73ffffffffffffffffffffffffffffffffffffffff1661311b6134ac565b73ffffffffffffffffffffffffffffffffffffffff16146131a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b61325b8160146147f190919063ffffffff16565b156132ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f54686520626c61636b6c69737420616c7265616479206578697374730000000081525060200191505060405180910390fd5b6132e28160146148fe90919063ffffffff16565b507fa6d22144cc6564920c775fe8880ea0c048b889ca81849a2cf80893ecee66960881604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600061333e82612923565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f706c6564676520746f2063757272656e74206f776e657200000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16613401614068565b73ffffffffffffffffffffffffffffffffffffffff161461348a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f706c656467652063616c6c6572206973206e6f74206f776e657200000000000081525060200191505060405180910390fd5b613494838361492e565b505050565b600c60019054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561356e5780601f106135435761010080835404028352916020019161356e565b820191906000526020600020905b81548152906001019060200180831161355157829003601f168201915b5050505050905090565b613580614068565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613621576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806005600061362e614068565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166136db614068565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156137c45780601f10613799576101008083540402835291602001916137c4565b820191906000526020600020905b8154815290600101906020018083116137a757829003601f168201915b505050505081565b60006011600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16613823614068565b73ffffffffffffffffffffffffffffffffffffffff16148061387e57506138486134ac565b73ffffffffffffffffffffffffffffffffffffffff16613866614068565b73ffffffffffffffffffffffffffffffffffffffff16145b6138f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f706c656467652063616c6c6572206973206e6f74206f776e657200000000000081525060200191505060405180910390fd5b6138fb60008361492e565b5050565b61390984836142de565b613915848484846149d9565b50505050565b61203881565b606061392c8261404b565b613981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ef9602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613a2a5780601f106139ff57610100808354040283529160200191613a2a565b820191906000526020600020905b815481529060010190602001808311613a0d57829003601f168201915b505050505090506060613a3b61295a565b9050600081511415613a51578192505050613bed565b600082511115613b225780826040516020018083805190602001908083835b60208310613a935780518252602082019150602081019050602083039250613a70565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613ae45780518252602082019150602081019050602083039250613ac1565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613bed565b80613b2c85614a4b565b6040516020018083805190602001908083835b60208310613b625780518252602082019150602081019050602083039250613b3f565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613bb35780518252602082019150602081019050602083039250613b90565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b613bfa614068565b73ffffffffffffffffffffffffffffffffffffffff16613c186134ac565b73ffffffffffffffffffffffffffffffffffffffff1614613ca1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b613d58816014614b9290919063ffffffff16565b507f2234edb6f393cd207251f6579b5852192c144c4c12b9cc32e80539ef12faed3f81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b600f5481565b613e5e614068565b73ffffffffffffffffffffffffffffffffffffffff16613e7c6134ac565b73ffffffffffffffffffffffffffffffffffffffff1614613f05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c406026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000614061826002614bc290919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166140e383612923565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061413782600001614bdc565b9050919050565b6000828211156141b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b60008082840190508381101561423f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b614263828260405180602001604052806000815250614bed565b5050565b600080600080614293866000018673ffffffffffffffffffffffffffffffffffffffff1660001b614c5e565b91509150818160001c9350935050509250929050565b60006142d5846000018473ffffffffffffffffffffffffffffffffffffffff1660001b8460001b614cca565b90509392505050565b6142ef6142e9614068565b82614da6565b614344576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615f496031913960400191505060405180910390fd5b600c60019054906101000a900460ff166143a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615c666023913960400191505060405180910390fd5b6143bd8260146147f190919063ffffffff16565b15614430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206164647265737320697320696e2074686520626c61636b6c6973740081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16614451826113bf565b73ffffffffffffffffffffffffffffffffffffffff16146144da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f746865204e46542069732063757272656e746c7920706c65646765640000000081525060200191505060405180910390fd5b5050565b8273ffffffffffffffffffffffffffffffffffffffff166144fe82612923565b73ffffffffffffffffffffffffffffffffffffffff161461456a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615ed06029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156145f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615cd56024913960400191505060405180910390fd5b6145fb838383614e9a565b614606600082614070565b61465781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614e9f90919063ffffffff16565b506146a981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614eb990919063ffffffff16565b506146c081836002614ed39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008083141561473457600090506147a1565b600082840290508284828161474557fe5b041461479c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615e836021913960400191505060405180910390fd5b809150505b92915050565b60006147b68360000183614f08565b60001c905092915050565b60006147e9836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614f8b565b905092915050565b6000614819836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614fae565b905092915050565b6000806000806148348660000186614fd1565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190614863929190615b4e565b5050565b600061487a846000018460001b8461506a565b60001c90509392505050565b600061489482600001615160565b9050919050565b60006148c3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615171565b60001c905092915050565b60006148f6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615230565b905092915050565b6000614926836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615349565b905092915050565b816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f06dc35e85295d326756338214d356e435ccad3aea98c6244edef1da825d2f1088183604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b6149e48484846144de565b6149f0848484846153b9565b614a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615c0e6032913960400191505060405180910390fd5b50505050565b60606000821415614a93576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614b8d565b600082905060005b60008214614abd578080600101915050600a8281614ab557fe5b049150614a9b565b60608167ffffffffffffffff81118015614ad657600080fd5b506040519080825280601f01601f191660200182016040528015614b095781602001600182028036833780820191505090505b50905060006001830390508593505b60008414614b8557600a8481614b2a57fe5b0660300160f81b82828060019003935081518110614b4457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481614b7d57fe5b049350614b18565b819450505050505b919050565b6000614bba836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6155d2565b905092915050565b6000614bd4836000018360001b614f8b565b905092915050565b600081600001805490509050919050565b614bf783836156ba565b614c0460008484846153b9565b614c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615c0e6032913960400191505060405180910390fd5b505050565b60008060008460010160008581526020019081526020016000205490506000811415614c97576000808060001b90509250925050614cc3565b6001856000016001830381548110614cab57fe5b90600052602060002090600202016001015492509250505b9250929050565b6000808460010160008581526020019081526020016000205490506000811415614d7157846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614d9f565b82856000016001830381548110614d8457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b6000614db18261404b565b614e06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615d1f602c913960400191505060405180910390fd5b6000614e1183612923565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480614e8057508373ffffffffffffffffffffffffffffffffffffffff16614e6884611505565b73ffffffffffffffffffffffffffffffffffffffff16145b80614e915750614e908185613da9565b5b91505092915050565b505050565b6000614eb1836000018360001b6155d2565b905092915050565b6000614ecb836000018360001b615349565b905092915050565b6000614eff846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614cca565b90509392505050565b600081836000018054905011614f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615bec6022913960400191505060405180910390fd5b826000018281548110614f7857fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b60008082846000018054905011615033576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615e616022913960400191505060405180910390fd5b600084600001848154811061504457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390615131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156150f65780820151818401526020810190506150db565b50505050905090810190601f1680156151235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061514457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811415615203576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f456e756d657261626c654d61703a206e6f6e6578697374656e74206b6579000081525060200191505060405180910390fd5b83600001600182038154811061521557fe5b90600052602060002090600202016001015491505092915050565b6000808360010160008481526020019081526020016000205490506000811461533d576000600182039050600060018660000180549050039050600086600001828154811061527b57fe5b906000526020600020906002020190508087600001848154811061529b57fe5b90600052602060002090600202016000820154816000015560018201548160010155905050600183018760010160008360000154815260200190815260200160002081905550866000018054806152ee57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050615343565b60009150505b92915050565b60006153558383614fae565b6153ae5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506153b3565b600090505b92915050565b60006153da8473ffffffffffffffffffffffffffffffffffffffff166158ae565b6153e757600190506155ca565b606061555163150b7a0260e01b6153fc614068565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015615480578082015181840152602081019050615465565b50505050905090810190601f1680156154ad5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615c0e603291398773ffffffffffffffffffffffffffffffffffffffff166158c19092919063ffffffff16565b9050600081806020019051602081101561556a57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020549050600081146156ae576000600182039050600060018660000180549050039050600086600001828154811061561d57fe5b906000526020600020015490508087600001848154811061563a57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061567257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506156b4565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561575d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6157668161404b565b156157d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6157e560008383614e9a565b61583681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614eb990919063ffffffff16565b5061584d81836002614ed39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606158d084846000856158d9565b90509392505050565b606082471015615934576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615cf96026913960400191505060405180910390fd5b61593d856158ae565b6159af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106159ff57805182526020820191506020810190506020830392506159dc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615a61576040519150601f19603f3d011682016040523d82523d6000602084013e615a66565b606091505b5091509150615a76828286615a82565b92505050949350505050565b60608315615a9257829050615b47565b600083511115615aa55782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615b0c578082015181840152602081019050615af1565b50505050905090810190601f168015615b395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10615b8f57805160ff1916838001178555615bbd565b82800160010185558215615bbd579182015b82811115615bbc578251825591602001919060010190615ba1565b5b509050615bca9190615bce565b5090565b5b80821115615be7576000816000905550600101615bcf565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734e6f74207472616e7366657261626c6520666f72207468652074696d65206265696e6753616c65206d7573742062652061637469766520746f206d696e74204d6574617274507572636861736520776f756c6420657863656564206d617820737570706c79206f6620546f6b656e734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e41646472657373657320617265206e6f742077686974656c6973746564206f72206164647265737365732068617665206265656e206361737420696e204e4654507572636861736520776f756c6420657863656564206d617820737570706c79206f6620746f6b656e73456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656461646472657373206d696e74204e46542063616e6e6f742062652072656d6f766564a264697066735822122068733d28ae6b0f4f364ffa1844abb175c8593bdce61b4761acbb622a080cd03364736f6c6343000700003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e546163697475726e2d726f626f74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000554616c696e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102875760003560e01c806355f804b31161015a57806395d89b41116100c1578063c87b56dd1161007a578063c87b56dd1461118a578063e4997dc51461123e578063e985e9c51461128f578063eb8d244414611316578063ef35668214611343578063f2fde38b1461136e57610287565b806395d89b4114610e95578063a22cb46514610f25578063a53c20c814610f82578063a9b5a05814611012578063b88d4fde1461104d578063c5464ae81461115f57610287565b806371a6d0aa1161011357806371a6d0aa14610c655780637259863c14610cb65780637270024114610d7b578063743b345214610dcc57806381b724ba14610e275780638da5cb5b14610e5457610287565b806355f804b314610a155780635a85b86b14610add5780636352211e14610af45780636c0360eb14610b5957806370a0823114610be9578063715018a614610c4e57610287565b80632f745c59116101fe57806342842e0e116101b757806342842e0e1461080657806342fa30f2146108815780634433f1cb146108e85780634bb2be33146109135780634dc63d7e146109585780634f6ccce7146109c657610287565b80632f745c591461062557806332af69a91461069457806334918dfd146106bf57806339e899ee146106d65780633ccfd60b146107275780633e90b76d1461073e57610287565b80630d39fc81116102505780630d39fc81146104b157806318160ddd146104dc57806318af5361146105075780631fb8e2b51461056557806323b872dd1461057c57806328eec1f1146105f757610287565b8062317e951461028c57806301ffc9a7146102f157806306fdde0314610361578063081812fc146103f1578063095ea7b314610456575b600080fd5b34801561029857600080fd5b506102c5600480360360208110156102af57600080fd5b81019080803590602001909291905050506113bf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156102fd57600080fd5b506103496004803603602081101561031457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506113fc565b60405180821515815260200191505060405180910390f35b34801561036d57600080fd5b50610376611463565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103b657808201518184015260208101905061039b565b50505050905090810190601f1680156103e35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103fd57600080fd5b5061042a6004803603602081101561041457600080fd5b8101908080359060200190929190505050611505565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561046257600080fd5b506104af6004803603604081101561047957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506115a0565b005b3480156104bd57600080fd5b506104c66116e4565b6040518082815260200191505060405180910390f35b3480156104e857600080fd5b506104f16116ea565b6040518082815260200191505060405180910390f35b34801561051357600080fd5b506105636004803603604081101561052a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560ff1690602001909291905050506116fb565b005b34801561057157600080fd5b5061057a61197e565b005b34801561058857600080fd5b506105f56004803603606081101561059f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b81565b005b6106236004803603602081101561060d57600080fd5b8101908080359060200190929190505050611b9b565b005b34801561063157600080fd5b5061067e6004803603604081101561064857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e53565b6040518082815260200191505060405180910390f35b3480156106a057600080fd5b506106a9611eae565b6040518082815260200191505060405180910390f35b3480156106cb57600080fd5b506106d4611eb4565b005b3480156106e257600080fd5b50610725600480360360208110156106f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8f565b005b34801561073357600080fd5b5061073c6121d0565b005b34801561074a57600080fd5b506108046004803603602081101561076157600080fd5b810190808035906020019064010000000081111561077e57600080fd5b82018360208201111561079057600080fd5b803590602001918460018302840111640100000000831117156107b257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506122ce565b005b34801561081257600080fd5b5061087f6004803603606081101561082957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061240f565b005b34801561088d57600080fd5b506108d0600480360360208110156108a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061242f565b60405180821515815260200191505060405180910390f35b3480156108f457600080fd5b506108fd6124ee565b6040518082815260200191505060405180910390f35b34801561091f57600080fd5b506109566004803603604081101561093657600080fd5b8101908080359060200190929190803590602001909291905050506124f4565b005b34801561096457600080fd5b506109a76004803603602081101561097b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126a7565b6040518083151581526020018281526020019250505060405180910390f35b3480156109d257600080fd5b506109ff600480360360208110156109e957600080fd5b810190808035906020019092919050505061276a565b6040518082815260200191505060405180910390f35b348015610a2157600080fd5b50610adb60048036036020811015610a3857600080fd5b8101908080359060200190640100000000811115610a5557600080fd5b820183602082011115610a6757600080fd5b80359060200191846001830284011164010000000083111715610a8957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061278d565b005b348015610ae957600080fd5b50610af2612848565b005b348015610b0057600080fd5b50610b2d60048036036020811015610b1757600080fd5b8101908080359060200190929190505050612923565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b6557600080fd5b50610b6e61295a565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bae578082015181840152602081019050610b93565b50505050905090810190601f168015610bdb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610bf557600080fd5b50610c3860048036036020811015610c0c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506129fc565b6040518082815260200191505060405180910390f35b348015610c5a57600080fd5b50610c63612ad1565b005b348015610c7157600080fd5b50610cb460048036036020811015610c8857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612c41565b005b348015610cc257600080fd5b50610d7960048036036020811015610cd957600080fd5b8101908080359060200190640100000000811115610cf657600080fd5b820183602082011115610d0857600080fd5b80359060200191846020830284011164010000000083111715610d2a57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612e64565b005b348015610d8757600080fd5b50610dca60048036036020811015610d9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506130f5565b005b348015610dd857600080fd5b50610e2560048036036040811015610def57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050613333565b005b348015610e3357600080fd5b50610e3c613499565b60405180821515815260200191505060405180910390f35b348015610e6057600080fd5b50610e696134ac565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610ea157600080fd5b50610eaa6134d6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610eea578082015181840152602081019050610ecf565b50505050905090810190601f168015610f175780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610f3157600080fd5b50610f8060048036036040811015610f4857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050613578565b005b348015610f8e57600080fd5b50610f9761372e565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610fd7578082015181840152602081019050610fbc565b50505050905090810190601f1680156110045780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561101e57600080fd5b5061104b6004803603602081101561103557600080fd5b81019080803590602001909291905050506137cc565b005b34801561105957600080fd5b5061115d6004803603608081101561107057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803590602001906401000000008111156110d757600080fd5b8201836020820111156110e957600080fd5b8035906020019184600183028401116401000000008311171561110b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506138ff565b005b34801561116b57600080fd5b5061117461391b565b6040518082815260200191505060405180910390f35b34801561119657600080fd5b506111c3600480360360208110156111ad57600080fd5b8101908080359060200190929190505050613921565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156112035780820151818401526020810190506111e8565b50505050905090810190601f1680156112305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561124a57600080fd5b5061128d6004803603602081101561126157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bf2565b005b34801561129b57600080fd5b506112fe600480360360408110156112b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613da9565b60405180821515815260200191505060405180910390f35b34801561132257600080fd5b5061132b613e3d565b60405180821515815260200191505060405180910390f35b34801561134f57600080fd5b50611358613e50565b6040518082815260200191505060405180910390f35b34801561137a57600080fd5b506113bd6004803603602081101561139157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613e56565b005b60006011600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114fb5780601f106114d0576101008083540402835291602001916114fb565b820191906000526020600020905b8154815290600101906020018083116114de57829003601f168201915b5050505050905090565b60006115108261404b565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615ea4602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006115ab82612923565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611632576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615f286021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611651614068565b73ffffffffffffffffffffffffffffffffffffffff161480611680575061167f8161167a614068565b613da9565b5b6116d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180615d6c6038913960400191505060405180910390fd5b6116df8383614070565b505050565b60105481565b60006116f66002614129565b905090565b611703614068565b73ffffffffffffffffffffffffffffffffffffffff166117216134ac565b73ffffffffffffffffffffffffffffffffffffffff16146117aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900460ff1661180f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b600f546118578260ff16611849600e5461183b600d5461182d6116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b6141c190919063ffffffff16565b11156118ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cab602a913960400191505060405180910390fd5b60005b8160ff168110156119795760006118ee600e546118e0600d546118d26116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f54811161196b576119038482614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d338260036000604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a15b5080806001019150506118b1565b505050565b600c60009054906101000a900460ff166119e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b6001600e5403600d5410611a5f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5468652072656d61696e696e67204e465420686173206265656e20636173740081525060200191505060405180910390fd5b600080611a7633601261426790919063ffffffff16565b91509150818015611a875750600181105b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526040815260200180615df76040913960400191505060405180910390fd5b611aeb336001600d5401614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d336001600d540160026000604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a16001600d5401600d81905550611b7c336001830160126142a99092919063ffffffff16565b505050565b611b8b83826142de565b611b968383836144de565b505050565b600c60009054906101000a900460ff16611c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b6014811115611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615d4b6021913960400191505060405180910390fd5b6000611c8c600e54611c7e600d54611c706116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f54611ca483836141c190919063ffffffff16565b1115611cfb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615e37602a913960400191505060405180910390fd5b34611d118360105461472190919063ffffffff16565b1115611d85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b82811015611e4e576000611dc2600e54611db4600d54611da66116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f548111611e4057611dd73382614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d33826001601054604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a15b508080600101915050611d88565b505050565b6000611ea682600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206147a790919063ffffffff16565b905092915050565b600e5481565b611ebc614068565b73ffffffffffffffffffffffffffffffffffffffff16611eda6134ac565b73ffffffffffffffffffffffffffffffffffffffff1614611f63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b611f97614068565b73ffffffffffffffffffffffffffffffffffffffff16611fb56134ac565b73ffffffffffffffffffffffffffffffffffffffff161461203e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b6120f58160126147c190919063ffffffff16565b15612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f5468652077686974656c69737420616c7265616479206578697374730000000081525060200191505060405180910390fd5b61217f81600060126142a99092919063ffffffff16565b507f3990e3e141b903f4f5602428874be692206642a653b416f336d965e2f04813ce81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6121d8614068565b73ffffffffffffffffffffffffffffffffffffffff166121f66134ac565b73ffffffffffffffffffffffffffffffffffffffff161461227f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156122ca573d6000803e3d6000fd5b5050565b6122d6614068565b73ffffffffffffffffffffffffffffffffffffffff166122f46134ac565b73ffffffffffffffffffffffffffffffffffffffff161461237d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000815114156123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f63616e206f6e6c7920626520736574206f6e650000000000000000000000000081525060200191505060405180910390fd5b80600b908051906020019061240b929190615b4e565b5050565b61242a838383604051806020016040528060008152506138ff565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b6124e78260146147f190919063ffffffff16565b9050919050565b600d5481565b6124fc614068565b73ffffffffffffffffffffffffffffffffffffffff1661251a6134ac565b73ffffffffffffffffffffffffffffffffffffffff16146125a3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6125d3600e546125c5600d546125b76116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b82101580156125e457506120388211155b612656576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f6d696e74437572724d6178206661696c6564000000000000000000000000000081525060200191505060405180910390fd5b81600f81905550806010819055507f95ae6ca1761edb5b1ec2e7b77a81465ed5a67c86d79e3af4cae8c05d346721b88282604051808381526020018281526020019250505060405180910390a15050565b600080600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b61276183601261426790919063ffffffff16565b91509150915091565b60008061278183600261482190919063ffffffff16565b50905080915050919050565b612795614068565b73ffffffffffffffffffffffffffffffffffffffff166127b36134ac565b73ffffffffffffffffffffffffffffffffffffffff161461283c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6128458161484d565b50565b612850614068565b73ffffffffffffffffffffffffffffffffffffffff1661286e6134ac565b73ffffffffffffffffffffffffffffffffffffffff16146128f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550565b600061295382604051806060016040528060298152602001615dce6029913960026148679092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156129f25780601f106129c7576101008083540402835291602001916129f2565b820191906000526020600020905b8154815290600101906020018083116129d557829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615da4602a913960400191505060405180910390fd5b612aca600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614886565b9050919050565b612ad9614068565b73ffffffffffffffffffffffffffffffffffffffff16612af76134ac565b73ffffffffffffffffffffffffffffffffffffffff1614612b80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b612c49614068565b73ffffffffffffffffffffffffffffffffffffffff16612c676134ac565b73ffffffffffffffffffffffffffffffffffffffff1614612cf0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d93576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b6000612da982601261489b90919063ffffffff16565b14612dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615f7a6022913960400191505060405180910390fd5b612e138160126148ce90919063ffffffff16565b507f1e17ee0599b7c09bb1d0ff1e8086007909da8bfba5c7d18319cb558e66db37ee81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b612e6c614068565b73ffffffffffffffffffffffffffffffffffffffff16612e8a6134ac565b73ffffffffffffffffffffffffffffffffffffffff1614612f13576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c60009054906101000a900460ff16612f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c896022913960400191505060405180910390fd5b600f54612fbe8251612fb0600e54612fa2600d54612f946116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b6141c190919063ffffffff16565b1115613015576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615cab602a913960400191505060405180910390fd5b60005b81518110156130f1576000613053600e54613045600d546130376116ea565b61413e90919063ffffffff16565b6141c190919063ffffffff16565b9050600f5481116130e35761307b83838151811061306d57fe5b602002602001015182614249565b7f385ec4c1f41ed29f371b718dbcc38c7d97f3c3506490f230ed0ed5685ee9227d338260036000604051808573ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200182815260200194505050505060405180910390a15b508080600101915050613018565b5050565b6130fd614068565b73ffffffffffffffffffffffffffffffffffffffff1661311b6134ac565b73ffffffffffffffffffffffffffffffffffffffff16146131a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b61325b8160146147f190919063ffffffff16565b156132ce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f54686520626c61636b6c69737420616c7265616479206578697374730000000081525060200191505060405180910390fd5b6132e28160146148fe90919063ffffffff16565b507fa6d22144cc6564920c775fe8880ea0c048b889ca81849a2cf80893ecee66960881604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600061333e82612923565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f706c6564676520746f2063757272656e74206f776e657200000000000000000081525060200191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16613401614068565b73ffffffffffffffffffffffffffffffffffffffff161461348a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f706c656467652063616c6c6572206973206e6f74206f776e657200000000000081525060200191505060405180910390fd5b613494838361492e565b505050565b600c60019054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561356e5780601f106135435761010080835404028352916020019161356e565b820191906000526020600020905b81548152906001019060200180831161355157829003601f168201915b5050505050905090565b613580614068565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613621576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806005600061362e614068565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166136db614068565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600b8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156137c45780601f10613799576101008083540402835291602001916137c4565b820191906000526020600020905b8154815290600101906020018083116137a757829003601f168201915b505050505081565b60006011600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16613823614068565b73ffffffffffffffffffffffffffffffffffffffff16148061387e57506138486134ac565b73ffffffffffffffffffffffffffffffffffffffff16613866614068565b73ffffffffffffffffffffffffffffffffffffffff16145b6138f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f706c656467652063616c6c6572206973206e6f74206f776e657200000000000081525060200191505060405180910390fd5b6138fb60008361492e565b5050565b61390984836142de565b613915848484846149d9565b50505050565b61203881565b606061392c8261404b565b613981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ef9602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613a2a5780601f106139ff57610100808354040283529160200191613a2a565b820191906000526020600020905b815481529060010190602001808311613a0d57829003601f168201915b505050505090506060613a3b61295a565b9050600081511415613a51578192505050613bed565b600082511115613b225780826040516020018083805190602001908083835b60208310613a935780518252602082019150602081019050602083039250613a70565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613ae45780518252602082019150602081019050602083039250613ac1565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613bed565b80613b2c85614a4b565b6040516020018083805190602001908083835b60208310613b625780518252602082019150602081019050602083039250613b3f565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613bb35780518252602082019150602081019050602083039250613b90565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b613bfa614068565b73ffffffffffffffffffffffffffffffffffffffff16613c186134ac565b73ffffffffffffffffffffffffffffffffffffffff1614613ca1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600c8152602001807f7a65726f2061646472657373000000000000000000000000000000000000000081525060200191505060405180910390fd5b613d58816014614b9290919063ffffffff16565b507f2234edb6f393cd207251f6579b5852192c144c4c12b9cc32e80539ef12faed3f81604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b600f5481565b613e5e614068565b73ffffffffffffffffffffffffffffffffffffffff16613e7c6134ac565b73ffffffffffffffffffffffffffffffffffffffff1614613f05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615c406026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000614061826002614bc290919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166140e383612923565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061413782600001614bdc565b9050919050565b6000828211156141b6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b60008082840190508381101561423f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b614263828260405180602001604052806000815250614bed565b5050565b600080600080614293866000018673ffffffffffffffffffffffffffffffffffffffff1660001b614c5e565b91509150818160001c9350935050509250929050565b60006142d5846000018473ffffffffffffffffffffffffffffffffffffffff1660001b8460001b614cca565b90509392505050565b6142ef6142e9614068565b82614da6565b614344576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615f496031913960400191505060405180910390fd5b600c60019054906101000a900460ff166143a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615c666023913960400191505060405180910390fd5b6143bd8260146147f190919063ffffffff16565b15614430576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f546865206164647265737320697320696e2074686520626c61636b6c6973740081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16614451826113bf565b73ffffffffffffffffffffffffffffffffffffffff16146144da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f746865204e46542069732063757272656e746c7920706c65646765640000000081525060200191505060405180910390fd5b5050565b8273ffffffffffffffffffffffffffffffffffffffff166144fe82612923565b73ffffffffffffffffffffffffffffffffffffffff161461456a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615ed06029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156145f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615cd56024913960400191505060405180910390fd5b6145fb838383614e9a565b614606600082614070565b61465781600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614e9f90919063ffffffff16565b506146a981600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614eb990919063ffffffff16565b506146c081836002614ed39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008083141561473457600090506147a1565b600082840290508284828161474557fe5b041461479c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615e836021913960400191505060405180910390fd5b809150505b92915050565b60006147b68360000183614f08565b60001c905092915050565b60006147e9836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614f8b565b905092915050565b6000614819836000018373ffffffffffffffffffffffffffffffffffffffff1660001b614fae565b905092915050565b6000806000806148348660000186614fd1565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190614863929190615b4e565b5050565b600061487a846000018460001b8461506a565b60001c90509392505050565b600061489482600001615160565b9050919050565b60006148c3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615171565b60001c905092915050565b60006148f6836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615230565b905092915050565b6000614926836000018373ffffffffffffffffffffffffffffffffffffffff1660001b615349565b905092915050565b816011600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f06dc35e85295d326756338214d356e435ccad3aea98c6244edef1da825d2f1088183604051808381526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b6149e48484846144de565b6149f0848484846153b9565b614a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615c0e6032913960400191505060405180910390fd5b50505050565b60606000821415614a93576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614b8d565b600082905060005b60008214614abd578080600101915050600a8281614ab557fe5b049150614a9b565b60608167ffffffffffffffff81118015614ad657600080fd5b506040519080825280601f01601f191660200182016040528015614b095781602001600182028036833780820191505090505b50905060006001830390508593505b60008414614b8557600a8481614b2a57fe5b0660300160f81b82828060019003935081518110614b4457fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481614b7d57fe5b049350614b18565b819450505050505b919050565b6000614bba836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6155d2565b905092915050565b6000614bd4836000018360001b614f8b565b905092915050565b600081600001805490509050919050565b614bf783836156ba565b614c0460008484846153b9565b614c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615c0e6032913960400191505060405180910390fd5b505050565b60008060008460010160008581526020019081526020016000205490506000811415614c97576000808060001b90509250925050614cc3565b6001856000016001830381548110614cab57fe5b90600052602060002090600202016001015492509250505b9250929050565b6000808460010160008581526020019081526020016000205490506000811415614d7157846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050614d9f565b82856000016001830381548110614d8457fe5b90600052602060002090600202016001018190555060009150505b9392505050565b6000614db18261404b565b614e06576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615d1f602c913960400191505060405180910390fd5b6000614e1183612923565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480614e8057508373ffffffffffffffffffffffffffffffffffffffff16614e6884611505565b73ffffffffffffffffffffffffffffffffffffffff16145b80614e915750614e908185613da9565b5b91505092915050565b505050565b6000614eb1836000018360001b6155d2565b905092915050565b6000614ecb836000018360001b615349565b905092915050565b6000614eff846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614cca565b90509392505050565b600081836000018054905011614f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615bec6022913960400191505060405180910390fd5b826000018281548110614f7857fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b60008082846000018054905011615033576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615e616022913960400191505060405180910390fd5b600084600001848154811061504457fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390615131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156150f65780820151818401526020810190506150db565b50505050905090810190601f1680156151235780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061514457fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b6000808360010160008481526020019081526020016000205490506000811415615203576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f456e756d657261626c654d61703a206e6f6e6578697374656e74206b6579000081525060200191505060405180910390fd5b83600001600182038154811061521557fe5b90600052602060002090600202016001015491505092915050565b6000808360010160008481526020019081526020016000205490506000811461533d576000600182039050600060018660000180549050039050600086600001828154811061527b57fe5b906000526020600020906002020190508087600001848154811061529b57fe5b90600052602060002090600202016000820154816000015560018201548160010155905050600183018760010160008360000154815260200190815260200160002081905550866000018054806152ee57fe5b6001900381819060005260206000209060020201600080820160009055600182016000905550509055866001016000878152602001908152602001600020600090556001945050505050615343565b60009150505b92915050565b60006153558383614fae565b6153ae5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506153b3565b600090505b92915050565b60006153da8473ffffffffffffffffffffffffffffffffffffffff166158ae565b6153e757600190506155ca565b606061555163150b7a0260e01b6153fc614068565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015615480578082015181840152602081019050615465565b50505050905090810190601f1680156154ad5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615c0e603291398773ffffffffffffffffffffffffffffffffffffffff166158c19092919063ffffffff16565b9050600081806020019051602081101561556a57600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020549050600081146156ae576000600182039050600060018660000180549050039050600086600001828154811061561d57fe5b906000526020600020015490508087600001848154811061563a57fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061567257fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506156b4565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561575d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6157668161404b565b156157d9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6157e560008383614e9a565b61583681600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614eb990919063ffffffff16565b5061584d81836002614ed39092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606158d084846000856158d9565b90509392505050565b606082471015615934576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615cf96026913960400191505060405180910390fd5b61593d856158ae565b6159af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106159ff57805182526020820191506020810190506020830392506159dc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615a61576040519150601f19603f3d011682016040523d82523d6000602084013e615a66565b606091505b5091509150615a76828286615a82565b92505050949350505050565b60608315615a9257829050615b47565b600083511115615aa55782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015615b0c578082015181840152602081019050615af1565b50505050905090810190601f168015615b395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10615b8f57805160ff1916838001178555615bbd565b82800160010185558215615bbd579182015b82811115615bbc578251825591602001919060010190615ba1565b5b509050615bca9190615bce565b5090565b5b80821115615be7576000816000905550600101615bcf565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734e6f74207472616e7366657261626c6520666f72207468652074696d65206265696e6753616c65206d7573742062652061637469766520746f206d696e74204d6574617274507572636861736520776f756c6420657863656564206d617820737570706c79206f6620546f6b656e734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d654552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e41646472657373657320617265206e6f742077686974656c6973746564206f72206164647265737365732068617665206265656e206361737420696e204e4654507572636861736520776f756c6420657863656564206d617820737570706c79206f6620746f6b656e73456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e6473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656461646472657373206d696e74204e46542063616e6e6f742062652072656d6f766564a264697066735822122068733d28ae6b0f4f364ffa1844abb175c8593bdce61b4761acbb622a080cd03364736f6c63430007000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e546163697475726e2d726f626f74000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000554616c696e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Taciturn-robot
Arg [1] : symbol (string): Talin

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 546163697475726e2d726f626f74000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 54616c696e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67907:8678:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69920:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;9966:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52663:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55449:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54979:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68434:43;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54457:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74429:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75987:595;;;;;;;;;;;;;:::i;:::-;;72611:195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;75131:847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54219:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;68321:37;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72249:89;;;;;;;;;;;;;:::i;:::-;;70395:278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72042:131;;;;;;;;;;;;;:::i;:::-;;71864:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72877:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71671:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68276:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;70041:340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;70978:188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;54745:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72441:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72346:87;;;;;;;;;;;;;:::i;:::-;;52419:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54038:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52136:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67350:148;;;;;;;;;;;;;:::i;:::-;;70681:289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73764:653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;71175:276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69367:275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68236:30;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66699:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52832:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55742:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68101:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69650:262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73530:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68140:41;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53007:792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71459:204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56108:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68194:32;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68368:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67653:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69920:115;69978:7;70005:12;:22;70018:8;70005:22;;;;;;;;;;;;;;;;;;;;;69998:29;;69920:115;;;:::o;9966:150::-;10051:4;10075:20;:33;10096:11;10075:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10068:40;;9966:150;;;:::o;52663:100::-;52717:13;52750:5;52743:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52663:100;:::o;55449:221::-;55525:7;55553:16;55561:7;55553;:16::i;:::-;55545:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55638:15;:24;55654:7;55638:24;;;;;;;;;;;;;;;;;;;;;55631:31;;55449:221;;;:::o;54979:404::-;55060:13;55076:23;55091:7;55076:14;:23::i;:::-;55060:39;;55124:5;55118:11;;:2;:11;;;;55110:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55204:5;55188:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;55213:44;55237:5;55244:12;:10;:12::i;:::-;55213:23;:44::i;:::-;55188:69;55180:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55354:21;55363:2;55367:7;55354:8;:21::i;:::-;54979:404;;;:::o;68434:43::-;;;;:::o;54457:211::-;54518:7;54639:21;:12;:19;:21::i;:::-;54632:28;;54457:211;:::o;74429:653::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74529:12:::1;;;;;;;;;;;74521:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74670:16;;74599:68;74659:7;74599:68;;:55;74639:14;;74599:35;74617:16;;74599:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;:59;;:68;;;;:::i;:::-;:87;;74591:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74751:9;74746:327;74765:7;74763:9;;:1;:9;74746:327;;;74792:17;74812:55;74852:14;;74812:35;74830:16;;74812:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;74792:75;;74904:16;;74891:9;:29;74887:175;;74945:31;74955:9;74966;74945;:31::i;:::-;75006:36;75017:10;75028:9;75038:1;75040;75006:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74887:175;74746:327;74773:3;;;;;;;74746:327;;;;74429:653:::0;;:::o;75987:595::-;76044:12;;;;;;;;;;;76036:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76148:1;76133:14;;:16;76114;;:35;76106:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76196:12;76209:14;76228:28;76245:10;76228:9;:16;;:28;;;;:::i;:::-;76195:61;;;;76275:7;:21;;;;;76295:1;76286:6;:10;76275:21;76267:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76377:41;76387:10;76416:1;76399:16;;:18;76377:9;:41::i;:::-;76434:45;76445:10;76473:1;76456:16;;:18;76475:1;76477;76434:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76528:1;76509:16;;:20;76490:16;:39;;;;76540:34;76554:10;76572:1;76565:6;:8;76540:9;:13;;:34;;;;;:::i;:::-;;75987:595;;:::o;72611:195::-;72719:29;72734:4;72740:7;72719:14;:29::i;:::-;72759:28;72769:4;72775:2;72779:7;72759:9;:28::i;:::-;72611:195;;;:::o;75131:847::-;75206:12;;;;;;;;;;;75198:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75294:2;75276:14;:20;;75268:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75345:14;75362:55;75402:14;;75362:35;75380:16;;75362:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;75345:72;;75469:16;;75436:29;75450:14;75436:9;:13;;:29;;;;:::i;:::-;:49;;75428:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75583:9;75551:28;75564:14;75551:8;;:12;;:28;;;;:::i;:::-;:41;;75543:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75643:6;75639:326;75659:14;75655:1;:18;75639:326;;;75697:14;75714:55;75754:14;;75714:35;75732:16;;75714:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;75697:72;;75802:16;;75789:9;:29;75785:169;;75839:32;75849:10;75861:9;75839;:32::i;:::-;75895:43;75906:10;75917:9;75927:1;75929:8;;75895:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75785:169;75639:326;75675:3;;;;;;;75639:326;;;;75131:847;;:::o;54219:162::-;54316:7;54343:30;54367:5;54343:13;:20;54357:5;54343:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;54336:37;;54219:162;;;;:::o;68321:37::-;;;;:::o;72249:89::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72318:12:::1;;;;;;;;;;;72317:13;72302:12;;:28;;;;;;;;;;;;;;;;;;72249:89::o:0;70395:278::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70491:1:::1;70471:22;;:8;:22;;;;70463:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70530:28;70549:8;70530:9;:18;;:28;;;;:::i;:::-;70529:29;70521:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70601:25;70615:8;70624:1;70601:9;:13;;:25;;;;;:::i;:::-;;70643:22;70656:8;70643:22;;;;;;;;;;;;;;;;;;;;70395:278:::0;:::o;72042:131::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72090:12:::1;72105:21;72090:36;;72137:10;:19;;:28;72157:7;72137:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;66990:1;72042:131::o:0;71864:164::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71967:1:::1;71950:5;71944:19;:24;;71936:55;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;72015:5;72002:10;:18;;;;;;;;;;;;:::i;:::-;;71864:164:::0;:::o;72877:151::-;72981:39;72998:4;73004:2;73008:7;72981:39;;;;;;;;;;;;:16;:39::i;:::-;72877:151;;;:::o;71671:181::-;71734:4;71779:1;71759:22;;:8;:22;;;;71751:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71816:28;71835:8;71816:9;:18;;:28;;;;:::i;:::-;71809:35;;71671:181;;;:::o;68276:35::-;;;;:::o;70041:340::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70150:55:::1;70190:14;;70150:35;70168:16;;70150:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;70135:11;:70;;:98;;;;;68177:4;70209:11;:24;;70135:98;70127:129;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70286:11;70267:16;:30;;;;70319:5;70308:8;:16;;;;70340:33;70355:11;70367:5;70340:33;;;;;;;;;;;;;;;;;;;;;;;;70041:340:::0;;:::o;70978:188::-;71041:4;71046:7;71094:1;71074:22;;:8;:22;;;;71066:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71131:26;71148:8;71131:9;:16;;:26;;;;:::i;:::-;71124:33;;;;70978:188;;;:::o;54745:172::-;54820:7;54841:15;54862:22;54878:5;54862:12;:15;;:22;;;;:::i;:::-;54840:44;;;54902:7;54895:14;;;54745:172;;;:::o;72441:99::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72512:20:::1;72524:7;72512:11;:20::i;:::-;72441:99:::0;:::o;72346:87::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72415:10:::1;;;;;;;;;;;72414:11;72401:10;;:24;;;;;;;;;;;;;;;;;;72346:87::o:0;52419:177::-;52491:7;52518:70;52535:7;52518:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;52511:77;;52419:177;;;:::o;54038:97::-;54086:13;54119:8;54112:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54038:97;:::o;52136:221::-;52208:7;52253:1;52236:19;;:5;:19;;;;52228:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52320:29;:13;:20;52334:5;52320:20;;;;;;;;;;;;;;;:27;:29::i;:::-;52313:36;;52136:221;;;:::o;67350:148::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67457:1:::1;67420:40;;67441:6;;;;;;;;;;;67420:40;;;;;;;;;;;;67488:1;67471:6;;:19;;;;;;;;;;;;;;;;;;67350:148::o:0;70681:289::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70779:1:::1;70759:22;;:8;:22;;;;70751:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;70844:1;70817:23;70831:8;70817:9;:13;;:23;;;;:::i;:::-;:28;70809:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70894:26;70911:8;70894:9;:16;;:26;;;;:::i;:::-;;70937:25;70953:8;70937:25;;;;;;;;;;;;;;;;;;;;70681:289:::0;:::o;73764:653::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73850:12:::1;;;;;;;;;;;73842:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74000:16;;73920:77;73980:9;:16;73920:55;73960:14;;73920:35;73938:16;;73920:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;:59;;:77;;;;:::i;:::-;:96;;73912:153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74080:9;74076:329;74099:9;:16;74095:1;:20;74076:329;;;74137:17;74157:55;74197:14;;74157:35;74175:16;;74157:13;:11;:13::i;:::-;:17;;:35;;;;:::i;:::-;:39;;:55;;;;:::i;:::-;74137:75;;74245:16;;74232:9;:29;74228:166;;74282:34;74292:9;74302:1;74292:12;;;;;;;;;;;;;;74306:9;74282;:34::i;:::-;74342:36;74353:10;74364:9;74374:1;74376;74342:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74228:166;74076:329;74117:3;;;;;;;74076:329;;;;73764:653:::0;:::o;71175:276::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71271:1:::1;71251:22;;:8;:22;;;;71243:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;71310:28;71329:8;71310:9;:18;;:28;;;;:::i;:::-;71309:29;71301:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;71381:23;71395:8;71381:9;:13;;:23;;;;:::i;:::-;;71421:22;71434:8;71421:22;;;;;;;;;;;;;;;;;;;;71175:276:::0;:::o;69367:275::-;69432:13;69448:23;69463:7;69448:14;:23::i;:::-;69432:39;;69496:5;69490:11;;:2;:11;;;;69482:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69564:5;69548:21;;:12;:10;:12::i;:::-;:21;;;69540:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69614:20;69622:2;69626:7;69614;:20::i;:::-;69367:275;;;:::o;68236:30::-;;;;;;;;;;;;;:::o;66699:87::-;66745:7;66772:6;;;;;;;;;;;66765:13;;66699:87;:::o;52832:104::-;52888:13;52921:7;52914:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52832:104;:::o;55742:295::-;55857:12;:10;:12::i;:::-;55845:24;;:8;:24;;;;55837:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55957:8;55912:18;:32;55931:12;:10;:12::i;:::-;55912:32;;;;;;;;;;;;;;;:42;55945:8;55912:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;56010:8;55981:48;;55996:12;:10;:12::i;:::-;55981:48;;;56020:8;55981:48;;;;;;;;;;;;;;;;;;;;55742:295;;:::o;68101:29::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;69650:262::-;69709:20;69732:12;:21;69745:7;69732:21;;;;;;;;;;;;;;;;;;;;;69709:44;;69789:12;69773:28;;:12;:10;:12::i;:::-;:28;;;:61;;;;69819:15;:13;:15::i;:::-;69804:30;;:12;:10;:12::i;:::-;:30;;;69773:61;69765:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69876:28;69892:1;69896:7;69876;:28::i;:::-;69650:262;;:::o;73530:227::-;73660:29;73675:4;73681:7;73660:14;:29::i;:::-;73700:39;73714:4;73720:2;73724:7;73733:5;73700:13;:39::i;:::-;73530:227;;;;:::o;68140:41::-;68177:4;68140:41;:::o;53007:792::-;53080:13;53114:16;53122:7;53114;:16::i;:::-;53106:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53195:23;53221:10;:19;53232:7;53221:19;;;;;;;;;;;53195:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53251:18;53272:9;:7;:9::i;:::-;53251:30;;53379:1;53363:4;53357:18;:23;53353:72;;;53404:9;53397:16;;;;;;53353:72;53555:1;53535:9;53529:23;:27;53525:108;;;53604:4;53610:9;53587:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53573:48;;;;;;53525:108;53765:4;53771:18;:7;:16;:18::i;:::-;53748:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53734:57;;;;53007:792;;;;:::o;71459:204::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71557:1:::1;71537:22;;:8;:22;;;;71529:47;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;71587:26;71604:8;71587:9;:16;;:26;;;;:::i;:::-;;71630:25;71646:8;71630:25;;;;;;;;;;;;;;;;;;;;71459:204:::0;:::o;56108:164::-;56205:4;56229:18;:25;56248:5;56229:25;;;;;;;;;;;;;;;:35;56255:8;56229:35;;;;;;;;;;;;;;;;;;;;;;;;;56222:42;;56108:164;;;;:::o;68194:32::-;;;;;;;;;;;;;:::o;68368:38::-;;;;:::o;67653:244::-;66930:12;:10;:12::i;:::-;66919:23;;:7;:5;:7::i;:::-;:23;;;66911:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67762:1:::1;67742:22;;:8;:22;;;;67734:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67852:8;67823:38;;67844:6;;;;;;;;;;;67823:38;;;;;;;;;;;;67881:8;67872:6;;:17;;;;;;;;;;;;;;;;;;67653:244:::0;:::o;58702:127::-;58767:4;58791:30;58813:7;58791:12;:21;;:30;;;;:::i;:::-;58784:37;;58702:127;;;:::o;618:106::-;671:15;706:10;699:17;;618:106;:::o;64720:192::-;64822:2;64795:15;:24;64811:7;64795:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64878:7;64874:2;64840:46;;64849:23;64864:7;64849:14;:23::i;:::-;64840:46;;;;;;;;;;;;64720:192;;:::o;43857:123::-;43926:7;43953:19;43961:3;:10;;43953:7;:19::i;:::-;43946:26;;43857:123;;;:::o;13951:158::-;14009:7;14042:1;14037;:6;;14029:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14100:1;14096;:5;14089:12;;13951:158;;;;:::o;13489:179::-;13547:7;13567:9;13583:1;13579;:5;13567:17;;13608:1;13603;:6;;13595:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13659:1;13652:8;;;13489:179;;;;:::o;59694:110::-;59770:26;59780:2;59784:7;59770:26;;;;;;;;;;;;:9;:26::i;:::-;59694:110;;:::o;46815:243::-;46897:4;46903:7;46924:12;46938:13;46955:51;46963:3;:10;;46999:3;46983:21;;46975:30;;46955:7;:51::i;:::-;46923:83;;;;47025:7;47043:5;47035:14;;47017:33;;;;;;46815:243;;;;;:::o;45910:179::-;45996:4;46019:62;46024:3;:10;;46059:3;46043:21;;46035:30;;46074:5;46066:14;;46019:4;:62::i;:::-;46012:69;;45910:179;;;;;:::o;73036:423::-;73126:41;73145:12;:10;:12::i;:::-;73159:7;73126:18;:41::i;:::-;73118:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73240:10;;;;;;;;;;;73232:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73309:24;73328:4;73309:9;:18;;:24;;;;:::i;:::-;73308:25;73300:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73417:1;73387:32;;:18;73397:7;73387:9;:18::i;:::-;:32;;;73379:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73036:423;;:::o;62132:599::-;62257:4;62230:31;;:23;62245:7;62230:14;:23::i;:::-;:31;;;62222:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62358:1;62344:16;;:2;:16;;;;62336:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62414:39;62435:4;62441:2;62445:7;62414:20;:39::i;:::-;62518:29;62535:1;62539:7;62518:8;:29::i;:::-;62560:35;62587:7;62560:13;:19;62574:4;62560:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;62606:30;62628:7;62606:13;:17;62620:2;62606:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;62649:29;62666:7;62675:2;62649:12;:16;;:29;;;;;:::i;:::-;;62715:7;62711:2;62696:27;;62705:4;62696:27;;;;;;;;;;;;62132:599;;;:::o;14368:220::-;14426:7;14455:1;14450;:6;14446:20;;;14465:1;14458:8;;;;14446:20;14477:9;14493:1;14489;:5;14477:17;;14522:1;14517;14513;:5;;;;;;:10;14505:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14579:1;14572:8;;;14368:220;;;;;:::o;35687:137::-;35758:7;35793:22;35797:3;:10;;35809:5;35793:3;:22::i;:::-;35785:31;;35778:38;;35687:137;;;;:::o;46265:169::-;46349:4;46373:53;46383:3;:10;;46419:3;46403:21;;46395:30;;46373:9;:53::i;:::-;46366:60;;46265:169;;;;:::o;33345:167::-;33425:4;33449:55;33459:3;:10;;33495:5;33479:23;;33471:32;;33449:9;:55::i;:::-;33442:62;;33345:167;;;;:::o;44319:236::-;44399:7;44408;44429:11;44442:13;44459:22;44463:3;:10;;44475:5;44459:3;:22::i;:::-;44428:53;;;;44508:3;44500:12;;44538:5;44530:14;;44492:55;;;;;;44319:236;;;;;:::o;63332:100::-;63416:8;63405;:19;;;;;;;;;;;;:::i;:::-;;63332:100;:::o;45605:213::-;45712:7;45763:44;45768:3;:10;;45788:3;45780:12;;45794;45763:4;:44::i;:::-;45755:53;;45732:78;;45605:213;;;;;:::o;35229:114::-;35289:7;35316:19;35324:3;:10;;35316:7;:19::i;:::-;35309:26;;35229:114;;;:::o;47071:170::-;47150:7;47185:47;47190:3;:10;;47225:3;47209:21;;47201:30;;47185:4;:47::i;:::-;47177:56;;47170:63;;47071:170;;;;:::o;46097:160::-;46174:4;46198:51;46206:3;:10;;46242:3;46226:21;;46218:30;;46198:7;:51::i;:::-;46191:58;;46097:160;;;;:::o;32773:152::-;32843:4;32867:50;32872:3;:10;;32908:5;32892:23;;32884:32;;32867:4;:50::i;:::-;32860:57;;32773:152;;;;:::o;69224:135::-;69315:2;69291:12;:21;69304:7;69291:21;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;69333:18;69340:7;69348:2;69333:18;;;;;;;;;;;;;;;;;;;;;;;;;;69224:135;;:::o;58117:272::-;58231:28;58241:4;58247:2;58251:7;58231:9;:28::i;:::-;58278:48;58301:4;58307:2;58311:7;58320:5;58278:22;:48::i;:::-;58270:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58117:272;;;;:::o;47671:746::-;47727:13;47957:1;47948:5;:10;47944:53;;;47975:10;;;;;;;;;;;;;;;;;;;;;47944:53;48007:12;48022:5;48007:20;;48038:14;48063:78;48078:1;48070:4;:9;48063:78;;48096:8;;;;;;;48127:2;48119:10;;;;;;;;;48063:78;;;48151:19;48183:6;48173:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48151:39;;48201:13;48226:1;48217:6;:10;48201:26;;48245:5;48238:12;;48261:117;48276:1;48268:4;:9;48261:117;;48337:2;48330:4;:9;;;;;;48325:2;:14;48312:29;;48294:6;48301:7;;;;;;;48294:15;;;;;;;;;;;:47;;;;;;;;;;;48364:2;48356:10;;;;;;;;;48261:117;;;48402:6;48388:21;;;;;;47671:746;;;;:::o;33101:158::-;33174:4;33198:53;33206:3;:10;;33242:5;33226:23;;33218:32;;33198:7;:53::i;:::-;33191:60;;33101:158;;;;:::o;43618:151::-;43702:4;43726:35;43736:3;:10;;43756:3;43748:12;;43726:9;:35::i;:::-;43719:42;;43618:151;;;;:::o;40438:110::-;40494:7;40521:3;:12;;:19;;;;40514:26;;40438:110;;;:::o;60031:250::-;60127:18;60133:2;60137:7;60127:5;:18::i;:::-;60164:54;60195:1;60199:2;60203:7;60212:5;60164:22;:54::i;:::-;60156:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60031:250;;;:::o;41330:308::-;41399:4;41405:7;41425:16;41444:3;:12;;:17;41457:3;41444:17;;;;;;;;;;;;41425:36;;41488:1;41476:8;:13;41472:36;;;41499:5;41506:1;41491:17;;;;;;;;;;;;41472:36;41563:4;41569:3;:12;;41593:1;41582:8;:12;41569:26;;;;;;;;;;;;;;;;;;:33;;;41555:48;;;;;41330:308;;;;;;:::o;37718:692::-;37794:4;37910:16;37929:3;:12;;:17;37942:3;37929:17;;;;;;;;;;;;37910:36;;37975:1;37963:8;:13;37959:444;;;38030:3;:12;;38048:38;;;;;;;;38065:3;38048:38;;;;38078:5;38048:38;;;38030:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38245:3;:12;;:19;;;;38225:3;:12;;:17;38238:3;38225:17;;;;;;;;;;;:39;;;;38286:4;38279:11;;;;;37959:444;38359:5;38323:3;:12;;38347:1;38336:8;:12;38323:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38386:5;38379:12;;;37718:692;;;;;;:::o;58996:355::-;59089:4;59114:16;59122:7;59114;:16::i;:::-;59106:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59190:13;59206:23;59221:7;59206:14;:23::i;:::-;59190:39;;59259:5;59248:16;;:7;:16;;;:51;;;;59292:7;59268:31;;:20;59280:7;59268:11;:20::i;:::-;:31;;;59248:51;:94;;;;59303:39;59327:5;59334:7;59303:23;:39::i;:::-;59248:94;59240:103;;;58996:355;;;;:::o;65525:93::-;;;;:::o;34774:137::-;34844:4;34868:35;34876:3;:10;;34896:5;34888:14;;34868:7;:35::i;:::-;34861:42;;34774:137;;;;:::o;34467:131::-;34534:4;34558:32;34563:3;:10;;34583:5;34575:14;;34558:4;:32::i;:::-;34551:39;;34467:131;;;;:::o;43041:185::-;43130:4;43154:64;43159:3;:10;;43179:3;43171:12;;43209:5;43193:23;;43185:32;;43154:4;:64::i;:::-;43147:71;;43041:185;;;;;:::o;30725:204::-;30792:7;30841:5;30820:3;:11;;:18;;;;:26;30812:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30903:3;:11;;30915:5;30903:18;;;;;;;;;;;;;;;;30896:25;;30725:204;;;;:::o;40218:125::-;40289:4;40334:1;40313:3;:12;;:17;40326:3;40313:17;;;;;;;;;;;;:22;;40306:29;;40218:125;;;;:::o;30057:129::-;30130:4;30177:1;30154:3;:12;;:19;30167:5;30154:19;;;;;;;;;;;;:24;;30147:31;;30057:129;;;;:::o;40903:279::-;40970:7;40979;41029:5;41007:3;:12;;:19;;;;:27;40999:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41086:22;41111:3;:12;;41124:5;41111:19;;;;;;;;;;;;;;;;;;41086:44;;41149:5;:10;;;41161:5;:12;;;41141:33;;;;;40903:279;;;;;:::o;42400:319::-;42494:7;42514:16;42533:3;:12;;:17;42546:3;42533:17;;;;;;;;;;;;42514:36;;42581:1;42569:8;:13;;42584:12;42561:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42651:3;:12;;42675:1;42664:8;:12;42651:26;;;;;;;;;;;;;;;;;;:33;;;42644:40;;;42400:319;;;;;:::o;30272:109::-;30328:7;30355:3;:11;;:18;;;;30348:25;;30272:109;;;:::o;41799:311::-;41865:7;41885:16;41904:3;:12;;:17;41917:3;41904:17;;;;;;;;;;;;41885:36;;41952:1;41940:8;:13;;41932:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42042:3;:12;;42066:1;42055:8;:12;42042:26;;;;;;;;;;;;;;;;;;:33;;;42035:40;;;41799:311;;;;:::o;38585:1549::-;38649:4;38765:16;38784:3;:12;;:17;38797:3;38784:17;;;;;;;;;;;;38765:36;;38830:1;38818:8;:13;38814:1313;;39179:21;39214:1;39203:8;:12;39179:36;;39230:17;39272:1;39250:3;:12;;:19;;;;:23;39230:43;;39518:26;39547:3;:12;;39560:9;39547:23;;;;;;;;;;;;;;;;;;39518:52;;39695:9;39665:3;:12;;39678:13;39665:27;;;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;;39819:1;39803:13;:17;39772:3;:12;;:28;39785:9;:14;;;39772:28;;;;;;;;;;;:48;;;;39929:3;:12;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40025:3;:12;;:17;40038:3;40025:17;;;;;;;;;;;40018:24;;;40066:4;40059:11;;;;;;;;38814:1313;40110:5;40103:12;;;38585:1549;;;;;:::o;27837:414::-;27900:4;27922:21;27932:3;27937:5;27922:9;:21::i;:::-;27917:327;;27960:3;:11;;27977:5;27960:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28143:3;:11;;:18;;;;28121:3;:12;;:19;28134:5;28121:19;;;;;;;;;;;:40;;;;28183:4;28176:11;;;;27917:327;28227:5;28220:12;;27837:414;;;;;:::o;63997:604::-;64118:4;64145:15;:2;:13;;;:15::i;:::-;64140:60;;64184:4;64177:11;;;;64140:60;64210:23;64236:252;64289:45;;;64349:12;:10;:12::i;:::-;64376:4;64395:7;64417:5;64252:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64236:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;64210:278;;64499:13;64526:10;64515:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64499:48;;49129:10;64576:16;;64566:26;;;:6;:26;;;;64558:35;;;;63997:604;;;;;;;:::o;28427:1544::-;28493:4;28611:18;28632:3;:12;;:19;28645:5;28632:19;;;;;;;;;;;;28611:40;;28682:1;28668:10;:15;28664:1300;;29030:21;29067:1;29054:10;:14;29030:38;;29083:17;29124:1;29103:3;:11;;:18;;;;:22;29083:42;;29370:17;29390:3;:11;;29402:9;29390:22;;;;;;;;;;;;;;;;29370:42;;29536:9;29507:3;:11;;29519:13;29507:26;;;;;;;;;;;;;;;:38;;;;29655:1;29639:13;:17;29613:3;:12;;:23;29626:9;29613:23;;;;;;;;;;;:43;;;;29765:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;29860:3;:12;;:19;29873:5;29860:19;;;;;;;;;;;29853:26;;;29903:4;29896:11;;;;;;;;28664:1300;29947:5;29940:12;;;28427:1544;;;;;:::o;60617:404::-;60711:1;60697:16;;:2;:16;;;;60689:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60770:16;60778:7;60770;:16::i;:::-;60769:17;60761:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60832:45;60861:1;60865:2;60869:7;60832:20;:45::i;:::-;60890:30;60912:7;60890:13;:17;60904:2;60890:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60933:29;60950:7;60959:2;60933:12;:16;;:29;;;;;:::i;:::-;;61005:7;61001:2;60980:33;;60997:1;60980:33;;;;;;;;;;;;60617:404;;:::o;18893:422::-;18953:4;19161:12;19272:7;19260:20;19252:28;;19306:1;19299:4;:8;19292:15;;;18893:422;;;:::o;21811:195::-;21914:12;21946:52;21968:6;21976:4;21982:1;21985:12;21946:21;:52::i;:::-;21939:59;;21811:195;;;;;:::o;22863:530::-;22990:12;23048:5;23023:21;:30;;23015:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23115:18;23126:6;23115:10;:18::i;:::-;23107:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23241:12;23255:23;23282:6;:11;;23302:5;23310:4;23282:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23240:75;;;;23333:52;23351:7;23360:10;23372:12;23333:17;:52::i;:::-;23326:59;;;;22863:530;;;;;;:::o;25403:742::-;25518:12;25547:7;25543:595;;;25578:10;25571:17;;;;25543:595;25712:1;25692:10;:17;:21;25688:439;;;25955:10;25949:17;26016:15;26003:10;25999:2;25995:19;25988:44;25903:148;26098:12;26091:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25403:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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