ETH Price: $2,503.95 (-0.49%)

Token

Crypteriors Locals (Locals)
 

Overview

Max Total Supply

389 Locals

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
11 Locals
0xf51d05c6477f23647c0d4c9832e6a800e77621ed
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Avatars

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

pragma solidity <0.8.0;


// 
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _approve(address to, uint256 tokenId) private {
        _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 { }
}

// 
interface INFOriginalCrypteriors is IERC721Enumerable {
    //  function ownerOf(uint256 index) external view returns (address);
}

// 
/**
 * @title Crypteriors Locals Contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract Avatars is Ownable, ERC721 {
    using SafeMath for uint256;

    // Original Crypteriors Contract Address
    address public _nftAddress;

    // This will hold the provenance hash for all Crypteriors Locals Artwork in existence
    string public  CRYPTERIORS_LOCALS_PROVENANCE = "";    

    // The price for a Crypterior Local
    uint256 public NFT_PRICE = 75000000000000000; // 0.075 ETH
    
    // The maximum number of Local Crypterior will ever exists.
    uint256 public constant MAX_NFT_SUPPLY = 10000;

    // Maximum mints per original Crypterior
    uint256 public MAX_MINTS_PER_ORIGINAL_CRYPTERIOR = 1;
    
    // Increase the maximum mints per original Crypterior after the supply reaches this 
    // Anyone can call the transaction to do that after supply is above 7700
    uint256 public WHEN_INCREASE_MAX_MINTS_PER_ORIGINAL_CRYPTERIOR = 7700; 

    // Which Original Crypterior has been used for mint and for how many times
    mapping(uint256 => uint256) v1TokenIdUsedForMint;

    // Mapping if certain name string has already been reserved
    mapping(string => bool) private _nameReserved;

    uint256 public startingIndexBlock;
    uint256 public startingIndex;

    // When the sale will start. We can also start the sale manually.
    uint256 public constant SALE_START_TIMESTAMP = 1631736000; 
    
    // Automatically reveal after 7 days, or when all minted, but we can manually reveal at will!
    uint256 public REVEAL_TIMESTAMP =
        SALE_START_TIMESTAMP + (86400 * 7);

    // How long the top or bottom meme text can be on chain.
    uint256 public constant MAXIMUM_MEME_STRING_LENGHT = 50;

    // This holds the top meme text associated to a token.
    mapping(uint256 => string) tokenMemeTextTop;

    // This holds the bottom meme text associated to a token.
    mapping(uint256 => string) tokenMemeTextBottom;

    // Public Sale status.
    bool public hasSaleStarted = false;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;
 
    // Event when a meme change has been done.
    event MemeChange(
        uint256 indexed tokenId,
        string tokenMemeTextTop,
        string tokenMemeTextBottom
    );

    // The event emitted (useable by web3) when a token is purchased
    // event BoughtToken(address indexed buyer, uint256 tokenId);

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI,
        string memory provenanceHash
    ) ERC721(name, symbol) {

        _name = name;
        _symbol = symbol;

        setBaseURI(baseURI);
        setProvenanceHash(provenanceHash);
    }

    /**
     * @dev Allow Original Crypterior Holders to mint an another one if goal is reached.
     */
    function increaseMaxMintPerOriginalCrypterior() public {
        require(totalSupply() > WHEN_INCREASE_MAX_MINTS_PER_ORIGINAL_CRYPTERIOR, "Goal has to be reached");
        MAX_MINTS_PER_ORIGINAL_CRYPTERIOR = 2;
    }

    /**
     * @dev Mints Crypteriors Locals
     */
    function mintNFT(uint256 numberOfNfts) external payable {

        require(hasSaleStarted == true, "Sale has not started");
       
        require(numberOfNfts > 0, "numberOfNfts cannot be 0");
        require(
            numberOfNfts <= 20,
            "You may not buy more than 20 NFTs at once"
        );
        require(
            totalSupply().add(numberOfNfts) <= MAX_NFT_SUPPLY,
            "Exceeds MAX_NFT_SUPPLY"
        );
        require(
            NFT_PRICE.mul(numberOfNfts) == msg.value,
            "Ether value sent is not correct"
        );

        for (uint256 i = 0; i < numberOfNfts; i++) {
            if (totalSupply() < MAX_NFT_SUPPLY) {
                _safeMint(msg.sender,  totalSupply());
            }
        }

        if (
            startingIndexBlock == 0 &&
            (totalSupply() == MAX_NFT_SUPPLY ||
                block.timestamp >= REVEAL_TIMESTAMP)
        ) {
            startingIndexBlock = block.number;
        }
    }
     /**
     * @dev Returns how many times an Original Crypterior used for minting.
     */
    function checkIfOriginalCrypteriorUsedForMint(uint256 _tokenId) public view returns (uint256)
    {
        return v1TokenIdUsedForMint[_tokenId];
    }

    /**
     * @dev Mint for an Original Crypterior
     */
    function mintForOriginalCrypteriors(uint256[] calldata tokenIds) external {
        require(hasSaleStarted == true, "Sale has not started");

        require( tokenIds.length < 20, "Cannot mint more than 20 in one transaction!");
        require( tokenIds.length > 0,  "Number of tokens can not be less than or equal to 0");
        require(totalSupply().add(tokenIds.length) <= MAX_NFT_SUPPLY, "Max supply will been reached." );

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(INFOriginalCrypteriors(_nftAddress).ownerOf(tokenIds[i]) == msg.sender, "Original Crypterior NFT have a different owner");
            require(v1TokenIdUsedForMint[tokenIds[i]] < MAX_MINTS_PER_ORIGINAL_CRYPTERIOR, "This Crypterior already been used for free mint");
            
            v1TokenIdUsedForMint[tokenIds[i]] = v1TokenIdUsedForMint[tokenIds[i]] + 1;

            _safeMint(msg.sender,  totalSupply());
        }

        if (
            startingIndexBlock == 0 &&
            (totalSupply() == MAX_NFT_SUPPLY ||
                block.timestamp >= REVEAL_TIMESTAMP)
        ) {
            startingIndexBlock = block.number;
        }
        
    }

    /**
     * @dev We lock token transfers while Crypteriors are unrevealed.
     */
    function _beforeTokenTransfer(
        address _from,
        address _to,
        uint256 _tokenId
    ) internal virtual override {
        require(transferAllowed(_from, _to), "Transfer not allowed while unrevealed");        
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }

    function transferAllowed(address _from, address _to) public view returns(bool) {
        // To minimise gas cost in the long run check this first.        
        if(startingIndex > 0) return true;

        // minting
        if(_from == address(0)) return true;

        // Requirement: Lock token transfers while it's not revealed.
        // Owner should be allowed to send or receive them.
        if(_from == owner() || _to == owner()) return true;
           
        return false;
    }

    /**
     * @dev It is set right after deployment. This contains the original Crypterior NFT Contract address.
     */
    function setNFTAddress(address nftAddress) public {
        require(_nftAddress == address(0), "Already set");

        _nftAddress = nftAddress;
    }

    /**
     * @dev Will be called again for reveal. 
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }

    function startSale() public onlyOwner {
        hasSaleStarted = true;
    }

    function pauseSale() public onlyOwner {
        hasSaleStarted = false;
    }

    function setProvenanceHash(string memory _hash) public onlyOwner {
        CRYPTERIORS_LOCALS_PROVENANCE = _hash;
    }

    /**
     * @dev Finalize starting index
     */
    function finalizeStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");

        startingIndex = uint256(blockhash(startingIndexBlock)) % MAX_NFT_SUPPLY;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex =
                uint256(blockhash(block.number - 1)) %
                MAX_NFT_SUPPLY;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }


    /**
     * @dev Set reveal timestamp when finished the sale.
     */

    function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner {
        REVEAL_TIMESTAMP = _revealTimeStamp;
    } 

    /**
     * @dev If we want to reveal at will we will call this. 
     */

    function mintStartingIndexBlock() external onlyOwner {
        require(startingIndexBlock == 0, "Starting indexblock already mintend");
        
        startingIndexBlock = block.number;        
    }



    /**
     * @dev Changes the Meme texts for a tokenId
     */
    function changeMeme(
        uint256 tokenId,
        string memory _tokenMemeTextTop,
        string memory _tokenMemeTextBottom
    ) public {
        address owner = ownerOf(tokenId);

        require(_msgSender() == owner, "ERC721: caller is not the owner");
        require(validateString(_tokenMemeTextTop) == true, "Not valid string for top");
        require(validateString(_tokenMemeTextBottom) == true, "Not valid string for bottom");

        tokenMemeTextTop[tokenId] = _tokenMemeTextTop;
        tokenMemeTextBottom[tokenId] = _tokenMemeTextBottom;

        emit MemeChange(tokenId, _tokenMemeTextTop, _tokenMemeTextBottom);
    }

    /** 
    * @dev  Returns a list of all IDs assigned to an address.
    */
    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);

        if (tokenCount == 0) {            
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 resultIndex = 0;
            uint256 tokenId;

            for (tokenId = 0; tokenId < totalSupply(); tokenId++) {
                if (ownerOf(tokenId) == _owner) {
                    result[resultIndex] = tokenId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    /// @dev Returns all the relevant information about a specific token
    /// @param _tokenId The ID of the token of interest

    function getToken(uint256 _tokenId)
        external
        view
        returns (
            string memory memeTextTop_,
            string memory memeTextBottom_
        )
    {
        memeTextTop_ = tokenMemeTextTop[_tokenId];
        memeTextBottom_ = tokenMemeTextBottom[_tokenId];
    }

    /// @dev Returns the current price for each token
    function getCurrentPrice() public view returns (uint256) {
        require(hasSaleStarted == true, "Sale has not started");
        require(totalSupply() < MAX_NFT_SUPPLY, "Sale has already ended");
        
        return NFT_PRICE;   // The price!
    }

    /**
     * @dev Withdraw ether from this contract (Callable by owner)
     */

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

        payable(msg.sender).transfer(balance);
    }   

    // Reserved for people who helped this project and giveaways
    // Also to ensure everything works as expected, before the sale
    
    function reserveGiveaway(uint256 numNFTs) external onlyOwner {
        require(totalSupply().add(numNFTs) <= 10, "Exceeded giveaway supply");
        require(hasSaleStarted == false, "Sale has already started");
        uint256 index;
        for (index = 0; index < numNFTs; index++) {
            _safeMint(owner(), totalSupply());
        }
    }


    /**
     * @dev Check if the name string is valid (Alphanumeric and spaces without leading or trailing space)
     */
    function validateString(string memory str) public pure returns (bool) {
        bytes memory b = bytes(str);
        if (b.length < 1) return false;
        if (b.length > MAXIMUM_MEME_STRING_LENGHT) return false; // Cannot be longer than 25 characters
        if (b[0] == 0x20) return false; // Leading space
        if (b[b.length - 1] == 0x20) return false; // Trailing space

        bytes1 lastChar = b[0];

        for (uint256 i; i < b.length; i++) {
            bytes1 char = b[i];

            if (char == 0x20 && lastChar == 0x20) return false; // Cannot contain continous spaces

            if (
                !(char >= 0x30 && char <= 0x39) && //9-0
                !(char >= 0x41 && char <= 0x5A) && //A-Z
                !(char >= 0x61 && char <= 0x7A) && //a-z
                !(char == 0x20) //space
            ) return false;

            lastChar = char;
        }

        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"provenanceHash","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenMemeTextTop","type":"string"},{"indexed":false,"internalType":"string","name":"tokenMemeTextBottom","type":"string"}],"name":"MemeChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CRYPTERIORS_LOCALS_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_MEME_STRING_LENGHT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_ORIGINAL_CRYPTERIOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHEN_INCREASE_MAX_MINTS_PER_ORIGINAL_CRYPTERIOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_nftAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenMemeTextTop","type":"string"},{"internalType":"string","name":"_tokenMemeTextBottom","type":"string"}],"name":"changeMeme","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkIfOriginalCrypteriorUsedForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeStartingIndex","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":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getToken","outputs":[{"internalType":"string","name":"memeTextTop_","type":"string"},{"internalType":"string","name":"memeTextBottom_","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"increaseMaxMintPerOriginalCrypterior","outputs":[],"stateMutability":"nonpayable","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":"tokenIds","type":"uint256[]"}],"name":"mintForOriginalCrypteriors","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"reserveGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftAddress","type":"address"}],"name":"setNFTAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"string","name":"str","type":"string"}],"name":"validateString","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000840565b5067010a741a46278000600d556001600e55611e14600f5562093a8063614250c0016014556000601760006101000a81548160ff0219169083151502179055503480156200007857600080fd5b50604051620066fc380380620066fc833981810160405260808110156200009e57600080fd5b8101908080516040519392919084640100000000821115620000bf57600080fd5b83820191506020820185811115620000d657600080fd5b8251866001820283011164010000000082111715620000f457600080fd5b8083526020830192505050908051906020019080838360005b838110156200012a5780820151818401526020810190506200010d565b50505050905090810190601f168015620001585780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200017c57600080fd5b838201915060208201858111156200019357600080fd5b8251866001820283011164010000000082111715620001b157600080fd5b8083526020830192505050908051906020019080838360005b83811015620001e7578082015181840152602081019050620001ca565b50505050905090810190601f168015620002155780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200023957600080fd5b838201915060208201858111156200025057600080fd5b82518660018202830111640100000000821117156200026e57600080fd5b8083526020830192505050908051906020019080838360005b83811015620002a457808201518184015260208101905062000287565b50505050905090810190601f168015620002d25780820380516001836020036101000a031916815260200191505b5060405260200180516040519392919084640100000000821115620002f657600080fd5b838201915060208201858111156200030d57600080fd5b82518660018202830111640100000000821117156200032b57600080fd5b8083526020830192505050908051906020019080838360005b838110156200036157808201518184015260208101905062000344565b50505050905090810190601f1680156200038f5780820380516001836020036101000a031916815260200191505b5060405250505083836000620003aa6200053a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620004606301ffc9a760e01b6200054260201b60201c565b81600790805190602001906200047892919062000840565b5080600890805190602001906200049192919062000840565b50620004aa6380ac58cd60e01b6200054260201b60201c565b620004c2635b5e139f60e01b6200054260201b60201c565b620004da63780e9d6360e01b6200054260201b60201c565b50508360189080519060200190620004f492919062000840565b5082601990805190602001906200050d92919062000840565b506200051f826200064b60201b60201c565b62000530816200071f60201b60201c565b50505050620008f6565b600033905090565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620005df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6200065b6200053a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000681620007fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200070b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6200071c816200082460201b60201c565b50565b6200072f6200053a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000755620007fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c9080519060200190620007f792919062000840565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b80600a90805190602001906200083c92919062000840565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620008785760008555620008c4565b82601f106200089357805160ff1916838001178555620008c4565b82800160010185558215620008c4579182015b82811115620008c3578251825591602001919060010190620008a6565b5b509050620008d39190620008d7565b5090565b5b80821115620008f2576000816000905550600101620008d8565b5090565b615df680620009066000396000f3fe6080604052600436106102ff5760003560e01c8063715018a611610190578063ac9f6110116100dc578063c87b56dd11610095578063e4b50cb81161006f578063e4b50cb8146114e1578063e985e9c514611601578063eb91d37e14611688578063f2fde38b146116b3576102ff565b8063c87b56dd146113d7578063cb774d471461148b578063e36d6498146114b6576102ff565b8063ac9f611014611142578063b0f6fea8146111d2578063b5077f4414611258578063b66a0e5d14611283578063b88d4fde1461129a578063bb1e87a4146113ac576102ff565b8063946807fd116101495780639b48a37f116101235780639b48a37f14610f00578063a22cb46514611069578063a40f1aa5146110c6578063a65d615514611101576102ff565b8063946807fd14610df657806395d89b4114610e2157806397cac7cc14610eb1576102ff565b8063715018a614610c9c57806374df39c914610cb35780637a04106c14610cca5780638462151c14610ce15780638da5cb5b14610d875780639264274414610dc8576102ff565b80632f745c591161024f57806355f804b311610208578063676dd563116101e2578063676dd56314610b2b57806369d0373814610b565780636c0360eb14610ba757806370a0823114610c37576102ff565b806355f804b3146109d35780636352211e14610a9b5780636692182b14610b00576102ff565b80632f745c591461084157806334ddc1cf146108b05780633ccfd60b146108db57806342842e0e146108f25780634f6ccce71461096d57806355367ba9146109bc576102ff565b806310969523116102bc57806318e20a381161029657806318e20a38146106e75780631c8b232d14610712578063214e52ca1461073f57806323b872dd146107c6576102ff565b806310969523146105dd57806315c51e59146106a557806318160ddd146106bc576102ff565b8063018a2c371461030457806301ffc9a71461033f57806306fdde03146103af578063081812fc1461043f578063095ea7b3146104a4578063105f95a9146104ff575b600080fd5b34801561031057600080fd5b5061033d6004803603602081101561032757600080fd5b8101908080359060200190929190505050611704565b005b34801561034b57600080fd5b506103976004803603602081101561036257600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506117bd565b60405180821515815260200191505060405180910390f35b3480156103bb57600080fd5b506103c4611825565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104045780820151818401526020810190506103e9565b50505050905090810190601f1680156104315780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044b57600080fd5b506104786004803603602081101561046257600080fd5b81019080803590602001909291905050506118c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104b057600080fd5b506104fd600480360360408110156104c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611962565b005b34801561050b57600080fd5b506105c56004803603602081101561052257600080fd5b810190808035906020019064010000000081111561053f57600080fd5b82018360208201111561055157600080fd5b8035906020019184600183028401116401000000008311171561057357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611aa6565b60405180821515815260200191505060405180910390f35b3480156105e957600080fd5b506106a36004803603602081101561060057600080fd5b810190808035906020019064010000000081111561061d57600080fd5b82018360208201111561062f57600080fd5b8035906020019184600183028401116401000000008311171561065157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611dae565b005b3480156106b157600080fd5b506106ba611e77565b005b3480156106c857600080fd5b506106d1611eff565b6040518082815260200191505060405180910390f35b3480156106f357600080fd5b506106fc611f10565b6040518082815260200191505060405180910390f35b34801561071e57600080fd5b50610727611f16565b60405180821515815260200191505060405180910390f35b34801561074b57600080fd5b506107ae6004803603604081101561076257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f29565b60405180821515815260200191505060405180910390f35b3480156107d257600080fd5b5061083f600480360360608110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612008565b005b34801561084d57600080fd5b5061089a6004803603604081101561086457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061207e565b6040518082815260200191505060405180910390f35b3480156108bc57600080fd5b506108c56120d9565b6040518082815260200191505060405180910390f35b3480156108e757600080fd5b506108f06120df565b005b3480156108fe57600080fd5b5061096b6004803603606081101561091557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121dd565b005b34801561097957600080fd5b506109a66004803603602081101561099057600080fd5b81019080803590602001909291905050506121fd565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b506109d1612220565b005b3480156109df57600080fd5b50610a99600480360360208110156109f657600080fd5b8101908080359060200190640100000000811115610a1357600080fd5b820183602082011115610a2557600080fd5b80359060200191846001830284011164010000000083111715610a4757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506122ec565b005b348015610aa757600080fd5b50610ad460048036036020811015610abe57600080fd5b81019080803590602001909291905050506123a7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b0c57600080fd5b50610b156123de565b6040518082815260200191505060405180910390f35b348015610b3757600080fd5b50610b406123e3565b6040518082815260200191505060405180910390f35b348015610b6257600080fd5b50610ba560048036036020811015610b7957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123e9565b005b348015610bb357600080fd5b50610bbc6124f1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bfc578082015181840152602081019050610be1565b50505050905090810190601f168015610c295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c4357600080fd5b50610c8660048036036020811015610c5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612593565b6040518082815260200191505060405180910390f35b348015610ca857600080fd5b50610cb1612668565b005b348015610cbf57600080fd5b50610cc86127d5565b005b348015610cd657600080fd5b50610cdf61293f565b005b348015610ced57600080fd5b50610d3060048036036020811015610d0457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a52565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610d73578082015181840152602081019050610d58565b505050509050019250505060405180910390f35b348015610d9357600080fd5b50610d9c612b90565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610df460048036036020811015610dde57600080fd5b8101908080359060200190929190505050612bb9565b005b348015610e0257600080fd5b50610e0b612e9f565b6040518082815260200191505060405180910390f35b348015610e2d57600080fd5b50610e36612ea7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610e76578082015181840152602081019050610e5b565b50505050905090810190601f168015610ea35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ebd57600080fd5b50610eea60048036036020811015610ed457600080fd5b8101908080359060200190929190505050612f49565b6040518082815260200191505060405180910390f35b348015610f0c57600080fd5b5061106760048036036060811015610f2357600080fd5b810190808035906020019092919080359060200190640100000000811115610f4a57600080fd5b820183602082011115610f5c57600080fd5b80359060200191846001830284011164010000000083111715610f7e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610fe157600080fd5b820183602082011115610ff357600080fd5b8035906020019184600183028401116401000000008311171561101557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612f66565b005b34801561107557600080fd5b506110c46004803603604081101561108c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061327f565b005b3480156110d257600080fd5b506110ff600480360360208110156110e957600080fd5b8101908080359060200190929190505050613435565b005b34801561110d57600080fd5b50611116613631565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561114e57600080fd5b50611157613657565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561119757808201518184015260208101905061117c565b50505050905090810190601f1680156111c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111de57600080fd5b50611256600480360360208110156111f557600080fd5b810190808035906020019064010000000081111561121257600080fd5b82018360208201111561122457600080fd5b8035906020019184602083028401116401000000008311171561124657600080fd5b90919293919293905050506136f5565b005b34801561126457600080fd5b5061126d613b43565b6040518082815260200191505060405180910390f35b34801561128f57600080fd5b50611298613b49565b005b3480156112a657600080fd5b506113aa600480360360808110156112bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561132457600080fd5b82018360208201111561133657600080fd5b8035906020019184600183028401116401000000008311171561135857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613c15565b005b3480156113b857600080fd5b506113c1613c8d565b6040518082815260200191505060405180910390f35b3480156113e357600080fd5b50611410600480360360208110156113fa57600080fd5b8101908080359060200190929190505050613c93565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611450578082015181840152602081019050611435565b50505050905090810190601f16801561147d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561149757600080fd5b506114a0613f64565b6040518082815260200191505060405180910390f35b3480156114c257600080fd5b506114cb613f6a565b6040518082815260200191505060405180910390f35b3480156114ed57600080fd5b5061151a6004803603602081101561150457600080fd5b8101908080359060200190929190505050613f70565b604051808060200180602001838103835285818151815260200191508051906020019080838360005b8381101561155e578082015181840152602081019050611543565b50505050905090810190601f16801561158b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156115c45780820151818401526020810190506115a9565b50505050905090810190601f1680156115f15780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561160d57600080fd5b506116706004803603604081101561162457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506140d4565b60405180821515815260200191505060405180910390f35b34801561169457600080fd5b5061169d614168565b6040518082815260200191505060405180910390f35b3480156116bf57600080fd5b50611702600480360360208110156116d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614279565b005b61170c61446b565b73ffffffffffffffffffffffffffffffffffffffff1661172a612b90565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b60006118d282614473565b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615c91602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061196d826123a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615d156021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611a1361446b565b73ffffffffffffffffffffffffffffffffffffffff161480611a425750611a4181611a3c61446b565b6140d4565b5b611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180615b776038913960400191505060405180910390fd5b611aa18383614490565b505050565b60006060829050600181511015611ac1576000915050611da9565b603281511115611ad5576000915050611da9565b602060f81b81600081518110611ae757fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611b24576000915050611da9565b602060f81b81600183510381518110611b3957fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611b76576000915050611da9565b600081600081518110611b8557fe5b602001015160f81c60f81b905060005b8251811015611da1576000838281518110611bac57fe5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148015611c135750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15611c25576000945050505050611da9565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611c815750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015611ce75750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611ce55750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611d4c5750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611d4a5750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611d7e5750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611d90576000945050505050611da9565b809250508080600101915050611b95565b506001925050505b919050565b611db661446b565b73ffffffffffffffffffffffffffffffffffffffff16611dd4612b90565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c9080519060200190611e73929190615954565b5050565b600f54611e82611eff565b11611ef5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f476f616c2068617320746f20626520726561636865640000000000000000000081525060200191505060405180910390fd5b6002600e81905550565b6000611f0b6003614549565b905090565b60145481565b601760009054906101000a900460ff1681565b6000806013541115611f3e5760019050612002565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f7c5760019050612002565b611f84612b90565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611fef5750611fc0612b90565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611ffd5760019050612002565b600090505b92915050565b61201961201361446b565b8261455e565b61206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615d366031913960400191505060405180910390fd5b612079838383614652565b505050565b60006120d182600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061489590919063ffffffff16565b905092915050565b600f5481565b6120e761446b565b73ffffffffffffffffffffffffffffffffffffffff16612105612b90565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156121d9573d6000803e3d6000fd5b5050565b6121f883838360405180602001604052806000815250613c15565b505050565b6000806122148360036148af90919063ffffffff16565b50905080915050919050565b61222861446b565b73ffffffffffffffffffffffffffffffffffffffff16612246612b90565b73ffffffffffffffffffffffffffffffffffffffff16146122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601760006101000a81548160ff021916908315150217905550565b6122f461446b565b73ffffffffffffffffffffffffffffffffffffffff16612312612b90565b73ffffffffffffffffffffffffffffffffffffffff161461239b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123a4816148db565b50565b60006123d782604051806060016040528060298152602001615c026029913960036148f59092919063ffffffff16565b9050919050565b603281565b600d5481565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f416c72656164792073657400000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125895780601f1061255e57610100808354040283529160200191612589565b820191906000526020600020905b81548152906001019060200180831161256c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615bd8602a913960400191505060405180910390fd5b612661600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614914565b9050919050565b61267061446b565b73ffffffffffffffffffffffffffffffffffffffff1661268e612b90565b73ffffffffffffffffffffffffffffffffffffffff1614612717576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006013541461284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b600060125414156128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374617274696e6720696e64657820626c6f636b206d7573742062652073657481525060200191505060405180910390fd5b6127106012544060001c816128d757fe5b0660138190555060ff6128f56012544361492990919063ffffffff16565b111561291557612710600143034060001c8161290d57fe5b066013819055505b6000601354141561293d5761293660016013546149ac90919063ffffffff16565b6013819055505b565b61294761446b565b73ffffffffffffffffffffffffffffffffffffffff16612965612b90565b73ffffffffffffffffffffffffffffffffffffffff16146129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060125414612a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615c4d6023913960400191505060405180910390fd5b43601281905550565b60606000612a5f83612593565b90506000811415612aba57600067ffffffffffffffff81118015612a8257600080fd5b50604051908082528060200260200182016040528015612ab15781602001602082028036833780820191505090505b50915050612b8b565b60608167ffffffffffffffff81118015612ad357600080fd5b50604051908082528060200260200182016040528015612b025781602001602082028036833780820191505090505b5090506000805b612b11611eff565b811015612b83578573ffffffffffffffffffffffffffffffffffffffff16612b38826123a7565b73ffffffffffffffffffffffffffffffffffffffff161415612b765780838381518110612b6157fe5b60200260200101818152505081806001019250505b8080600101915050612b09565b829450505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60011515601760009054906101000a900460ff16151514612c42576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b60008111612cb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000081525060200191505060405180910390fd5b6014811115612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615baf6029913960400191505060405180910390fd5b612710612d2f82612d21611eff565b6149ac90919063ffffffff16565b1115612da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f45786365656473204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b34612db982600d54614a3490919063ffffffff16565b14612e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b81811015612e6757612710612e42611eff565b1015612e5a57612e5933612e54611eff565b614aba565b5b8080600101915050612e2f565b506000601254148015612e8f5750612710612e80611eff565b1480612e8e57506014544210155b5b15612e9c57436012819055505b50565b63614250c081565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612f3f5780601f10612f1457610100808354040283529160200191612f3f565b820191906000526020600020905b815481529060010190602001808311612f2257829003601f168201915b5050505050905090565b600060106000838152602001908152602001600020549050919050565b6000612f71846123a7565b90508073ffffffffffffffffffffffffffffffffffffffff16612f9261446b565b73ffffffffffffffffffffffffffffffffffffffff161461301b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4552433732313a2063616c6c6572206973206e6f7420746865206f776e65720081525060200191505060405180910390fd5b6001151561302884611aa6565b15151461309d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f742076616c696420737472696e6720666f7220746f70000000000000000081525060200191505060405180910390fd5b600115156130aa83611aa6565b15151461311f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4e6f742076616c696420737472696e6720666f7220626f74746f6d000000000081525060200191505060405180910390fd5b82601560008681526020019081526020016000209080519060200190613146929190615954565b508160166000868152602001908152602001600020908051906020019061316e929190615954565b50837fdb1ffdac05081030a428ac46094dc823f52a01ab35823f8577c9d2f3a9d760028484604051808060200180602001838103835285818151815260200191508051906020019080838360005b838110156131d75780820151818401526020810190506131bc565b50505050905090810190601f1680156132045780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561323d578082015181840152602081019050613222565b50505050905090810190601f16801561326a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a250505050565b61328761446b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806006600061333561446b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166133e261446b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61343d61446b565b73ffffffffffffffffffffffffffffffffffffffff1661345b612b90565b73ffffffffffffffffffffffffffffffffffffffff16146134e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a613500826134f2611eff565b6149ac90919063ffffffff16565b1115613574576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f457863656564656420676976656177617920737570706c79000000000000000081525060200191505060405180910390fd5b60001515601760009054906101000a900460ff161515146135fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f53616c652068617320616c72656164792073746172746564000000000000000081525060200191505060405180910390fd5b60005b8181101561362d57613620613613612b90565b61361b611eff565b614aba565b8080600101915050613600565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136ed5780601f106136c2576101008083540402835291602001916136ed565b820191906000526020600020905b8154815290600101906020018083116136d057829003601f168201915b505050505081565b60011515601760009054906101000a900460ff1615151461377e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b601482829050106137da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615d95602c913960400191505060405180910390fd5b60008282905011613836576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180615a226033913960400191505060405180910390fd5b61271061385683839050613848611eff565b6149ac90919063ffffffff16565b11156138ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4d617820737570706c792077696c6c206265656e20726561636865642e00000081525060200191505060405180910390fd5b60005b82829050811015613b0a573373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061393957fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561397457600080fd5b505afa158015613988573d6000803e3d6000fd5b505050506040513d602081101561399e57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614613a1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180615d67602e913960400191505060405180910390fd5b600e5460106000858585818110613a2e57fe5b9050602002013581526020019081526020016000205410613a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ad2602f913960400191505060405180910390fd5b600160106000858585818110613aac57fe5b905060200201358152602001908152602001600020540160106000858585818110613ad357fe5b90506020020135815260200190815260200160002081905550613afd33613af8611eff565b614aba565b80806001019150506138cd565b506000601254148015613b325750612710613b23611eff565b1480613b3157506014544210155b5b15613b3f57436012819055505b5050565b61271081565b613b5161446b565b73ffffffffffffffffffffffffffffffffffffffff16613b6f612b90565b73ffffffffffffffffffffffffffffffffffffffff1614613bf8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b613c26613c2061446b565b8361455e565b613c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615d366031913960400191505060405180910390fd5b613c8784848484614ad8565b50505050565b600e5481565b6060613c9e82614473565b613cf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ce6602f913960400191505060405180910390fd5b6060600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613d9c5780601f10613d7157610100808354040283529160200191613d9c565b820191906000526020600020905b815481529060010190602001808311613d7f57829003601f168201915b505050505090506060613dad6124f1565b9050600081511415613dc3578192505050613f5f565b600082511115613e945780826040516020018083805190602001908083835b60208310613e055780518252602082019150602081019050602083039250613de2565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613e565780518252602082019150602081019050602083039250613e33565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613f5f565b80613e9e85614b4a565b6040516020018083805190602001908083835b60208310613ed45780518252602082019150602081019050602083039250613eb1565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613f255780518252602082019150602081019050602083039250613f02565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b60135481565b60125481565b606080601560008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561401a5780601f10613fef5761010080835404028352916020019161401a565b820191906000526020600020905b815481529060010190602001808311613ffd57829003601f168201915b50505050509150601660008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156140c85780601f1061409d576101008083540402835291602001916140c8565b820191906000526020600020905b8154815290600101906020018083116140ab57829003601f168201915b50505050509050915091565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060011515601760009054906101000a900460ff161515146141f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b6127106141fe611eff565b10614271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53616c652068617320616c726561647920656e6465640000000000000000000081525060200191505060405180910390fd5b600d54905090565b61428161446b565b73ffffffffffffffffffffffffffffffffffffffff1661429f612b90565b73ffffffffffffffffffffffffffffffffffffffff1614614328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156143ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615a876026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b6000614489826003614c9190919063ffffffff16565b9050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16614503836123a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061455782600001614cab565b9050919050565b600061456982614473565b6145be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b4b602c913960400191505060405180910390fd5b60006145c9836123a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061463857508373ffffffffffffffffffffffffffffffffffffffff16614620846118c7565b73ffffffffffffffffffffffffffffffffffffffff16145b80614649575061464881856140d4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16614672826123a7565b73ffffffffffffffffffffffffffffffffffffffff16146146de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615cbd6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614764576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615b016024913960400191505060405180910390fd5b61476f838383614cbc565b61477a600082614490565b6147cb81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614d2b90919063ffffffff16565b5061481d81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614d4590919063ffffffff16565b5061483481836003614d5f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006148a48360000183614d94565b60001c905092915050565b6000806000806148c28660000186614e17565b915091508160001c8160001c9350935050509250929050565b80600a90805190602001906148f1929190615954565b5050565b6000614908846000018460001b84614eb0565b60001c90509392505050565b600061492282600001614fa6565b9050919050565b6000828211156149a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080828401905083811015614a2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415614a475760009050614ab4565b6000828402905082848281614a5857fe5b0414614aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615c706021913960400191505060405180910390fd5b809150505b92915050565b614ad4828260405180602001604052806000815250614fb7565b5050565b614ae3848484614652565b614aef84848484615028565b614b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615a556032913960400191505060405180910390fd5b50505050565b60606000821415614b92576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614c8c565b600082905060005b60008214614bbc578080600101915050600a8281614bb457fe5b049150614b9a565b60608167ffffffffffffffff81118015614bd557600080fd5b506040519080825280601f01601f191660200182016040528015614c085781602001600182028036833780820191505090505b50905060006001830390508593505b60008414614c8457600a8481614c2957fe5b0660300160f81b82828060019003935081518110614c4357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481614c7c57fe5b049350614c17565b819450505050505b919050565b6000614ca3836000018360001b615241565b905092915050565b600081600001805490509050919050565b614cc68383611f29565b614d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615aad6025913960400191505060405180910390fd5b614d26838383615264565b505050565b6000614d3d836000018360001b615269565b905092915050565b6000614d57836000018360001b615351565b905092915050565b6000614d8b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6153c1565b90509392505050565b600081836000018054905011614df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a006022913960400191505060405180910390fd5b826000018281548110614e0457fe5b9060005260206000200154905092915050565b60008082846000018054905011614e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c2b6022913960400191505060405180910390fd5b6000846000018481548110614e8a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614f77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f3c578082015181840152602081019050614f21565b50505050905090810190601f168015614f695780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614f8a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b614fc1838361549d565b614fce6000848484615028565b615023576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615a556032913960400191505060405180910390fd5b505050565b60006150498473ffffffffffffffffffffffffffffffffffffffff16615691565b6150565760019050615239565b60606151c063150b7a0260e01b61506b61446b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156150ef5780820151818401526020810190506150d4565b50505050905090810190601f16801561511c5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615a55603291398773ffffffffffffffffffffffffffffffffffffffff166156a49092919063ffffffff16565b905060008180602001905160208110156151d957600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000808360010160008481526020019081526020016000205490506000811461534557600060018203905060006001866000018054905003905060008660000182815481106152b457fe5b90600052602060002001549050808760000184815481106152d157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061530957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061534b565b60009150505b92915050565b600061535d83836156bc565b6153b65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506153bb565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561546857846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050615496565b8285600001600183038154811061547b57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61554981614473565b156155bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6155c860008383614cbc565b61561981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614d4590919063ffffffff16565b5061563081836003614d5f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606156b384846000856156df565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561573a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615b256026913960400191505060405180910390fd5b61574385615691565b6157b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061580557805182526020820191506020810190506020830392506157e2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615867576040519150601f19603f3d011682016040523d82523d6000602084013e61586c565b606091505b509150915061587c828286615888565b92505050949350505050565b606083156158985782905061594d565b6000835111156158ab5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156159125780820151818401526020810190506158f7565b50505050905090810190601f16801561593f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261598a57600085556159d1565b82601f106159a357805160ff19168380011785556159d1565b828001600101855582156159d1579182015b828111156159d05782518255916020019190600101906159b5565b5b5090506159de91906159e2565b5090565b5b808211156159fb5760008160009055506001016159e3565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373207468616e206f7220657175616c20746f20304552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e73666572206e6f7420616c6c6f776564207768696c6520756e72657665616c6564546869732043727970746572696f7220616c7265616479206265656e207573656420666f722066726565206d696e744552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c596f75206d6179206e6f7420627579206d6f7265207468616e203230204e465473206174206f6e63654552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64735374617274696e6720696e646578626c6f636b20616c7265616479206d696e74656e64536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644f726967696e616c2043727970746572696f72204e46542068617665206120646966666572656e74206f776e657243616e6e6f74206d696e74206d6f7265207468616e20323020696e206f6e65207472616e73616374696f6e21a2646970667358221220734be7d6b9fbd48653942d8223dc625f587fd9b51805cedab778b7b5bdf72bdb64736f6c63430007040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001243727970746572696f7273204c6f63616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c6f63616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56754a636557343871436e487473576b413539544e7a715a6f3447724e4b536134594d6e417a6f527a7239392f00000000000000000000000000000000000000000000000000000000000000000000000000000000004031323764343739666236613434386565356137666134326639373736633461653530613836313230663033343062336339356561666363393861333764323863

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c8063715018a611610190578063ac9f6110116100dc578063c87b56dd11610095578063e4b50cb81161006f578063e4b50cb8146114e1578063e985e9c514611601578063eb91d37e14611688578063f2fde38b146116b3576102ff565b8063c87b56dd146113d7578063cb774d471461148b578063e36d6498146114b6576102ff565b8063ac9f611014611142578063b0f6fea8146111d2578063b5077f4414611258578063b66a0e5d14611283578063b88d4fde1461129a578063bb1e87a4146113ac576102ff565b8063946807fd116101495780639b48a37f116101235780639b48a37f14610f00578063a22cb46514611069578063a40f1aa5146110c6578063a65d615514611101576102ff565b8063946807fd14610df657806395d89b4114610e2157806397cac7cc14610eb1576102ff565b8063715018a614610c9c57806374df39c914610cb35780637a04106c14610cca5780638462151c14610ce15780638da5cb5b14610d875780639264274414610dc8576102ff565b80632f745c591161024f57806355f804b311610208578063676dd563116101e2578063676dd56314610b2b57806369d0373814610b565780636c0360eb14610ba757806370a0823114610c37576102ff565b806355f804b3146109d35780636352211e14610a9b5780636692182b14610b00576102ff565b80632f745c591461084157806334ddc1cf146108b05780633ccfd60b146108db57806342842e0e146108f25780634f6ccce71461096d57806355367ba9146109bc576102ff565b806310969523116102bc57806318e20a381161029657806318e20a38146106e75780631c8b232d14610712578063214e52ca1461073f57806323b872dd146107c6576102ff565b806310969523146105dd57806315c51e59146106a557806318160ddd146106bc576102ff565b8063018a2c371461030457806301ffc9a71461033f57806306fdde03146103af578063081812fc1461043f578063095ea7b3146104a4578063105f95a9146104ff575b600080fd5b34801561031057600080fd5b5061033d6004803603602081101561032757600080fd5b8101908080359060200190929190505050611704565b005b34801561034b57600080fd5b506103976004803603602081101561036257600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191690602001909291905050506117bd565b60405180821515815260200191505060405180910390f35b3480156103bb57600080fd5b506103c4611825565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104045780820151818401526020810190506103e9565b50505050905090810190601f1680156104315780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561044b57600080fd5b506104786004803603602081101561046257600080fd5b81019080803590602001909291905050506118c7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156104b057600080fd5b506104fd600480360360408110156104c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611962565b005b34801561050b57600080fd5b506105c56004803603602081101561052257600080fd5b810190808035906020019064010000000081111561053f57600080fd5b82018360208201111561055157600080fd5b8035906020019184600183028401116401000000008311171561057357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611aa6565b60405180821515815260200191505060405180910390f35b3480156105e957600080fd5b506106a36004803603602081101561060057600080fd5b810190808035906020019064010000000081111561061d57600080fd5b82018360208201111561062f57600080fd5b8035906020019184600183028401116401000000008311171561065157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611dae565b005b3480156106b157600080fd5b506106ba611e77565b005b3480156106c857600080fd5b506106d1611eff565b6040518082815260200191505060405180910390f35b3480156106f357600080fd5b506106fc611f10565b6040518082815260200191505060405180910390f35b34801561071e57600080fd5b50610727611f16565b60405180821515815260200191505060405180910390f35b34801561074b57600080fd5b506107ae6004803603604081101561076257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f29565b60405180821515815260200191505060405180910390f35b3480156107d257600080fd5b5061083f600480360360608110156107e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612008565b005b34801561084d57600080fd5b5061089a6004803603604081101561086457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061207e565b6040518082815260200191505060405180910390f35b3480156108bc57600080fd5b506108c56120d9565b6040518082815260200191505060405180910390f35b3480156108e757600080fd5b506108f06120df565b005b3480156108fe57600080fd5b5061096b6004803603606081101561091557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121dd565b005b34801561097957600080fd5b506109a66004803603602081101561099057600080fd5b81019080803590602001909291905050506121fd565b6040518082815260200191505060405180910390f35b3480156109c857600080fd5b506109d1612220565b005b3480156109df57600080fd5b50610a99600480360360208110156109f657600080fd5b8101908080359060200190640100000000811115610a1357600080fd5b820183602082011115610a2557600080fd5b80359060200191846001830284011164010000000083111715610a4757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506122ec565b005b348015610aa757600080fd5b50610ad460048036036020811015610abe57600080fd5b81019080803590602001909291905050506123a7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b0c57600080fd5b50610b156123de565b6040518082815260200191505060405180910390f35b348015610b3757600080fd5b50610b406123e3565b6040518082815260200191505060405180910390f35b348015610b6257600080fd5b50610ba560048036036020811015610b7957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123e9565b005b348015610bb357600080fd5b50610bbc6124f1565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bfc578082015181840152602081019050610be1565b50505050905090810190601f168015610c295780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610c4357600080fd5b50610c8660048036036020811015610c5a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612593565b6040518082815260200191505060405180910390f35b348015610ca857600080fd5b50610cb1612668565b005b348015610cbf57600080fd5b50610cc86127d5565b005b348015610cd657600080fd5b50610cdf61293f565b005b348015610ced57600080fd5b50610d3060048036036020811015610d0457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a52565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610d73578082015181840152602081019050610d58565b505050509050019250505060405180910390f35b348015610d9357600080fd5b50610d9c612b90565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610df460048036036020811015610dde57600080fd5b8101908080359060200190929190505050612bb9565b005b348015610e0257600080fd5b50610e0b612e9f565b6040518082815260200191505060405180910390f35b348015610e2d57600080fd5b50610e36612ea7565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610e76578082015181840152602081019050610e5b565b50505050905090810190601f168015610ea35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610ebd57600080fd5b50610eea60048036036020811015610ed457600080fd5b8101908080359060200190929190505050612f49565b6040518082815260200191505060405180910390f35b348015610f0c57600080fd5b5061106760048036036060811015610f2357600080fd5b810190808035906020019092919080359060200190640100000000811115610f4a57600080fd5b820183602082011115610f5c57600080fd5b80359060200191846001830284011164010000000083111715610f7e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610fe157600080fd5b820183602082011115610ff357600080fd5b8035906020019184600183028401116401000000008311171561101557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612f66565b005b34801561107557600080fd5b506110c46004803603604081101561108c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080351515906020019092919050505061327f565b005b3480156110d257600080fd5b506110ff600480360360208110156110e957600080fd5b8101908080359060200190929190505050613435565b005b34801561110d57600080fd5b50611116613631565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561114e57600080fd5b50611157613657565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561119757808201518184015260208101905061117c565b50505050905090810190601f1680156111c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156111de57600080fd5b50611256600480360360208110156111f557600080fd5b810190808035906020019064010000000081111561121257600080fd5b82018360208201111561122457600080fd5b8035906020019184602083028401116401000000008311171561124657600080fd5b90919293919293905050506136f5565b005b34801561126457600080fd5b5061126d613b43565b6040518082815260200191505060405180910390f35b34801561128f57600080fd5b50611298613b49565b005b3480156112a657600080fd5b506113aa600480360360808110156112bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561132457600080fd5b82018360208201111561133657600080fd5b8035906020019184600183028401116401000000008311171561135857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613c15565b005b3480156113b857600080fd5b506113c1613c8d565b6040518082815260200191505060405180910390f35b3480156113e357600080fd5b50611410600480360360208110156113fa57600080fd5b8101908080359060200190929190505050613c93565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015611450578082015181840152602081019050611435565b50505050905090810190601f16801561147d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561149757600080fd5b506114a0613f64565b6040518082815260200191505060405180910390f35b3480156114c257600080fd5b506114cb613f6a565b6040518082815260200191505060405180910390f35b3480156114ed57600080fd5b5061151a6004803603602081101561150457600080fd5b8101908080359060200190929190505050613f70565b604051808060200180602001838103835285818151815260200191508051906020019080838360005b8381101561155e578082015181840152602081019050611543565b50505050905090810190601f16801561158b5780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b838110156115c45780820151818401526020810190506115a9565b50505050905090810190601f1680156115f15780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561160d57600080fd5b506116706004803603604081101561162457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506140d4565b60405180821515815260200191505060405180910390f35b34801561169457600080fd5b5061169d614168565b6040518082815260200191505060405180910390f35b3480156116bf57600080fd5b50611702600480360360208110156116d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050614279565b005b61170c61446b565b73ffffffffffffffffffffffffffffffffffffffff1661172a612b90565b73ffffffffffffffffffffffffffffffffffffffff16146117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8060148190555050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118bd5780601f10611892576101008083540402835291602001916118bd565b820191906000526020600020905b8154815290600101906020018083116118a057829003601f168201915b5050505050905090565b60006118d282614473565b611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615c91602c913960400191505060405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061196d826123a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615d156021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611a1361446b565b73ffffffffffffffffffffffffffffffffffffffff161480611a425750611a4181611a3c61446b565b6140d4565b5b611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180615b776038913960400191505060405180910390fd5b611aa18383614490565b505050565b60006060829050600181511015611ac1576000915050611da9565b603281511115611ad5576000915050611da9565b602060f81b81600081518110611ae757fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611b24576000915050611da9565b602060f81b81600183510381518110611b3957fe5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611b76576000915050611da9565b600081600081518110611b8557fe5b602001015160f81c60f81b905060005b8251811015611da1576000838281518110611bac57fe5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148015611c135750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b15611c25576000945050505050611da9565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611c815750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b158015611ce75750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611ce55750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611d4c5750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015611d4a5750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b8015611d7e5750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611d90576000945050505050611da9565b809250508080600101915050611b95565b506001925050505b919050565b611db661446b565b73ffffffffffffffffffffffffffffffffffffffff16611dd4612b90565b73ffffffffffffffffffffffffffffffffffffffff1614611e5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c9080519060200190611e73929190615954565b5050565b600f54611e82611eff565b11611ef5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f476f616c2068617320746f20626520726561636865640000000000000000000081525060200191505060405180910390fd5b6002600e81905550565b6000611f0b6003614549565b905090565b60145481565b601760009054906101000a900460ff1681565b6000806013541115611f3e5760019050612002565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f7c5760019050612002565b611f84612b90565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611fef5750611fc0612b90565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611ffd5760019050612002565b600090505b92915050565b61201961201361446b565b8261455e565b61206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615d366031913960400191505060405180910390fd5b612079838383614652565b505050565b60006120d182600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061489590919063ffffffff16565b905092915050565b600f5481565b6120e761446b565b73ffffffffffffffffffffffffffffffffffffffff16612105612b90565b73ffffffffffffffffffffffffffffffffffffffff161461218e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156121d9573d6000803e3d6000fd5b5050565b6121f883838360405180602001604052806000815250613c15565b505050565b6000806122148360036148af90919063ffffffff16565b50905080915050919050565b61222861446b565b73ffffffffffffffffffffffffffffffffffffffff16612246612b90565b73ffffffffffffffffffffffffffffffffffffffff16146122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000601760006101000a81548160ff021916908315150217905550565b6122f461446b565b73ffffffffffffffffffffffffffffffffffffffff16612312612b90565b73ffffffffffffffffffffffffffffffffffffffff161461239b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123a4816148db565b50565b60006123d782604051806060016040528060298152602001615c026029913960036148f59092919063ffffffff16565b9050919050565b603281565b600d5481565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146124ad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600b8152602001807f416c72656164792073657400000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6060600a8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125895780601f1061255e57610100808354040283529160200191612589565b820191906000526020600020905b81548152906001019060200180831161256c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561261a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615bd8602a913960400191505060405180910390fd5b612661600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614914565b9050919050565b61267061446b565b73ffffffffffffffffffffffffffffffffffffffff1661268e612b90565b73ffffffffffffffffffffffffffffffffffffffff1614612717576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60006013541461284d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f5374617274696e6720696e64657820697320616c72656164792073657400000081525060200191505060405180910390fd5b600060125414156128c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374617274696e6720696e64657820626c6f636b206d7573742062652073657481525060200191505060405180910390fd5b6127106012544060001c816128d757fe5b0660138190555060ff6128f56012544361492990919063ffffffff16565b111561291557612710600143034060001c8161290d57fe5b066013819055505b6000601354141561293d5761293660016013546149ac90919063ffffffff16565b6013819055505b565b61294761446b565b73ffffffffffffffffffffffffffffffffffffffff16612965612b90565b73ffffffffffffffffffffffffffffffffffffffff16146129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060125414612a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180615c4d6023913960400191505060405180910390fd5b43601281905550565b60606000612a5f83612593565b90506000811415612aba57600067ffffffffffffffff81118015612a8257600080fd5b50604051908082528060200260200182016040528015612ab15781602001602082028036833780820191505090505b50915050612b8b565b60608167ffffffffffffffff81118015612ad357600080fd5b50604051908082528060200260200182016040528015612b025781602001602082028036833780820191505090505b5090506000805b612b11611eff565b811015612b83578573ffffffffffffffffffffffffffffffffffffffff16612b38826123a7565b73ffffffffffffffffffffffffffffffffffffffff161415612b765780838381518110612b6157fe5b60200260200101818152505081806001019250505b8080600101915050612b09565b829450505050505b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60011515601760009054906101000a900460ff16151514612c42576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b60008111612cb8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6e756d6265724f664e6674732063616e6e6f742062652030000000000000000081525060200191505060405180910390fd5b6014811115612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615baf6029913960400191505060405180910390fd5b612710612d2f82612d21611eff565b6149ac90919063ffffffff16565b1115612da3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f45786365656473204d41585f4e46545f535550504c590000000000000000000081525060200191505060405180910390fd5b34612db982600d54614a3490919063ffffffff16565b14612e2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45746865722076616c75652073656e74206973206e6f7420636f72726563740081525060200191505060405180910390fd5b60005b81811015612e6757612710612e42611eff565b1015612e5a57612e5933612e54611eff565b614aba565b5b8080600101915050612e2f565b506000601254148015612e8f5750612710612e80611eff565b1480612e8e57506014544210155b5b15612e9c57436012819055505b50565b63614250c081565b606060088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015612f3f5780601f10612f1457610100808354040283529160200191612f3f565b820191906000526020600020905b815481529060010190602001808311612f2257829003601f168201915b5050505050905090565b600060106000838152602001908152602001600020549050919050565b6000612f71846123a7565b90508073ffffffffffffffffffffffffffffffffffffffff16612f9261446b565b73ffffffffffffffffffffffffffffffffffffffff161461301b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4552433732313a2063616c6c6572206973206e6f7420746865206f776e65720081525060200191505060405180910390fd5b6001151561302884611aa6565b15151461309d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f4e6f742076616c696420737472696e6720666f7220746f70000000000000000081525060200191505060405180910390fd5b600115156130aa83611aa6565b15151461311f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f4e6f742076616c696420737472696e6720666f7220626f74746f6d000000000081525060200191505060405180910390fd5b82601560008681526020019081526020016000209080519060200190613146929190615954565b508160166000868152602001908152602001600020908051906020019061316e929190615954565b50837fdb1ffdac05081030a428ac46094dc823f52a01ab35823f8577c9d2f3a9d760028484604051808060200180602001838103835285818151815260200191508051906020019080838360005b838110156131d75780820151818401526020810190506131bc565b50505050905090810190601f1680156132045780820380516001836020036101000a031916815260200191505b50838103825284818151815260200191508051906020019080838360005b8381101561323d578082015181840152602081019050613222565b50505050905090810190601f16801561326a5780820380516001836020036101000a031916815260200191505b5094505050505060405180910390a250505050565b61328761446b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806006600061333561446b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166133e261446b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61343d61446b565b73ffffffffffffffffffffffffffffffffffffffff1661345b612b90565b73ffffffffffffffffffffffffffffffffffffffff16146134e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600a613500826134f2611eff565b6149ac90919063ffffffff16565b1115613574576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f457863656564656420676976656177617920737570706c79000000000000000081525060200191505060405180910390fd5b60001515601760009054906101000a900460ff161515146135fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f53616c652068617320616c72656164792073746172746564000000000000000081525060200191505060405180910390fd5b60005b8181101561362d57613620613613612b90565b61361b611eff565b614aba565b8080600101915050613600565b5050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136ed5780601f106136c2576101008083540402835291602001916136ed565b820191906000526020600020905b8154815290600101906020018083116136d057829003601f168201915b505050505081565b60011515601760009054906101000a900460ff1615151461377e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b601482829050106137da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615d95602c913960400191505060405180910390fd5b60008282905011613836576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180615a226033913960400191505060405180910390fd5b61271061385683839050613848611eff565b6149ac90919063ffffffff16565b11156138ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f4d617820737570706c792077696c6c206265656e20726561636865642e00000081525060200191505060405180910390fd5b60005b82829050811015613b0a573373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858581811061393957fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561397457600080fd5b505afa158015613988573d6000803e3d6000fd5b505050506040513d602081101561399e57600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614613a1b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180615d67602e913960400191505060405180910390fd5b600e5460106000858585818110613a2e57fe5b9050602002013581526020019081526020016000205410613a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ad2602f913960400191505060405180910390fd5b600160106000858585818110613aac57fe5b905060200201358152602001908152602001600020540160106000858585818110613ad357fe5b90506020020135815260200190815260200160002081905550613afd33613af8611eff565b614aba565b80806001019150506138cd565b506000601254148015613b325750612710613b23611eff565b1480613b3157506014544210155b5b15613b3f57436012819055505b5050565b61271081565b613b5161446b565b73ffffffffffffffffffffffffffffffffffffffff16613b6f612b90565b73ffffffffffffffffffffffffffffffffffffffff1614613bf8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001601760006101000a81548160ff021916908315150217905550565b613c26613c2061446b565b8361455e565b613c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615d366031913960400191505060405180910390fd5b613c8784848484614ad8565b50505050565b600e5481565b6060613c9e82614473565b613cf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180615ce6602f913960400191505060405180910390fd5b6060600960008481526020019081526020016000208054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015613d9c5780601f10613d7157610100808354040283529160200191613d9c565b820191906000526020600020905b815481529060010190602001808311613d7f57829003601f168201915b505050505090506060613dad6124f1565b9050600081511415613dc3578192505050613f5f565b600082511115613e945780826040516020018083805190602001908083835b60208310613e055780518252602082019150602081019050602083039250613de2565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613e565780518252602082019150602081019050602083039250613e33565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050613f5f565b80613e9e85614b4a565b6040516020018083805190602001908083835b60208310613ed45780518252602082019150602081019050602083039250613eb1565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310613f255780518252602082019150602081019050602083039250613f02565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050505b919050565b60135481565b60125481565b606080601560008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561401a5780601f10613fef5761010080835404028352916020019161401a565b820191906000526020600020905b815481529060010190602001808311613ffd57829003601f168201915b50505050509150601660008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156140c85780601f1061409d576101008083540402835291602001916140c8565b820191906000526020600020905b8154815290600101906020018083116140ab57829003601f168201915b50505050509050915091565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060011515601760009054906101000a900460ff161515146141f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f53616c6520686173206e6f74207374617274656400000000000000000000000081525060200191505060405180910390fd5b6127106141fe611eff565b10614271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f53616c652068617320616c726561647920656e6465640000000000000000000081525060200191505060405180910390fd5b600d54905090565b61428161446b565b73ffffffffffffffffffffffffffffffffffffffff1661429f612b90565b73ffffffffffffffffffffffffffffffffffffffff1614614328576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156143ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615a876026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b6000614489826003614c9190919063ffffffff16565b9050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16614503836123a7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061455782600001614cab565b9050919050565b600061456982614473565b6145be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180615b4b602c913960400191505060405180910390fd5b60006145c9836123a7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061463857508373ffffffffffffffffffffffffffffffffffffffff16614620846118c7565b73ffffffffffffffffffffffffffffffffffffffff16145b80614649575061464881856140d4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16614672826123a7565b73ffffffffffffffffffffffffffffffffffffffff16146146de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615cbd6029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614764576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615b016024913960400191505060405180910390fd5b61476f838383614cbc565b61477a600082614490565b6147cb81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614d2b90919063ffffffff16565b5061481d81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614d4590919063ffffffff16565b5061483481836003614d5f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006148a48360000183614d94565b60001c905092915050565b6000806000806148c28660000186614e17565b915091508160001c8160001c9350935050509250929050565b80600a90805190602001906148f1929190615954565b5050565b6000614908846000018460001b84614eb0565b60001c90509392505050565b600061492282600001614fa6565b9050919050565b6000828211156149a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b600080828401905083811015614a2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080831415614a475760009050614ab4565b6000828402905082848281614a5857fe5b0414614aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615c706021913960400191505060405180910390fd5b809150505b92915050565b614ad4828260405180602001604052806000815250614fb7565b5050565b614ae3848484614652565b614aef84848484615028565b614b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615a556032913960400191505060405180910390fd5b50505050565b60606000821415614b92576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614c8c565b600082905060005b60008214614bbc578080600101915050600a8281614bb457fe5b049150614b9a565b60608167ffffffffffffffff81118015614bd557600080fd5b506040519080825280601f01601f191660200182016040528015614c085781602001600182028036833780820191505090505b50905060006001830390508593505b60008414614c8457600a8481614c2957fe5b0660300160f81b82828060019003935081518110614c4357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481614c7c57fe5b049350614c17565b819450505050505b919050565b6000614ca3836000018360001b615241565b905092915050565b600081600001805490509050919050565b614cc68383611f29565b614d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615aad6025913960400191505060405180910390fd5b614d26838383615264565b505050565b6000614d3d836000018360001b615269565b905092915050565b6000614d57836000018360001b615351565b905092915050565b6000614d8b846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6153c1565b90509392505050565b600081836000018054905011614df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a006022913960400191505060405180910390fd5b826000018281548110614e0457fe5b9060005260206000200154905092915050565b60008082846000018054905011614e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615c2b6022913960400191505060405180910390fd5b6000846000018481548110614e8a57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614f77576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614f3c578082015181840152602081019050614f21565b50505050905090810190601f168015614f695780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50846000016001820381548110614f8a57fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b614fc1838361549d565b614fce6000848484615028565b615023576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180615a556032913960400191505060405180910390fd5b505050565b60006150498473ffffffffffffffffffffffffffffffffffffffff16615691565b6150565760019050615239565b60606151c063150b7a0260e01b61506b61446b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156150ef5780820151818401526020810190506150d4565b50505050905090810190601f16801561511c5780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001615a55603291398773ffffffffffffffffffffffffffffffffffffffff166156a49092919063ffffffff16565b905060008180602001905160208110156151d957600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b505050565b6000808360010160008481526020019081526020016000205490506000811461534557600060018203905060006001866000018054905003905060008660000182815481106152b457fe5b90600052602060002001549050808760000184815481106152d157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061530957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061534b565b60009150505b92915050565b600061535d83836156bc565b6153b65782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506153bb565b600090505b92915050565b600080846001016000858152602001908152602001600020549050600081141561546857846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050615496565b8285600001600183038154811061547b57fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415615540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b61554981614473565b156155bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b6155c860008383614cbc565b61561981600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020614d4590919063ffffffff16565b5061563081836003614d5f9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606156b384846000856156df565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b60608247101561573a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615b256026913960400191505060405180910390fd5b61574385615691565b6157b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061580557805182526020820191506020810190506020830392506157e2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114615867576040519150601f19603f3d011682016040523d82523d6000602084013e61586c565b606091505b509150915061587c828286615888565b92505050949350505050565b606083156158985782905061594d565b6000835111156158ab5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156159125780820151818401526020810190506158f7565b50505050905090810190601f16801561593f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261598a57600085556159d1565b82601f106159a357805160ff19168380011785556159d1565b828001600101855582156159d1579182015b828111156159d05782518255916020019190600101906159b5565b5b5090506159de91906159e2565b5090565b5b808211156159fb5760008160009055506001016159e3565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734e756d626572206f6620746f6b656e732063616e206e6f74206265206c657373207468616e206f7220657175616c20746f20304552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735472616e73666572206e6f7420616c6c6f776564207768696c6520756e72657665616c6564546869732043727970746572696f7220616c7265616479206265656e207573656420666f722066726565206d696e744552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c596f75206d6179206e6f7420627579206d6f7265207468616e203230204e465473206174206f6e63654552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64735374617274696e6720696e646578626c6f636b20616c7265616479206d696e74656e64536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644f726967696e616c2043727970746572696f72204e46542068617665206120646966666572656e74206f776e657243616e6e6f74206d696e74206d6f7265207468616e20323020696e206f6e65207472616e73616374696f6e21a2646970667358221220734be7d6b9fbd48653942d8223dc625f587fd9b51805cedab778b7b5bdf72bdb64736f6c63430007040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000001243727970746572696f7273204c6f63616c73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064c6f63616c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56754a636557343871436e487473576b413539544e7a715a6f3447724e4b536134594d6e417a6f527a7239392f00000000000000000000000000000000000000000000000000000000000000000000000000000000004031323764343739666236613434386565356137666134326639373736633461653530613836313230663033343062336339356561666363393861333764323863

-----Decoded View---------------
Arg [0] : name (string): Crypteriors Locals
Arg [1] : symbol (string): Locals
Arg [2] : baseURI (string): ipfs://QmVuJceW48qCnHtsWkA59TNzqZo4GrNKSa4YMnAzoRzr99/
Arg [3] : provenanceHash (string): 127d479fb6a448ee5a7fa42f9776c4ae50a86120f0340b3c95eafcc98a37d28c

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 43727970746572696f7273204c6f63616c730000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 4c6f63616c730000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d56754a636557343871436e487473576b413539544e7a71
Arg [10] : 5a6f3447724e4b536134594d6e417a6f527a7239392f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [12] : 3132376434373966623661343438656535613766613432663937373663346165
Arg [13] : 3530613836313230663033343062336339356561666363393861333764323863


Deployed Bytecode Sourcemap

65600:12736:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73800:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11767:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52503:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55289:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54819:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;77392:939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;72803:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;68436:220;;;;;;;;;;;;;:::i;:::-;;54297:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67075:77;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67545:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;71657:505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56179:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54059:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66422:69;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;76604:145;;;;;;;;;;;;;:::i;:::-;;56555:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54585:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72716:79;;;;;;;;;;;;;:::i;:::-;;72523:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52259:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67223:55;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;65953:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72295:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53878:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51976:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2604:148;;;;;;;;;;;;;:::i;:::-;;72987:725;;;;;;;;;;;;;:::i;:::-;;74018:205;;;;;;;;;;;;;:::i;:::-;;75050:690;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1953:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;68720:1009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66905:57;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52672:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69831:155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;74303:658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55582:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;76901:356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;65724:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;65850:49;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70057:1196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66088:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;72630:78;;;;;;;;;;;;;:::i;:::-;;56777:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66189:52;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52847:792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66797:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66757:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;75881:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55948:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;76249:260;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2907:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;73800:127;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73903:16:::1;73884;:35;;;;73800:127:::0;:::o;11767:150::-;11852:4;11876:20;:33;11897:11;11876:33;;;;;;;;;;;;;;;;;;;;;;;;;;;11869:40;;11767:150;;;:::o;52503:100::-;52557:13;52590:5;52583:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52503:100;:::o;55289:221::-;55365:7;55393:16;55401:7;55393;:16::i;:::-;55385:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55478:15;:24;55494:7;55478:24;;;;;;;;;;;;;;;;;;;;;55471:31;;55289:221;;;:::o;54819:404::-;54900:13;54916:23;54931:7;54916:14;:23::i;:::-;54900:39;;54964:5;54958:11;;:2;:11;;;;54950:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55044:5;55028:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;55053:44;55077:5;55084:12;:10;:12::i;:::-;55053:23;:44::i;:::-;55028:69;55020:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55194:21;55203:2;55207:7;55194:8;:21::i;:::-;54819:404;;;:::o;77392:939::-;77456:4;77473:14;77496:3;77473:27;;77526:1;77515;:8;:12;77511:30;;;77536:5;77529:12;;;;;77511:30;67276:2;77556:1;:8;:37;77552:55;;;77602:5;77595:12;;;;;77552:55;77669:4;77661:12;;:1;77663;77661:4;;;;;;;;;;;;;;;;:12;;;;77657:30;;;77682:5;77675:12;;;;;77657:30;77738:4;77719:23;;:1;77732;77721;:8;:12;77719:15;;;;;;;;;;;;;;;;:23;;;;77715:41;;;77751:5;77744:12;;;;;77715:41;77787:15;77805:1;77807;77805:4;;;;;;;;;;;;;;;;77787:22;;77827:9;77822:478;77842:1;:8;77838:1;:12;77822:478;;;77872:11;77886:1;77888;77886:4;;;;;;;;;;;;;;;;77872:18;;77919:4;77911:12;;:4;:12;;;;:32;;;;;77939:4;77927:16;;:8;:16;;;;77911:32;77907:50;;;77952:5;77945:12;;;;;;;;77907:50;78041:4;78033:12;;:4;:12;;;;;:28;;;;;78057:4;78049:12;;:4;:12;;;;;78033:28;78031:31;:89;;;;;78099:4;78091:12;;:4;:12;;;;;:28;;;;;78115:4;78107:12;;:4;:12;;;;;78091:28;78089:31;78031:89;:147;;;;;78157:4;78149:12;;:4;:12;;;;;:28;;;;;78173:4;78165:12;;:4;:12;;;;;78149:28;78147:31;78031:147;:189;;;;;78215:4;78207:12;;:4;:12;;;;78205:15;78031:189;78009:247;;;78251:5;78244:12;;;;;;;;78009:247;78284:4;78273:15;;77822:478;77852:3;;;;;;;77822:478;;;;78319:4;78312:11;;;;77392:939;;;;:::o;72803:121::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72911:5:::1;72879:29;:37;;;;;;;;;;;;:::i;:::-;;72803:121:::0;:::o;68436:220::-;68526:47;;68510:13;:11;:13::i;:::-;:63;68502:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68647:1;68611:33;:37;;;;68436:220::o;54297:211::-;54358:7;54479:21;:12;:19;:21::i;:::-;54472:28;;54297:211;:::o;67075:77::-;;;;:::o;67545:34::-;;;;;;;;;;;;;:::o;71657:505::-;71730:4;71841:1;71825:13;;:17;71822:33;;;71851:4;71844:11;;;;71822:33;71908:1;71891:19;;:5;:19;;;71888:35;;;71919:4;71912:11;;;;71888:35;72080:7;:5;:7::i;:::-;72071:16;;:5;:16;;;:34;;;;72098:7;:5;:7::i;:::-;72091:14;;:3;:14;;;72071:34;72068:50;;;72114:4;72107:11;;;;72068:50;72149:5;72142:12;;71657:505;;;;;:::o;56179:305::-;56340:41;56359:12;:10;:12::i;:::-;56373:7;56340:18;:41::i;:::-;56332:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56448:28;56458:4;56464:2;56468:7;56448:9;:28::i;:::-;56179:305;;;:::o;54059:162::-;54156:7;54183:30;54207:5;54183:13;:20;54197:5;54183:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;54176:37;;54059:162;;;;:::o;66422:69::-;;;;:::o;76604:145::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76652:15:::1;76670:21;76652:39;;76712:10;76704:28;;:37;76733:7;76704:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;2244:1;76604:145::o:0;56555:151::-;56659:39;56676:4;56682:2;56686:7;56659:39;;;;;;;;;;;;:16;:39::i;:::-;56555:151;;;:::o;54585:172::-;54660:7;54681:15;54702:22;54718:5;54702:12;:15;;:22;;;;:::i;:::-;54680:44;;;54742:7;54735:14;;;54585:172;;;:::o;72716:79::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72782:5:::1;72765:14;;:22;;;;;;;;;;;;;;;;;;72716:79::o:0;72523:99::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72594:20:::1;72606:7;72594:11;:20::i;:::-;72523:99:::0;:::o;52259:177::-;52331:7;52358:70;52375:7;52358:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;52351:77;;52259:177;;;:::o;67223:55::-;67276:2;67223:55;:::o;65953:44::-;;;;:::o;72295:155::-;72387:1;72364:25;;:11;;;;;;;;;;;:25;;;72356:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72432:10;72418:11;;:24;;;;;;;;;;;;;;;;;;72295:155;:::o;53878:97::-;53926:13;53959:8;53952:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53878:97;:::o;51976:221::-;52048:7;52093:1;52076:19;;:5;:19;;;;52068:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52160:29;:13;:20;52174:5;52160:20;;;;;;;;;;;;;;;:27;:29::i;:::-;52153:36;;51976:221;;;:::o;2604:148::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2711:1:::1;2674:40;;2695:6;::::0;::::1;;;;;;;;2674:40;;;;;;;;;;;;2742:1;2725:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2604:148::o:0;72987:725::-;73063:1;73046:13;;:18;73038:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73139:1;73117:18;;:23;;73109:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66129:5;73224:18;;73214:29;73206:38;;:55;;;;;;73190:13;:71;;;;73436:3;73397:36;73414:18;;73397:12;:16;;:36;;;;:::i;:::-;:42;73393:178;;;66129:5;73522:1;73507:12;:16;73497:27;73489:36;;:70;;;;;;73456:13;:103;;;;73393:178;73639:1;73622:13;;:18;73618:87;;;73673:20;73691:1;73673:13;;:17;;:20;;;;:::i;:::-;73657:13;:36;;;;73618:87;72987:725::o;74018:205::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74112:1:::1;74090:18;;:23;74082:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74195:12;74174:18;:33;;;;74018:205::o:0;75050:690::-;75139:16;75173:18;75194:17;75204:6;75194:9;:17::i;:::-;75173:38;;75242:1;75228:10;:15;75224:509;;;75293:1;75279:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75272:23;;;;;75224:509;75328:23;75368:10;75354:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75328:51;;75394:19;75432:15;75464:228;75492:13;:11;:13::i;:::-;75482:7;:23;75464:228;;;75561:6;75541:26;;:16;75549:7;75541;:16::i;:::-;:26;;;75537:140;;;75614:7;75592:6;75599:11;75592:19;;;;;;;;;;;;;:29;;;;;75644:13;;;;;;;75537:140;75507:9;;;;;;;75464:228;;;75715:6;75708:13;;;;;;75050:690;;;;:::o;1953:87::-;1999:7;2026:6;;;;;;;;;;;2019:13;;1953:87;:::o;68720:1009::-;68815:4;68797:22;;:14;;;;;;;;;;;:22;;;68789:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68887:1;68872:12;:16;68864:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68966:2;68950:12;:18;;68928:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66129:5;69070:31;69088:12;69070:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:49;;69048:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69233:9;69202:27;69216:12;69202:9;;:13;;:27;;;;:::i;:::-;:40;69180:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69319:9;69314:177;69338:12;69334:1;:16;69314:177;;;66129:5;69376:13;:11;:13::i;:::-;:30;69372:108;;;69427:37;69437:10;69450:13;:11;:13::i;:::-;69427:9;:37::i;:::-;69372:108;69352:3;;;;;;;69314:177;;;;69543:1;69521:18;;:23;:129;;;;;66129:5;69562:13;:11;:13::i;:::-;:31;:87;;;;69633:16;;69614:15;:35;;69562:87;69521:129;69503:219;;;69698:12;69677:18;:33;;;;69503:219;68720:1009;:::o;66905:57::-;66952:10;66905:57;:::o;52672:104::-;52728:13;52761:7;52754:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52672:104;:::o;69831:155::-;69916:7;69948:20;:30;69969:8;69948:30;;;;;;;;;;;;69941:37;;69831:155;;;:::o;74303:658::-;74461:13;74477:16;74485:7;74477;:16::i;:::-;74461:32;;74530:5;74514:21;;:12;:10;:12::i;:::-;:21;;;74506:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74627:4;74590:41;;:33;74605:17;74590:14;:33::i;:::-;:41;;;74582:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74719:4;74679:44;;:36;74694:20;74679:14;:36::i;:::-;:44;;;74671:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74796:17;74768:16;:25;74785:7;74768:25;;;;;;;;;;;:45;;;;;;;;;;;;:::i;:::-;;74855:20;74824:19;:28;74844:7;74824:28;;;;;;;;;;;:51;;;;;;;;;;;;:::i;:::-;;74904:7;74893:60;74913:17;74932:20;74893:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74303:658;;;;:::o;55582:295::-;55697:12;:10;:12::i;:::-;55685:24;;:8;:24;;;;55677:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55797:8;55752:18;:32;55771:12;:10;:12::i;:::-;55752:32;;;;;;;;;;;;;;;:42;55785:8;55752:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55850:8;55821:48;;55836:12;:10;:12::i;:::-;55821:48;;;55860:8;55821:48;;;;;;;;;;;;;;;;;;;;55582:295;;:::o;76901:356::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77011:2:::1;76981:26;76999:7;76981:13;:11;:13::i;:::-;:17;;:26;;;;:::i;:::-;:32;;76973:69;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;77079:5;77061:23;;:14;;;;;;;;;;;:23;;;77053:60;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;77124:13;77148:102;77172:7;77164:5;:15;77148:102;;;77205:33;77215:7;:5;:7::i;:::-;77224:13;:11;:13::i;:::-;77205:9;:33::i;:::-;77181:7;;;;;;;77148:102;;;2244:1;76901:356:::0;:::o;65724:26::-;;;;;;;;;;;;;:::o;65850:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70057:1196::-;70168:4;70150:22;;:14;;;;;;;;;;;:22;;;70142:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70237:2;70219:8;;:15;;:20;70210:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70326:1;70308:8;;:15;;:19;70299:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66129:5;70403:34;70421:8;;:15;;70403:13;:11;:13::i;:::-;:17;;:34;;;;:::i;:::-;:52;;70395:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70508:9;70503:502;70527:8;;:15;;70523:1;:19;70503:502;;;70632:10;70572:70;;70595:11;;;;;;;;;;;70572:43;;;70616:8;;70625:1;70616:11;;;;;;;;;;;;;70572:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:70;;;70564:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70752:33;;70716:20;:33;70737:8;;70746:1;70737:11;;;;;;;;;;;;;70716:33;;;;;;;;;;;;:69;70708:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70938:1;70902:20;:33;70923:8;;70932:1;70923:11;;;;;;;;;;;;;70902:33;;;;;;;;;;;;:37;70866:20;:33;70887:8;;70896:1;70887:11;;;;;;;;;;;;;70866:33;;;;;;;;;;;:73;;;;70956:37;70966:10;70979:13;:11;:13::i;:::-;70956:9;:37::i;:::-;70544:3;;;;;;;70503:502;;;;71057:1;71035:18;;:23;:129;;;;;66129:5;71076:13;:11;:13::i;:::-;:31;:87;;;;71147:16;;71128:15;:35;;71076:87;71035:129;71017:219;;;71212:12;71191:18;:33;;;;71017:219;70057:1196;;:::o;66088:46::-;66129:5;66088:46;:::o;72630:78::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72696:4:::1;72679:14;;:21;;;;;;;;;;;;;;;;;;72630:78::o:0;56777:285::-;56909:41;56928:12;:10;:12::i;:::-;56942:7;56909:18;:41::i;:::-;56901:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57015:39;57029:4;57035:2;57039:7;57048:5;57015:13;:39::i;:::-;56777:285;;;;:::o;66189:52::-;;;;:::o;52847:792::-;52920:13;52954:16;52962:7;52954;:16::i;:::-;52946:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53035:23;53061:10;:19;53072:7;53061:19;;;;;;;;;;;53035:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53091:18;53112:9;:7;:9::i;:::-;53091:30;;53219:1;53203:4;53197:18;:23;53193:72;;;53244:9;53237:16;;;;;;53193:72;53395:1;53375:9;53369:23;:27;53365:108;;;53444:4;53450:9;53427:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53413:48;;;;;;53365:108;53605:4;53611:18;:7;:16;:18::i;:::-;53588:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53574:57;;;;52847:792;;;;:::o;66797:28::-;;;;:::o;66757:33::-;;;;:::o;75881:305::-;75981:26;76022:29;76094:16;:26;76111:8;76094:26;;;;;;;;;;;76079:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76149:19;:29;76169:8;76149:29;;;;;;;;;;;76131:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75881:305;;;:::o;55948:164::-;56045:4;56069:18;:25;56088:5;56069:25;;;;;;;;;;;;;;;:35;56095:8;56069:35;;;;;;;;;;;;;;;;;;;;;;;;;56062:42;;55948:164;;;;:::o;76249:260::-;76297:7;76343:4;76325:22;;:14;;;;;;;;;;;:22;;;76317:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66129:5;76391:13;:11;:13::i;:::-;:30;76383:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76476:9;;76469:16;;76249:260;:::o;2907:244::-;2184:12;:10;:12::i;:::-;2173:23;;:7;:5;:7::i;:::-;:23;;;2165:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3016:1:::1;2996:22;;:8;:22;;;;2988:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3106:8;3077:38;;3098:6;::::0;::::1;;;;;;;;3077:38;;;;;;;;;;;;3135:8;3126:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2907:244:::0;:::o;577:106::-;630:15;665:10;658:17;;577:106;:::o;58529:127::-;58594:4;58618:30;58640:7;58618:12;:21;;:30;;;;:::i;:::-;58611:37;;58529:127;;;:::o;64436:183::-;64529:2;64502:15;:24;64518:7;64502:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64585:7;64581:2;64547:46;;64556:23;64571:7;64556:14;:23::i;:::-;64547:46;;;;;;;;;;;;64436:183;;:::o;45446:123::-;45515:7;45542:19;45550:3;:10;;45542:7;:19::i;:::-;45535:26;;45446:123;;;:::o;58823:355::-;58916:4;58941:16;58949:7;58941;:16::i;:::-;58933:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59017:13;59033:23;59048:7;59033:14;:23::i;:::-;59017:39;;59086:5;59075:16;;:7;:16;;;:51;;;;59119:7;59095:31;;:20;59107:7;59095:11;:20::i;:::-;:31;;;59075:51;:94;;;;59130:39;59154:5;59161:7;59130:23;:39::i;:::-;59075:94;59067:103;;;58823:355;;;;:::o;61959:599::-;62084:4;62057:31;;:23;62072:7;62057:14;:23::i;:::-;:31;;;62049:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62185:1;62171:16;;:2;:16;;;;62163:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62241:39;62262:4;62268:2;62272:7;62241:20;:39::i;:::-;62345:29;62362:1;62366:7;62345:8;:29::i;:::-;62387:35;62414:7;62387:13;:19;62401:4;62387:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;62433:30;62455:7;62433:13;:17;62447:2;62433:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;62476:29;62493:7;62502:2;62476:12;:16;;:29;;;;;:::i;:::-;;62542:7;62538:2;62523:27;;62532:4;62523:27;;;;;;;;;;;;61959:599;;;:::o;37331:137::-;37402:7;37437:22;37441:3;:10;;37453:5;37437:3;:22::i;:::-;37429:31;;37422:38;;37331:137;;;;:::o;45908:236::-;45988:7;45997;46018:11;46031:13;46048:22;46052:3;:10;;46064:5;46048:3;:22::i;:::-;46017:53;;;;46097:3;46089:12;;46127:5;46119:14;;46081:55;;;;;;45908:236;;;;;:::o;63159:100::-;63243:8;63232;:19;;;;;;;;;;;;:::i;:::-;;63159:100;:::o;47194:213::-;47301:7;47352:44;47357:3;:10;;47377:3;47369:12;;47383;47352:4;:44::i;:::-;47344:53;;47321:78;;47194:213;;;;;:::o;36873:114::-;36933:7;36960:19;36968:3;:10;;36960:7;:19::i;:::-;36953:26;;36873:114;;;:::o;15703:158::-;15761:7;15794:1;15789;:6;;15781:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15852:1;15848;:5;15841:12;;15703:158;;;;:::o;15241:179::-;15299:7;15319:9;15335:1;15331;:5;15319:17;;15360:1;15355;:6;;15347:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15411:1;15404:8;;;15241:179;;;;:::o;16120:220::-;16178:7;16207:1;16202;:6;16198:20;;;16217:1;16210:8;;;;16198:20;16229:9;16245:1;16241;:5;16229:17;;16274:1;16269;16265;:5;;;;;;:10;16257:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16331:1;16324:8;;;16120:220;;;;;:::o;59521:110::-;59597:26;59607:2;59611:7;59597:26;;;;;;;;;;;;:9;:26::i;:::-;59521:110;;:::o;57944:272::-;58058:28;58068:4;58074:2;58078:7;58058:9;:28::i;:::-;58105:48;58128:4;58134:2;58138:7;58147:5;58105:22;:48::i;:::-;58097:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57944:272;;;;:::o;47570:746::-;47626:13;47856:1;47847:5;:10;47843:53;;;47874:10;;;;;;;;;;;;;;;;;;;;;47843:53;47906:12;47921:5;47906:20;;47937:14;47962:78;47977:1;47969:4;:9;47962:78;;47995:8;;;;;;;48026:2;48018:10;;;;;;;;;47962:78;;;48050:19;48082:6;48072:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48050:39;;48100:13;48125:1;48116:6;:10;48100:26;;48144:5;48137:12;;48160:117;48175:1;48167:4;:9;48160:117;;48236:2;48229:4;:9;;;;;;48224:2;:14;48211:29;;48193:6;48200:7;;;;;;;48193:15;;;;;;;;;;;:47;;;;;;;;;;;48263:2;48255:10;;;;;;;;;48160:117;;;48301:6;48287:21;;;;;;47570:746;;;;:::o;45207:151::-;45291:4;45315:35;45325:3;:10;;45345:3;45337:12;;45315:9;:35::i;:::-;45308:42;;45207:151;;;;:::o;42025:110::-;42081:7;42108:3;:12;;:19;;;;42101:26;;42025:110;;;:::o;71350:299::-;71505:27;71521:5;71528:3;71505:15;:27::i;:::-;71497:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71593:48;71620:5;71627:3;71632:8;71593:26;:48::i;:::-;71350:299;;;:::o;36418:137::-;36488:4;36512:35;36520:3;:10;;36540:5;36532:14;;36512:7;:35::i;:::-;36505:42;;36418:137;;;;:::o;36111:131::-;36178:4;36202:32;36207:3;:10;;36227:5;36219:14;;36202:4;:32::i;:::-;36195:39;;36111:131;;;;:::o;44630:185::-;44719:4;44743:64;44748:3;:10;;44768:3;44760:12;;44798:5;44782:23;;44774:32;;44743:4;:64::i;:::-;44736:71;;44630:185;;;;;:::o;32369:204::-;32436:7;32485:5;32464:3;:11;;:18;;;;:26;32456:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32547:3;:11;;32559:5;32547:18;;;;;;;;;;;;;;;;32540:25;;32369:204;;;;:::o;42490:279::-;42557:7;42566;42616:5;42594:3;:12;;:19;;;;:27;42586:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42673:22;42698:3;:12;;42711:5;42698:19;;;;;;;;;;;;;;;;;;42673:44;;42736:5;:10;;;42748:5;:12;;;42728:33;;;;;42490:279;;;;;:::o;43987:319::-;44081:7;44101:16;44120:3;:12;;:17;44133:3;44120:17;;;;;;;;;;;;44101:36;;44168:1;44156:8;:13;;44171:12;44148:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44238:3;:12;;44262:1;44251:8;:12;44238:26;;;;;;;;;;;;;;;;;;:33;;;44231:40;;;43987:319;;;;;:::o;31916:109::-;31972:7;31999:3;:11;;:18;;;;31992:25;;31916:109;;;:::o;59858:250::-;59954:18;59960:2;59964:7;59954:5;:18::i;:::-;59991:54;60022:1;60026:2;60030:7;60039:5;59991:22;:54::i;:::-;59983:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59858:250;;;:::o;63824:604::-;63945:4;63972:15;:2;:13;;;:15::i;:::-;63967:60;;64011:4;64004:11;;;;63967:60;64037:23;64063:252;64116:45;;;64176:12;:10;:12::i;:::-;64203:4;64222:7;64244:5;64079:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64063:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;64037:278;;64326:13;64353:10;64342:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64326:48;;48973:10;64403:16;;64393:26;;;:6;:26;;;;64385:35;;;;63824:604;;;;;;;:::o;41805:125::-;41876:4;41921:1;41900:3;:12;;:17;41913:3;41900:17;;;;;;;;;;;;:22;;41893:29;;41805:125;;;;:::o;65232:93::-;;;;:::o;30071:1544::-;30137:4;30255:18;30276:3;:12;;:19;30289:5;30276:19;;;;;;;;;;;;30255:40;;30326:1;30312:10;:15;30308:1300;;30674:21;30711:1;30698:10;:14;30674:38;;30727:17;30768:1;30747:3;:11;;:18;;;;:22;30727:42;;31014:17;31034:3;:11;;31046:9;31034:22;;;;;;;;;;;;;;;;31014:42;;31180:9;31151:3;:11;;31163:13;31151:26;;;;;;;;;;;;;;;:38;;;;31299:1;31283:13;:17;31257:3;:12;;:23;31270:9;31257:23;;;;;;;;;;;:43;;;;31409:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;31504:3;:12;;:19;31517:5;31504:19;;;;;;;;;;;31497:26;;;31547:4;31540:11;;;;;;;;30308:1300;31591:5;31584:12;;;30071:1544;;;;;:::o;29481:414::-;29544:4;29566:21;29576:3;29581:5;29566:9;:21::i;:::-;29561:327;;29604:3;:11;;29621:5;29604:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29787:3;:11;;:18;;;;29765:3;:12;;:19;29778:5;29765:19;;;;;;;;;;;:40;;;;29827:4;29820:11;;;;29561:327;29871:5;29864:12;;29481:414;;;;;:::o;39305:692::-;39381:4;39497:16;39516:3;:12;;:17;39529:3;39516:17;;;;;;;;;;;;39497:36;;39562:1;39550:8;:13;39546:444;;;39617:3;:12;;39635:38;;;;;;;;39652:3;39635:38;;;;39665:5;39635:38;;;39617:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39832:3;:12;;:19;;;;39812:3;:12;;:17;39825:3;39812:17;;;;;;;;;;;:39;;;;39873:4;39866:11;;;;;39546:444;39946:5;39910:3;:12;;39934:1;39923:8;:12;39910:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39973:5;39966:12;;;39305:692;;;;;;:::o;60444:404::-;60538:1;60524:16;;:2;:16;;;;60516:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60597:16;60605:7;60597;:16::i;:::-;60596:17;60588:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60659:45;60688:1;60692:2;60696:7;60659:20;:45::i;:::-;60717:30;60739:7;60717:13;:17;60731:2;60717:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60760:29;60777:7;60786:2;60760:12;:16;;:29;;;;;:::i;:::-;;60832:7;60828:2;60807:33;;60824:1;60807:33;;;;;;;;;;;;60444:404;;:::o;20594:422::-;20654:4;20862:12;20973:7;20961:20;20953:28;;21007:1;21000:4;:8;20993:15;;;20594:422;;;:::o;23512:195::-;23615:12;23647:52;23669:6;23677:4;23683:1;23686:12;23647:21;:52::i;:::-;23640:59;;23512:195;;;;;:::o;31701:129::-;31774:4;31821:1;31798:3;:12;;:19;31811:5;31798:19;;;;;;;;;;;;:24;;31791:31;;31701:129;;;;:::o;24564:530::-;24691:12;24749:5;24724:21;:30;;24716:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24816:18;24827:6;24816:10;:18::i;:::-;24808:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24942:12;24956:23;24983:6;:11;;25003:5;25011:4;24983:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24941:75;;;;25034:52;25052:7;25061:10;25073:12;25034:17;:52::i;:::-;25027:59;;;;24564:530;;;;;;:::o;27104:742::-;27219:12;27248:7;27244:595;;;27279:10;27272:17;;;;27244:595;27413:1;27393:10;:17;:21;27389:439;;;27656:10;27650:17;27717:15;27704:10;27700:2;27696:19;27689:44;27604:148;27799:12;27792:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27104:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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