ETH Price: $3,457.06 (-0.68%)
Gas: 10 Gwei

Token

HumanPartySociety (HPS)
 

Overview

Max Total Supply

320 HPS

Holders

79

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kryptoinwestycje.eth
Balance
1 HPS
0x911e79798b8c4dd5b4a9598f1a7e193dacc0f47f
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:
ERC721Wrapper

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-12
*/

// File: @openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
 * @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/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }
    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }
    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }
    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;
    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;
    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);
    /**
     * @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);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);
    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);
    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.
        return account.code.length > 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/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
 * @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
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
/**
 * @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
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
/**
 * @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())) : "";
    }
    /**
     * @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 overridden 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }
    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _transfer(from, to, tokenId);
    }
    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);
        _afterTokenTransfer(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);
        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");
        _beforeTokenTransfer(from, to, tokenId);
        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;
        emit Transfer(from, to, tokenId);
        _afterTokenTransfer(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);
    }
    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }
    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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 {}
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
// File: @openzeppelin/contracts/interfaces/IERC2981.sol
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: @openzeppelin/contracts/token/common/ERC2981.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)
/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }
    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }
    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];
        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }
        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();
        return (royalty.receiver, royaltyAmount);
    }
    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }
    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");
        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }
    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }
    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");
        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }
    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}
// File: contracts/Access/ContextMixin.sol
pragma solidity =0.8.6;
abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}
// File: contracts/ERC721/IERC721Wrapper.sol
pragma solidity =0.8.6;
interface IERC721Wrapper {
    event BaseUriSet(string newBaseUri);
    event TokenUriSet(uint256 indexed tokenId, string uri);
    event ReservedUrisChanged();
    function mintTo(address minter) external;
    function mintTo(address minter, uint256 amount) external;
    function canMint(uint256 amount) external view returns (bool);
    function burn(uint256 tokenId) external;
}
// File: contracts/ERC721/IERC721OwnableWrapper.sol
pragma solidity =0.8.6;
interface IERC721OwnableWrapper {
    function setBaseURI(string memory _uri) external;
    function setDefaultRoyalty(address receiver, uint96 feeNumerator) external;
    function deleteDefaultRoyalty() external;
    function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) external;
    function resetTokenRoyalty(uint256 tokenId) external;
}
// File: contracts/ERC721/ERC721URIStorage.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)
/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;
    // Optional mapping for token URIs
    mapping(uint256 => string) public tokenURIs;
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
        string memory _tokenURI = tokenURIs[tokenId];
        string memory base = _baseURI();
        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        return super.tokenURI(tokenId);
    }
    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        tokenURIs[tokenId] = _tokenURI;
    }
    /**
     * @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 override {
        super._burn(tokenId);
        if (bytes(tokenURIs[tokenId]).length != 0) {
            delete tokenURIs[tokenId];
        }
    }
}
// File: ERC721/ERC721Wrapper.sol
pragma solidity =0.8.6;
contract OwnableDelegateProxy {}
/**
 * Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}
contract ERC721Wrapper is Ownable, ContextMixin, ERC721URIStorage, IERC721Wrapper, IERC721OwnableWrapper, ERC2981 {
    using Counters for Counters.Counter;
    // Token parameters
    uint256 public maxSupply;
    Counters.Counter internal mintedCounter;
    Counters.Counter internal burnedCounter;
    // Approved
    address public proxyRegistryAddress;
    // Uri
    string public baseUri;
    // Reserved URIs
    string[] public reservedURIs;
    uint256 public reservedURICounter;
    // Modifiers
    modifier onlyWhenMintable(uint256 amount) {
        require(canMint(amount), 'ERC721: cannot mint that amount of tokens');
        _;
    }
    constructor(string memory name_, string memory symbol_, uint256 maxSupply_, address proxyRegistryAddress_) ERC721(name_, symbol_)
    {
        maxSupply = maxSupply_; // 0 = Inf
        // nextTokenId is initialized to 1, since starting at 0 leads to higher gas cost for the first minter
        mintedCounter.increment();
        burnedCounter.increment();
        proxyRegistryAddress = proxyRegistryAddress_;
    }
    // Core functions
    function mintTo(address to) public override {
        mintTo(to, 1); // onlyOwner check is performed in this call instead
    }
    function mintTo(address to, uint256 amount) public override onlyOwner onlyWhenMintable(amount) {
        for (uint i=1; i<=amount; i++) _safeMint(to, mintedCounter.current());
    }
    function canMint(uint256 amount) public virtual view override returns (bool) {
        return (mintedCounter.current() + amount - 1 <= maxSupply || maxSupply == 0);
    }
    function burn(uint256 tokenId) public override {
        require(_msgSender() == ownerOf(tokenId), 'ERC721: to burn token you need to be its owner!');
        _burn(tokenId);
    }
    function _mint(address to, uint256 tokenId) internal virtual override {
        mintedCounter.increment();
        super._mint(to, tokenId);
        if (reservedURIs.length > 0 && reservedURICounter < reservedURIs.length) {
            super._setTokenURI(tokenId, reservedURIs[reservedURICounter]);
            reservedURICounter++;
        }
    }
    function _burn(uint256 tokenId) internal virtual override {
        burnedCounter.increment();
        super._burn(tokenId);
    }
    // Uri functions
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }
    function setTokenURI(uint256 tokenId, string memory _tokenURI) public onlyOwner {
        super._setTokenURI(tokenId, _tokenURI);
        emit TokenUriSet(tokenId, _tokenURI);
    }
    function delReservedTokenURIs() public onlyOwner {
        require(reservedURICounter == 0, 'ERC721: no longer can delete reserved token URIs, minting already started!');
        delete reservedURIs;
        emit ReservedUrisChanged();
    }
    function addReservedTokenURIs(string[] memory _tokenURIs) public onlyOwner {
        for (uint i=0; i<_tokenURIs.length; i++) reservedURIs.push(_tokenURIs[i]);
        emit ReservedUrisChanged();
    }
    function setBaseURI(string memory _uri) public override onlyOwner {
        baseUri = _uri;
        emit BaseUriSet(_uri);
    }
    // Additional functions
    function totalSupply() external view returns (uint256) {
        return mintedCounter.current() - burnedCounter.current();
    }
    function totalMinted() external view returns (uint256) {
        return mintedCounter.current() - 1;
    }
    function totalBurned() external view returns (uint256) {
        return burnedCounter.current() - 1;
    }
    // Royalty
    function setDefaultRoyalty(address receiver, uint96 feeNumerator) external override onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }
    function deleteDefaultRoyalty() external override onlyOwner {
        _deleteDefaultRoyalty();
    }
    function setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) external override onlyOwner {
        _setTokenRoyalty(tokenId, receiver, feeNumerator);
    }
    function resetTokenRoyalty(uint256 tokenId) external override onlyOwner {
        _resetTokenRoyalty(tokenId);
    }
    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address _owner, address _operator) public override view returns (bool isOperator) {
        // Whitelist OpenSea proxy contract for easy trading.
        if (proxyRegistryAddress != address(0)) {
            ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
            if (address(proxyRegistry.proxies(_owner)) == _operator) {
                return true;
            }
        }
        // Whitelist owner for easier integration
        if (owner() == _operator) {
            return true;
        }
        // otherwise, use the default ERC721.isApprovedForAll()
        return super.isApprovedForAll(_owner, _operator);
    }
    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender() internal override view returns (address sender) {
        return ContextMixin.msgSender();
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return interfaceId == type(IERC721Wrapper).interfaceId || super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"address","name":"proxyRegistryAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseUri","type":"string"}],"name":"BaseUriSet","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":[],"name":"ReservedUrisChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"TokenUriSet","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":[{"internalType":"string[]","name":"_tokenURIs","type":"string[]"}],"name":"addReservedTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"delReservedTokenURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedURICounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"reservedURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","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":"uint256","name":"","type":"uint256"}],"name":"tokenURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002f1338038062002f13833981016040819052620000349162000308565b83836200004a62000044620000d7565b620000f3565b81516200005f906001906020850190620001ab565b50805162000075906002906020840190620001ab565b50505081600a8190555062000096600b6200014360201b620014781760201c565b620000ad600c6200014360201b620014781760201c565b600d80546001600160a01b0319166001600160a01b039290921691909117905550620003f0915050565b6000620000ee6200014c60201b620014811760201c565b905090565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80546001019055565b600033301415620001a557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620001a89050565b50335b90565b828054620001b9906200039d565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b600082601f8301126200026357600080fd5b81516001600160401b0380821115620002805762000280620003da565b604051601f8301601f19908116603f01168101908282118183101715620002ab57620002ab620003da565b81604052838152602092508683858801011115620002c857600080fd5b600091505b83821015620002ec5785820183015181830184015290820190620002cd565b83821115620002fe5760008385830101525b9695505050505050565b600080600080608085870312156200031f57600080fd5b84516001600160401b03808211156200033757600080fd5b620003458883890162000251565b955060208701519150808211156200035c57600080fd5b506200036b8782880162000251565b60408701516060880151919550935090506001600160a01b03811681146200039257600080fd5b939692955090935050565b600181811c90821680620003b257607f821691505b60208210811415620003d457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b1380620004006000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063a2309ff8116100b8578063d5abeb011161007c578063d5abeb01146104af578063d7084b13146104b8578063d89135cd146104cb578063e985e9c5146104d3578063f2fde38b146104e657600080fd5b8063a2309ff814610466578063aa1b103f1461046e578063b88d4fde14610476578063c87b56dd14610489578063cd7c03261461049c57600080fd5b80638a616bc0116100ff5780638a616bc01461041f5780638da5cb5b1461043257806395d89b41146104435780639abc83201461044b578063a22cb4651461045357600080fd5b806370a08231146103e9578063715018a6146103fc57806374ab58e714610404578063755edd171461040c57600080fd5b806323b872dd116101be57806355f804b31161018257806355f804b31461038a5780635944c7531461039d5780635dd871a3146103b05780636352211e146103c35780636c8b703f146103d657600080fd5b806323b872dd1461030c5780632a55205a1461031f57806342842e0e1461035157806342966c6814610364578063449a52f81461037757600080fd5b8063081812fc11610205578063081812fc146102a0578063095ea7b3146102cb578063162094c4146102de57806318160ddd146102f15780631dc5f943146102f957600080fd5b806301ffc9a71461023757806304634d8d1461025f578063048dabef1461027457806306fdde031461028b575b600080fd5b61024a610245366004612618565b6104f9565b60405190151581526020015b60405180910390f35b61027261026d36600461251b565b610524565b005b61027d60105481565b604051908152602001610256565b610293610584565b60405161025691906127fc565b6102b36102ae3660046126a4565b610616565b6040516001600160a01b039091168152602001610256565b6102726102d93660046124ef565b61069e565b6102726102ec3660046126fb565b6107c6565b61027d610855565b610272610307366004612550565b610873565b61027261031a3660046123fb565b61094e565b61033261032d366004612742565b610986565b604080516001600160a01b039093168352602083019190915201610256565b61027261035f3660046123fb565b610a32565b6102726103723660046126a4565b610a4d565b6102726103853660046124ef565b610ae1565b61027261039836600461266f565b610bc6565b6102726103ab3660046126bd565b610c5d565b61024a6103be3660046126a4565b610cb1565b6102b36103d13660046126a4565b610ce8565b6102936103e43660046126a4565b610d5f565b61027d6103f73660046123a5565b610df9565b610272610e80565b610272610ed5565b61027261041a3660046123a5565b610fde565b61027261042d3660046126a4565b610fe9565b6000546001600160a01b03166102b3565b610293611043565b610293611052565b6102726104613660046124bc565b61105f565b61027d611071565b61027261107e565b61027261048436600461243c565b6110d1565b6102936104973660046126a4565b61110a565b600d546102b3906001600160a01b031681565b61027d600a5481565b6102936104c63660046126a4565b611274565b61027d61129f565b61024a6104e13660046123c2565b6112ac565b6102726104f43660046123a5565b6113c1565b60006001600160e01b03198216630ba2a48960e21b148061051e575061051e826114de565b92915050565b61052c611503565b6001600160a01b03166105476000546001600160a01b031690565b6001600160a01b0316146105765760405162461bcd60e51b815260040161056d90612861565b60405180910390fd5b610580828261150d565b5050565b606060018054610593906129f0565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf906129f0565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b5050505050905090565b6000610621826115c7565b6106825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056d565b506000908152600560205260409020546001600160a01b031690565b60006106a982610ce8565b9050806001600160a01b0316836001600160a01b031614156107175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056d565b806001600160a01b0316610729611503565b6001600160a01b031614806107455750610745816104e1611503565b6107b75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056d565b6107c183836115e4565b505050565b6107ce611503565b6001600160a01b03166107e96000546001600160a01b031690565b6001600160a01b03161461080f5760405162461bcd60e51b815260040161056d90612861565b6108198282611652565b817f6cf6b9ad03c115e67bcbd8096692d400e58bd03076049f0f767f759c06e577648260405161084991906127fc565b60405180910390a25050565b6000610860600c5490565b600b545b61086e91906129ad565b905090565b61087b611503565b6001600160a01b03166108966000546001600160a01b031690565b6001600160a01b0316146108bc5760405162461bcd60e51b815260040161056d90612861565b60005b815181101561092157600f8282815181106108dc576108dc612a86565b6020908102919091018101518254600181018455600093845292829020815161090e9491909101929190910190612207565b508061091981612a2b565b9150506108bf565b506040517f6435f4869eff5e936cb3191299c837d468efc2e5f01896536bac893de378368c90600090a150565b61095f610959611503565b826116dd565b61097b5760405162461bcd60e51b815260040161056d90612896565b6107c18383836117a6565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109fb5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a1a906001600160601b03168761298e565b610a24919061297a565b915196919550909350505050565b6107c1838383604051806020016040528060008152506110d1565b610a5681610ce8565b6001600160a01b0316610a67611503565b6001600160a01b031614610ad55760405162461bcd60e51b815260206004820152602f60248201527f4552433732313a20746f206275726e20746f6b656e20796f75206e656564207460448201526e6f20626520697473206f776e65722160881b606482015260840161056d565b610ade81611942565b50565b610ae9611503565b6001600160a01b0316610b046000546001600160a01b031690565b6001600160a01b031614610b2a5760405162461bcd60e51b815260040161056d90612861565b80610b3481610cb1565b610b925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2063616e6e6f74206d696e74207468617420616d6f756e74206044820152686f6620746f6b656e7360b81b606482015260840161056d565b60015b828111610bc057610bae84610ba9600b5490565b611959565b80610bb881612a2b565b915050610b95565b50505050565b610bce611503565b6001600160a01b0316610be96000546001600160a01b031690565b6001600160a01b031614610c0f5760405162461bcd60e51b815260040161056d90612861565b8051610c2290600e906020840190612207565b507fec7aa76ee322bd9ff6b9f70d62a749a4bfadba7751d8b4bb089b22ff0ed09bd281604051610c5291906127fc565b60405180910390a150565b610c65611503565b6001600160a01b0316610c806000546001600160a01b031690565b6001600160a01b031614610ca65760405162461bcd60e51b815260040161056d90612861565b6107c1838383611973565b6000600a54600183610cc2600b5490565b610ccc9190612962565b610cd691906129ad565b11158061051e5750600a541592915050565b6000818152600360205260408120546001600160a01b03168061051e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056d565b60076020526000908152604090208054610d78906129f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610da4906129f0565b8015610df15780601f10610dc657610100808354040283529160200191610df1565b820191906000526020600020905b815481529060010190602001808311610dd457829003601f168201915b505050505081565b60006001600160a01b038216610e645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056d565b506001600160a01b031660009081526004602052604090205490565b610e88611503565b6001600160a01b0316610ea36000546001600160a01b031690565b6001600160a01b031614610ec95760405162461bcd60e51b815260040161056d90612861565b610ed36000611a3e565b565b610edd611503565b6001600160a01b0316610ef86000546001600160a01b031690565b6001600160a01b031614610f1e5760405162461bcd60e51b815260040161056d90612861565b60105415610fa75760405162461bcd60e51b815260206004820152604a60248201527f4552433732313a206e6f206c6f6e6765722063616e2064656c6574652072657360448201527f657276656420746f6b656e20555249732c206d696e74696e6720616c726561646064820152697920737461727465642160b01b608482015260a40161056d565b610fb3600f600061228b565b6040517f6435f4869eff5e936cb3191299c837d468efc2e5f01896536bac893de378368c90600090a1565b610ade816001610ae1565b610ff1611503565b6001600160a01b031661100c6000546001600160a01b031690565b6001600160a01b0316146110325760405162461bcd60e51b815260040161056d90612861565b600090815260096020526040812055565b606060028054610593906129f0565b600e8054610d78906129f0565b61058061106a611503565b8383611a8e565b60006001610864600b5490565b611086611503565b6001600160a01b03166110a16000546001600160a01b031690565b6001600160a01b0316146110c75760405162461bcd60e51b815260040161056d90612861565b610ed36000600855565b6110e26110dc611503565b836116dd565b6110fe5760405162461bcd60e51b815260040161056d90612896565b610bc084848484611b5d565b6060611115826115c7565b61117b5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161056d565b60008281526007602052604081208054611194906129f0565b80601f01602080910402602001604051908101604052809291908181526020018280546111c0906129f0565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b50505050509050600061121e611b90565b9050805160001415611231575092915050565b81511561126357808260405160200161124b929190612790565b60405160208183030381529060405292505050919050565b61126c84611b9f565b949350505050565b600f818154811061128457600080fd5b906000526020600020016000915090508054610d78906129f0565b60006001610864600c5490565b600d546000906001600160a01b03161561135d57600d5460405163c455279160e01b81526001600160a01b03858116600483015291821691841690829063c45527919060240160206040518083038186803b15801561130a57600080fd5b505afa15801561131e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113429190612652565b6001600160a01b0316141561135b57600191505061051e565b505b816001600160a01b03166113796000546001600160a01b031690565b6001600160a01b031614156113905750600161051e565b6001600160a01b0380841660009081526006602090815260408083209386168352929052205460ff165b9392505050565b6113c9611503565b6001600160a01b03166113e46000546001600160a01b031690565b6001600160a01b03161461140a5760405162461bcd60e51b815260040161056d90612861565b6001600160a01b03811661146f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056d565b610ade81611a3e565b80546001019055565b6000333014156114d857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114db9050565b50335b90565b60006001600160e01b0319821663152a902d60e11b148061051e575061051e82611c69565b600061086e611481565b6127106001600160601b03821611156115385760405162461bcd60e51b815260040161056d906128e7565b6001600160a01b03821661158e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161056d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061161982610ce8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61165b826115c7565b6116be5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161056d565b600082815260076020908152604090912082516107c192840190612207565b60006116e8826115c7565b6117495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056d565b600061175483610ce8565b9050806001600160a01b0316846001600160a01b0316148061177b575061177b81856112ac565b8061126c5750836001600160a01b031661179484610616565b6001600160a01b031614949350505050565b826001600160a01b03166117b982610ce8565b6001600160a01b03161461181d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161056d565b6001600160a01b03821661187f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056d565b61188a6000826115e4565b6001600160a01b03831660009081526004602052604081208054600192906118b39084906129ad565b90915550506001600160a01b03821660009081526004602052604081208054600192906118e1908490612962565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611950600c80546001019055565b610ade81611cb9565b610580828260405180602001604052806000815250611cf9565b6127106001600160601b038216111561199e5760405162461bcd60e51b815260040161056d906128e7565b6001600160a01b0382166119f45760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161056d565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600990529190942093519051909116600160a01b029116179055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611af05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b688484846117a6565b611b7484848484611d2c565b610bc05760405162461bcd60e51b815260040161056d9061280f565b6060600e8054610593906129f0565b6060611baa826115c7565b611c0e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161056d565b6000611c18611b90565b90506000815111611c3857604051806020016040528060008152506113ba565b80611c4284611e40565b604051602001611c53929190612790565b6040516020818303038152906040529392505050565b60006001600160e01b031982166380ac58cd60e01b1480611c9a57506001600160e01b03198216635b5e139f60e01b145b8061051e57506301ffc9a760e01b6001600160e01b031983161461051e565b611cc281611f3e565b60008181526007602052604090208054611cdb906129f0565b159050610ade576000818152600760205260408120610ade916122a9565b611d038383611fd9565b611d106000848484611d2c565b6107c15760405162461bcd60e51b815260040161056d9061280f565b60006001600160a01b0384163b15611e3557836001600160a01b031663150b7a02611d55611503565b8786866040518563ffffffff1660e01b8152600401611d7794939291906127bf565b602060405180830381600087803b158015611d9157600080fd5b505af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe91810190612635565b60015b611e1b573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051611e135760405162461bcd60e51b815260040161056d9061280f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061126c565b506001949350505050565b606081611e645750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e8e5780611e7881612a2b565b9150611e879050600a8361297a565b9150611e68565b60008167ffffffffffffffff811115611ea957611ea9612a9c565b6040519080825280601f01601f191660200182016040528015611ed3576020820181803683370190505b5090505b841561126c57611ee86001836129ad565b9150611ef5600a86612a46565b611f00906030612962565b60f81b818381518110611f1557611f15612a86565b60200101906001600160f81b031916908160001a905350611f37600a8661297a565b9450611ed7565b6000611f4982610ce8565b9050611f566000836115e4565b6001600160a01b0381166000908152600460205260408120805460019290611f7f9084906129ad565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611fe7600b80546001019055565b611ff182826120d4565b600f54158015906120055750600f54601054105b15610580576120bb81600f6010548154811061202357612023612a86565b906000526020600020018054612038906129f0565b80601f0160208091040260200160405190810160405280929190818152602001828054612064906129f0565b80156120b15780601f10612086576101008083540402835291602001916120b1565b820191906000526020600020905b81548152906001019060200180831161209457829003601f168201915b5050505050611652565b601080549060006120cb83612a2b565b91905055505050565b6001600160a01b03821661212a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056d565b612133816115c7565b156121805760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056d565b6001600160a01b03821660009081526004602052604081208054600192906121a9908490612962565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612213906129f0565b90600052602060002090601f016020900481019282612235576000855561227b565b82601f1061224e57805160ff191683800117855561227b565b8280016001018555821561227b579182015b8281111561227b578251825591602001919060010190612260565b506122879291506122df565b5090565b5080546000825590600052602060002090810190610ade91906122f4565b5080546122b5906129f0565b6000825580601f106122c5575050565b601f016020900490600052602060002090810190610ade91905b5b8082111561228757600081556001016122e0565b8082111561228757600061230882826122a9565b506001016122f4565b600067ffffffffffffffff83111561232b5761232b612a9c565b61233e601f8401601f1916602001612931565b905082815283838301111561235257600080fd5b828260208301376000602084830101529392505050565b600082601f83011261237a57600080fd5b6113ba83833560208501612311565b80356001600160601b03811681146123a057600080fd5b919050565b6000602082840312156123b757600080fd5b81356113ba81612ab2565b600080604083850312156123d557600080fd5b82356123e081612ab2565b915060208301356123f081612ab2565b809150509250929050565b60008060006060848603121561241057600080fd5b833561241b81612ab2565b9250602084013561242b81612ab2565b929592945050506040919091013590565b6000806000806080858703121561245257600080fd5b843561245d81612ab2565b9350602085013561246d81612ab2565b925060408501359150606085013567ffffffffffffffff81111561249057600080fd5b8501601f810187136124a157600080fd5b6124b087823560208401612311565b91505092959194509250565b600080604083850312156124cf57600080fd5b82356124da81612ab2565b9150602083013580151581146123f057600080fd5b6000806040838503121561250257600080fd5b823561250d81612ab2565b946020939093013593505050565b6000806040838503121561252e57600080fd5b823561253981612ab2565b915061254760208401612389565b90509250929050565b6000602080838503121561256357600080fd5b823567ffffffffffffffff8082111561257b57600080fd5b818501915085601f83011261258f57600080fd5b8135818111156125a1576125a1612a9c565b8060051b6125b0858201612931565b8281528581019085870183870188018b10156125cb57600080fd5b60009350835b85811015612608578135878111156125e7578586fd5b6125f58d8b838c0101612369565b85525092880192908801906001016125d1565b50909a9950505050505050505050565b60006020828403121561262a57600080fd5b81356113ba81612ac7565b60006020828403121561264757600080fd5b81516113ba81612ac7565b60006020828403121561266457600080fd5b81516113ba81612ab2565b60006020828403121561268157600080fd5b813567ffffffffffffffff81111561269857600080fd5b61126c84828501612369565b6000602082840312156126b657600080fd5b5035919050565b6000806000606084860312156126d257600080fd5b8335925060208401356126e481612ab2565b91506126f260408501612389565b90509250925092565b6000806040838503121561270e57600080fd5b82359150602083013567ffffffffffffffff81111561272c57600080fd5b61273885828601612369565b9150509250929050565b6000806040838503121561275557600080fd5b50508035926020909101359150565b6000815180845261277c8160208601602086016129c4565b601f01601f19169290920160200192915050565b600083516127a28184602088016129c4565b8351908301906127b68183602088016129c4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127f290830184612764565b9695505050505050565b6020815260006113ba6020830184612764565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561295a5761295a612a9c565b604052919050565b6000821982111561297557612975612a5a565b500190565b60008261298957612989612a70565b500490565b60008160001904831182151516156129a8576129a8612a5a565b500290565b6000828210156129bf576129bf612a5a565b500390565b60005b838110156129df5781810151838201526020016129c7565b83811115610bc05750506000910152565b600181811c90821680612a0457607f821691505b60208210811415612a2557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a3f57612a3f612a5a565b5060010190565b600082612a5557612a55612a70565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ade57600080fd5b6001600160e01b031981168114610ade57600080fdfea26469706673582212207b7ce8db8508f8fb56ef740bf66ae1860142601dccf407e767fd8717b32f636764736f6c63430008060033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000013ba000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000001148756d616e5061727479536f636965747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034850530000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c806370a0823111610130578063a2309ff8116100b8578063d5abeb011161007c578063d5abeb01146104af578063d7084b13146104b8578063d89135cd146104cb578063e985e9c5146104d3578063f2fde38b146104e657600080fd5b8063a2309ff814610466578063aa1b103f1461046e578063b88d4fde14610476578063c87b56dd14610489578063cd7c03261461049c57600080fd5b80638a616bc0116100ff5780638a616bc01461041f5780638da5cb5b1461043257806395d89b41146104435780639abc83201461044b578063a22cb4651461045357600080fd5b806370a08231146103e9578063715018a6146103fc57806374ab58e714610404578063755edd171461040c57600080fd5b806323b872dd116101be57806355f804b31161018257806355f804b31461038a5780635944c7531461039d5780635dd871a3146103b05780636352211e146103c35780636c8b703f146103d657600080fd5b806323b872dd1461030c5780632a55205a1461031f57806342842e0e1461035157806342966c6814610364578063449a52f81461037757600080fd5b8063081812fc11610205578063081812fc146102a0578063095ea7b3146102cb578063162094c4146102de57806318160ddd146102f15780631dc5f943146102f957600080fd5b806301ffc9a71461023757806304634d8d1461025f578063048dabef1461027457806306fdde031461028b575b600080fd5b61024a610245366004612618565b6104f9565b60405190151581526020015b60405180910390f35b61027261026d36600461251b565b610524565b005b61027d60105481565b604051908152602001610256565b610293610584565b60405161025691906127fc565b6102b36102ae3660046126a4565b610616565b6040516001600160a01b039091168152602001610256565b6102726102d93660046124ef565b61069e565b6102726102ec3660046126fb565b6107c6565b61027d610855565b610272610307366004612550565b610873565b61027261031a3660046123fb565b61094e565b61033261032d366004612742565b610986565b604080516001600160a01b039093168352602083019190915201610256565b61027261035f3660046123fb565b610a32565b6102726103723660046126a4565b610a4d565b6102726103853660046124ef565b610ae1565b61027261039836600461266f565b610bc6565b6102726103ab3660046126bd565b610c5d565b61024a6103be3660046126a4565b610cb1565b6102b36103d13660046126a4565b610ce8565b6102936103e43660046126a4565b610d5f565b61027d6103f73660046123a5565b610df9565b610272610e80565b610272610ed5565b61027261041a3660046123a5565b610fde565b61027261042d3660046126a4565b610fe9565b6000546001600160a01b03166102b3565b610293611043565b610293611052565b6102726104613660046124bc565b61105f565b61027d611071565b61027261107e565b61027261048436600461243c565b6110d1565b6102936104973660046126a4565b61110a565b600d546102b3906001600160a01b031681565b61027d600a5481565b6102936104c63660046126a4565b611274565b61027d61129f565b61024a6104e13660046123c2565b6112ac565b6102726104f43660046123a5565b6113c1565b60006001600160e01b03198216630ba2a48960e21b148061051e575061051e826114de565b92915050565b61052c611503565b6001600160a01b03166105476000546001600160a01b031690565b6001600160a01b0316146105765760405162461bcd60e51b815260040161056d90612861565b60405180910390fd5b610580828261150d565b5050565b606060018054610593906129f0565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf906129f0565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b5050505050905090565b6000610621826115c7565b6106825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056d565b506000908152600560205260409020546001600160a01b031690565b60006106a982610ce8565b9050806001600160a01b0316836001600160a01b031614156107175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161056d565b806001600160a01b0316610729611503565b6001600160a01b031614806107455750610745816104e1611503565b6107b75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161056d565b6107c183836115e4565b505050565b6107ce611503565b6001600160a01b03166107e96000546001600160a01b031690565b6001600160a01b03161461080f5760405162461bcd60e51b815260040161056d90612861565b6108198282611652565b817f6cf6b9ad03c115e67bcbd8096692d400e58bd03076049f0f767f759c06e577648260405161084991906127fc565b60405180910390a25050565b6000610860600c5490565b600b545b61086e91906129ad565b905090565b61087b611503565b6001600160a01b03166108966000546001600160a01b031690565b6001600160a01b0316146108bc5760405162461bcd60e51b815260040161056d90612861565b60005b815181101561092157600f8282815181106108dc576108dc612a86565b6020908102919091018101518254600181018455600093845292829020815161090e9491909101929190910190612207565b508061091981612a2b565b9150506108bf565b506040517f6435f4869eff5e936cb3191299c837d468efc2e5f01896536bac893de378368c90600090a150565b61095f610959611503565b826116dd565b61097b5760405162461bcd60e51b815260040161056d90612896565b6107c18383836117a6565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916109fb5750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a1a906001600160601b03168761298e565b610a24919061297a565b915196919550909350505050565b6107c1838383604051806020016040528060008152506110d1565b610a5681610ce8565b6001600160a01b0316610a67611503565b6001600160a01b031614610ad55760405162461bcd60e51b815260206004820152602f60248201527f4552433732313a20746f206275726e20746f6b656e20796f75206e656564207460448201526e6f20626520697473206f776e65722160881b606482015260840161056d565b610ade81611942565b50565b610ae9611503565b6001600160a01b0316610b046000546001600160a01b031690565b6001600160a01b031614610b2a5760405162461bcd60e51b815260040161056d90612861565b80610b3481610cb1565b610b925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2063616e6e6f74206d696e74207468617420616d6f756e74206044820152686f6620746f6b656e7360b81b606482015260840161056d565b60015b828111610bc057610bae84610ba9600b5490565b611959565b80610bb881612a2b565b915050610b95565b50505050565b610bce611503565b6001600160a01b0316610be96000546001600160a01b031690565b6001600160a01b031614610c0f5760405162461bcd60e51b815260040161056d90612861565b8051610c2290600e906020840190612207565b507fec7aa76ee322bd9ff6b9f70d62a749a4bfadba7751d8b4bb089b22ff0ed09bd281604051610c5291906127fc565b60405180910390a150565b610c65611503565b6001600160a01b0316610c806000546001600160a01b031690565b6001600160a01b031614610ca65760405162461bcd60e51b815260040161056d90612861565b6107c1838383611973565b6000600a54600183610cc2600b5490565b610ccc9190612962565b610cd691906129ad565b11158061051e5750600a541592915050565b6000818152600360205260408120546001600160a01b03168061051e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161056d565b60076020526000908152604090208054610d78906129f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610da4906129f0565b8015610df15780601f10610dc657610100808354040283529160200191610df1565b820191906000526020600020905b815481529060010190602001808311610dd457829003601f168201915b505050505081565b60006001600160a01b038216610e645760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161056d565b506001600160a01b031660009081526004602052604090205490565b610e88611503565b6001600160a01b0316610ea36000546001600160a01b031690565b6001600160a01b031614610ec95760405162461bcd60e51b815260040161056d90612861565b610ed36000611a3e565b565b610edd611503565b6001600160a01b0316610ef86000546001600160a01b031690565b6001600160a01b031614610f1e5760405162461bcd60e51b815260040161056d90612861565b60105415610fa75760405162461bcd60e51b815260206004820152604a60248201527f4552433732313a206e6f206c6f6e6765722063616e2064656c6574652072657360448201527f657276656420746f6b656e20555249732c206d696e74696e6720616c726561646064820152697920737461727465642160b01b608482015260a40161056d565b610fb3600f600061228b565b6040517f6435f4869eff5e936cb3191299c837d468efc2e5f01896536bac893de378368c90600090a1565b610ade816001610ae1565b610ff1611503565b6001600160a01b031661100c6000546001600160a01b031690565b6001600160a01b0316146110325760405162461bcd60e51b815260040161056d90612861565b600090815260096020526040812055565b606060028054610593906129f0565b600e8054610d78906129f0565b61058061106a611503565b8383611a8e565b60006001610864600b5490565b611086611503565b6001600160a01b03166110a16000546001600160a01b031690565b6001600160a01b0316146110c75760405162461bcd60e51b815260040161056d90612861565b610ed36000600855565b6110e26110dc611503565b836116dd565b6110fe5760405162461bcd60e51b815260040161056d90612896565b610bc084848484611b5d565b6060611115826115c7565b61117b5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161056d565b60008281526007602052604081208054611194906129f0565b80601f01602080910402602001604051908101604052809291908181526020018280546111c0906129f0565b801561120d5780601f106111e25761010080835404028352916020019161120d565b820191906000526020600020905b8154815290600101906020018083116111f057829003601f168201915b50505050509050600061121e611b90565b9050805160001415611231575092915050565b81511561126357808260405160200161124b929190612790565b60405160208183030381529060405292505050919050565b61126c84611b9f565b949350505050565b600f818154811061128457600080fd5b906000526020600020016000915090508054610d78906129f0565b60006001610864600c5490565b600d546000906001600160a01b03161561135d57600d5460405163c455279160e01b81526001600160a01b03858116600483015291821691841690829063c45527919060240160206040518083038186803b15801561130a57600080fd5b505afa15801561131e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113429190612652565b6001600160a01b0316141561135b57600191505061051e565b505b816001600160a01b03166113796000546001600160a01b031690565b6001600160a01b031614156113905750600161051e565b6001600160a01b0380841660009081526006602090815260408083209386168352929052205460ff165b9392505050565b6113c9611503565b6001600160a01b03166113e46000546001600160a01b031690565b6001600160a01b03161461140a5760405162461bcd60e51b815260040161056d90612861565b6001600160a01b03811661146f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161056d565b610ade81611a3e565b80546001019055565b6000333014156114d857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114db9050565b50335b90565b60006001600160e01b0319821663152a902d60e11b148061051e575061051e82611c69565b600061086e611481565b6127106001600160601b03821611156115385760405162461bcd60e51b815260040161056d906128e7565b6001600160a01b03821661158e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640161056d565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6000908152600360205260409020546001600160a01b0316151590565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061161982610ce8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61165b826115c7565b6116be5760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161056d565b600082815260076020908152604090912082516107c192840190612207565b60006116e8826115c7565b6117495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161056d565b600061175483610ce8565b9050806001600160a01b0316846001600160a01b0316148061177b575061177b81856112ac565b8061126c5750836001600160a01b031661179484610616565b6001600160a01b031614949350505050565b826001600160a01b03166117b982610ce8565b6001600160a01b03161461181d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161056d565b6001600160a01b03821661187f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161056d565b61188a6000826115e4565b6001600160a01b03831660009081526004602052604081208054600192906118b39084906129ad565b90915550506001600160a01b03821660009081526004602052604081208054600192906118e1908490612962565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611950600c80546001019055565b610ade81611cb9565b610580828260405180602001604052806000815250611cf9565b6127106001600160601b038216111561199e5760405162461bcd60e51b815260040161056d906128e7565b6001600160a01b0382166119f45760405162461bcd60e51b815260206004820152601b60248201527f455243323938313a20496e76616c696420706172616d65746572730000000000604482015260640161056d565b6040805180820182526001600160a01b0393841681526001600160601b0392831660208083019182526000968752600990529190942093519051909116600160a01b029116179055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b03161415611af05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161056d565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b688484846117a6565b611b7484848484611d2c565b610bc05760405162461bcd60e51b815260040161056d9061280f565b6060600e8054610593906129f0565b6060611baa826115c7565b611c0e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161056d565b6000611c18611b90565b90506000815111611c3857604051806020016040528060008152506113ba565b80611c4284611e40565b604051602001611c53929190612790565b6040516020818303038152906040529392505050565b60006001600160e01b031982166380ac58cd60e01b1480611c9a57506001600160e01b03198216635b5e139f60e01b145b8061051e57506301ffc9a760e01b6001600160e01b031983161461051e565b611cc281611f3e565b60008181526007602052604090208054611cdb906129f0565b159050610ade576000818152600760205260408120610ade916122a9565b611d038383611fd9565b611d106000848484611d2c565b6107c15760405162461bcd60e51b815260040161056d9061280f565b60006001600160a01b0384163b15611e3557836001600160a01b031663150b7a02611d55611503565b8786866040518563ffffffff1660e01b8152600401611d7794939291906127bf565b602060405180830381600087803b158015611d9157600080fd5b505af1925050508015611dc1575060408051601f3d908101601f19168201909252611dbe91810190612635565b60015b611e1b573d808015611def576040519150601f19603f3d011682016040523d82523d6000602084013e611df4565b606091505b508051611e135760405162461bcd60e51b815260040161056d9061280f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061126c565b506001949350505050565b606081611e645750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e8e5780611e7881612a2b565b9150611e879050600a8361297a565b9150611e68565b60008167ffffffffffffffff811115611ea957611ea9612a9c565b6040519080825280601f01601f191660200182016040528015611ed3576020820181803683370190505b5090505b841561126c57611ee86001836129ad565b9150611ef5600a86612a46565b611f00906030612962565b60f81b818381518110611f1557611f15612a86565b60200101906001600160f81b031916908160001a905350611f37600a8661297a565b9450611ed7565b6000611f4982610ce8565b9050611f566000836115e4565b6001600160a01b0381166000908152600460205260408120805460019290611f7f9084906129ad565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611fe7600b80546001019055565b611ff182826120d4565b600f54158015906120055750600f54601054105b15610580576120bb81600f6010548154811061202357612023612a86565b906000526020600020018054612038906129f0565b80601f0160208091040260200160405190810160405280929190818152602001828054612064906129f0565b80156120b15780601f10612086576101008083540402835291602001916120b1565b820191906000526020600020905b81548152906001019060200180831161209457829003601f168201915b5050505050611652565b601080549060006120cb83612a2b565b91905055505050565b6001600160a01b03821661212a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161056d565b612133816115c7565b156121805760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161056d565b6001600160a01b03821660009081526004602052604081208054600192906121a9908490612962565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612213906129f0565b90600052602060002090601f016020900481019282612235576000855561227b565b82601f1061224e57805160ff191683800117855561227b565b8280016001018555821561227b579182015b8281111561227b578251825591602001919060010190612260565b506122879291506122df565b5090565b5080546000825590600052602060002090810190610ade91906122f4565b5080546122b5906129f0565b6000825580601f106122c5575050565b601f016020900490600052602060002090810190610ade91905b5b8082111561228757600081556001016122e0565b8082111561228757600061230882826122a9565b506001016122f4565b600067ffffffffffffffff83111561232b5761232b612a9c565b61233e601f8401601f1916602001612931565b905082815283838301111561235257600080fd5b828260208301376000602084830101529392505050565b600082601f83011261237a57600080fd5b6113ba83833560208501612311565b80356001600160601b03811681146123a057600080fd5b919050565b6000602082840312156123b757600080fd5b81356113ba81612ab2565b600080604083850312156123d557600080fd5b82356123e081612ab2565b915060208301356123f081612ab2565b809150509250929050565b60008060006060848603121561241057600080fd5b833561241b81612ab2565b9250602084013561242b81612ab2565b929592945050506040919091013590565b6000806000806080858703121561245257600080fd5b843561245d81612ab2565b9350602085013561246d81612ab2565b925060408501359150606085013567ffffffffffffffff81111561249057600080fd5b8501601f810187136124a157600080fd5b6124b087823560208401612311565b91505092959194509250565b600080604083850312156124cf57600080fd5b82356124da81612ab2565b9150602083013580151581146123f057600080fd5b6000806040838503121561250257600080fd5b823561250d81612ab2565b946020939093013593505050565b6000806040838503121561252e57600080fd5b823561253981612ab2565b915061254760208401612389565b90509250929050565b6000602080838503121561256357600080fd5b823567ffffffffffffffff8082111561257b57600080fd5b818501915085601f83011261258f57600080fd5b8135818111156125a1576125a1612a9c565b8060051b6125b0858201612931565b8281528581019085870183870188018b10156125cb57600080fd5b60009350835b85811015612608578135878111156125e7578586fd5b6125f58d8b838c0101612369565b85525092880192908801906001016125d1565b50909a9950505050505050505050565b60006020828403121561262a57600080fd5b81356113ba81612ac7565b60006020828403121561264757600080fd5b81516113ba81612ac7565b60006020828403121561266457600080fd5b81516113ba81612ab2565b60006020828403121561268157600080fd5b813567ffffffffffffffff81111561269857600080fd5b61126c84828501612369565b6000602082840312156126b657600080fd5b5035919050565b6000806000606084860312156126d257600080fd5b8335925060208401356126e481612ab2565b91506126f260408501612389565b90509250925092565b6000806040838503121561270e57600080fd5b82359150602083013567ffffffffffffffff81111561272c57600080fd5b61273885828601612369565b9150509250929050565b6000806040838503121561275557600080fd5b50508035926020909101359150565b6000815180845261277c8160208601602086016129c4565b601f01601f19169290920160200192915050565b600083516127a28184602088016129c4565b8351908301906127b68183602088016129c4565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127f290830184612764565b9695505050505050565b6020815260006113ba6020830184612764565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646040820152692073616c65507269636560b01b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561295a5761295a612a9c565b604052919050565b6000821982111561297557612975612a5a565b500190565b60008261298957612989612a70565b500490565b60008160001904831182151516156129a8576129a8612a5a565b500290565b6000828210156129bf576129bf612a5a565b500390565b60005b838110156129df5781810151838201526020016129c7565b83811115610bc05750506000910152565b600181811c90821680612a0457607f821691505b60208210811415612a2557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a3f57612a3f612a5a565b5060010190565b600082612a5557612a55612a70565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ade57600080fd5b6001600160e01b031981168114610ade57600080fdfea26469706673582212207b7ce8db8508f8fb56ef740bf66ae1860142601dccf407e767fd8717b32f636764736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000013ba000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000001148756d616e5061727479536f636965747900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034850530000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): HumanPartySociety
Arg [1] : symbol_ (string): HPS
Arg [2] : maxSupply_ (uint256): 5050
Arg [3] : proxyRegistryAddress_ (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000013ba
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 48756d616e5061727479536f6369657479000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4850530000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47039:5586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52401:221;;;;;;:::i;:::-;;:::i;:::-;;;9168:14:1;;9161:22;9143:41;;9131:2;9116:18;52401:221:0;;;;;;;;50682:155;;;;;;:::i;:::-;;:::i;:::-;;47506:33;;;;;;;;;19206:25:1;;;19194:2;19179:18;47506:33:0;19161:76:1;26073:100:0;;;:::i;:::-;;;;;;;:::i;27617:219::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8187:32:1;;;8169:51;;8157:2;8142:18;27617:219:0;8124:102:1;27146:407:0;;;;;;:::i;:::-;;:::i;49485:184::-;;;;;;:::i;:::-;;:::i;50302:130::-;;;:::i;49926:204::-;;;;;;:::i;:::-;;:::i;28359:337::-;;;;;;:::i;:::-;;:::i;40631:436::-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;8916:32:1;;;8898:51;;8980:2;8965:18;;8958:34;;;;8871:18;40631:436:0;8853:145:1;28765:185:0;;;;;;:::i;:::-;;:::i;48668:183::-;;;;;;:::i;:::-;;:::i;48301:::-;;;;;;:::i;:::-;;:::i;50136:131::-;;;;;;:::i;:::-;;:::i;50951:177::-;;;;;;:::i;:::-;;:::i;48490:172::-;;;;;;:::i;:::-;;:::i;25769:239::-;;;;;;:::i;:::-;;:::i;45123:43::-;;;;;;:::i;:::-;;:::i;25501:208::-;;;;;;:::i;:::-;;:::i;2557:103::-;;;:::i;49675:245::-;;;:::i;48166:129::-;;;;;;:::i;:::-;;:::i;51134:118::-;;;;;;:::i;:::-;;:::i;1910:87::-;1956:7;1983:6;-1:-1:-1;;;;;1983:6:0;1910:87;;26240:104;;;:::i;47421:21::-;;;:::i;27906:155::-;;;;;;:::i;:::-;;:::i;50438:108::-;;;:::i;50843:102::-;;;:::i;29019:328::-;;;;;;:::i;:::-;;:::i;45236:672::-;;;;;;:::i;:::-;;:::i;47367:35::-;;;;;-1:-1:-1;;;;;47367:35:0;;;47227:24;;;;;;47471:28;;;;;;:::i;:::-;;:::i;50552:108::-;;;:::i;51382:687::-;;;;;;:::i;:::-;;:::i;2813:201::-;;;;;;:::i;:::-;;:::i;52401:221::-;52503:4;-1:-1:-1;;;;;;52527:47:0;;-1:-1:-1;;;52527:47:0;;:87;;;52578:36;52602:11;52578:23;:36::i;:::-;52520:94;52401:221;-1:-1:-1;;52401:221:0:o;50682:155::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;;;;;;;;;50787:42:::1;50806:8;50816:12;50787:18;:42::i;:::-;50682:155:::0;;:::o;26073:100::-;26127:13;26160:5;26153:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26073:100;:::o;27617:219::-;27693:7;27721:16;27729:7;27721;:16::i;:::-;27713:73;;;;-1:-1:-1;;;27713:73:0;;15721:2:1;27713:73:0;;;15703:21:1;15760:2;15740:18;;;15733:30;15799:34;15779:18;;;15772:62;-1:-1:-1;;;15850:18:1;;;15843:42;15902:19;;27713:73:0;15693:234:1;27713:73:0;-1:-1:-1;27804:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27804:24:0;;27617:219::o;27146:407::-;27227:13;27243:23;27258:7;27243:14;:23::i;:::-;27227:39;;27291:5;-1:-1:-1;;;;;27285:11:0;:2;-1:-1:-1;;;;;27285:11:0;;;27277:57;;;;-1:-1:-1;;;27277:57:0;;16911:2:1;27277:57:0;;;16893:21:1;16950:2;16930:18;;;16923:30;16989:34;16969:18;;;16962:62;-1:-1:-1;;;17040:18:1;;;17033:31;17081:19;;27277:57:0;16883:223:1;27277:57:0;27383:5;-1:-1:-1;;;;;27367:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27367:21:0;;:62;;;;27392:37;27409:5;27416:12;:10;:12::i;27392:37::-;27345:168;;;;-1:-1:-1;;;27345:168:0;;12865:2:1;27345:168:0;;;12847:21:1;12904:2;12884:18;;;12877:30;12943:34;12923:18;;;12916:62;13014:26;12994:18;;;12987:54;13058:19;;27345:168:0;12837:246:1;27345:168:0;27524:21;27533:2;27537:7;27524:8;:21::i;:::-;27216:337;27146:407;;:::o;49485:184::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;49576:38:::1;49595:7;49604:9;49576:18;:38::i;:::-;49642:7;49630:31;49651:9;49630:31;;;;;;:::i;:::-;;;;;;;;49485:184:::0;;:::o;50302:130::-;50348:7;50401:23;:13;4297:14;;4205:114;50401:23;50375:13;4297:14;50375:23;:49;;;;:::i;:::-;50368:56;;50302:130;:::o;49926:204::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;50017:6:::1;50012:73;50029:10;:17;50027:1;:19;50012:73;;;50053:12;50071:10;50082:1;50071:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;50053:32;;::::1;::::0;::::1;::::0;;-1:-1:-1;50053:32:0;;;;;;;;;::::1;::::0;;;;::::1;::::0;;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;50048:3:0;::::1;::::0;::::1;:::i;:::-;;;;50012:73;;;-1:-1:-1::0;50101:21:0::1;::::0;::::1;::::0;;;::::1;49926:204:::0;:::o;28359:337::-;28554:41;28573:12;:10;:12::i;:::-;28587:7;28554:18;:41::i;:::-;28546:103;;;;-1:-1:-1;;;28546:103:0;;;;;;;:::i;:::-;28660:28;28670:4;28676:2;28680:7;28660:9;:28::i;40631:436::-;40728:7;40786:27;;;:17;:27;;;;;;;;40757:56;;;;;;;;;-1:-1:-1;;;;;40757:56:0;;;;;-1:-1:-1;;;40757:56:0;;;-1:-1:-1;;;;;40757:56:0;;;;;;;;40728:7;;40824:92;;-1:-1:-1;40875:29:0;;;;;;;;;40885:19;40875:29;-1:-1:-1;;;;;40875:29:0;;;;-1:-1:-1;;;40875:29:0;;-1:-1:-1;;;;;40875:29:0;;;;;40824:92;40964:23;;;;40926:21;;41431:5;;40951:36;;-1:-1:-1;;;;;40951:36:0;:10;:36;:::i;:::-;40950:58;;;;:::i;:::-;41027:16;;;;;-1:-1:-1;40631:436:0;;-1:-1:-1;;;;40631:436:0:o;28765:185::-;28903:39;28920:4;28926:2;28930:7;28903:39;;;;;;;;;;;;:16;:39::i;48668:183::-;48750:16;48758:7;48750;:16::i;:::-;-1:-1:-1;;;;;48734:32:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;48734:32:0;;48726:92;;;;-1:-1:-1;;;48726:92:0;;14526:2:1;48726:92:0;;;14508:21:1;14565:2;14545:18;;;14538:30;14604:34;14584:18;;;14577:62;-1:-1:-1;;;14655:18:1;;;14648:45;14710:19;;48726:92:0;14498:237:1;48726:92:0;48829:14;48835:7;48829:5;:14::i;:::-;48668:183;:::o;48301:::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;48388:6:::1;47625:15;47633:6;47625:7;:15::i;:::-;47617:69;;;::::0;-1:-1:-1;;;47617:69:0;;18498:2:1;47617:69:0::1;::::0;::::1;18480:21:1::0;18537:2;18517:18;;;18510:30;18576:34;18556:18;;;18549:62;-1:-1:-1;;;18627:18:1;;;18620:39;18676:19;;47617:69:0::1;18470:231:1::0;47617:69:0::1;48419:1:::2;48407:69;48425:6;48422:1;:9;48407:69;;48438:38;48448:2;48452:23;:13;4297:14:::0;;4205:114;48452:23:::2;48438:9;:38::i;:::-;48433:3:::0;::::2;::::0;::::2;:::i;:::-;;;;48407:69;;;;2199:1:::1;48301:183:::0;;:::o;50136:131::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;50213:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50243:16;50254:4;50243:16;;;;;;:::i;:::-;;;;;;;;50136:131:::0;:::o;50951:177::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;51071:49:::1;51088:7;51097:8;51107:12;51071:16;:49::i;48490:172::-:0;48561:4;48626:9;;48621:1;48612:6;48586:23;:13;4297:14;;4205:114;48586:23;:32;;;;:::i;:::-;:36;;;;:::i;:::-;:49;;:67;;;-1:-1:-1;48639:9:0;;:14;48578:76;48490:172;-1:-1:-1;;48490:172:0:o;25769:239::-;25841:7;25877:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25877:16:0;25912:19;25904:73;;;;-1:-1:-1;;;25904:73:0;;13701:2:1;25904:73:0;;;13683:21:1;13740:2;13720:18;;;13713:30;13779:34;13759:18;;;13752:62;-1:-1:-1;;;13830:18:1;;;13823:39;13879:19;;25904:73:0;13673:231:1;45123:43:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25501:208::-;25573:7;-1:-1:-1;;;;;25601:19:0;;25593:74;;;;-1:-1:-1;;;25593:74:0;;13290:2:1;25593:74:0;;;13272:21:1;13329:2;13309:18;;;13302:30;13368:34;13348:18;;;13341:62;-1:-1:-1;;;13419:18:1;;;13412:40;13469:19;;25593:74:0;13262:232:1;25593:74:0;-1:-1:-1;;;;;;25685:16:0;;;;;:9;:16;;;;;;;25501:208::o;2557:103::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;2622:30:::1;2649:1;2622:18;:30::i;:::-;2557:103::o:0;49675:245::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;49743:18:::1;::::0;:23;49735:110:::1;;;::::0;-1:-1:-1;;;49735:110:0;;11969:2:1;49735:110:0::1;::::0;::::1;11951:21:1::0;12008:2;11988:18;;;11981:30;12047:34;12027:18;;;12020:62;12118:34;12098:18;;;12091:62;-1:-1:-1;;;12169:19:1;;;12162:41;12220:19;;49735:110:0::1;11941:304:1::0;49735:110:0::1;49856:19;49863:12;;49856:19;:::i;:::-;49891:21;::::0;::::1;::::0;;;::::1;49675:245::o:0;48166:129::-;48221:13;48228:2;48232:1;48221:6;:13::i;51134:118::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;43111:26;;;;:17;:26;;;;;43104:33;48668:183::o;26240:104::-;26296:13;26329:7;26322:14;;;;;:::i;47421:21::-;;;;;;;:::i;27906:155::-;28001:52;28020:12;:10;:12::i;:::-;28034:8;28044;28001:18;:52::i;50438:108::-;50484:7;50537:1;50511:23;:13;4297:14;;4205:114;50843:102;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;50914:23:::1;42185:19:::0;;42178:26;42117:95;29019:328;29194:41;29213:12;:10;:12::i;:::-;29227:7;29194:18;:41::i;:::-;29186:103;;;;-1:-1:-1;;;29186:103:0;;;;;;;:::i;:::-;29300:39;29314:4;29320:2;29324:7;29333:5;29300:13;:39::i;45236:672::-;45309:13;45343:16;45351:7;45343;:16::i;:::-;45335:78;;;;-1:-1:-1;;;45335:78:0;;15303:2:1;45335:78:0;;;15285:21:1;15342:2;15322:18;;;15315:30;15381:34;15361:18;;;15354:62;-1:-1:-1;;;15432:18:1;;;15425:47;15489:19;;45335:78:0;15275:239:1;45335:78:0;45424:23;45450:18;;;:9;:18;;;;;45424:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45479:18;45500:10;:8;:10::i;:::-;45479:31;;45590:4;45584:18;45606:1;45584:23;45580:72;;;-1:-1:-1;45631:9:0;45236:672;-1:-1:-1;;45236:672:0:o;45580:72::-;45756:23;;:27;45752:108;;45831:4;45837:9;45814:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45800:48;;;;45236:672;;;:::o;45752:108::-;45877:23;45892:7;45877:14;:23::i;:::-;45870:30;45236:672;-1:-1:-1;;;;45236:672:0:o;47471:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;50552:108::-;50598:7;50651:1;50625:23;:13;4297:14;;4205:114;51382:687;51568:20;;51473:15;;-1:-1:-1;;;;;51568:20:0;:34;51564:249;;51663:20;;51711:29;;-1:-1:-1;;;51711:29:0;;-1:-1:-1;;;;;8187:32:1;;;51711:29:0;;;8169:51:1;51663:20:0;;;;51703:51;;;51663:20;;51711:21;;8142:18:1;;51711:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51703:51:0;;51699:103;;;51782:4;51775:11;;;;;51699:103;51604:209;51564:249;51889:9;-1:-1:-1;;;;;51878:20:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;51878:7;-1:-1:-1;;;;;51878:20:0;;51874:64;;;-1:-1:-1;51922:4:0;51915:11;;51874:64;-1:-1:-1;;;;;28251:25:0;;;28227:4;28251:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52020:41;52013:48;51382:687;-1:-1:-1;;;51382:687:0:o;2813:201::-;2139:12;:10;:12::i;:::-;-1:-1:-1;;;;;2128:23:0;:7;1956;1983:6;-1:-1:-1;;;;;1983:6:0;;1910:87;2128:7;-1:-1:-1;;;;;2128:23:0;;2120:68;;;;-1:-1:-1;;;2120:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2902:22:0;::::1;2894:73;;;::::0;-1:-1:-1;;;2894:73:0;;10040:2:1;2894:73:0::1;::::0;::::1;10022:21:1::0;10079:2;10059:18;;;10052:30;10118:34;10098:18;;;10091:62;-1:-1:-1;;;10169:18:1;;;10162:36;10215:19;;2894:73:0::1;10012:228:1::0;2894:73:0::1;2978:28;2997:8;2978:18;:28::i;4325:127::-:0;4414:19;;4432:1;4414:19;;;4325:127::o;43257:618::-;43301:22;43340:10;43362:4;43340:27;43336:508;;;43384:18;43405:8;;43384:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;43444:8:0;43655:17;43649:24;-1:-1:-1;;;;;43623:134:0;;-1:-1:-1;43336:508:0;;-1:-1:-1;43336:508:0;;-1:-1:-1;43821:10:0;43336:508;43257:618;:::o;40363:215::-;40465:4;-1:-1:-1;;;;;;40489:41:0;;-1:-1:-1;;;40489:41:0;;:81;;;40534:36;40558:11;40534:23;:36::i;52211:120::-;52265:14;52299:24;:22;:24::i;41713:330::-;41431:5;-1:-1:-1;;;;;41816:33:0;;;;41808:88;;;;-1:-1:-1;;;41808:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41915:22:0;;41907:60;;;;-1:-1:-1;;;41907:60:0;;18908:2:1;41907:60:0;;;18890:21:1;18947:2;18927:18;;;18920:30;18986:27;18966:18;;;18959:55;19031:18;;41907:60:0;18880:175:1;41907:60:0;42000:35;;;;;;;;;-1:-1:-1;;;;;42000:35:0;;;;;;-1:-1:-1;;;;;42000:35:0;;;;;;;;;;-1:-1:-1;;;41978:57:0;;;;:19;:57;41713:330::o;30853:127::-;30918:4;30942:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30942:16:0;:30;;;30853:127::o;34957:174::-;35032:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35032:29:0;-1:-1:-1;;;;;35032:29:0;;;;;;;;:24;;35086:23;35032:24;35086:14;:23::i;:::-;-1:-1:-1;;;;;35077:46:0;;;;;;;;;;;34957:174;;:::o;46062:216::-;46162:16;46170:7;46162;:16::i;:::-;46154:75;;;;-1:-1:-1;;;46154:75:0;;14111:2:1;46154:75:0;;;14093:21:1;14150:2;14130:18;;;14123:30;14189:34;14169:18;;;14162:62;-1:-1:-1;;;14240:18:1;;;14233:44;14294:19;;46154:75:0;14083:236:1;46154:75:0;46240:18;;;;:9;:18;;;;;;;;:30;;;;;;;;:::i;31145:348::-;31238:4;31263:16;31271:7;31263;:16::i;:::-;31255:73;;;;-1:-1:-1;;;31255:73:0;;12452:2:1;31255:73:0;;;12434:21:1;12491:2;12471:18;;;12464:30;12530:34;12510:18;;;12503:62;-1:-1:-1;;;12581:18:1;;;12574:42;12633:19;;31255:73:0;12424:234:1;31255:73:0;31339:13;31355:23;31370:7;31355:14;:23::i;:::-;31339:39;;31408:5;-1:-1:-1;;;;;31397:16:0;:7;-1:-1:-1;;;;;31397:16:0;;:52;;;;31417:32;31434:5;31441:7;31417:16;:32::i;:::-;31397:87;;;;31477:7;-1:-1:-1;;;;;31453:31:0;:20;31465:7;31453:11;:20::i;:::-;-1:-1:-1;;;;;31453:31:0;;31389:96;31145:348;-1:-1:-1;;;;31145:348:0:o;34226:615::-;34385:4;-1:-1:-1;;;;;34358:31:0;:23;34373:7;34358:14;:23::i;:::-;-1:-1:-1;;;;;34358:31:0;;34350:81;;;;-1:-1:-1;;;34350:81:0;;10447:2:1;34350:81:0;;;10429:21:1;10486:2;10466:18;;;10459:30;10525:34;10505:18;;;10498:62;-1:-1:-1;;;10576:18:1;;;10569:35;10621:19;;34350:81:0;10419:227:1;34350:81:0;-1:-1:-1;;;;;34450:16:0;;34442:65;;;;-1:-1:-1;;;34442:65:0;;11210:2:1;34442:65:0;;;11192:21:1;11249:2;11229:18;;;11222:30;11288:34;11268:18;;;11261:62;-1:-1:-1;;;11339:18:1;;;11332:34;11383:19;;34442:65:0;11182:226:1;34442:65:0;34620:29;34637:1;34641:7;34620:8;:29::i;:::-;-1:-1:-1;;;;;34660:15:0;;;;;;:9;:15;;;;;:20;;34679:1;;34660:15;:20;;34679:1;;34660:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34691:13:0;;;;;;:9;:13;;;;;:18;;34708:1;;34691:13;:18;;34708:1;;34691:18;:::i;:::-;;;;-1:-1:-1;;34720:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34720:21:0;-1:-1:-1;;;;;34720:21:0;;;;;;;;;34757:27;;34720:16;;34757:27;;;;;;;27216:337;27146:407;;:::o;49218:133::-;49287:25;:13;4414:19;;4432:1;4414:19;;;4325:127;49287:25;49323:20;49335:7;49323:11;:20::i;31833:110::-;31909:26;31919:2;31923:7;31909:26;;;;;;;;;;;;:9;:26::i;42534:388::-;41431:5;-1:-1:-1;;;;;42686:33:0;;;;42678:88;;;;-1:-1:-1;;;42678:88:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42785:22:0;;42777:62;;;;-1:-1:-1;;;42777:62:0;;17731:2:1;42777:62:0;;;17713:21:1;17770:2;17750:18;;;17743:30;17809:29;17789:18;;;17782:57;17856:18;;42777:62:0;17703:177:1;42777:62:0;42879:35;;;;;;;;-1:-1:-1;;;;;42879:35:0;;;;;-1:-1:-1;;;;;42879:35:0;;;;;;;;;;-1:-1:-1;42850:26:0;;;:17;:26;;;;;;:64;;;;;;;-1:-1:-1;;;42850:64:0;;;;;;42534:388::o;3172:191::-;3246:16;3265:6;;-1:-1:-1;;;;;3282:17:0;;;-1:-1:-1;;;;;;3282:17:0;;;;;;3315:40;;3265:6;;;;;;;3315:40;;3246:16;3315:40;3235:128;3172:191;:::o;35271:315::-;35426:8;-1:-1:-1;;;;;35417:17:0;:5;-1:-1:-1;;;;;35417:17:0;;;35409:55;;;;-1:-1:-1;;;35409:55:0;;11615:2:1;35409:55:0;;;11597:21:1;11654:2;11634:18;;;11627:30;11693:27;11673:18;;;11666:55;11738:18;;35409:55:0;11587:175:1;35409:55:0;-1:-1:-1;;;;;35475:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35475:46:0;;;;;;;;;;35537:41;;9143::1;;;35537::0;;9116:18:1;35537:41:0;;;;;;;35271:315;;;:::o;30227:::-;30384:28;30394:4;30400:2;30404:7;30384:9;:28::i;:::-;30431:48;30454:4;30460:2;30464:7;30473:5;30431:22;:48::i;:::-;30423:111;;;;-1:-1:-1;;;30423:111:0;;;;;;;:::i;49379:100::-;49431:13;49464:7;49457:14;;;;;:::i;26413:332::-;26486:13;26520:16;26528:7;26520;:16::i;:::-;26512:76;;;;-1:-1:-1;;;26512:76:0;;16495:2:1;26512:76:0;;;16477:21:1;16534:2;16514:18;;;16507:30;16573:34;16553:18;;;16546:62;-1:-1:-1;;;16624:18:1;;;16617:45;16679:19;;26512:76:0;16467:237:1;26512:76:0;26599:21;26623:10;:8;:10::i;:::-;26599:34;;26675:1;26657:7;26651:21;:25;:86;;;;;;;;;;;;;;;;;26703:7;26712:18;:7;:16;:18::i;:::-;26686:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26644:93;26413:332;-1:-1:-1;;;26413:332:0:o;25134:305::-;25236:4;-1:-1:-1;;;;;;25273:40:0;;-1:-1:-1;;;25273:40:0;;:105;;-1:-1:-1;;;;;;;25330:48:0;;-1:-1:-1;;;25330:48:0;25273:105;:158;;;-1:-1:-1;;;;;;;;;;23737:40:0;;;25395:36;23628:157;46505:202;46574:20;46586:7;46574:11;:20::i;:::-;46615:18;;;;:9;:18;;;;;46609:32;;;;;:::i;:::-;:37;;-1:-1:-1;46605:95:0;;46670:18;;;;:9;:18;;;;;46663:25;;;:::i;32168:321::-;32298:18;32304:2;32308:7;32298:5;:18::i;:::-;32349:54;32380:1;32384:2;32388:7;32397:5;32349:22;:54::i;:::-;32327:154;;;;-1:-1:-1;;;32327:154:0;;;;;;;:::i;36149:799::-;36304:4;-1:-1:-1;;;;;36325:13:0;;13774:19;:23;36321:620;;36377:2;-1:-1:-1;;;;;36361:36:0;;36398:12;:10;:12::i;:::-;36412:4;36418:7;36427:5;36361:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36361:72:0;;;;;;;;-1:-1:-1;;36361:72:0;;;;;;;;;;;;:::i;:::-;;;36357:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36603:13:0;;36599:272;;36646:60;;-1:-1:-1;;;36646:60:0;;;;;;;:::i;36599:272::-;36821:6;36815:13;36806:6;36802:2;36798:15;36791:38;36357:529;-1:-1:-1;;;;;;36484:51:0;-1:-1:-1;;;36484:51:0;;-1:-1:-1;36477:58:0;;36321:620;-1:-1:-1;36925:4:0;36149:799;;;;;;:::o;21047:721::-;21103:13;21322:10;21318:53;;-1:-1:-1;;21349:10:0;;;;;;;;;;;;-1:-1:-1;;;21349:10:0;;;;;21047:721::o;21318:53::-;21396:5;21381:12;21437:78;21444:9;;21437:78;;21470:8;;;;:::i;:::-;;-1:-1:-1;21493:10:0;;-1:-1:-1;21501:2:0;21493:10;;:::i;:::-;;;21437:78;;;21525:19;21557:6;21547:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21547:17:0;;21525:39;;21575:154;21582:10;;21575:154;;21609:11;21619:1;21609:11;;:::i;:::-;;-1:-1:-1;21678:10:0;21686:2;21678:5;:10;:::i;:::-;21665:24;;:2;:24;:::i;:::-;21652:39;;21635:6;21642;21635:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21635:56:0;;;;;;;;-1:-1:-1;21706:11:0;21715:2;21706:11;;:::i;:::-;;;21575:154;;33481:410;33541:13;33557:23;33572:7;33557:14;:23::i;:::-;33541:39;;33678:29;33695:1;33699:7;33678:8;:29::i;:::-;-1:-1:-1;;;;;33718:16:0;;;;;;:9;:16;;;;;:21;;33738:1;;33718:16;:21;;33738:1;;33718:21;:::i;:::-;;;;-1:-1:-1;;33757:16:0;;;;:7;:16;;;;;;33750:23;;-1:-1:-1;;;;;;33750:23:0;;;33789:36;33765:7;;33757:16;-1:-1:-1;;;;;33789:36:0;;;;;33757:16;;33789:36;50682:155;;:::o;48857:355::-;48938:25;:13;4414:19;;4432:1;4414:19;;;4325:127;48938:25;48974:24;48986:2;48990:7;48974:11;:24::i;:::-;49013:12;:19;:23;;;;:67;;-1:-1:-1;49061:12:0;:19;49040:18;;:40;49013:67;49009:196;;;49097:61;49116:7;49125:12;49138:18;;49125:32;;;;;;;;:::i;:::-;;;;;;;;49097:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:18;:61::i;:::-;49173:18;:20;;;:18;:20;;;:::i;:::-;;;;;;48857:355;;:::o;32823:431::-;-1:-1:-1;;;;;32903:16:0;;32895:61;;;;-1:-1:-1;;;32895:61:0;;14942:2:1;32895:61:0;;;14924:21:1;;;14961:18;;;14954:30;15020:34;15000:18;;;14993:62;15072:18;;32895:61:0;14914:182:1;32895:61:0;32976:16;32984:7;32976;:16::i;:::-;32975:17;32967:58;;;;-1:-1:-1;;;32967:58:0;;10853:2:1;32967:58:0;;;10835:21:1;10892:2;10872:18;;;10865:30;10931;10911:18;;;10904:58;10979:18;;32967:58:0;10825:178:1;32967:58:0;-1:-1:-1;;;;;33092:13:0;;;;;;:9;:13;;;;;:18;;33109:1;;33092:13;:18;;33109:1;;33092:18;:::i;:::-;;;;-1:-1:-1;;33121:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33121:21:0;-1:-1:-1;;;;;33121:21:0;;;;;;;;33158:33;;33121:16;;;33158:33;;33121:16;;33158:33;50682:155;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:221::-;468:5;521:3;514:4;506:6;502:17;498:27;488:2;;539:1;536;529:12;488:2;561:79;636:3;627:6;614:20;607:4;599:6;595:17;561:79;:::i;651:179::-;718:20;;-1:-1:-1;;;;;767:38:1;;757:49;;747:2;;820:1;817;810:12;747:2;699:131;;;:::o;835:247::-;894:6;947:2;935:9;926:7;922:23;918:32;915:2;;;963:1;960;953:12;915:2;1002:9;989:23;1021:31;1046:5;1021:31;:::i;1087:388::-;1155:6;1163;1216:2;1204:9;1195:7;1191:23;1187:32;1184:2;;;1232:1;1229;1222:12;1184:2;1271:9;1258:23;1290:31;1315:5;1290:31;:::i;:::-;1340:5;-1:-1:-1;1397:2:1;1382:18;;1369:32;1410:33;1369:32;1410:33;:::i;:::-;1462:7;1452:17;;;1174:301;;;;;:::o;1480:456::-;1557:6;1565;1573;1626:2;1614:9;1605:7;1601:23;1597:32;1594:2;;;1642:1;1639;1632:12;1594:2;1681:9;1668:23;1700:31;1725:5;1700:31;:::i;:::-;1750:5;-1:-1:-1;1807:2:1;1792:18;;1779:32;1820:33;1779:32;1820:33;:::i;:::-;1584:352;;1872:7;;-1:-1:-1;;;1926:2:1;1911:18;;;;1898:32;;1584:352::o;1941:794::-;2036:6;2044;2052;2060;2113:3;2101:9;2092:7;2088:23;2084:33;2081:2;;;2130:1;2127;2120:12;2081:2;2169:9;2156:23;2188:31;2213:5;2188:31;:::i;:::-;2238:5;-1:-1:-1;2295:2:1;2280:18;;2267:32;2308:33;2267:32;2308:33;:::i;:::-;2360:7;-1:-1:-1;2414:2:1;2399:18;;2386:32;;-1:-1:-1;2469:2:1;2454:18;;2441:32;2496:18;2485:30;;2482:2;;;2528:1;2525;2518:12;2482:2;2551:22;;2604:4;2596:13;;2592:27;-1:-1:-1;2582:2:1;;2633:1;2630;2623:12;2582:2;2656:73;2721:7;2716:2;2703:16;2698:2;2694;2690:11;2656:73;:::i;:::-;2646:83;;;2071:664;;;;;;;:::o;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:2;;;2882:1;2879;2872:12;2834:2;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:2;;3120:1;3117;3110:12;3161:315;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:2;;;3306:1;3303;3296:12;3258:2;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;3466:2;3451:18;;;;3438:32;;-1:-1:-1;;;3248:228:1:o;3481:319::-;3548:6;3556;3609:2;3597:9;3588:7;3584:23;3580:32;3577:2;;;3625:1;3622;3615:12;3577:2;3664:9;3651:23;3683:31;3708:5;3683:31;:::i;:::-;3733:5;-1:-1:-1;3757:37:1;3790:2;3775:18;;3757:37;:::i;:::-;3747:47;;3567:233;;;;;:::o;3805:1135::-;3899:6;3930:2;3973;3961:9;3952:7;3948:23;3944:32;3941:2;;;3989:1;3986;3979:12;3941:2;4029:9;4016:23;4058:18;4099:2;4091:6;4088:14;4085:2;;;4115:1;4112;4105:12;4085:2;4153:6;4142:9;4138:22;4128:32;;4198:7;4191:4;4187:2;4183:13;4179:27;4169:2;;4220:1;4217;4210:12;4169:2;4256;4243:16;4278:2;4274;4271:10;4268:2;;;4284:18;;:::i;:::-;4330:2;4327:1;4323:10;4353:28;4377:2;4373;4369:11;4353:28;:::i;:::-;4415:15;;;4446:12;;;;4478:11;;;4508;;;4504:20;;4501:33;-1:-1:-1;4498:2:1;;;4547:1;4544;4537:12;4498:2;4569:1;4560:10;;4590:1;4600:310;4616:2;4611:3;4608:11;4600:310;;;4697:3;4684:17;4733:2;4720:11;4717:19;4714:2;;;4749:1;4746;4739:12;4714:2;4778:57;4827:7;4822:2;4808:11;4804:2;4800:20;4796:29;4778:57;:::i;:::-;4766:70;;-1:-1:-1;4856:12:1;;;;4888;;;;4638:1;4629:11;4600:310;;;-1:-1:-1;4929:5:1;;3910:1030;-1:-1:-1;;;;;;;;;;3910:1030:1:o;4945:245::-;5003:6;5056:2;5044:9;5035:7;5031:23;5027:32;5024:2;;;5072:1;5069;5062:12;5024:2;5111:9;5098:23;5130:30;5154:5;5130:30;:::i;5195:249::-;5264:6;5317:2;5305:9;5296:7;5292:23;5288:32;5285:2;;;5333:1;5330;5323:12;5285:2;5365:9;5359:16;5384:30;5408:5;5384:30;:::i;5449:280::-;5548:6;5601:2;5589:9;5580:7;5576:23;5572:32;5569:2;;;5617:1;5614;5607:12;5569:2;5649:9;5643:16;5668:31;5693:5;5668:31;:::i;5734:322::-;5803:6;5856:2;5844:9;5835:7;5831:23;5827:32;5824:2;;;5872:1;5869;5862:12;5824:2;5912:9;5899:23;5945:18;5937:6;5934:30;5931:2;;;5977:1;5974;5967:12;5931:2;6000:50;6042:7;6033:6;6022:9;6018:22;6000:50;:::i;6061:180::-;6120:6;6173:2;6161:9;6152:7;6148:23;6144:32;6141:2;;;6189:1;6186;6179:12;6141:2;-1:-1:-1;6212:23:1;;6131:110;-1:-1:-1;6131:110:1:o;6246:387::-;6322:6;6330;6338;6391:2;6379:9;6370:7;6366:23;6362:32;6359:2;;;6407:1;6404;6397:12;6359:2;6443:9;6430:23;6420:33;;6503:2;6492:9;6488:18;6475:32;6516:31;6541:5;6516:31;:::i;:::-;6566:5;-1:-1:-1;6590:37:1;6623:2;6608:18;;6590:37;:::i;:::-;6580:47;;6349:284;;;;;:::o;6638:390::-;6716:6;6724;6777:2;6765:9;6756:7;6752:23;6748:32;6745:2;;;6793:1;6790;6783:12;6745:2;6829:9;6816:23;6806:33;;6890:2;6879:9;6875:18;6862:32;6917:18;6909:6;6906:30;6903:2;;;6949:1;6946;6939:12;6903:2;6972:50;7014:7;7005:6;6994:9;6990:22;6972:50;:::i;:::-;6962:60;;;6735:293;;;;;:::o;7033:248::-;7101:6;7109;7162:2;7150:9;7141:7;7137:23;7133:32;7130:2;;;7178:1;7175;7168:12;7130:2;-1:-1:-1;;7201:23:1;;;7271:2;7256:18;;;7243:32;;-1:-1:-1;7120:161:1:o;7286:257::-;7327:3;7365:5;7359:12;7392:6;7387:3;7380:19;7408:63;7464:6;7457:4;7452:3;7448:14;7441:4;7434:5;7430:16;7408:63;:::i;:::-;7525:2;7504:15;-1:-1:-1;;7500:29:1;7491:39;;;;7532:4;7487:50;;7335:208;-1:-1:-1;;7335:208:1:o;7548:470::-;7727:3;7765:6;7759:13;7781:53;7827:6;7822:3;7815:4;7807:6;7803:17;7781:53;:::i;:::-;7897:13;;7856:16;;;;7919:57;7897:13;7856:16;7953:4;7941:17;;7919:57;:::i;:::-;7992:20;;7735:283;-1:-1:-1;;;;7735:283:1:o;8231:488::-;-1:-1:-1;;;;;8500:15:1;;;8482:34;;8552:15;;8547:2;8532:18;;8525:43;8599:2;8584:18;;8577:34;;;8647:3;8642:2;8627:18;;8620:31;;;8425:4;;8668:45;;8693:19;;8685:6;8668:45;:::i;:::-;8660:53;8434:285;-1:-1:-1;;;;;;8434:285:1:o;9195:219::-;9344:2;9333:9;9326:21;9307:4;9364:44;9404:2;9393:9;9389:18;9381:6;9364:44;:::i;9419:414::-;9621:2;9603:21;;;9660:2;9640:18;;;9633:30;9699:34;9694:2;9679:18;;9672:62;-1:-1:-1;;;9765:2:1;9750:18;;9743:48;9823:3;9808:19;;9593:240::o;15932:356::-;16134:2;16116:21;;;16153:18;;;16146:30;16212:34;16207:2;16192:18;;16185:62;16279:2;16264:18;;16106:182::o;17111:413::-;17313:2;17295:21;;;17352:2;17332:18;;;17325:30;17391:34;17386:2;17371:18;;17364:62;-1:-1:-1;;;17457:2:1;17442:18;;17435:47;17514:3;17499:19;;17285:239::o;17885:406::-;18087:2;18069:21;;;18126:2;18106:18;;;18099:30;18165:34;18160:2;18145:18;;18138:62;-1:-1:-1;;;18231:2:1;18216:18;;18209:40;18281:3;18266:19;;18059:232::o;19242:275::-;19313:2;19307:9;19378:2;19359:13;;-1:-1:-1;;19355:27:1;19343:40;;19413:18;19398:34;;19434:22;;;19395:62;19392:2;;;19460:18;;:::i;:::-;19496:2;19489:22;19287:230;;-1:-1:-1;19287:230:1:o;19522:128::-;19562:3;19593:1;19589:6;19586:1;19583:13;19580:2;;;19599:18;;:::i;:::-;-1:-1:-1;19635:9:1;;19570:80::o;19655:120::-;19695:1;19721;19711:2;;19726:18;;:::i;:::-;-1:-1:-1;19760:9:1;;19701:74::o;19780:168::-;19820:7;19886:1;19882;19878:6;19874:14;19871:1;19868:21;19863:1;19856:9;19849:17;19845:45;19842:2;;;19893:18;;:::i;:::-;-1:-1:-1;19933:9:1;;19832:116::o;19953:125::-;19993:4;20021:1;20018;20015:8;20012:2;;;20026:18;;:::i;:::-;-1:-1:-1;20063:9:1;;20002:76::o;20083:258::-;20155:1;20165:113;20179:6;20176:1;20173:13;20165:113;;;20255:11;;;20249:18;20236:11;;;20229:39;20201:2;20194:10;20165:113;;;20296:6;20293:1;20290:13;20287:2;;;-1:-1:-1;;20331:1:1;20313:16;;20306:27;20136:205::o;20346:380::-;20425:1;20421:12;;;;20468;;;20489:2;;20543:4;20535:6;20531:17;20521:27;;20489:2;20596;20588:6;20585:14;20565:18;20562:38;20559:2;;;20642:10;20637:3;20633:20;20630:1;20623:31;20677:4;20674:1;20667:15;20705:4;20702:1;20695:15;20559:2;;20401:325;;;:::o;20731:135::-;20770:3;-1:-1:-1;;20791:17:1;;20788:2;;;20811:18;;:::i;:::-;-1:-1:-1;20858:1:1;20847:13;;20778:88::o;20871:112::-;20903:1;20929;20919:2;;20934:18;;:::i;:::-;-1:-1:-1;20968:9:1;;20909:74::o;20988:127::-;21049:10;21044:3;21040:20;21037:1;21030:31;21080:4;21077:1;21070:15;21104:4;21101:1;21094:15;21120:127;21181:10;21176:3;21172:20;21169:1;21162:31;21212:4;21209:1;21202:15;21236:4;21233:1;21226:15;21252:127;21313:10;21308:3;21304:20;21301:1;21294:31;21344:4;21341:1;21334:15;21368:4;21365:1;21358:15;21384:127;21445:10;21440:3;21436:20;21433:1;21426:31;21476:4;21473:1;21466:15;21500:4;21497:1;21490:15;21516:131;-1:-1:-1;;;;;21591:31:1;;21581:42;;21571:2;;21637:1;21634;21627:12;21652:131;-1:-1:-1;;;;;;21726:32:1;;21716:43;;21706:2;;21773:1;21770;21763:12

Swarm Source

ipfs://7b7ce8db8508f8fb56ef740bf66ae1860142601dccf407e767fd8717b32f6367
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.