ETH Price: $2,670.86 (+1.11%)

ERC-420 (ERC-420)
 

Overview

TokenID

1887

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
ERC420

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-23
*/

// -----License-Identifier: MIT

pragma solidity ^0.8.0;


library EnumerableSet {

    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) {

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

            if (lastIndex != toDeleteIndex) {
                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] = valueIndex; // Replace lastvalue's index to valueIndex
            }

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

    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }


    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    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);
    }


    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }


    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }


    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }


    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);
    }


    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }


    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }


    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 Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        assembly {
            result := store
        }

        return result;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;


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

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

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

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

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

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


    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    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);


    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);

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;


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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    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 _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _balances[to] += 1;
        _owners[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);

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

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

        _balances[owner] -= 1;
        delete _owners[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");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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


    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// -----License-Identifier: MIT

pragma solidity ^0.8.0;


abstract contract Ownable is Context {
    address internal _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = msg.sender;
        _owner = msgSender;
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/NFT.sol

pragma solidity ^0.8.0;

contract ERC420 is ERC721,Ownable{

    address private ceoAddress = 0x97E633585508399b8022Fe6B65d24957c2F389fD;
    address private fundAddress = 0x412888bb6e433e9811101415aBAF89142993F47e;

    mapping(address => uint256[]) public userERCIds; 
    mapping(address => uint256) public mintedCount; 

    uint256 public latestTokenId;
    using EnumerableSet for EnumerableSet.UintSet;
    mapping(address => EnumerableSet.UintSet) private ownerTokens;
    mapping(address => bool) minter;
    uint256 public  MAX_SUPPLY_Scriptions = 10000;
    uint256 public mintPrice = 0.005 ether;



    string public uri;
    constructor() ERC721("ERC-420", "ERC-420") {
        minter[ceoAddress] = true;

    }

    function setBaseUri(string memory _uri) onlyOwner external{
        uri = _uri;
    }

    function _baseURI() internal view override returns (string memory) {
        return uri;
    }

    function setceoAddress(address ceo) external onlyOwner {
        ceoAddress = ceo;
    }

    function setfundAddress(address fund) external onlyOwner {
        fundAddress = fund;
    }

    function setMinter(address addr, bool enable) external onlyOwner {
        minter[addr] = enable;
    }

    function getUserERCIds(address user) public view returns (uint256[] memory) {
        return userERCIds[user];
    }

    function mint(uint256 _num) public payable returns(uint256[] memory) {
        require(_num > 0, "Invalid number of tokens");

        if (minter[msg.sender]) {
            uint256[] memory newTokenIds = new uint256[](_num);
            for (uint256 i = 0; i < _num; i++) {
                newTokenIds[i] = mintBox();
                userERCIds[msg.sender].push(newTokenIds[i]);
            }
            return newTokenIds;
        } else {
            require(_num * mintPrice <= msg.value, "Not enough ether sent");
            uint256[] memory newTokenIds = new uint256[](_num);
            for (uint256 i = 0; i < _num; i++) {
                require(mintedCount[msg.sender] + i < 10, "Exceeds maximum mint limit");
                newTokenIds[i] = mintBox();
                userERCIds[msg.sender].push(newTokenIds[i]);
            }
            mintedCount[msg.sender] += _num;
            uint256 vals = address(this).balance;
            payable(fundAddress).transfer(vals);
            return newTokenIds;
        }
    }

    function mintBox() internal returns(uint256){
        uint256 tokenId= _getNextTokenId();
        require(tokenId <= MAX_SUPPLY_Scriptions, "Exceeds maximum supply");
        _safeMint(msg.sender, tokenId);
        _incrementTokenId();
        return tokenId;
    }


    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override {
        ownerTokens[from].remove(tokenId);
        ownerTokens[to].add(tokenId);
    }

    function _getNextTokenId() internal view returns (uint256) {
        return latestTokenId + 1;
    }

    function _incrementTokenId() internal {
        latestTokenId++;
    }

    function setPrice(uint256 _blindBoxPrice) public onlyOwner {
        mintPrice = _blindBoxPrice;
    }

    
    function setMAX_SUPPLY_BLINDBOX(uint256 _num) public onlyOwner {
        MAX_SUPPLY_Scriptions = _num;
    }

receive() external payable {}


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



}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY_Scriptions","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserERCIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"latestTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"setMAX_SUPPLY_BLINDBOX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_blindBoxPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"ceo","type":"address"}],"name":"setceoAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fund","type":"address"}],"name":"setfundAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"userERCIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600780546001600160a01b03199081167397e633585508399b8022fe6b65d24957c2f389fd179091556008805490911673412888bb6e433e9811101415abaf89142993f47e179055612710600e556611c37937e08000600f553480156200006a57600080fd5b5060408051808201825260078082526604552432d3432360cc1b6020808401829052845180860190955291845290830152906000620000aa838262000207565b506001620000b9828262000207565b5050600680546001600160a01b031916339081179091559050620000e4620000de3390565b62000110565b506007546001600160a01b03166000908152600d60205260409020805460ff19166001179055620002d3565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200018d57607f821691505b602082108103620001ae57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200020257600081815260208120601f850160051c81016020861015620001dd5750805b601f850160051c820191505b81811015620001fe57828155600101620001e9565b5050505b505050565b81516001600160401b0381111562000223576200022362000162565b6200023b8162000234845462000178565b84620001b4565b602080601f8311600181146200027357600084156200025a5750858301515b600019600386901b1c1916600185901b178555620001fe565b600085815260208120601f198616915b82811015620002a45788860151825594840194600190910190840162000283565b5085821015620002c35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61236380620002e36000396000f3fe6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063c1da4d7411610095578063eac989f811610064578063eac989f814610546578063ed99071b1461055b578063f2fde38b1461057b578063fddcb5ea1461059b57600080fd5b8063c1da4d74146104c6578063c87b56dd146104e6578063cf456ae714610506578063e985e9c51461052657600080fd5b8063a0bcfc7f116100d1578063a0bcfc7f14610446578063a151939f14610466578063a22cb46514610486578063b88d4fde146104a657600080fd5b80638da5cb5b146103e057806391b7f5ed146103fe57806395d89b411461041e578063a0712d681461043357600080fd5b80633ccfd60b1161017a578063707d863811610149578063707d86381461036857806370a0823114610395578063715018a6146103b55780638c0e8349146103ca57600080fd5b80633ccfd60b146102fd57806342842e0e146103125780636352211e146103325780636817c76c1461035257600080fd5b8063095ea7b3116101b6578063095ea7b31461027757806322d64a2b1461029957806323b872dd146102b95780632ff66628146102d957600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f57600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b50610208610203366004611c69565b6105c8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261061a565b6040516102149190611cd6565b34801561024b57600080fd5b5061025f61025a366004611ce9565b6106ac565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611d19565b610746565b005b3480156102a557600080fd5b506102976102b4366004611ce9565b61085b565b3480156102c557600080fd5b506102976102d4366004611d43565b61088a565b3480156102e557600080fd5b506102ef600e5481565b604051908152602001610214565b34801561030957600080fd5b506102976108bb565b34801561031e57600080fd5b5061029761032d366004611d43565b610923565b34801561033e57600080fd5b5061025f61034d366004611ce9565b61093e565b34801561035e57600080fd5b506102ef600f5481565b34801561037457600080fd5b50610388610383366004611d7f565b6109b5565b6040516102149190611d9a565b3480156103a157600080fd5b506102ef6103b0366004611d7f565b610a21565b3480156103c157600080fd5b50610297610aa8565b3480156103d657600080fd5b506102ef600b5481565b3480156103ec57600080fd5b506006546001600160a01b031661025f565b34801561040a57600080fd5b50610297610419366004611ce9565b610ade565b34801561042a57600080fd5b50610232610b0d565b610388610441366004611ce9565b610b1c565b34801561045257600080fd5b50610297610461366004611e6a565b610e7a565b34801561047257600080fd5b50610297610481366004611d7f565b610eb0565b34801561049257600080fd5b506102976104a1366004611eb3565b610efc565b3480156104b257600080fd5b506102976104c1366004611eef565b610fc0565b3480156104d257600080fd5b506102ef6104e1366004611d19565b610ff8565b3480156104f257600080fd5b50610232610501366004611ce9565b611029565b34801561051257600080fd5b50610297610521366004611eb3565b611104565b34801561053257600080fd5b50610208610541366004611f6b565b611159565b34801561055257600080fd5b50610232611187565b34801561056757600080fd5b50610297610576366004611d7f565b611215565b34801561058757600080fd5b50610297610596366004611d7f565b611261565b3480156105a757600080fd5b506102ef6105b6366004611d7f565b600a6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806105f957506001600160e01b03198216635b5e139f60e01b145b8061061457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461062990611f9e565b80601f016020809104026020016040519081016040528092919081815260200182805461065590611f9e565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661072a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107518261093e565b9050806001600160a01b0316836001600160a01b0316036107be5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610721565b336001600160a01b03821614806107da57506107da8133611159565b61084c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610721565b61085683836112fc565b505050565b6006546001600160a01b031633146108855760405162461bcd60e51b815260040161072190611fd8565b600e55565b610894338261136a565b6108b05760405162461bcd60e51b81526004016107219061200d565b610856838383611441565b6006546001600160a01b031633146108e55760405162461bcd60e51b815260040161072190611fd8565b60085460405147916001600160a01b03169082156108fc029083906000818181858888f1935050505015801561091f573d6000803e3d6000fd5b5050565b61085683838360405180602001604052806000815250610fc0565b6000818152600260205260408120546001600160a01b0316806106145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610721565b6001600160a01b038116600090815260096020908152604091829020805483518184028101840190945280845260609392830182828015610a1557602002820191906000526020600020905b815481526020019060010190808311610a01575b50505050509050919050565b60006001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610721565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ad25760405162461bcd60e51b815260040161072190611fd8565b610adc60006115ec565b565b6006546001600160a01b03163314610b085760405162461bcd60e51b815260040161072190611fd8565b600f55565b60606001805461062990611f9e565b606060008211610b6e5760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206e756d626572206f6620746f6b656e7300000000000000006044820152606401610721565b336000908152600d602052604090205460ff1615610c6d5760008267ffffffffffffffff811115610ba157610ba1611dde565b604051908082528060200260200182016040528015610bca578160200160208202803683370190505b50905060005b83811015610c6657610be061163e565b828281518110610bf257610bf261205e565b60200260200101818152505060096000336001600160a01b03166001600160a01b03168152602001908152602001600020828281518110610c3557610c3561205e565b6020908102919091018101518254600181018455600093845291909220015580610c5e8161208a565b915050610bd0565b5092915050565b34600f5483610c7c91906120a3565b1115610cc25760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610721565b60008267ffffffffffffffff811115610cdd57610cdd611dde565b604051908082528060200260200182016040528015610d06578160200160208202803683370190505b50905060005b83811015610e0d57336000908152600a6020819052604090912054610d329083906120ba565b10610d7f5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178696d756d206d696e74206c696d69740000000000006044820152606401610721565b610d8761163e565b828281518110610d9957610d9961205e565b60200260200101818152505060096000336001600160a01b03166001600160a01b03168152602001908152602001600020828281518110610ddc57610ddc61205e565b6020908102919091018101518254600181018455600093845291909220015580610e058161208a565b915050610d0c565b50336000908152600a602052604081208054859290610e2d9084906120ba565b909155505060085460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e6c573d6000803e3d6000fd5b50909392505050565b919050565b6006546001600160a01b03163314610ea45760405162461bcd60e51b815260040161072190611fd8565b601061091f828261211b565b6006546001600160a01b03163314610eda5760405162461bcd60e51b815260040161072190611fd8565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b03831603610f545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fca338361136a565b610fe65760405162461bcd60e51b81526004016107219061200d565b610ff2848484846116a8565b50505050565b6009602052816000526040600020818154811061101457600080fd5b90600052602060002001600091509150505481565b6000818152600260205260409020546060906001600160a01b03166110a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610721565b60006110b26116db565b905060008151116110d257604051806020016040528060008152506110fd565b806110dc846116ea565b6040516020016110ed9291906121db565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461112e5760405162461bcd60e51b815260040161072190611fd8565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6010805461119490611f9e565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090611f9e565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b505050505081565b6006546001600160a01b0316331461123f5760405162461bcd60e51b815260040161072190611fd8565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461128b5760405162461bcd60e51b815260040161072190611fd8565b6001600160a01b0381166112f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610721565b6112f9816115ec565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113318261093e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610721565b60006113ee8361093e565b9050806001600160a01b0316846001600160a01b031614806114295750836001600160a01b031661141e846106ac565b6001600160a01b0316145b8061143957506114398185611159565b949350505050565b826001600160a01b03166114548261093e565b6001600160a01b0316146114bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610721565b6001600160a01b03821661151e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610721565b6115298383836117eb565b6115346000826112fc565b6001600160a01b038316600090815260036020526040812080546001929061155d90849061221a565b90915550506001600160a01b038216600090815260036020526040812080546001929061158b9084906120ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080611649611830565b9050600e548111156116965760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610721565b6116a03382611846565b610e75611860565b6116b3848484611441565b6116bf84848484611877565b610ff25760405162461bcd60e51b81526004016107219061222d565b60606010805461062990611f9e565b6060816000036117115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173b57806117258161208a565b91506117349050600a83612295565b9150611715565b60008167ffffffffffffffff81111561175657611756611dde565b6040519080825280601f01601f191660200182016040528015611780576020820181803683370190505b5090505b84156114395761179560018361221a565b91506117a2600a866122a9565b6117ad9060306120ba565b60f81b8183815181106117c2576117c261205e565b60200101906001600160f81b031916908160001a9053506117e4600a86612295565b9450611784565b6001600160a01b0383166000908152600c6020526040902061180d9082611978565b506001600160a01b0382166000908152600c60205260409020610ff29082611984565b6000600b54600161184191906120ba565b905090565b61091f828260405180602001604052806000815250611990565b600b80549060006118708361208a565b9190505550565b60006001600160a01b0384163b1561196d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118bb9033908990889088906004016122bd565b6020604051808303816000875af19250505080156118f6575060408051601f3d908101601f191682019092526118f3918101906122fa565b60015b611953573d808015611924576040519150601f19603f3d011682016040523d82523d6000602084013e611929565b606091505b50805160000361194b5760405162461bcd60e51b81526004016107219061222d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611439565b506001949350505050565b60006110fd83836119c3565b60006110fd8383611ab6565b61199a8383611b05565b6119a76000848484611877565b6108565760405162461bcd60e51b81526004016107219061222d565b60008181526001830160205260408120548015611aac5760006119e760018361221a565b85549091506000906119fb9060019061221a565b9050818114611a60576000866000018281548110611a1b57611a1b61205e565b9060005260206000200154905080876000018481548110611a3e57611a3e61205e565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611a7157611a71612317565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610614565b6000915050610614565b6000818152600183016020526040812054611afd57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610614565b506000610614565b6001600160a01b038216611b5b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600260205260409020546001600160a01b031615611bc05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b611bcc600083836117eb565b6001600160a01b0382166000908152600360205260408120805460019290611bf59084906120ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146112f957600080fd5b600060208284031215611c7b57600080fd5b81356110fd81611c53565b60005b83811015611ca1578181015183820152602001611c89565b50506000910152565b60008151808452611cc2816020860160208601611c86565b601f01601f19169290920160200192915050565b6020815260006110fd6020830184611caa565b600060208284031215611cfb57600080fd5b5035919050565b80356001600160a01b0381168114610e7557600080fd5b60008060408385031215611d2c57600080fd5b611d3583611d02565b946020939093013593505050565b600080600060608486031215611d5857600080fd5b611d6184611d02565b9250611d6f60208501611d02565b9150604084013590509250925092565b600060208284031215611d9157600080fd5b6110fd82611d02565b6020808252825182820181905260009190848201906040850190845b81811015611dd257835183529284019291840191600101611db6565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e0f57611e0f611dde565b604051601f8501601f19908116603f01168101908282118183101715611e3757611e37611dde565b81604052809350858152868686011115611e5057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e7c57600080fd5b813567ffffffffffffffff811115611e9357600080fd5b8201601f81018413611ea457600080fd5b61143984823560208401611df4565b60008060408385031215611ec657600080fd5b611ecf83611d02565b915060208301358015158114611ee457600080fd5b809150509250929050565b60008060008060808587031215611f0557600080fd5b611f0e85611d02565b9350611f1c60208601611d02565b925060408501359150606085013567ffffffffffffffff811115611f3f57600080fd5b8501601f81018713611f5057600080fd5b611f5f87823560208401611df4565b91505092959194509250565b60008060408385031215611f7e57600080fd5b611f8783611d02565b9150611f9560208401611d02565b90509250929050565b600181811c90821680611fb257607f821691505b602082108103611fd257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161209c5761209c612074565b5060010190565b808202811582820484141761061457610614612074565b8082018082111561061457610614612074565b601f82111561085657600081815260208120601f850160051c810160208610156120f45750805b601f850160051c820191505b8181101561211357828155600101612100565b505050505050565b815167ffffffffffffffff81111561213557612135611dde565b612149816121438454611f9e565b846120cd565b602080601f83116001811461217e57600084156121665750858301515b600019600386901b1c1916600185901b178555612113565b600085815260208120601f198616915b828110156121ad5788860151825594840194600190910190840161218e565b50858210156121cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516121ed818460208801611c86565b835190830190612201818360208801611c86565b64173539b7b760d91b9101908152600501949350505050565b8181038181111561061457610614612074565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826122a4576122a461227f565b500490565b6000826122b8576122b861227f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f090830184611caa565b9695505050505050565b60006020828403121561230c57600080fd5b81516110fd81611c53565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fe016f17333a2acbfea0f0405ceae059db01989cfb45c178ec7bb0c1d5c69dc864736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063c1da4d7411610095578063eac989f811610064578063eac989f814610546578063ed99071b1461055b578063f2fde38b1461057b578063fddcb5ea1461059b57600080fd5b8063c1da4d74146104c6578063c87b56dd146104e6578063cf456ae714610506578063e985e9c51461052657600080fd5b8063a0bcfc7f116100d1578063a0bcfc7f14610446578063a151939f14610466578063a22cb46514610486578063b88d4fde146104a657600080fd5b80638da5cb5b146103e057806391b7f5ed146103fe57806395d89b411461041e578063a0712d681461043357600080fd5b80633ccfd60b1161017a578063707d863811610149578063707d86381461036857806370a0823114610395578063715018a6146103b55780638c0e8349146103ca57600080fd5b80633ccfd60b146102fd57806342842e0e146103125780636352211e146103325780636817c76c1461035257600080fd5b8063095ea7b3116101b6578063095ea7b31461027757806322d64a2b1461029957806323b872dd146102b95780632ff66628146102d957600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f57600080fd5b366101e357005b600080fd5b3480156101f457600080fd5b50610208610203366004611c69565b6105c8565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261061a565b6040516102149190611cd6565b34801561024b57600080fd5b5061025f61025a366004611ce9565b6106ac565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611d19565b610746565b005b3480156102a557600080fd5b506102976102b4366004611ce9565b61085b565b3480156102c557600080fd5b506102976102d4366004611d43565b61088a565b3480156102e557600080fd5b506102ef600e5481565b604051908152602001610214565b34801561030957600080fd5b506102976108bb565b34801561031e57600080fd5b5061029761032d366004611d43565b610923565b34801561033e57600080fd5b5061025f61034d366004611ce9565b61093e565b34801561035e57600080fd5b506102ef600f5481565b34801561037457600080fd5b50610388610383366004611d7f565b6109b5565b6040516102149190611d9a565b3480156103a157600080fd5b506102ef6103b0366004611d7f565b610a21565b3480156103c157600080fd5b50610297610aa8565b3480156103d657600080fd5b506102ef600b5481565b3480156103ec57600080fd5b506006546001600160a01b031661025f565b34801561040a57600080fd5b50610297610419366004611ce9565b610ade565b34801561042a57600080fd5b50610232610b0d565b610388610441366004611ce9565b610b1c565b34801561045257600080fd5b50610297610461366004611e6a565b610e7a565b34801561047257600080fd5b50610297610481366004611d7f565b610eb0565b34801561049257600080fd5b506102976104a1366004611eb3565b610efc565b3480156104b257600080fd5b506102976104c1366004611eef565b610fc0565b3480156104d257600080fd5b506102ef6104e1366004611d19565b610ff8565b3480156104f257600080fd5b50610232610501366004611ce9565b611029565b34801561051257600080fd5b50610297610521366004611eb3565b611104565b34801561053257600080fd5b50610208610541366004611f6b565b611159565b34801561055257600080fd5b50610232611187565b34801561056757600080fd5b50610297610576366004611d7f565b611215565b34801561058757600080fd5b50610297610596366004611d7f565b611261565b3480156105a757600080fd5b506102ef6105b6366004611d7f565b600a6020526000908152604090205481565b60006001600160e01b031982166380ac58cd60e01b14806105f957506001600160e01b03198216635b5e139f60e01b145b8061061457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461062990611f9e565b80601f016020809104026020016040519081016040528092919081815260200182805461065590611f9e565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661072a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107518261093e565b9050806001600160a01b0316836001600160a01b0316036107be5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610721565b336001600160a01b03821614806107da57506107da8133611159565b61084c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610721565b61085683836112fc565b505050565b6006546001600160a01b031633146108855760405162461bcd60e51b815260040161072190611fd8565b600e55565b610894338261136a565b6108b05760405162461bcd60e51b81526004016107219061200d565b610856838383611441565b6006546001600160a01b031633146108e55760405162461bcd60e51b815260040161072190611fd8565b60085460405147916001600160a01b03169082156108fc029083906000818181858888f1935050505015801561091f573d6000803e3d6000fd5b5050565b61085683838360405180602001604052806000815250610fc0565b6000818152600260205260408120546001600160a01b0316806106145760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610721565b6001600160a01b038116600090815260096020908152604091829020805483518184028101840190945280845260609392830182828015610a1557602002820191906000526020600020905b815481526020019060010190808311610a01575b50505050509050919050565b60006001600160a01b038216610a8c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610721565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ad25760405162461bcd60e51b815260040161072190611fd8565b610adc60006115ec565b565b6006546001600160a01b03163314610b085760405162461bcd60e51b815260040161072190611fd8565b600f55565b60606001805461062990611f9e565b606060008211610b6e5760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964206e756d626572206f6620746f6b656e7300000000000000006044820152606401610721565b336000908152600d602052604090205460ff1615610c6d5760008267ffffffffffffffff811115610ba157610ba1611dde565b604051908082528060200260200182016040528015610bca578160200160208202803683370190505b50905060005b83811015610c6657610be061163e565b828281518110610bf257610bf261205e565b60200260200101818152505060096000336001600160a01b03166001600160a01b03168152602001908152602001600020828281518110610c3557610c3561205e565b6020908102919091018101518254600181018455600093845291909220015580610c5e8161208a565b915050610bd0565b5092915050565b34600f5483610c7c91906120a3565b1115610cc25760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610721565b60008267ffffffffffffffff811115610cdd57610cdd611dde565b604051908082528060200260200182016040528015610d06578160200160208202803683370190505b50905060005b83811015610e0d57336000908152600a6020819052604090912054610d329083906120ba565b10610d7f5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d6178696d756d206d696e74206c696d69740000000000006044820152606401610721565b610d8761163e565b828281518110610d9957610d9961205e565b60200260200101818152505060096000336001600160a01b03166001600160a01b03168152602001908152602001600020828281518110610ddc57610ddc61205e565b6020908102919091018101518254600181018455600093845291909220015580610e058161208a565b915050610d0c565b50336000908152600a602052604081208054859290610e2d9084906120ba565b909155505060085460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610e6c573d6000803e3d6000fd5b50909392505050565b919050565b6006546001600160a01b03163314610ea45760405162461bcd60e51b815260040161072190611fd8565b601061091f828261211b565b6006546001600160a01b03163314610eda5760405162461bcd60e51b815260040161072190611fd8565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b336001600160a01b03831603610f545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610721565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fca338361136a565b610fe65760405162461bcd60e51b81526004016107219061200d565b610ff2848484846116a8565b50505050565b6009602052816000526040600020818154811061101457600080fd5b90600052602060002001600091509150505481565b6000818152600260205260409020546060906001600160a01b03166110a85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610721565b60006110b26116db565b905060008151116110d257604051806020016040528060008152506110fd565b806110dc846116ea565b6040516020016110ed9291906121db565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461112e5760405162461bcd60e51b815260040161072190611fd8565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6010805461119490611f9e565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090611f9e565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b505050505081565b6006546001600160a01b0316331461123f5760405162461bcd60e51b815260040161072190611fd8565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461128b5760405162461bcd60e51b815260040161072190611fd8565b6001600160a01b0381166112f05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610721565b6112f9816115ec565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113318261093e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610721565b60006113ee8361093e565b9050806001600160a01b0316846001600160a01b031614806114295750836001600160a01b031661141e846106ac565b6001600160a01b0316145b8061143957506114398185611159565b949350505050565b826001600160a01b03166114548261093e565b6001600160a01b0316146114bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610721565b6001600160a01b03821661151e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610721565b6115298383836117eb565b6115346000826112fc565b6001600160a01b038316600090815260036020526040812080546001929061155d90849061221a565b90915550506001600160a01b038216600090815260036020526040812080546001929061158b9084906120ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080611649611830565b9050600e548111156116965760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b6044820152606401610721565b6116a03382611846565b610e75611860565b6116b3848484611441565b6116bf84848484611877565b610ff25760405162461bcd60e51b81526004016107219061222d565b60606010805461062990611f9e565b6060816000036117115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173b57806117258161208a565b91506117349050600a83612295565b9150611715565b60008167ffffffffffffffff81111561175657611756611dde565b6040519080825280601f01601f191660200182016040528015611780576020820181803683370190505b5090505b84156114395761179560018361221a565b91506117a2600a866122a9565b6117ad9060306120ba565b60f81b8183815181106117c2576117c261205e565b60200101906001600160f81b031916908160001a9053506117e4600a86612295565b9450611784565b6001600160a01b0383166000908152600c6020526040902061180d9082611978565b506001600160a01b0382166000908152600c60205260409020610ff29082611984565b6000600b54600161184191906120ba565b905090565b61091f828260405180602001604052806000815250611990565b600b80549060006118708361208a565b9190505550565b60006001600160a01b0384163b1561196d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118bb9033908990889088906004016122bd565b6020604051808303816000875af19250505080156118f6575060408051601f3d908101601f191682019092526118f3918101906122fa565b60015b611953573d808015611924576040519150601f19603f3d011682016040523d82523d6000602084013e611929565b606091505b50805160000361194b5760405162461bcd60e51b81526004016107219061222d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611439565b506001949350505050565b60006110fd83836119c3565b60006110fd8383611ab6565b61199a8383611b05565b6119a76000848484611877565b6108565760405162461bcd60e51b81526004016107219061222d565b60008181526001830160205260408120548015611aac5760006119e760018361221a565b85549091506000906119fb9060019061221a565b9050818114611a60576000866000018281548110611a1b57611a1b61205e565b9060005260206000200154905080876000018481548110611a3e57611a3e61205e565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080611a7157611a71612317565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610614565b6000915050610614565b6000818152600183016020526040812054611afd57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610614565b506000610614565b6001600160a01b038216611b5b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610721565b6000818152600260205260409020546001600160a01b031615611bc05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610721565b611bcc600083836117eb565b6001600160a01b0382166000908152600360205260408120805460019290611bf59084906120ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146112f957600080fd5b600060208284031215611c7b57600080fd5b81356110fd81611c53565b60005b83811015611ca1578181015183820152602001611c89565b50506000910152565b60008151808452611cc2816020860160208601611c86565b601f01601f19169290920160200192915050565b6020815260006110fd6020830184611caa565b600060208284031215611cfb57600080fd5b5035919050565b80356001600160a01b0381168114610e7557600080fd5b60008060408385031215611d2c57600080fd5b611d3583611d02565b946020939093013593505050565b600080600060608486031215611d5857600080fd5b611d6184611d02565b9250611d6f60208501611d02565b9150604084013590509250925092565b600060208284031215611d9157600080fd5b6110fd82611d02565b6020808252825182820181905260009190848201906040850190845b81811015611dd257835183529284019291840191600101611db6565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611e0f57611e0f611dde565b604051601f8501601f19908116603f01168101908282118183101715611e3757611e37611dde565b81604052809350858152868686011115611e5057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611e7c57600080fd5b813567ffffffffffffffff811115611e9357600080fd5b8201601f81018413611ea457600080fd5b61143984823560208401611df4565b60008060408385031215611ec657600080fd5b611ecf83611d02565b915060208301358015158114611ee457600080fd5b809150509250929050565b60008060008060808587031215611f0557600080fd5b611f0e85611d02565b9350611f1c60208601611d02565b925060408501359150606085013567ffffffffffffffff811115611f3f57600080fd5b8501601f81018713611f5057600080fd5b611f5f87823560208401611df4565b91505092959194509250565b60008060408385031215611f7e57600080fd5b611f8783611d02565b9150611f9560208401611d02565b90509250929050565b600181811c90821680611fb257607f821691505b602082108103611fd257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161209c5761209c612074565b5060010190565b808202811582820484141761061457610614612074565b8082018082111561061457610614612074565b601f82111561085657600081815260208120601f850160051c810160208610156120f45750805b601f850160051c820191505b8181101561211357828155600101612100565b505050505050565b815167ffffffffffffffff81111561213557612135611dde565b612149816121438454611f9e565b846120cd565b602080601f83116001811461217e57600084156121665750858301515b600019600386901b1c1916600185901b178555612113565b600085815260208120601f198616915b828110156121ad5788860151825594840194600190910190840161218e565b50858210156121cb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600083516121ed818460208801611c86565b835190830190612201818360208801611c86565b64173539b7b760d91b9101908152600501949350505050565b8181038181111561061457610614612074565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826122a4576122a461227f565b500490565b6000826122b8576122b861227f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122f090830184611caa565b9695505050505050565b60006020828403121561230c57600080fd5b81516110fd81611c53565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220fe016f17333a2acbfea0f0405ceae059db01989cfb45c178ec7bb0c1d5c69dc864736f6c63430008120033

Deployed Bytecode Sourcemap

41856:3514:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29224:305;;;;;;;;;;-1:-1:-1;29224:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;29224:305:0;;;;;;;;30169:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31736:221::-;;;;;;;;;;-1:-1:-1;31736:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;31736:221:0;1533:203:1;31259:411:0;;;;;;;;;;-1:-1:-1;31259:411:0;;;;;:::i;:::-;;:::i;:::-;;45064:110;;;;;;;;;;-1:-1:-1;45064:110:0;;;;;:::i;:::-;;:::i;32626:339::-;;;;;;;;;;-1:-1:-1;32626:339:0;;;;;:::i;:::-;;:::i;42361:45::-;;;;;;;;;;;;;;;;;;;2657:25:1;;;2645:2;2630:18;42361:45:0;2511:177:1;45217:144:0;;;;;;;;;;;;;:::i;33036:185::-;;;;;;;;;;-1:-1:-1;33036:185:0;;;;;:::i;:::-;;:::i;29863:239::-;;;;;;;;;;-1:-1:-1;29863:239:0;;;;;:::i;:::-;;:::i;42413:38::-;;;;;;;;;;;;;;;;43097:118;;;;;;;;;;-1:-1:-1;43097:118:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29593:208::-;;;;;;;;;;-1:-1:-1;29593:208:0;;;;;:::i;:::-;;:::i;41170:94::-;;;;;;;;;;;;;:::i;42168:28::-;;;;;;;;;;;;;;;;40519:87;;;;;;;;;;-1:-1:-1;40592:6:0;;-1:-1:-1;;;;;40592:6:0;40519:87;;44946:104;;;;;;;;;;-1:-1:-1;44946:104:0;;;;;:::i;:::-;;:::i;30338:::-;;;;;;;;;;;;;:::i;43223:1054::-;;;;;;:::i;:::-;;:::i;42585:87::-;;;;;;;;;;-1:-1:-1;42585:87:0;;;;;:::i;:::-;;:::i;42882:94::-;;;;;;;;;;-1:-1:-1;42882:94:0;;;;;:::i;:::-;;:::i;32029:295::-;;;;;;;;;;-1:-1:-1;32029:295:0;;;;;:::i;:::-;;:::i;33292:328::-;;;;;;;;;;-1:-1:-1;33292:328:0;;;;;:::i;:::-;;:::i;42057:47::-;;;;;;;;;;-1:-1:-1;42057:47:0;;;;;:::i;:::-;;:::i;30513:342::-;;;;;;;;;;-1:-1:-1;30513:342:0;;;;;:::i;:::-;;:::i;42984:105::-;;;;;;;;;;-1:-1:-1;42984:105:0;;;;;:::i;:::-;;:::i;32395:164::-;;;;;;;;;;-1:-1:-1;32395:164:0;;;;;:::i;:::-;;:::i;42464:17::-;;;;;;;;;;;;;:::i;42784:90::-;;;;;;;;;;-1:-1:-1;42784:90:0;;;;;:::i;:::-;;:::i;41419:192::-;;;;;;;;;;-1:-1:-1;41419:192:0;;;;;:::i;:::-;;:::i;42112:46::-;;;;;;;;;;-1:-1:-1;42112:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29224:305;29326:4;-1:-1:-1;;;;;;29363:40:0;;-1:-1:-1;;;29363:40:0;;:105;;-1:-1:-1;;;;;;;29420:48:0;;-1:-1:-1;;;29420:48:0;29363:105;:158;;;-1:-1:-1;;;;;;;;;;27806:40:0;;;29485:36;29343:178;29224:305;-1:-1:-1;;29224:305:0:o;30169:100::-;30223:13;30256:5;30249:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30169:100;:::o;31736:221::-;31812:7;34345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34345:16:0;31832:73;;;;-1:-1:-1;;;31832:73:0;;6622:2:1;31832:73:0;;;6604:21:1;6661:2;6641:18;;;6634:30;6700:34;6680:18;;;6673:62;-1:-1:-1;;;6751:18:1;;;6744:42;6803:19;;31832:73:0;;;;;;;;;-1:-1:-1;31925:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31925:24:0;;31736:221::o;31259:411::-;31340:13;31356:23;31371:7;31356:14;:23::i;:::-;31340:39;;31404:5;-1:-1:-1;;;;;31398:11:0;:2;-1:-1:-1;;;;;31398:11:0;;31390:57;;;;-1:-1:-1;;;31390:57:0;;7035:2:1;31390:57:0;;;7017:21:1;7074:2;7054:18;;;7047:30;7113:34;7093:18;;;7086:62;-1:-1:-1;;;7164:18:1;;;7157:31;7205:19;;31390:57:0;6833:397:1;31390:57:0;24633:10;-1:-1:-1;;;;;31482:21:0;;;;:62;;-1:-1:-1;31507:37:0;31524:5;24633:10;32395:164;:::i;31507:37::-;31460:168;;;;-1:-1:-1;;;31460:168:0;;7437:2:1;31460:168:0;;;7419:21:1;7476:2;7456:18;;;7449:30;7515:34;7495:18;;;7488:62;7586:26;7566:18;;;7559:54;7630:19;;31460:168:0;7235:420:1;31460:168:0;31641:21;31650:2;31654:7;31641:8;:21::i;:::-;31329:341;31259:411;;:::o;45064:110::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;45138:21:::1;:28:::0;45064:110::o;32626:339::-;32821:41;24633:10;32854:7;32821:18;:41::i;:::-;32813:103;;;;-1:-1:-1;;;32813:103:0;;;;;;;:::i;:::-;32929:28;32939:4;32945:2;32949:7;32929:9;:28::i;45217:144::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;45323:11:::1;::::0;45315:38:::1;::::0;45283:21:::1;::::0;-1:-1:-1;;;;;45323:11:0::1;::::0;45315:38;::::1;;;::::0;45283:21;;45265:15:::1;45315:38:::0;45265:15;45315:38;45283:21;45323:11;45315:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45254:107;45217:144::o:0;33036:185::-;33174:39;33191:4;33197:2;33201:7;33174:39;;;;;;;;;;;;:16;:39::i;29863:239::-;29935:7;29971:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29971:16:0;;29998:73;;;;-1:-1:-1;;;29998:73:0;;8641:2:1;29998:73:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:39;8819:19;;29998:73:0;8439:405:1;43097:118:0;-1:-1:-1;;;;;43191:16:0;;;;;;:10;:16;;;;;;;;;43184:23;;;;;;;;;;;;;;;;;43155:16;;43184:23;;;43191:16;43184:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43097:118;;;:::o;29593:208::-;29665:7;-1:-1:-1;;;;;29693:19:0;;29685:74;;;;-1:-1:-1;;;29685:74:0;;9051:2:1;29685:74:0;;;9033:21:1;9090:2;9070:18;;;9063:30;9129:34;9109:18;;;9102:62;-1:-1:-1;;;9180:18:1;;;9173:40;9230:19;;29685:74:0;8849:406:1;29685:74:0;-1:-1:-1;;;;;;29777:16:0;;;;;:9;:16;;;;;;;29593:208::o;41170:94::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;41235:21:::1;41253:1;41235:9;:21::i;:::-;41170:94::o:0;44946:104::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;45016:9:::1;:26:::0;44946:104::o;30338:::-;30394:13;30427:7;30420:14;;;;;:::i;43223:1054::-;43274:16;43318:1;43311:4;:8;43303:45;;;;-1:-1:-1;;;43303:45:0;;9462:2:1;43303:45:0;;;9444:21:1;9501:2;9481:18;;;9474:30;9540:26;9520:18;;;9513:54;9584:18;;43303:45:0;9260:348:1;43303:45:0;43372:10;43365:18;;;;:6;:18;;;;;;;;43361:909;;;43400:28;43445:4;43431:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43431:19:0;;43400:50;;43470:9;43465:158;43489:4;43485:1;:8;43465:158;;;43536:9;:7;:9::i;:::-;43519:11;43531:1;43519:14;;;;;;;;:::i;:::-;;;;;;:26;;;;;43564:10;:22;43575:10;-1:-1:-1;;;;;43564:22:0;-1:-1:-1;;;;;43564:22:0;;;;;;;;;;;;43592:11;43604:1;43592:14;;;;;;;;:::i;:::-;;;;;;;;;;;;43564:43;;;;;;;-1:-1:-1;43564:43:0;;;;;;;;;43495:3;;;;:::i;:::-;;;;43465:158;;;-1:-1:-1;43644:11:0;43223:1054;-1:-1:-1;;43223:1054:0:o;43361:909::-;43716:9;43703;;43696:4;:16;;;;:::i;:::-;:29;;43688:63;;;;-1:-1:-1;;;43688:63:0;;10392:2:1;43688:63:0;;;10374:21:1;10431:2;10411:18;;;10404:30;-1:-1:-1;;;10450:18:1;;;10443:51;10511:18;;43688:63:0;10190:345:1;43688:63:0;43766:28;43811:4;43797:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43797:19:0;;43766:50;;43836:9;43831:248;43855:4;43851:1;:8;43831:248;;;43905:10;43893:23;;;;43923:2;43893:23;;;;;;;;;:27;;43919:1;;43893:27;:::i;:::-;:32;43885:71;;;;-1:-1:-1;;;43885:71:0;;10872:2:1;43885:71:0;;;10854:21:1;10911:2;10891:18;;;10884:30;10950:28;10930:18;;;10923:56;10996:18;;43885:71:0;10670:350:1;43885:71:0;43992:9;:7;:9::i;:::-;43975:11;43987:1;43975:14;;;;;;;;:::i;:::-;;;;;;:26;;;;;44020:10;:22;44031:10;-1:-1:-1;;;;;44020:22:0;-1:-1:-1;;;;;44020:22:0;;;;;;;;;;;;44048:11;44060:1;44048:14;;;;;;;;:::i;:::-;;;;;;;;;;;;44020:43;;;;;;;-1:-1:-1;44020:43:0;;;;;;;;;43861:3;;;;:::i;:::-;;;;43831:248;;;-1:-1:-1;44105:10:0;44093:23;;;;:11;:23;;;;;:31;;44120:4;;44093:23;:31;;44120:4;;44093:31;:::i;:::-;;;;-1:-1:-1;;44198:11:0;;44190:35;;44154:21;;-1:-1:-1;;;;;44198:11:0;;44190:35;;;;;44154:21;;44139:12;44190:35;44139:12;44190:35;44154:21;44198:11;44190:35;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44247:11:0;;43223:1054;-1:-1:-1;;;43223:1054:0:o;43361:909::-;43223:1054;;;:::o;42585:87::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;42654:3:::1;:10;42660:4:::0;42654:3;:10:::1;:::i;42882:94::-:0;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;42950:11:::1;:18:::0;;-1:-1:-1;;;;;;42950:18:0::1;-1:-1:-1::0;;;;;42950:18:0;;;::::1;::::0;;;::::1;::::0;;42882:94::o;32029:295::-;24633:10;-1:-1:-1;;;;;32132:24:0;;;32124:62;;;;-1:-1:-1;;;32124:62:0;;13431:2:1;32124:62:0;;;13413:21:1;13470:2;13450:18;;;13443:30;13509:27;13489:18;;;13482:55;13554:18;;32124:62:0;13229:349:1;32124:62:0;24633:10;32199:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32199:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32199:53:0;;;;;;;;;;32268:48;;540:41:1;;;32199:42:0;;24633:10;32268:48;;513:18:1;32268:48:0;;;;;;;32029:295;;:::o;33292:328::-;33467:41;24633:10;33500:7;33467:18;:41::i;:::-;33459:103;;;;-1:-1:-1;;;33459:103:0;;;;;;;:::i;:::-;33573:39;33587:4;33593:2;33597:7;33606:5;33573:13;:39::i;:::-;33292:328;;;;:::o;42057:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30513:342::-;34321:4;34345:16;;;:7;:16;;;;;;30586:13;;-1:-1:-1;;;;;34345:16:0;30612:76;;;;-1:-1:-1;;;30612:76:0;;13785:2:1;30612:76:0;;;13767:21:1;13824:2;13804:18;;;13797:30;13863:34;13843:18;;;13836:62;-1:-1:-1;;;13914:18:1;;;13907:45;13969:19;;30612:76:0;13583:411:1;30612:76:0;30701:21;30725:10;:8;:10::i;:::-;30701:34;;30777:1;30759:7;30753:21;:25;:94;;;;;;;;;;;;;;;;;30805:7;30814:18;:7;:16;:18::i;:::-;30788:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30753:94;30746:101;30513:342;-1:-1:-1;;;30513:342:0:o;42984:105::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43060:12:0;;;::::1;;::::0;;;:6:::1;:12;::::0;;;;:21;;-1:-1:-1;;43060:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42984:105::o;32395:164::-;-1:-1:-1;;;;;32516:25:0;;;32492:4;32516:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32395:164::o;42464:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42784:90::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;42850:10:::1;:16:::0;;-1:-1:-1;;;;;;42850:16:0::1;-1:-1:-1::0;;;;;42850:16:0;;;::::1;::::0;;;::::1;::::0;;42784:90::o;41419:192::-;40592:6;;-1:-1:-1;;;;;40592:6:0;24633:10;40739:23;40731:68;;;;-1:-1:-1;;;40731:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41508:22:0;::::1;41500:73;;;::::0;-1:-1:-1;;;41500:73:0;;14869:2:1;41500:73:0::1;::::0;::::1;14851:21:1::0;14908:2;14888:18;;;14881:30;14947:34;14927:18;;;14920:62;-1:-1:-1;;;14998:18:1;;;14991:36;15044:19;;41500:73:0::1;14667:402:1::0;41500:73:0::1;41584:19;41594:8;41584:9;:19::i;:::-;41419:192:::0;:::o;38238:174::-;38313:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38313:29:0;-1:-1:-1;;;;;38313:29:0;;;;;;;;:24;;38367:23;38313:24;38367:14;:23::i;:::-;-1:-1:-1;;;;;38358:46:0;;;;;;;;;;;38238:174;;:::o;34550:348::-;34643:4;34345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34345:16:0;34660:73;;;;-1:-1:-1;;;34660:73:0;;15276:2:1;34660:73:0;;;15258:21:1;15315:2;15295:18;;;15288:30;15354:34;15334:18;;;15327:62;-1:-1:-1;;;15405:18:1;;;15398:42;15457:19;;34660:73:0;15074:408:1;34660:73:0;34744:13;34760:23;34775:7;34760:14;:23::i;:::-;34744:39;;34813:5;-1:-1:-1;;;;;34802:16:0;:7;-1:-1:-1;;;;;34802:16:0;;:51;;;;34846:7;-1:-1:-1;;;;;34822:31:0;:20;34834:7;34822:11;:20::i;:::-;-1:-1:-1;;;;;34822:31:0;;34802:51;:87;;;;34857:32;34874:5;34881:7;34857:16;:32::i;:::-;34794:96;34550:348;-1:-1:-1;;;;34550:348:0:o;37542:578::-;37701:4;-1:-1:-1;;;;;37674:31:0;:23;37689:7;37674:14;:23::i;:::-;-1:-1:-1;;;;;37674:31:0;;37666:85;;;;-1:-1:-1;;;37666:85:0;;15689:2:1;37666:85:0;;;15671:21:1;15728:2;15708:18;;;15701:30;15767:34;15747:18;;;15740:62;-1:-1:-1;;;15818:18:1;;;15811:39;15867:19;;37666:85:0;15487:405:1;37666:85:0;-1:-1:-1;;;;;37770:16:0;;37762:65;;;;-1:-1:-1;;;37762:65:0;;16099:2:1;37762:65:0;;;16081:21:1;16138:2;16118:18;;;16111:30;16177:34;16157:18;;;16150:62;-1:-1:-1;;;16228:18:1;;;16221:34;16272:19;;37762:65:0;15897:400:1;37762:65:0;37840:39;37861:4;37867:2;37871:7;37840:20;:39::i;:::-;37944:29;37961:1;37965:7;37944:8;:29::i;:::-;-1:-1:-1;;;;;37986:15:0;;;;;;:9;:15;;;;;:20;;38005:1;;37986:15;:20;;38005:1;;37986:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38017:13:0;;;;;;:9;:13;;;;;:18;;38034:1;;38017:13;:18;;38034:1;;38017:18;:::i;:::-;;;;-1:-1:-1;;38046:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38046:21:0;-1:-1:-1;;;;;38046:21:0;;;;;;;;;38085:27;;38046:16;;38085:27;;;;;;;37542:578;;;:::o;41619:173::-;41694:6;;;-1:-1:-1;;;;;41711:17:0;;;-1:-1:-1;;;;;;41711:17:0;;;;;;;41744:40;;41694:6;;;41711:17;41694:6;;41744:40;;41675:16;;41744:40;41664:128;41619:173;:::o;44285:271::-;44321:7;44340:15;44357:17;:15;:17::i;:::-;44340:34;;44404:21;;44393:7;:32;;44385:67;;;;-1:-1:-1;;;44385:67:0;;16637:2:1;44385:67:0;;;16619:21:1;16676:2;16656:18;;;16649:30;-1:-1:-1;;;16695:18:1;;;16688:52;16757:18;;44385:67:0;16435:346:1;44385:67:0;44463:30;44473:10;44485:7;44463:9;:30::i;:::-;44504:19;:17;:19::i;33628:315::-;33785:28;33795:4;33801:2;33805:7;33785:9;:28::i;:::-;33832:48;33855:4;33861:2;33865:7;33874:5;33832:22;:48::i;:::-;33824:111;;;;-1:-1:-1;;;33824:111:0;;;;;;;:::i;42680:96::-;42732:13;42765:3;42758:10;;;;;:::i;25109:723::-;25165:13;25386:5;25395:1;25386:10;25382:53;;-1:-1:-1;;25413:10:0;;;;;;;;;;;;-1:-1:-1;;;25413:10:0;;;;;25109:723::o;25382:53::-;25460:5;25445:12;25501:78;25508:9;;25501:78;;25534:8;;;;:::i;:::-;;-1:-1:-1;25557:10:0;;-1:-1:-1;25565:2:0;25557:10;;:::i;:::-;;;25501:78;;;25589:19;25621:6;25611:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25611:17:0;;25589:39;;25639:154;25646:10;;25639:154;;25673:11;25683:1;25673:11;;:::i;:::-;;-1:-1:-1;25742:10:0;25750:2;25742:5;:10;:::i;:::-;25729:24;;:2;:24;:::i;:::-;25716:39;;25699:6;25706;25699:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25699:56:0;;;;;;;;-1:-1:-1;25770:11:0;25779:2;25770:11;;:::i;:::-;;;25639:154;;44566:182;-1:-1:-1;;;;;44668:17:0;;;;;;:11;:17;;;;;:33;;44693:7;44668:24;:33::i;:::-;-1:-1:-1;;;;;;44712:15:0;;;;;;:11;:15;;;;;:28;;44732:7;44712:19;:28::i;44756:102::-;44806:7;44833:13;;44849:1;44833:17;;;;:::i;:::-;44826:24;;44756:102;:::o;35240:110::-;35316:26;35326:2;35330:7;35316:26;;;;;;;;;;;;:9;:26::i;44866:72::-;44915:13;:15;;;:13;:15;;;:::i;:::-;;;;;;44866:72::o;38422:799::-;38577:4;-1:-1:-1;;;;;38598:13:0;;16889:20;16937:8;38594:620;;38634:72;;-1:-1:-1;;;38634:72:0;;-1:-1:-1;;;;;38634:36:0;;;;;:72;;24633:10;;38685:4;;38691:7;;38700:5;;38634:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38634:72:0;;;;;;;;-1:-1:-1;;38634:72:0;;;;;;;;;;;;:::i;:::-;;;38630:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38876:6;:13;38893:1;38876:18;38872:272;;38919:60;;-1:-1:-1;;;38919:60:0;;;;;;;:::i;38872:272::-;39094:6;39088:13;39079:6;39075:2;39071:15;39064:38;38630:529;-1:-1:-1;;;;;;38757:51:0;-1:-1:-1;;;38757:51:0;;-1:-1:-1;38750:58:0;;38594:620;-1:-1:-1;39198:4:0;38422:799;;;;;;:::o;5435:137::-;5505:4;5529:35;5537:3;5557:5;5529:7;:35::i;5294:131::-;5361:4;5385:32;5390:3;5410:5;5385:4;:32::i;35577:321::-;35707:18;35713:2;35717:7;35707:5;:18::i;:::-;35758:54;35789:1;35793:2;35797:7;35806:5;35758:22;:54::i;:::-;35736:154;;;;-1:-1:-1;;;35736:154:0;;;;;;;:::i;1116:1079::-;1182:4;1321:19;;;:12;;;:19;;;;;;1357:15;;1353:835;;1391:21;1415:14;1428:1;1415:10;:14;:::i;:::-;1464:18;;1391:38;;-1:-1:-1;1444:17:0;;1464:22;;1485:1;;1464:22;:::i;:::-;1444:42;;1520:13;1507:9;:26;1503:405;;1554:17;1574:3;:11;;1586:9;1574:22;;;;;;;;:::i;:::-;;;;;;;;;1554:42;;1728:9;1699:3;:11;;1711:13;1699:26;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;;;;1813:23;;;:12;;;:23;;;;;:36;;;1503:405;1989:17;;:3;;:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;2084:3;:12;;:19;2097:5;2084:19;;;;;;;;;;;2077:26;;;2127:4;2120:11;;;;;;;1353:835;2171:5;2164:12;;;;;526:414;589:4;2378:19;;;:12;;;:19;;;;;;606:327;;-1:-1:-1;649:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;832:18;;810:19;;;:12;;;:19;;;;;;:40;;;;865:11;;606:327;-1:-1:-1;916:5:0;909:12;;36234:382;-1:-1:-1;;;;;36314:16:0;;36306:61;;;;-1:-1:-1;;;36306:61:0;;18661:2:1;36306:61:0;;;18643:21:1;;;18680:18;;;18673:30;18739:34;18719:18;;;18712:62;18791:18;;36306:61:0;18459:356:1;36306:61:0;34321:4;34345:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34345:16:0;:30;36378:58;;;;-1:-1:-1;;;36378:58:0;;19022:2:1;36378:58:0;;;19004:21:1;19061:2;19041:18;;;19034:30;19100;19080:18;;;19073:58;19148:18;;36378:58:0;18820:352:1;36378:58:0;36449:45;36478:1;36482:2;36486:7;36449:20;:45::i;:::-;-1:-1:-1;;;;;36507:13:0;;;;;;:9;:13;;;;;:18;;36524:1;;36507:13;:18;;36524:1;;36507:18;:::i;:::-;;;;-1:-1:-1;;36536:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36536:21:0;-1:-1:-1;;;;;36536:21:0;;;;;;;;36575:33;;36536:16;;;36575:33;;36536:16;;36575:33;36234:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:328::-;2255:6;2263;2271;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2363:29;2382:9;2363:29;:::i;:::-;2353:39;;2411:38;2445:2;2434:9;2430:18;2411:38;:::i;:::-;2401:48;;2496:2;2485:9;2481:18;2468:32;2458:42;;2178:328;;;;;:::o;2693:186::-;2752:6;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;2884:632::-;3055:2;3107:21;;;3177:13;;3080:18;;;3199:22;;;3026:4;;3055:2;3278:15;;;;3252:2;3237:18;;;3026:4;3321:169;3335:6;3332:1;3329:13;3321:169;;;3396:13;;3384:26;;3465:15;;;;3430:12;;;;3357:1;3350:9;3321:169;;;-1:-1:-1;3507:3:1;;2884:632;-1:-1:-1;;;;;;2884:632:1:o;3521:127::-;3582:10;3577:3;3573:20;3570:1;3563:31;3613:4;3610:1;3603:15;3637:4;3634:1;3627:15;3653:632;3718:5;3748:18;3789:2;3781:6;3778:14;3775:40;;;3795:18;;:::i;:::-;3870:2;3864:9;3838:2;3924:15;;-1:-1:-1;;3920:24:1;;;3946:2;3916:33;3912:42;3900:55;;;3970:18;;;3990:22;;;3967:46;3964:72;;;4016:18;;:::i;:::-;4056:10;4052:2;4045:22;4085:6;4076:15;;4115:6;4107;4100:22;4155:3;4146:6;4141:3;4137:16;4134:25;4131:45;;;4172:1;4169;4162:12;4131:45;4222:6;4217:3;4210:4;4202:6;4198:17;4185:44;4277:1;4270:4;4261:6;4253;4249:19;4245:30;4238:41;;;;3653:632;;;;;:::o;4290:451::-;4359:6;4412:2;4400:9;4391:7;4387:23;4383:32;4380:52;;;4428:1;4425;4418:12;4380:52;4468:9;4455:23;4501:18;4493:6;4490:30;4487:50;;;4533:1;4530;4523:12;4487:50;4556:22;;4609:4;4601:13;;4597:27;-1:-1:-1;4587:55:1;;4638:1;4635;4628:12;4587:55;4661:74;4727:7;4722:2;4709:16;4704:2;4700;4696:11;4661:74;:::i;4746:347::-;4811:6;4819;4872:2;4860:9;4851:7;4847:23;4843:32;4840:52;;;4888:1;4885;4878:12;4840:52;4911:29;4930:9;4911:29;:::i;:::-;4901:39;;4990:2;4979:9;4975:18;4962:32;5037:5;5030:13;5023:21;5016:5;5013:32;5003:60;;5059:1;5056;5049:12;5003:60;5082:5;5072:15;;;4746:347;;;;;:::o;5098:667::-;5193:6;5201;5209;5217;5270:3;5258:9;5249:7;5245:23;5241:33;5238:53;;;5287:1;5284;5277:12;5238:53;5310:29;5329:9;5310:29;:::i;:::-;5300:39;;5358:38;5392:2;5381:9;5377:18;5358:38;:::i;:::-;5348:48;;5443:2;5432:9;5428:18;5415:32;5405:42;;5498:2;5487:9;5483:18;5470:32;5525:18;5517:6;5514:30;5511:50;;;5557:1;5554;5547:12;5511:50;5580:22;;5633:4;5625:13;;5621:27;-1:-1:-1;5611:55:1;;5662:1;5659;5652:12;5611:55;5685:74;5751:7;5746:2;5733:16;5728:2;5724;5720:11;5685:74;:::i;:::-;5675:84;;;5098:667;;;;;;;:::o;5770:260::-;5838:6;5846;5899:2;5887:9;5878:7;5874:23;5870:32;5867:52;;;5915:1;5912;5905:12;5867:52;5938:29;5957:9;5938:29;:::i;:::-;5928:39;;5986:38;6020:2;6009:9;6005:18;5986:38;:::i;:::-;5976:48;;5770:260;;;;;:::o;6035:380::-;6114:1;6110:12;;;;6157;;;6178:61;;6232:4;6224:6;6220:17;6210:27;;6178:61;6285:2;6277:6;6274:14;6254:18;6251:38;6248:161;;6331:10;6326:3;6322:20;6319:1;6312:31;6366:4;6363:1;6356:15;6394:4;6391:1;6384:15;6248:161;;6035:380;;;:::o;7660:356::-;7862:2;7844:21;;;7881:18;;;7874:30;7940:34;7935:2;7920:18;;7913:62;8007:2;7992:18;;7660:356::o;8021:413::-;8223:2;8205:21;;;8262:2;8242:18;;;8235:30;8301:34;8296:2;8281:18;;8274:62;-1:-1:-1;;;8367:2:1;8352:18;;8345:47;8424:3;8409:19;;8021:413::o;9613:127::-;9674:10;9669:3;9665:20;9662:1;9655:31;9705:4;9702:1;9695:15;9729:4;9726:1;9719:15;9745:127;9806:10;9801:3;9797:20;9794:1;9787:31;9837:4;9834:1;9827:15;9861:4;9858:1;9851:15;9877:135;9916:3;9937:17;;;9934:43;;9957:18;;:::i;:::-;-1:-1:-1;10004:1:1;9993:13;;9877:135::o;10017:168::-;10090:9;;;10121;;10138:15;;;10132:22;;10118:37;10108:71;;10159:18;;:::i;10540:125::-;10605:9;;;10626:10;;;10623:36;;;10639:18;;:::i;11151:545::-;11253:2;11248:3;11245:11;11242:448;;;11289:1;11314:5;11310:2;11303:17;11359:4;11355:2;11345:19;11429:2;11417:10;11413:19;11410:1;11406:27;11400:4;11396:38;11465:4;11453:10;11450:20;11447:47;;;-1:-1:-1;11488:4:1;11447:47;11543:2;11538:3;11534:12;11531:1;11527:20;11521:4;11517:31;11507:41;;11598:82;11616:2;11609:5;11606:13;11598:82;;;11661:17;;;11642:1;11631:13;11598:82;;;11602:3;;;11151:545;;;:::o;11872:1352::-;11998:3;11992:10;12025:18;12017:6;12014:30;12011:56;;;12047:18;;:::i;:::-;12076:97;12166:6;12126:38;12158:4;12152:11;12126:38;:::i;:::-;12120:4;12076:97;:::i;:::-;12228:4;;12292:2;12281:14;;12309:1;12304:663;;;;13011:1;13028:6;13025:89;;;-1:-1:-1;13080:19:1;;;13074:26;13025:89;-1:-1:-1;;11829:1:1;11825:11;;;11821:24;11817:29;11807:40;11853:1;11849:11;;;11804:57;13127:81;;12274:944;;12304:663;11098:1;11091:14;;;11135:4;11122:18;;-1:-1:-1;;12340:20:1;;;12458:236;12472:7;12469:1;12466:14;12458:236;;;12561:19;;;12555:26;12540:42;;12653:27;;;;12621:1;12609:14;;;;12488:19;;12458:236;;;12462:3;12722:6;12713:7;12710:19;12707:201;;;12783:19;;;12777:26;-1:-1:-1;;12866:1:1;12862:14;;;12878:3;12858:24;12854:37;12850:42;12835:58;12820:74;;12707:201;-1:-1:-1;;;;;12954:1:1;12938:14;;;12934:22;12921:36;;-1:-1:-1;11872:1352:1:o;13999:663::-;14279:3;14317:6;14311:13;14333:66;14392:6;14387:3;14380:4;14372:6;14368:17;14333:66;:::i;:::-;14462:13;;14421:16;;;;14484:70;14462:13;14421:16;14531:4;14519:17;;14484:70;:::i;:::-;-1:-1:-1;;;14576:20:1;;14605:22;;;14654:1;14643:13;;13999:663;-1:-1:-1;;;;13999:663:1:o;16302:128::-;16369:9;;;16390:11;;;16387:37;;;16404:18;;:::i;16786:414::-;16988:2;16970:21;;;17027:2;17007:18;;;17000:30;17066:34;17061:2;17046:18;;17039:62;-1:-1:-1;;;17132:2:1;17117:18;;17110:48;17190:3;17175:19;;16786:414::o;17205:127::-;17266:10;17261:3;17257:20;17254:1;17247:31;17297:4;17294:1;17287:15;17321:4;17318:1;17311:15;17337:120;17377:1;17403;17393:35;;17408:18;;:::i;:::-;-1:-1:-1;17442:9:1;;17337:120::o;17462:112::-;17494:1;17520;17510:35;;17525:18;;:::i;:::-;-1:-1:-1;17559:9:1;;17462:112::o;17579:489::-;-1:-1:-1;;;;;17848:15:1;;;17830:34;;17900:15;;17895:2;17880:18;;17873:43;17947:2;17932:18;;17925:34;;;17995:3;17990:2;17975:18;;17968:31;;;17773:4;;18016:46;;18042:19;;18034:6;18016:46;:::i;:::-;18008:54;17579:489;-1:-1:-1;;;;;;17579:489:1:o;18073:249::-;18142:6;18195:2;18183:9;18174:7;18170:23;18166:32;18163:52;;;18211:1;18208;18201:12;18163:52;18243:9;18237:16;18262:30;18286:5;18262:30;:::i;18327:127::-;18388:10;18383:3;18379:20;18376:1;18369:31;18419:4;18416:1;18409:15;18443:4;18440:1;18433:15

Swarm Source

ipfs://fe016f17333a2acbfea0f0405ceae059db01989cfb45c178ec7bb0c1d5c69dc8
Loading...
Loading
Loading...
Loading
[ 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.