Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,380 MzFactory
Holders
359
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MzFactoryLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Monsterz
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-30 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/access/IAccessControl.sol // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/access/AccessControl.sol // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/Monsterz.sol pragma solidity ^0.8.0; /** * @title Monsterz * @author cam.dev * @dev Extends ERC721 Non-Fungible Token Standard basic implementation */ /////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////// // // // /$$ /$$ /$$ // // | $$$ /$$$ | $$ // // | $$$$ /$$$$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$$$ // // | $$ $$/$$ $$ /$$__ $$| $$__ $$ /$$_____/|_ $$_/ /$$__ $$ /$$__ $$|____ /$$/ // // | $$ $$$| $$| $$ \ $$| $$ \ $$| $$$$$$ | $$ | $$$$$$$$| $$ \__/ /$$$$/ // // | $$\ $ | $$| $$ | $$| $$ | $$ \____ $$ | $$ /$$| $$_____/| $$ /$$__/ // // | $$ \/ | $$| $$$$$$/| $$ | $$ /$$$$$$$/ | $$$$/| $$$$$$$| $$ /$$$$$$$$ // // |__/ |__/ \______/ |__/ |__/|_______/ \___/ \_______/|__/ |________/ // // // /////////////////////////////////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////////////////////////////////// contract Monsterz is ERC721Enumerable, Ownable, AccessControl, ReentrancyGuard { using Strings for uint256; using Counters for Counters.Counter; using Address for address payable; ///////////////////////////////////////////////////////////////////////////////////////////////////////// // State variables // ///////////////////////////////////////////////////////////////////////////////////////////////////////// uint256 public publicMintMZPrice = 0.15 ether; uint256 public wlMintMZPrice = 0.1 ether; uint256 public mz_Total_Supply = 5500; uint256 public mz_Public_Supply = 4500; uint256 public mz_Whitelist_Supply = 1000; uint256 public mz_p_Max_No_To_Mint = 20; uint256 public mz_wl_Max_No_To_Mint = 10; // Roles bytes32 private constant whitelistedRole = keccak256("WLed"); // Mint switches bool public publicMintActive = false; bool public wlMintActive = false; // Number of minted Monsterz at the given moment uint256 public NoOftotalMintedMonsterz = 0; uint256 public NoOfpublicMintedMonsterz = 0; uint256 public NoOfWLMintedMonsterz = 0; // Public variables string public baseURI; string public unrevealed_URI = "ipfs://QmTpGUk7fiNgYfHkzMsnE72LVd7DQvYg7Md2e5xR8BBBSH"; // Private variables Counters.Counter private _tokenIds; bool public revealed = false; ///////////////////////////////////////////////////////////////////////////////////////////////////////// // Constructor // ///////////////////////////////////////////////////////////////////////////////////////////////////////// constructor(string memory name, string memory symbol) ERC721(name, symbol) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setRoleAdmin(whitelistedRole, DEFAULT_ADMIN_ROLE); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // // Events // // // ///////////////////////////////////////////////////////////////////////////////////////////////////////// event MonsterzPublicMintStart( uint256 indexed _mintStartTime, uint256 indexed _publicMintMZPrice ); event MonsterzWLMintStart( uint256 indexed _mintStartTime, uint256 indexed _wlMintMZPrice ); event MonsterzPublicMintPaused( uint256 indexed _mintPauseTime, uint256 indexed _NoMinteditems ); event MonsterzWLMintPaused( uint256 indexed _mintPauseTime, uint256 indexed _NoMinteditems ); ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // // Modifiers // // // ///////////////////////////////////////////////////////////////////////////////////////////////////////// modifier onlyAdmin() { require( hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "Restricted to admin." ); _; } modifier isPublicMintActive() { require(publicMintActive, "Public Mint is not active"); _; } modifier isWLlicMintActive() { require(wlMintActive, "WhiteList Mint is not active"); _; } modifier p_NumberMintPurchaseCheck(uint256 numberOfMonsters) { require(numberOfMonsters > 0, "Must mint at least one Monster"); require( numberOfMonsters <= mz_p_Max_No_To_Mint, "Limited Monsterz to mint" ); require( (NoOftotalMintedMonsterz + numberOfMonsters) <= mz_Total_Supply, "Purchase would exceed total of Monsterz supply" ); _; } modifier wl_NumberMintPurchaseCheck(uint256 numberOfMonsters) { require(numberOfMonsters > 0, "Must mint at least one Monster"); require( numberOfMonsters <= mz_p_Max_No_To_Mint, "Limited Monsterz to mint" ); require( (NoOftotalMintedMonsterz + numberOfMonsters) <= mz_Whitelist_Supply, "Purchase would exceed total of Monsterz whitelist supply" ); _; } modifier checkValueCoversAmount( uint256 numberOfMonsters, uint256 varPrice ) { uint256 pricetomint = varPrice * numberOfMonsters; require( pricetomint <= msg.value, string( abi.encodePacked( "Ether value ", msg.value.toString(), " sent is not correct ", pricetomint.toString() ) ) ); _; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // // Public Mint Management // // // ///////////////////////////////////////////////////////////////////////////////////////////////////////// function startPublicMint(uint256 MintPrice) external onlyAdmin { require(!publicMintActive, "Public sale has already begun"); publicMintActive = true; publicMintMZPrice = MintPrice; emit MonsterzPublicMintStart(block.timestamp, publicMintMZPrice); } function pausePublicMint() external onlyAdmin isPublicMintActive { publicMintActive = false; emit MonsterzPublicMintPaused( publicMintMZPrice, NoOfpublicMintedMonsterz ); } function publicMintMonsterz(uint256 _numberOfMonsters) external payable isPublicMintActive p_NumberMintPurchaseCheck(_numberOfMonsters) checkValueCoversAmount(_numberOfMonsters, publicMintMZPrice) nonReentrant { uint256[] memory _MonsterIdsMinted = new uint256[](_numberOfMonsters); for (uint32 i = 0; i < _numberOfMonsters; i++) { _MonsterIdsMinted[i] = _mint(msg.sender); } NoOfpublicMintedMonsterz = (NoOfpublicMintedMonsterz + _numberOfMonsters); NoOftotalMintedMonsterz = (NoOftotalMintedMonsterz + _numberOfMonsters); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // // White List Mint Management // // // ///////////////////////////////////////////////////////////////////////////////////////////////////////// function startWhiteListMint(uint256 MintPrice) external onlyOwner { require(!wlMintActive, "white list sale has already begun"); wlMintActive = true; wlMintMZPrice = MintPrice; emit MonsterzWLMintStart(block.timestamp, wlMintMZPrice); } function pauseWhiteListMint() external onlyOwner isWLlicMintActive { wlMintActive = false; emit MonsterzPublicMintPaused(wlMintMZPrice, NoOfWLMintedMonsterz); } function wlMintMonsterz(uint256 _numberOfMonsters) external payable isWLlicMintActive onlyRole(whitelistedRole) wl_NumberMintPurchaseCheck(_numberOfMonsters) checkValueCoversAmount(_numberOfMonsters, wlMintMZPrice) nonReentrant { uint256[] memory _MonsterIdsMinted = new uint256[](_numberOfMonsters); for (uint32 i = 0; i < _numberOfMonsters; i++) { _MonsterIdsMinted[i] = _mint(msg.sender); } NoOfWLMintedMonsterz = (NoOfWLMintedMonsterz + _numberOfMonsters); NoOftotalMintedMonsterz = (NoOftotalMintedMonsterz + _numberOfMonsters); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // commons things // ///////////////////////////////////////////////////////////////////////////////////////////////////////// function _mint(address _to) internal returns (uint256) { _tokenIds.increment(); uint256 _tokenId = _tokenIds.current(); _safeMint(_to, _tokenId); return _tokenId; } /// Necessary overrides function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function isMinted(uint256 tokenId) external view returns (bool) { require(tokenId < mz_Total_Supply, "tokenId outside collection bounds"); return _exists(tokenId); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } function SendALLfundsTO(address _to) external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(_to), balance); } function SendPartfundsTO(address _to, uint256 ammount) external onlyOwner { uint256 balance = address(this).balance; require( ammount <= balance, "the Ammount to withdraw exceds th contract balance" ); Address.sendValue(payable(_to), ammount); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // // // Setters // // // ///////////////////////////////////////////////////////////////////////////////////////////////////////// function set_MZ_p_Max_No_To_Mint(uint256 _nb) external onlyAdmin { mz_p_Max_No_To_Mint = _nb; } function set_MZ_wl_Max_No_To_Mint(uint256 _nb) external onlyAdmin { mz_wl_Max_No_To_Mint = _nb; } function setpublicMintMZPrice(uint256 _nb) external onlyAdmin { publicMintMZPrice = _nb; } function setwlMintMZPrice(uint256 _nb) external onlyAdmin { wlMintMZPrice = _nb; } function setmz_Public_Supply(uint256 _nb) external onlyAdmin { mz_Public_Supply = _nb; } function setmz_Whitelist_Supply(uint256 _nb) external onlyAdmin { mz_Whitelist_Supply = _nb; } function switchrevealed() external onlyAdmin { revealed = !revealed; } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // Roles Settings // ///////////////////////////////////////////////////////////////////////////////////////////////////////// function addAdmin(address senderAdd) external onlyOwner { grantRole(DEFAULT_ADMIN_ROLE, senderAdd); } function removeAdmin(address senderAdd) external onlyOwner { revokeRole(DEFAULT_ADMIN_ROLE, senderAdd); } function granAddressesAcessToWL(address[] calldata addresses) external onlyAdmin { for (uint32 i = 0; i < addresses.length; i++) { grantRole(whitelistedRole, addresses[i]); } } function revokAddressesAcessFromWL(address[] calldata addresses) external onlyAdmin { for (uint32 i = 0; i < addresses.length; i++) { revokeRole(whitelistedRole, addresses[i]); } } function isAdmin(address senderAdd) external view returns (bool) { return hasRole(DEFAULT_ADMIN_ROLE, senderAdd); } function isWhitelisted(address senderAdd) external view returns (bool) { return hasRole(whitelistedRole, senderAdd); } ///////////////////////////////////////////////////////////////////////////////////////////////////////// // URI Setting // ///////////////////////////////////////////////////////////////////////////////////////////////////////// function setUnrevealed_URI(string memory uri) external onlyAdmin { unrevealed_URI = uri; } function setBaseURI(string memory uri) external onlyAdmin { baseURI = uri; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory base = _baseURI(); if (!revealed) { return bytes(unrevealed_URI).length > 0 ? string(abi.encodePacked(unrevealed_URI)) : ""; } return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString())) : ""; } function burnToken(uint256 tokenId) external onlyOwner { super._burn(tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } } //Amelioration / ajouter des event pour les setters aussi (changement de prix ...etc)
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_mintPauseTime","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_NoMinteditems","type":"uint256"}],"name":"MonsterzPublicMintPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_mintStartTime","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_publicMintMZPrice","type":"uint256"}],"name":"MonsterzPublicMintStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_mintPauseTime","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_NoMinteditems","type":"uint256"}],"name":"MonsterzWLMintPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_mintStartTime","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"_wlMintMZPrice","type":"uint256"}],"name":"MonsterzWLMintStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NoOfWLMintedMonsterz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NoOfpublicMintedMonsterz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NoOftotalMintedMonsterz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"SendALLfundsTO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"ammount","type":"uint256"}],"name":"SendPartfundsTO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"senderAdd","type":"address"}],"name":"addAdmin","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":"burnToken","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"granAddressesAcessToWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"senderAdd","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"senderAdd","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mz_Public_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mz_Total_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mz_Whitelist_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mz_p_Max_No_To_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mz_wl_Max_No_To_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseWhiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintMZPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMonsters","type":"uint256"}],"name":"publicMintMonsterz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"senderAdd","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"revokAddressesAcessFromWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnrevealed_URI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"set_MZ_p_Max_No_To_Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"set_MZ_wl_Max_No_To_Mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"setmz_Public_Supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"setmz_Whitelist_Supply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"setpublicMintMZPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nb","type":"uint256"}],"name":"setwlMintMZPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MintPrice","type":"uint256"}],"name":"startPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MintPrice","type":"uint256"}],"name":"startWhiteListMint","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":"switchrevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealed_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintMZPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMonsters","type":"uint256"}],"name":"wlMintMonsterz","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
670214e8348c4f0000600d5567016345785d8a0000600e5561157c600f556111946010556103e860115560146012819055600a601355805461ffff1916905560006015819055601681905560175560e0604052603560808181529062003ff860a039805162000077916019916020909101906200029a565b50601b805460ff191690553480156200008f57600080fd5b506040516200402d3803806200402d833981016040819052620000b291620003f7565b815182908290620000cb9060009060208501906200029a565b508051620000e19060019060208401906200029a565b505050620000fe620000f86200014560201b60201c565b62000149565b6001600c55620001106000336200019b565b6200013d7fc142ce12d48eefb829b77338b0b4af22b35022d9f3d92635112549837ddf40ce6000620001ab565b5050620004b4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001a78282620001f6565b5050565b6000828152600b6020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6000828152600b602090815260408083206001600160a01b038516845290915290205460ff16620001a7576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002563390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620002a89062000461565b90600052602060002090601f016020900481019282620002cc576000855562000317565b82601f10620002e757805160ff191683800117855562000317565b8280016001018555821562000317579182015b8281111562000317578251825591602001919060010190620002fa565b506200032592915062000329565b5090565b5b808211156200032557600081556001016200032a565b600082601f8301126200035257600080fd5b81516001600160401b03808211156200036f576200036f6200049e565b604051601f8301601f19908116603f011681019082821181831017156200039a576200039a6200049e565b81604052838152602092508683858801011115620003b757600080fd5b600091505b83821015620003db5785820183015181830184015290820190620003bc565b83821115620003ed5760008385830101525b9695505050505050565b600080604083850312156200040b57600080fd5b82516001600160401b03808211156200042357600080fd5b620004318683870162000340565b935060208501519150808211156200044857600080fd5b50620004578582860162000340565b9150509250929050565b600181811c908216806200047657607f821691505b602082108114156200049857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613b3480620004c46000396000f3fe6080604052600436106103d95760003560e01c80635fed653a116101fd578063ab425a1f11610118578063d6361ed6116100ab578063f28dd51b1161007a578063f28dd51b14610b19578063f2fde38b14610b2c578063f35ecb0914610b4c578063f7e07dd814610b62578063fd07090a14610b7757600080fd5b8063d6361ed614610a8f578063dce226a814610aa5578063e985e9c514610aba578063ee69e18214610b0357600080fd5b8063c0a9729c116100e7578063c0a9729c14610a0f578063c1e50d3814610a2f578063c87b56dd14610a4f578063d547741f14610a6f57600080fd5b8063ab425a1f1461099f578063aebd0eac146109bf578063b67c25a3146109d5578063b88d4fde146109ef57600080fd5b80637b47ec1a1161019057806391d148541161015f57806391d148541461093557806395d89b4114610955578063a217fddf1461096a578063a22cb4651461097f57600080fd5b80637b47ec1a146108b75780638716349b146108d75780638da5cb5b146108f757806391b482521461091557600080fd5b806370480275116101cc578063704802751461084c57806370a082311461086c578063715018a61461088c5780637b2ba2bc146108a157600080fd5b80635fed653a146107eb5780636227ea52146108015780636352211e146108175780636c0360eb1461083757600080fd5b80632f745c59116102f857806344f4f0e81161028b5780634f6ccce71161025a5780634f6ccce71461075c57806351222f331461077c578063518302271461079b5780635300fa65146107b557806355f804b3146107cb57600080fd5b806344f4f0e8146106fb57806346470bcc1461071b57806346e1d41c146107315780634e18738b1461074657600080fd5b80633af32abf116102c75780633af32abf146106935780633be39da0146106b35780633ccfd60b146106c657806342842e0e146106db57600080fd5b80632f745c591461061357806333c41a901461063357806334b46f111461065357806336568abe1461067357600080fd5b806318160ddd1161037057806323b872dd1161033f57806323b872dd14610583578063248a9ca3146105a357806324d7806c146105d35780632f2ff15d146105f357600080fd5b806318160ddd146105045780631acc19d5146105235780631b0cedae14610543578063226333e31461056357600080fd5b8063081812fc116103ac578063081812fc1461046c578063095ea7b3146104a4578063175d9e88146104c45780631785f53c146104e457600080fd5b806301a9b0bb146103de57806301ffc9a714610400578063056f8a3d1461043557806306fdde031461044a575b600080fd5b3480156103ea57600080fd5b506103fe6103f936600461353e565b610b97565b005b34801561040c57600080fd5b5061042061041b36600461357a565b610bcc565b60405190151581526020015b60405180910390f35b34801561044157600080fd5b506103fe610bdd565b34801561045657600080fd5b5061045f610c8d565b60405161042c919061380e565b34801561047857600080fd5b5061048c61048736600461353e565b610d1f565b6040516001600160a01b03909116815260200161042c565b3480156104b057600080fd5b506103fe6104bf36600461349f565b610db4565b3480156104d057600080fd5b506103fe6104df3660046134c9565b610eca565b3480156104f057600080fd5b506103fe6104ff36600461335d565b610f53565b34801561051057600080fd5b506008545b60405190815260200161042c565b34801561052f57600080fd5b506103fe61053e3660046134c9565b610f8b565b34801561054f57600080fd5b506103fe61055e36600461353e565b611014565b34801561056f57600080fd5b506103fe61057e36600461353e565b611040565b34801561058f57600080fd5b506103fe61059e3660046133ab565b61106c565b3480156105af57600080fd5b506105156105be36600461353e565b6000908152600b602052604090206001015490565b3480156105df57600080fd5b506104206105ee36600461335d565b61109d565b3480156105ff57600080fd5b506103fe61060e366004613557565b6110a9565b34801561061f57600080fd5b5061051561062e36600461349f565b6110ce565b34801561063f57600080fd5b5061042061064e36600461353e565b611164565b34801561065f57600080fd5b506103fe61066e36600461335d565b6111e0565b34801561067f57600080fd5b506103fe61068e366004613557565b611219565b34801561069f57600080fd5b506104206106ae36600461335d565b611293565b6103fe6106c136600461353e565b6112ad565b3480156106d257600080fd5b506103fe611595565b3480156106e757600080fd5b506103fe6106f63660046133ab565b6115db565b34801561070757600080fd5b506103fe61071636600461353e565b6115f6565b34801561072757600080fd5b5061051560155481565b34801561073d57600080fd5b506103fe6116b2565b34801561075257600080fd5b5061051560125481565b34801561076857600080fd5b5061051561077736600461353e565b6116ed565b34801561078857600080fd5b5060145461042090610100900460ff1681565b3480156107a757600080fd5b50601b546104209060ff1681565b3480156107c157600080fd5b5061051560165481565b3480156107d757600080fd5b506103fe6107e63660046135b4565b611780565b3480156107f757600080fd5b5061051560135481565b34801561080d57600080fd5b50610515600e5481565b34801561082357600080fd5b5061048c61083236600461353e565b6117ba565b34801561084357600080fd5b5061045f611831565b34801561085857600080fd5b506103fe61086736600461335d565b6118bf565b34801561087857600080fd5b5061051561088736600461335d565b6118f4565b34801561089857600080fd5b506103fe61197b565b3480156108ad57600080fd5b50610515600f5481565b3480156108c357600080fd5b506103fe6108d236600461353e565b6119b1565b3480156108e357600080fd5b506103fe6108f236600461349f565b6119e4565b34801561090357600080fd5b50600a546001600160a01b031661048c565b34801561092157600080fd5b506103fe61093036600461353e565b611a84565b34801561094157600080fd5b50610420610950366004613557565b611ab0565b34801561096157600080fd5b5061045f611adb565b34801561097657600080fd5b50610515600081565b34801561098b57600080fd5b506103fe61099a366004613463565b611aea565b3480156109ab57600080fd5b506103fe6109ba36600461353e565b611af5565b3480156109cb57600080fd5b50610515600d5481565b3480156109e157600080fd5b506014546104209060ff1681565b3480156109fb57600080fd5b506103fe610a0a3660046133e7565b611b21565b348015610a1b57600080fd5b506103fe610a2a36600461353e565b611b59565b348015610a3b57600080fd5b506103fe610a4a3660046135b4565b611b85565b348015610a5b57600080fd5b5061045f610a6a36600461353e565b611bbf565b348015610a7b57600080fd5b506103fe610a8a366004613557565b611ce2565b348015610a9b57600080fd5b5061051560105481565b348015610ab157600080fd5b506103fe611d07565b348015610ac657600080fd5b50610420610ad5366004613378565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b0f57600080fd5b5061051560115481565b6103fe610b2736600461353e565b611dc4565b348015610b3857600080fd5b506103fe610b4736600461335d565b6120dd565b348015610b5857600080fd5b5061051560175481565b348015610b6e57600080fd5b5061045f612175565b348015610b8357600080fd5b506103fe610b9236600461353e565b612182565b610ba2600033611ab0565b610bc75760405162461bcd60e51b8152600401610bbe90613873565b60405180910390fd5b600e55565b6000610bd782612252565b92915050565b610be8600033611ab0565b610c045760405162461bcd60e51b8152600401610bbe90613873565b60145460ff16610c525760405162461bcd60e51b81526020600482015260196024820152785075626c6963204d696e74206973206e6f742061637469766560381b6044820152606401610bbe565b6014805460ff19169055601654600d546040517fbbcca033eda88b5aa8a135dd73f892652fe4bfbc8410a99c5d7cce5bc0f983b890600090a3565b606060008054610c9c906139cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc8906139cc565b8015610d155780601f10610cea57610100808354040283529160200191610d15565b820191906000526020600020905b815481529060010190602001808311610cf857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbe565b506000908152600460205260409020546001600160a01b031690565b6000610dbf826117ba565b9050806001600160a01b0316836001600160a01b03161415610e2d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bbe565b336001600160a01b0382161480610e495750610e498133610ad5565b610ebb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bbe565b610ec58383612277565b505050565b610ed5600033611ab0565b610ef15760405162461bcd60e51b8152600401610bbe90613873565b60005b63ffffffff8116821115610ec557610f41600080516020613adf83398151915284848463ffffffff16818110610f2c57610f2c613a9c565b905060200201602081019061060e919061335d565b80610f4b81613a22565b915050610ef4565b600a546001600160a01b03163314610f7d5760405162461bcd60e51b8152600401610bbe906138a1565b610f88600082611ce2565b50565b610f96600033611ab0565b610fb25760405162461bcd60e51b8152600401610bbe90613873565b60005b63ffffffff8116821115610ec557611002600080516020613adf83398151915284848463ffffffff16818110610fed57610fed613a9c565b9050602002016020810190610a8a919061335d565b8061100c81613a22565b915050610fb5565b61101f600033611ab0565b61103b5760405162461bcd60e51b8152600401610bbe90613873565b601055565b61104b600033611ab0565b6110675760405162461bcd60e51b8152600401610bbe90613873565b601155565b61107633826122e5565b6110925760405162461bcd60e51b8152600401610bbe906138d6565b610ec58383836123dc565b6000610bd78183611ab0565b6000828152600b60205260409020600101546110c481612583565b610ec5838361258d565b60006110d9836118f4565b821061113b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bbe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000600f5482106111c15760405162461bcd60e51b815260206004820152602160248201527f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e646044820152607360f81b6064820152608401610bbe565b6000828152600260205260409020546001600160a01b03161515610bd7565b600a546001600160a01b0316331461120a5760405162461bcd60e51b8152600401610bbe906138a1565b476112158282612613565b5050565b6001600160a01b03811633146112895760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bbe565b611215828261272c565b6000610bd7600080516020613adf83398151915283611ab0565b60145460ff166112fb5760405162461bcd60e51b81526020600482015260196024820152785075626c6963204d696e74206973206e6f742061637469766560381b6044820152606401610bbe565b806000811161134c5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206d696e74206174206c65617374206f6e65204d6f6e7374657200006044820152606401610bbe565b6012548111156113995760405162461bcd60e51b8152602060048201526018602482015277131a5b5a5d195908135bdb9cdd195c9e881d1bc81b5a5b9d60421b6044820152606401610bbe565b600f54816015546113aa9190613927565b111561140f5760405162461bcd60e51b815260206004820152602e60248201527f507572636861736520776f756c642065786365656420746f74616c206f66204d60448201526d6f6e737465727a20737570706c7960901b6064820152608401610bbe565b600d54829060006114208383613953565b90503481111561142f34612793565b61143883612793565b6040516020016114499291906136f4565b604051602081830303815290604052906114765760405162461bcd60e51b8152600401610bbe919061380e565b506002600c5414156114ca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bbe565b6002600c5560008567ffffffffffffffff8111156114ea576114ea613ab2565b604051908082528060200260200182016040528015611513578160200160208202803683370190505b50905060005b868163ffffffff1610156115655761153033612891565b828263ffffffff168151811061154857611548613a9c565b60209081029190910101528061155d81613a22565b915050611519565b50856016546115749190613927565b601655601554611585908790613927565b60155550506001600c5550505050565b600a546001600160a01b031633146115bf5760405162461bcd60e51b8152600401610bbe906138a1565b47610f886115d5600a546001600160a01b031690565b82612613565b610ec583838360405180602001604052806000815250611b21565b611601600033611ab0565b61161d5760405162461bcd60e51b8152600401610bbe90613873565b60145460ff16156116705760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c652068617320616c726561647920626567756e0000006044820152606401610bbe565b6014805460ff19166001179055600d819055604051819042907f63c3841f69764776447489c8d8aefc5d739cdb2a3f591a71bc1eb38c02f6b43490600090a350565b6116bd600033611ab0565b6116d95760405162461bcd60e51b8152600401610bbe90613873565b601b805460ff19811660ff90911615179055565b60006116f860085490565b821061175b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bbe565b6008828154811061176e5761176e613a9c565b90600052602060002001549050919050565b61178b600033611ab0565b6117a75760405162461bcd60e51b8152600401610bbe90613873565b8051611215906018906020840190613232565b6000818152600260205260408120546001600160a01b031680610bd75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bbe565b6018805461183e906139cc565b80601f016020809104026020016040519081016040528092919081815260200182805461186a906139cc565b80156118b75780601f1061188c576101008083540402835291602001916118b7565b820191906000526020600020905b81548152906001019060200180831161189a57829003601f168201915b505050505081565b600a546001600160a01b031633146118e95760405162461bcd60e51b8152600401610bbe906138a1565b610f886000826110a9565b60006001600160a01b03821661195f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bbe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146119a55760405162461bcd60e51b8152600401610bbe906138a1565b6119af60006128b8565b565b600a546001600160a01b031633146119db5760405162461bcd60e51b8152600401610bbe906138a1565b610f888161290a565b600a546001600160a01b03163314611a0e5760405162461bcd60e51b8152600401610bbe906138a1565b4780821115611a7a5760405162461bcd60e51b815260206004820152603260248201527f74686520416d6d6f756e7420746f2077697468647261772065786365647320746044820152716820636f6e74726163742062616c616e636560701b6064820152608401610bbe565b610ec58383612613565b611a8f600033611ab0565b611aab5760405162461bcd60e51b8152600401610bbe90613873565b601355565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610c9c906139cc565b6112153383836129b1565b611b00600033611ab0565b611b1c5760405162461bcd60e51b8152600401610bbe90613873565b601255565b611b2b33836122e5565b611b475760405162461bcd60e51b8152600401610bbe906138d6565b611b5384848484612a80565b50505050565b611b64600033611ab0565b611b805760405162461bcd60e51b8152600401610bbe90613873565b600d55565b611b90600033611ab0565b611bac5760405162461bcd60e51b8152600401610bbe90613873565b8051611215906019906020840190613232565b6000818152600260205260409020546060906001600160a01b0316611c3e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbe565b6000611c48612ab3565b601b5490915060ff16611ca957600060198054611c64906139cc565b905011611c805760405180602001604052806000815250611ca2565b6019604051602001611c929190613658565b6040516020818303038152906040525b9392505050565b6000815111611cc75760405180602001604052806000815250611ca2565b80611cd184612793565b604051602001611c92929190613629565b6000828152600b6020526040902060010154611cfd81612583565b610ec5838361272c565b600a546001600160a01b03163314611d315760405162461bcd60e51b8152600401610bbe906138a1565b601454610100900460ff16611d885760405162461bcd60e51b815260206004820152601c60248201527f57686974654c697374204d696e74206973206e6f7420616374697665000000006044820152606401610bbe565b6014805461ff0019169055601754600e546040517fbbcca033eda88b5aa8a135dd73f892652fe4bfbc8410a99c5d7cce5bc0f983b890600090a3565b601454610100900460ff16611e1b5760405162461bcd60e51b815260206004820152601c60248201527f57686974654c697374204d696e74206973206e6f7420616374697665000000006044820152606401610bbe565b600080516020613adf833981519152611e3381612583565b8160008111611e845760405162461bcd60e51b815260206004820152601e60248201527f4d757374206d696e74206174206c65617374206f6e65204d6f6e7374657200006044820152606401610bbe565b601254811115611ed15760405162461bcd60e51b8152602060048201526018602482015277131a5b5a5d195908135bdb9cdd195c9e881d1bc81b5a5b9d60421b6044820152606401610bbe565b60115481601554611ee29190613927565b1115611f565760405162461bcd60e51b815260206004820152603860248201527f507572636861736520776f756c642065786365656420746f74616c206f66204d60448201527f6f6e737465727a2077686974656c69737420737570706c7900000000000000006064820152608401610bbe565b600e5483906000611f678383613953565b905034811115611f7634612793565b611f7f83612793565b604051602001611f909291906136f4565b60405160208183030381529060405290611fbd5760405162461bcd60e51b8152600401610bbe919061380e565b506002600c5414156120115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bbe565b6002600c5560008667ffffffffffffffff81111561203157612031613ab2565b60405190808252806020026020018201604052801561205a578160200160208202803683370190505b50905060005b878163ffffffff1610156120ac5761207733612891565b828263ffffffff168151811061208f5761208f613a9c565b6020908102919091010152806120a481613a22565b915050612060565b50866017546120bb9190613927565b6017556015546120cc908890613927565b60155550506001600c555050505050565b600a546001600160a01b031633146121075760405162461bcd60e51b8152600401610bbe906138a1565b6001600160a01b03811661216c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbe565b610f88816128b8565b6019805461183e906139cc565b600a546001600160a01b031633146121ac5760405162461bcd60e51b8152600401610bbe906138a1565b601454610100900460ff161561220e5760405162461bcd60e51b815260206004820152602160248201527f7768697465206c6973742073616c652068617320616c726561647920626567756044820152603760f91b6064820152608401610bbe565b6014805461ff001916610100179055600e819055604051819042907f766b5a26574a36149284137ea20c6c84f13e534af7851c556c35b301fb2fb92690600090a350565b60006001600160e01b03198216637965db0b60e01b1480610bd75750610bd782612ac2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122ac826117ba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661235e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbe565b6000612369836117ba565b9050806001600160a01b0316846001600160a01b031614806123b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806123d45750836001600160a01b03166123c984610d1f565b6001600160a01b0316145b949350505050565b826001600160a01b03166123ef826117ba565b6001600160a01b0316146124535760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bbe565b6001600160a01b0382166124b55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbe565b6124c0838383612ae7565b6124cb600082612277565b6001600160a01b03831660009081526003602052604081208054600192906124f4908490613972565b90915550506001600160a01b0382166000908152600360205260408120805460019290612522908490613927565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f888133612af2565b6125978282611ab0565b611215576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556125cf3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b804710156126635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bbe565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146126b0576040519150601f19603f3d011682016040523d82523d6000602084013e6126b5565b606091505b5050905080610ec55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bbe565b6127368282611ab0565b15611215576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6060816127b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156127e157806127cb81613a07565b91506127da9050600a8361393f565b91506127bb565b60008167ffffffffffffffff8111156127fc576127fc613ab2565b6040519080825280601f01601f191660200182016040528015612826576020820181803683370190505b5090505b84156123d45761283b600183613972565b9150612848600a86613a46565b612853906030613927565b60f81b81838151811061286857612868613a9c565b60200101906001600160f81b031916908160001a90535061288a600a8661393f565b945061282a565b60006128a1601a80546001019055565b60006128ac601a5490565b9050610bd78382612b56565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612915826117ba565b905061292381600084612ae7565b61292e600083612277565b6001600160a01b0381166000908152600360205260408120805460019290612957908490613972565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03161415612a135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bbe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612a8b8484846123dc565b612a9784848484612b70565b611b535760405162461bcd60e51b8152600401610bbe90613821565b606060188054610c9c906139cc565b60006001600160e01b0319821663780e9d6360e01b1480610bd75750610bd782612c7d565b610ec5838383612ccd565b612afc8282611ab0565b61121557612b14816001600160a01b03166014612d85565b612b1f836020612d85565b604051602001612b3092919061375c565b60408051601f198184030181529082905262461bcd60e51b8252610bbe9160040161380e565b611215828260405180602001604052806000815250612f21565b60006001600160a01b0384163b15612c7257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bb49033908990889088906004016137d1565b602060405180830381600087803b158015612bce57600080fd5b505af1925050508015612bfe575060408051601f3d908101601f19168201909252612bfb91810190613597565b60015b612c58573d808015612c2c576040519150601f19603f3d011682016040523d82523d6000602084013e612c31565b606091505b508051612c505760405162461bcd60e51b8152600401610bbe90613821565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123d4565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b1480612cae57506001600160e01b03198216635b5e139f60e01b145b80610bd757506301ffc9a760e01b6001600160e01b0319831614610bd7565b6001600160a01b038316612d2857612d2381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612d4b565b816001600160a01b0316836001600160a01b031614612d4b57612d4b8382612f54565b6001600160a01b038216612d6257610ec581612ff1565b826001600160a01b0316826001600160a01b031614610ec557610ec582826130a0565b60606000612d94836002613953565b612d9f906002613927565b67ffffffffffffffff811115612db757612db7613ab2565b6040519080825280601f01601f191660200182016040528015612de1576020820181803683370190505b509050600360fc1b81600081518110612dfc57612dfc613a9c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612e2b57612e2b613a9c565b60200101906001600160f81b031916908160001a9053506000612e4f846002613953565b612e5a906001613927565b90505b6001811115612ed2576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612e8e57612e8e613a9c565b1a60f81b828281518110612ea457612ea4613a9c565b60200101906001600160f81b031916908160001a90535060049490941c93612ecb816139b5565b9050612e5d565b508315611ca25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bbe565b612f2b83836130e4565b612f386000848484612b70565b610ec55760405162461bcd60e51b8152600401610bbe90613821565b60006001612f61846118f4565b612f6b9190613972565b600083815260076020526040902054909150808214612fbe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061300390600190613972565b6000838152600960205260408120546008805493945090928490811061302b5761302b613a9c565b90600052602060002001549050806008838154811061304c5761304c613a9c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061308457613084613a86565b6001900381819060005260206000200160009055905550505050565b60006130ab836118f4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661313a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bbe565b6000818152600260205260409020546001600160a01b03161561319f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bbe565b6131ab60008383612ae7565b6001600160a01b03821660009081526003602052604081208054600192906131d4908490613927565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461323e906139cc565b90600052602060002090601f01602090048101928261326057600085556132a6565b82601f1061327957805160ff19168380011785556132a6565b828001600101855582156132a6579182015b828111156132a657825182559160200191906001019061328b565b506132b29291506132b6565b5090565b5b808211156132b257600081556001016132b7565b600067ffffffffffffffff808411156132e6576132e6613ab2565b604051601f8501601f19908116603f0116810190828211818310171561330e5761330e613ab2565b8160405280935085815286868601111561332757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461335857600080fd5b919050565b60006020828403121561336f57600080fd5b611ca282613341565b6000806040838503121561338b57600080fd5b61339483613341565b91506133a260208401613341565b90509250929050565b6000806000606084860312156133c057600080fd5b6133c984613341565b92506133d760208501613341565b9150604084013590509250925092565b600080600080608085870312156133fd57600080fd5b61340685613341565b935061341460208601613341565b925060408501359150606085013567ffffffffffffffff81111561343757600080fd5b8501601f8101871361344857600080fd5b613457878235602084016132cb565b91505092959194509250565b6000806040838503121561347657600080fd5b61347f83613341565b91506020830135801515811461349457600080fd5b809150509250929050565b600080604083850312156134b257600080fd5b6134bb83613341565b946020939093013593505050565b600080602083850312156134dc57600080fd5b823567ffffffffffffffff808211156134f457600080fd5b818501915085601f83011261350857600080fd5b81358181111561351757600080fd5b8660208260051b850101111561352c57600080fd5b60209290920196919550909350505050565b60006020828403121561355057600080fd5b5035919050565b6000806040838503121561356a57600080fd5b823591506133a260208401613341565b60006020828403121561358c57600080fd5b8135611ca281613ac8565b6000602082840312156135a957600080fd5b8151611ca281613ac8565b6000602082840312156135c657600080fd5b813567ffffffffffffffff8111156135dd57600080fd5b8201601f810184136135ee57600080fd5b6123d4848235602084016132cb565b60008151808452613615816020860160208601613989565b601f01601f19169290920160200192915050565b6000835161363b818460208801613989565b83519083019061364f818360208801613989565b01949350505050565b600080835481600182811c91508083168061367457607f831692505b602080841082141561369457634e487b7160e01b86526022600452602486fd5b8180156136a857600181146136b9576136e6565b60ff198616895284890196506136e6565b60008a81526020902060005b868110156136de5781548b8201529085019083016136c5565b505084890196505b509498975050505050505050565b6b022ba3432b9103b30b63ab2960a51b81526000835161371b81600c850160208801613989565b7401039b2b73a1034b9903737ba1031b7b93932b1ba1605d1b600c918401918201528351613750816021840160208801613989565b01602101949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613794816017850160208801613989565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516137c5816028840160208801613989565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613804908301846135fd565b9695505050505050565b602081526000611ca260208301846135fd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601490820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561393a5761393a613a5a565b500190565b60008261394e5761394e613a70565b500490565b600081600019048311821515161561396d5761396d613a5a565b500290565b60008282101561398457613984613a5a565b500390565b60005b838110156139a457818101518382015260200161398c565b83811115611b535750506000910152565b6000816139c4576139c4613a5a565b506000190190565b600181811c908216806139e057607f821691505b60208210811415613a0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a1b57613a1b613a5a565b5060010190565b600063ffffffff80831681811415613a3c57613a3c613a5a565b6001019392505050565b600082613a5557613a55613a70565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8857600080fdfec142ce12d48eefb829b77338b0b4af22b35022d9f3d92635112549837ddf40cea2646970667358221220ae90fdbf1d4887928d6394afd0571abe0fd92e47a58a1cff19cfc4476acc81b164736f6c63430008070033697066733a2f2f516d547047556b3766694e675966486b7a4d736e4537324c5664374451765967374d64326535785238424242534800000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d6f6e737465727a466163746f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d7a466163746f72790000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103d95760003560e01c80635fed653a116101fd578063ab425a1f11610118578063d6361ed6116100ab578063f28dd51b1161007a578063f28dd51b14610b19578063f2fde38b14610b2c578063f35ecb0914610b4c578063f7e07dd814610b62578063fd07090a14610b7757600080fd5b8063d6361ed614610a8f578063dce226a814610aa5578063e985e9c514610aba578063ee69e18214610b0357600080fd5b8063c0a9729c116100e7578063c0a9729c14610a0f578063c1e50d3814610a2f578063c87b56dd14610a4f578063d547741f14610a6f57600080fd5b8063ab425a1f1461099f578063aebd0eac146109bf578063b67c25a3146109d5578063b88d4fde146109ef57600080fd5b80637b47ec1a1161019057806391d148541161015f57806391d148541461093557806395d89b4114610955578063a217fddf1461096a578063a22cb4651461097f57600080fd5b80637b47ec1a146108b75780638716349b146108d75780638da5cb5b146108f757806391b482521461091557600080fd5b806370480275116101cc578063704802751461084c57806370a082311461086c578063715018a61461088c5780637b2ba2bc146108a157600080fd5b80635fed653a146107eb5780636227ea52146108015780636352211e146108175780636c0360eb1461083757600080fd5b80632f745c59116102f857806344f4f0e81161028b5780634f6ccce71161025a5780634f6ccce71461075c57806351222f331461077c578063518302271461079b5780635300fa65146107b557806355f804b3146107cb57600080fd5b806344f4f0e8146106fb57806346470bcc1461071b57806346e1d41c146107315780634e18738b1461074657600080fd5b80633af32abf116102c75780633af32abf146106935780633be39da0146106b35780633ccfd60b146106c657806342842e0e146106db57600080fd5b80632f745c591461061357806333c41a901461063357806334b46f111461065357806336568abe1461067357600080fd5b806318160ddd1161037057806323b872dd1161033f57806323b872dd14610583578063248a9ca3146105a357806324d7806c146105d35780632f2ff15d146105f357600080fd5b806318160ddd146105045780631acc19d5146105235780631b0cedae14610543578063226333e31461056357600080fd5b8063081812fc116103ac578063081812fc1461046c578063095ea7b3146104a4578063175d9e88146104c45780631785f53c146104e457600080fd5b806301a9b0bb146103de57806301ffc9a714610400578063056f8a3d1461043557806306fdde031461044a575b600080fd5b3480156103ea57600080fd5b506103fe6103f936600461353e565b610b97565b005b34801561040c57600080fd5b5061042061041b36600461357a565b610bcc565b60405190151581526020015b60405180910390f35b34801561044157600080fd5b506103fe610bdd565b34801561045657600080fd5b5061045f610c8d565b60405161042c919061380e565b34801561047857600080fd5b5061048c61048736600461353e565b610d1f565b6040516001600160a01b03909116815260200161042c565b3480156104b057600080fd5b506103fe6104bf36600461349f565b610db4565b3480156104d057600080fd5b506103fe6104df3660046134c9565b610eca565b3480156104f057600080fd5b506103fe6104ff36600461335d565b610f53565b34801561051057600080fd5b506008545b60405190815260200161042c565b34801561052f57600080fd5b506103fe61053e3660046134c9565b610f8b565b34801561054f57600080fd5b506103fe61055e36600461353e565b611014565b34801561056f57600080fd5b506103fe61057e36600461353e565b611040565b34801561058f57600080fd5b506103fe61059e3660046133ab565b61106c565b3480156105af57600080fd5b506105156105be36600461353e565b6000908152600b602052604090206001015490565b3480156105df57600080fd5b506104206105ee36600461335d565b61109d565b3480156105ff57600080fd5b506103fe61060e366004613557565b6110a9565b34801561061f57600080fd5b5061051561062e36600461349f565b6110ce565b34801561063f57600080fd5b5061042061064e36600461353e565b611164565b34801561065f57600080fd5b506103fe61066e36600461335d565b6111e0565b34801561067f57600080fd5b506103fe61068e366004613557565b611219565b34801561069f57600080fd5b506104206106ae36600461335d565b611293565b6103fe6106c136600461353e565b6112ad565b3480156106d257600080fd5b506103fe611595565b3480156106e757600080fd5b506103fe6106f63660046133ab565b6115db565b34801561070757600080fd5b506103fe61071636600461353e565b6115f6565b34801561072757600080fd5b5061051560155481565b34801561073d57600080fd5b506103fe6116b2565b34801561075257600080fd5b5061051560125481565b34801561076857600080fd5b5061051561077736600461353e565b6116ed565b34801561078857600080fd5b5060145461042090610100900460ff1681565b3480156107a757600080fd5b50601b546104209060ff1681565b3480156107c157600080fd5b5061051560165481565b3480156107d757600080fd5b506103fe6107e63660046135b4565b611780565b3480156107f757600080fd5b5061051560135481565b34801561080d57600080fd5b50610515600e5481565b34801561082357600080fd5b5061048c61083236600461353e565b6117ba565b34801561084357600080fd5b5061045f611831565b34801561085857600080fd5b506103fe61086736600461335d565b6118bf565b34801561087857600080fd5b5061051561088736600461335d565b6118f4565b34801561089857600080fd5b506103fe61197b565b3480156108ad57600080fd5b50610515600f5481565b3480156108c357600080fd5b506103fe6108d236600461353e565b6119b1565b3480156108e357600080fd5b506103fe6108f236600461349f565b6119e4565b34801561090357600080fd5b50600a546001600160a01b031661048c565b34801561092157600080fd5b506103fe61093036600461353e565b611a84565b34801561094157600080fd5b50610420610950366004613557565b611ab0565b34801561096157600080fd5b5061045f611adb565b34801561097657600080fd5b50610515600081565b34801561098b57600080fd5b506103fe61099a366004613463565b611aea565b3480156109ab57600080fd5b506103fe6109ba36600461353e565b611af5565b3480156109cb57600080fd5b50610515600d5481565b3480156109e157600080fd5b506014546104209060ff1681565b3480156109fb57600080fd5b506103fe610a0a3660046133e7565b611b21565b348015610a1b57600080fd5b506103fe610a2a36600461353e565b611b59565b348015610a3b57600080fd5b506103fe610a4a3660046135b4565b611b85565b348015610a5b57600080fd5b5061045f610a6a36600461353e565b611bbf565b348015610a7b57600080fd5b506103fe610a8a366004613557565b611ce2565b348015610a9b57600080fd5b5061051560105481565b348015610ab157600080fd5b506103fe611d07565b348015610ac657600080fd5b50610420610ad5366004613378565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b0f57600080fd5b5061051560115481565b6103fe610b2736600461353e565b611dc4565b348015610b3857600080fd5b506103fe610b4736600461335d565b6120dd565b348015610b5857600080fd5b5061051560175481565b348015610b6e57600080fd5b5061045f612175565b348015610b8357600080fd5b506103fe610b9236600461353e565b612182565b610ba2600033611ab0565b610bc75760405162461bcd60e51b8152600401610bbe90613873565b60405180910390fd5b600e55565b6000610bd782612252565b92915050565b610be8600033611ab0565b610c045760405162461bcd60e51b8152600401610bbe90613873565b60145460ff16610c525760405162461bcd60e51b81526020600482015260196024820152785075626c6963204d696e74206973206e6f742061637469766560381b6044820152606401610bbe565b6014805460ff19169055601654600d546040517fbbcca033eda88b5aa8a135dd73f892652fe4bfbc8410a99c5d7cce5bc0f983b890600090a3565b606060008054610c9c906139cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc8906139cc565b8015610d155780601f10610cea57610100808354040283529160200191610d15565b820191906000526020600020905b815481529060010190602001808311610cf857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d985760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbe565b506000908152600460205260409020546001600160a01b031690565b6000610dbf826117ba565b9050806001600160a01b0316836001600160a01b03161415610e2d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bbe565b336001600160a01b0382161480610e495750610e498133610ad5565b610ebb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bbe565b610ec58383612277565b505050565b610ed5600033611ab0565b610ef15760405162461bcd60e51b8152600401610bbe90613873565b60005b63ffffffff8116821115610ec557610f41600080516020613adf83398151915284848463ffffffff16818110610f2c57610f2c613a9c565b905060200201602081019061060e919061335d565b80610f4b81613a22565b915050610ef4565b600a546001600160a01b03163314610f7d5760405162461bcd60e51b8152600401610bbe906138a1565b610f88600082611ce2565b50565b610f96600033611ab0565b610fb25760405162461bcd60e51b8152600401610bbe90613873565b60005b63ffffffff8116821115610ec557611002600080516020613adf83398151915284848463ffffffff16818110610fed57610fed613a9c565b9050602002016020810190610a8a919061335d565b8061100c81613a22565b915050610fb5565b61101f600033611ab0565b61103b5760405162461bcd60e51b8152600401610bbe90613873565b601055565b61104b600033611ab0565b6110675760405162461bcd60e51b8152600401610bbe90613873565b601155565b61107633826122e5565b6110925760405162461bcd60e51b8152600401610bbe906138d6565b610ec58383836123dc565b6000610bd78183611ab0565b6000828152600b60205260409020600101546110c481612583565b610ec5838361258d565b60006110d9836118f4565b821061113b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bbe565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000600f5482106111c15760405162461bcd60e51b815260206004820152602160248201527f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e646044820152607360f81b6064820152608401610bbe565b6000828152600260205260409020546001600160a01b03161515610bd7565b600a546001600160a01b0316331461120a5760405162461bcd60e51b8152600401610bbe906138a1565b476112158282612613565b5050565b6001600160a01b03811633146112895760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610bbe565b611215828261272c565b6000610bd7600080516020613adf83398151915283611ab0565b60145460ff166112fb5760405162461bcd60e51b81526020600482015260196024820152785075626c6963204d696e74206973206e6f742061637469766560381b6044820152606401610bbe565b806000811161134c5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206d696e74206174206c65617374206f6e65204d6f6e7374657200006044820152606401610bbe565b6012548111156113995760405162461bcd60e51b8152602060048201526018602482015277131a5b5a5d195908135bdb9cdd195c9e881d1bc81b5a5b9d60421b6044820152606401610bbe565b600f54816015546113aa9190613927565b111561140f5760405162461bcd60e51b815260206004820152602e60248201527f507572636861736520776f756c642065786365656420746f74616c206f66204d60448201526d6f6e737465727a20737570706c7960901b6064820152608401610bbe565b600d54829060006114208383613953565b90503481111561142f34612793565b61143883612793565b6040516020016114499291906136f4565b604051602081830303815290604052906114765760405162461bcd60e51b8152600401610bbe919061380e565b506002600c5414156114ca5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bbe565b6002600c5560008567ffffffffffffffff8111156114ea576114ea613ab2565b604051908082528060200260200182016040528015611513578160200160208202803683370190505b50905060005b868163ffffffff1610156115655761153033612891565b828263ffffffff168151811061154857611548613a9c565b60209081029190910101528061155d81613a22565b915050611519565b50856016546115749190613927565b601655601554611585908790613927565b60155550506001600c5550505050565b600a546001600160a01b031633146115bf5760405162461bcd60e51b8152600401610bbe906138a1565b47610f886115d5600a546001600160a01b031690565b82612613565b610ec583838360405180602001604052806000815250611b21565b611601600033611ab0565b61161d5760405162461bcd60e51b8152600401610bbe90613873565b60145460ff16156116705760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c652068617320616c726561647920626567756e0000006044820152606401610bbe565b6014805460ff19166001179055600d819055604051819042907f63c3841f69764776447489c8d8aefc5d739cdb2a3f591a71bc1eb38c02f6b43490600090a350565b6116bd600033611ab0565b6116d95760405162461bcd60e51b8152600401610bbe90613873565b601b805460ff19811660ff90911615179055565b60006116f860085490565b821061175b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bbe565b6008828154811061176e5761176e613a9c565b90600052602060002001549050919050565b61178b600033611ab0565b6117a75760405162461bcd60e51b8152600401610bbe90613873565b8051611215906018906020840190613232565b6000818152600260205260408120546001600160a01b031680610bd75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bbe565b6018805461183e906139cc565b80601f016020809104026020016040519081016040528092919081815260200182805461186a906139cc565b80156118b75780601f1061188c576101008083540402835291602001916118b7565b820191906000526020600020905b81548152906001019060200180831161189a57829003601f168201915b505050505081565b600a546001600160a01b031633146118e95760405162461bcd60e51b8152600401610bbe906138a1565b610f886000826110a9565b60006001600160a01b03821661195f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bbe565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146119a55760405162461bcd60e51b8152600401610bbe906138a1565b6119af60006128b8565b565b600a546001600160a01b031633146119db5760405162461bcd60e51b8152600401610bbe906138a1565b610f888161290a565b600a546001600160a01b03163314611a0e5760405162461bcd60e51b8152600401610bbe906138a1565b4780821115611a7a5760405162461bcd60e51b815260206004820152603260248201527f74686520416d6d6f756e7420746f2077697468647261772065786365647320746044820152716820636f6e74726163742062616c616e636560701b6064820152608401610bbe565b610ec58383612613565b611a8f600033611ab0565b611aab5760405162461bcd60e51b8152600401610bbe90613873565b601355565b6000918252600b602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060018054610c9c906139cc565b6112153383836129b1565b611b00600033611ab0565b611b1c5760405162461bcd60e51b8152600401610bbe90613873565b601255565b611b2b33836122e5565b611b475760405162461bcd60e51b8152600401610bbe906138d6565b611b5384848484612a80565b50505050565b611b64600033611ab0565b611b805760405162461bcd60e51b8152600401610bbe90613873565b600d55565b611b90600033611ab0565b611bac5760405162461bcd60e51b8152600401610bbe90613873565b8051611215906019906020840190613232565b6000818152600260205260409020546060906001600160a01b0316611c3e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bbe565b6000611c48612ab3565b601b5490915060ff16611ca957600060198054611c64906139cc565b905011611c805760405180602001604052806000815250611ca2565b6019604051602001611c929190613658565b6040516020818303038152906040525b9392505050565b6000815111611cc75760405180602001604052806000815250611ca2565b80611cd184612793565b604051602001611c92929190613629565b6000828152600b6020526040902060010154611cfd81612583565b610ec5838361272c565b600a546001600160a01b03163314611d315760405162461bcd60e51b8152600401610bbe906138a1565b601454610100900460ff16611d885760405162461bcd60e51b815260206004820152601c60248201527f57686974654c697374204d696e74206973206e6f7420616374697665000000006044820152606401610bbe565b6014805461ff0019169055601754600e546040517fbbcca033eda88b5aa8a135dd73f892652fe4bfbc8410a99c5d7cce5bc0f983b890600090a3565b601454610100900460ff16611e1b5760405162461bcd60e51b815260206004820152601c60248201527f57686974654c697374204d696e74206973206e6f7420616374697665000000006044820152606401610bbe565b600080516020613adf833981519152611e3381612583565b8160008111611e845760405162461bcd60e51b815260206004820152601e60248201527f4d757374206d696e74206174206c65617374206f6e65204d6f6e7374657200006044820152606401610bbe565b601254811115611ed15760405162461bcd60e51b8152602060048201526018602482015277131a5b5a5d195908135bdb9cdd195c9e881d1bc81b5a5b9d60421b6044820152606401610bbe565b60115481601554611ee29190613927565b1115611f565760405162461bcd60e51b815260206004820152603860248201527f507572636861736520776f756c642065786365656420746f74616c206f66204d60448201527f6f6e737465727a2077686974656c69737420737570706c7900000000000000006064820152608401610bbe565b600e5483906000611f678383613953565b905034811115611f7634612793565b611f7f83612793565b604051602001611f909291906136f4565b60405160208183030381529060405290611fbd5760405162461bcd60e51b8152600401610bbe919061380e565b506002600c5414156120115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bbe565b6002600c5560008667ffffffffffffffff81111561203157612031613ab2565b60405190808252806020026020018201604052801561205a578160200160208202803683370190505b50905060005b878163ffffffff1610156120ac5761207733612891565b828263ffffffff168151811061208f5761208f613a9c565b6020908102919091010152806120a481613a22565b915050612060565b50866017546120bb9190613927565b6017556015546120cc908890613927565b60155550506001600c555050505050565b600a546001600160a01b031633146121075760405162461bcd60e51b8152600401610bbe906138a1565b6001600160a01b03811661216c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bbe565b610f88816128b8565b6019805461183e906139cc565b600a546001600160a01b031633146121ac5760405162461bcd60e51b8152600401610bbe906138a1565b601454610100900460ff161561220e5760405162461bcd60e51b815260206004820152602160248201527f7768697465206c6973742073616c652068617320616c726561647920626567756044820152603760f91b6064820152608401610bbe565b6014805461ff001916610100179055600e819055604051819042907f766b5a26574a36149284137ea20c6c84f13e534af7851c556c35b301fb2fb92690600090a350565b60006001600160e01b03198216637965db0b60e01b1480610bd75750610bd782612ac2565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122ac826117ba565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661235e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bbe565b6000612369836117ba565b9050806001600160a01b0316846001600160a01b031614806123b057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806123d45750836001600160a01b03166123c984610d1f565b6001600160a01b0316145b949350505050565b826001600160a01b03166123ef826117ba565b6001600160a01b0316146124535760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610bbe565b6001600160a01b0382166124b55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bbe565b6124c0838383612ae7565b6124cb600082612277565b6001600160a01b03831660009081526003602052604081208054600192906124f4908490613972565b90915550506001600160a01b0382166000908152600360205260408120805460019290612522908490613927565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f888133612af2565b6125978282611ab0565b611215576000828152600b602090815260408083206001600160a01b03851684529091529020805460ff191660011790556125cf3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b804710156126635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bbe565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146126b0576040519150601f19603f3d011682016040523d82523d6000602084013e6126b5565b606091505b5050905080610ec55760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bbe565b6127368282611ab0565b15611215576000828152600b602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6060816127b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156127e157806127cb81613a07565b91506127da9050600a8361393f565b91506127bb565b60008167ffffffffffffffff8111156127fc576127fc613ab2565b6040519080825280601f01601f191660200182016040528015612826576020820181803683370190505b5090505b84156123d45761283b600183613972565b9150612848600a86613a46565b612853906030613927565b60f81b81838151811061286857612868613a9c565b60200101906001600160f81b031916908160001a90535061288a600a8661393f565b945061282a565b60006128a1601a80546001019055565b60006128ac601a5490565b9050610bd78382612b56565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612915826117ba565b905061292381600084612ae7565b61292e600083612277565b6001600160a01b0381166000908152600360205260408120805460019290612957908490613972565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b816001600160a01b0316836001600160a01b03161415612a135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bbe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612a8b8484846123dc565b612a9784848484612b70565b611b535760405162461bcd60e51b8152600401610bbe90613821565b606060188054610c9c906139cc565b60006001600160e01b0319821663780e9d6360e01b1480610bd75750610bd782612c7d565b610ec5838383612ccd565b612afc8282611ab0565b61121557612b14816001600160a01b03166014612d85565b612b1f836020612d85565b604051602001612b3092919061375c565b60408051601f198184030181529082905262461bcd60e51b8252610bbe9160040161380e565b611215828260405180602001604052806000815250612f21565b60006001600160a01b0384163b15612c7257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bb49033908990889088906004016137d1565b602060405180830381600087803b158015612bce57600080fd5b505af1925050508015612bfe575060408051601f3d908101601f19168201909252612bfb91810190613597565b60015b612c58573d808015612c2c576040519150601f19603f3d011682016040523d82523d6000602084013e612c31565b606091505b508051612c505760405162461bcd60e51b8152600401610bbe90613821565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123d4565b506001949350505050565b60006001600160e01b031982166380ac58cd60e01b1480612cae57506001600160e01b03198216635b5e139f60e01b145b80610bd757506301ffc9a760e01b6001600160e01b0319831614610bd7565b6001600160a01b038316612d2857612d2381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612d4b565b816001600160a01b0316836001600160a01b031614612d4b57612d4b8382612f54565b6001600160a01b038216612d6257610ec581612ff1565b826001600160a01b0316826001600160a01b031614610ec557610ec582826130a0565b60606000612d94836002613953565b612d9f906002613927565b67ffffffffffffffff811115612db757612db7613ab2565b6040519080825280601f01601f191660200182016040528015612de1576020820181803683370190505b509050600360fc1b81600081518110612dfc57612dfc613a9c565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110612e2b57612e2b613a9c565b60200101906001600160f81b031916908160001a9053506000612e4f846002613953565b612e5a906001613927565b90505b6001811115612ed2576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110612e8e57612e8e613a9c565b1a60f81b828281518110612ea457612ea4613a9c565b60200101906001600160f81b031916908160001a90535060049490941c93612ecb816139b5565b9050612e5d565b508315611ca25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610bbe565b612f2b83836130e4565b612f386000848484612b70565b610ec55760405162461bcd60e51b8152600401610bbe90613821565b60006001612f61846118f4565b612f6b9190613972565b600083815260076020526040902054909150808214612fbe576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061300390600190613972565b6000838152600960205260408120546008805493945090928490811061302b5761302b613a9c565b90600052602060002001549050806008838154811061304c5761304c613a9c565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061308457613084613a86565b6001900381819060005260206000200160009055905550505050565b60006130ab836118f4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661313a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bbe565b6000818152600260205260409020546001600160a01b03161561319f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bbe565b6131ab60008383612ae7565b6001600160a01b03821660009081526003602052604081208054600192906131d4908490613927565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461323e906139cc565b90600052602060002090601f01602090048101928261326057600085556132a6565b82601f1061327957805160ff19168380011785556132a6565b828001600101855582156132a6579182015b828111156132a657825182559160200191906001019061328b565b506132b29291506132b6565b5090565b5b808211156132b257600081556001016132b7565b600067ffffffffffffffff808411156132e6576132e6613ab2565b604051601f8501601f19908116603f0116810190828211818310171561330e5761330e613ab2565b8160405280935085815286868601111561332757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461335857600080fd5b919050565b60006020828403121561336f57600080fd5b611ca282613341565b6000806040838503121561338b57600080fd5b61339483613341565b91506133a260208401613341565b90509250929050565b6000806000606084860312156133c057600080fd5b6133c984613341565b92506133d760208501613341565b9150604084013590509250925092565b600080600080608085870312156133fd57600080fd5b61340685613341565b935061341460208601613341565b925060408501359150606085013567ffffffffffffffff81111561343757600080fd5b8501601f8101871361344857600080fd5b613457878235602084016132cb565b91505092959194509250565b6000806040838503121561347657600080fd5b61347f83613341565b91506020830135801515811461349457600080fd5b809150509250929050565b600080604083850312156134b257600080fd5b6134bb83613341565b946020939093013593505050565b600080602083850312156134dc57600080fd5b823567ffffffffffffffff808211156134f457600080fd5b818501915085601f83011261350857600080fd5b81358181111561351757600080fd5b8660208260051b850101111561352c57600080fd5b60209290920196919550909350505050565b60006020828403121561355057600080fd5b5035919050565b6000806040838503121561356a57600080fd5b823591506133a260208401613341565b60006020828403121561358c57600080fd5b8135611ca281613ac8565b6000602082840312156135a957600080fd5b8151611ca281613ac8565b6000602082840312156135c657600080fd5b813567ffffffffffffffff8111156135dd57600080fd5b8201601f810184136135ee57600080fd5b6123d4848235602084016132cb565b60008151808452613615816020860160208601613989565b601f01601f19169290920160200192915050565b6000835161363b818460208801613989565b83519083019061364f818360208801613989565b01949350505050565b600080835481600182811c91508083168061367457607f831692505b602080841082141561369457634e487b7160e01b86526022600452602486fd5b8180156136a857600181146136b9576136e6565b60ff198616895284890196506136e6565b60008a81526020902060005b868110156136de5781548b8201529085019083016136c5565b505084890196505b509498975050505050505050565b6b022ba3432b9103b30b63ab2960a51b81526000835161371b81600c850160208801613989565b7401039b2b73a1034b9903737ba1031b7b93932b1ba1605d1b600c918401918201528351613750816021840160208801613989565b01602101949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613794816017850160208801613989565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516137c5816028840160208801613989565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613804908301846135fd565b9695505050505050565b602081526000611ca260208301846135fd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601490820152732932b9ba3934b1ba32b2103a379030b236b4b71760611b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561393a5761393a613a5a565b500190565b60008261394e5761394e613a70565b500490565b600081600019048311821515161561396d5761396d613a5a565b500290565b60008282101561398457613984613a5a565b500390565b60005b838110156139a457818101518382015260200161398c565b83811115611b535750506000910152565b6000816139c4576139c4613a5a565b506000190190565b600181811c908216806139e057607f821691505b60208210811415613a0157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a1b57613a1b613a5a565b5060010190565b600063ffffffff80831681811415613a3c57613a3c613a5a565b6001019392505050565b600082613a5557613a55613a70565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f8857600080fdfec142ce12d48eefb829b77338b0b4af22b35022d9f3d92635112549837ddf40cea2646970667358221220ae90fdbf1d4887928d6394afd0571abe0fd92e47a58a1cff19cfc4476acc81b164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f4d6f6e737465727a466163746f7279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000094d7a466163746f72790000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): MonsterzFactory
Arg [1] : symbol (string): MzFactory
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 4d6f6e737465727a466163746f72790000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4d7a466163746f72790000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
62470:15002:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74031:96;;;;;;;;;;-1:-1:-1;74031:96:0;;;;;:::i;:::-;;:::i;:::-;;77233:236;;;;;;;;;;-1:-1:-1;77233:236:0;;;;;:::i;:::-;;:::i;:::-;;;9599:14:1;;9592:22;9574:41;;9562:2;9547:18;77233:236:0;;;;;;;;68864:230;;;;;;;;;;;;;:::i;41408:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42968:221::-;;;;;;;;;;-1:-1:-1;42968:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8897:32:1;;;8879:51;;8867:2;8852:18;42968:221:0;8733:203:1;42491:411:0;;;;;;;;;;-1:-1:-1;42491:411:0;;;;;:::i;:::-;;:::i;75038:235::-;;;;;;;;;;-1:-1:-1;75038:235:0;;;;;:::i;:::-;;:::i;74911:119::-;;;;;;;;;;-1:-1:-1;74911:119:0;;;;;:::i;:::-;;:::i;55229:113::-;;;;;;;;;;-1:-1:-1;55317:10:0;:17;55229:113;;;9772:25:1;;;9760:2;9745:18;55229:113:0;9626:177:1;75281:239:0;;;;;;;;;;-1:-1:-1;75281:239:0;;;;;:::i;:::-;;:::i;74135:102::-;;;;;;;;;;-1:-1:-1;74135:102:0;;;;;:::i;:::-;;:::i;74245:108::-;;;;;;;;;;-1:-1:-1;74245:108:0;;;;;:::i;:::-;;:::i;43718:339::-;;;;;;;;;;-1:-1:-1;43718:339:0;;;;;:::i;:::-;;:::i;28728:131::-;;;;;;;;;;-1:-1:-1;28728:131:0;;;;;:::i;:::-;28802:7;28829:12;;;:6;:12;;;;;:22;;;;28728:131;75528:129;;;;;;;;;;-1:-1:-1;75528:129:0;;;;;:::i;:::-;;:::i;29121:147::-;;;;;;;;;;-1:-1:-1;29121:147:0;;;;;:::i;:::-;;:::i;54897:256::-;;;;;;;;;;-1:-1:-1;54897:256:0;;;;;:::i;:::-;;:::i;72277:188::-;;;;;;;;;;-1:-1:-1;72277:188:0;;;;;:::i;:::-;;:::i;72633:165::-;;;;;;;;;;-1:-1:-1;72633:165:0;;;;;:::i;:::-;;:::i;30169:218::-;;;;;;;;;;-1:-1:-1;30169:218:0;;;;;:::i;:::-;;:::i;75665:132::-;;;;;;;;;;-1:-1:-1;75665:132:0;;;;;:::i;:::-;;:::i;69102:660::-;;;;;;:::i;:::-;;:::i;72473:152::-;;;;;;;;;;;;;:::i;44128:185::-;;;;;;;;;;-1:-1:-1;44128:185:0;;;;;:::i;:::-;;:::i;68566:290::-;;;;;;;;;;-1:-1:-1;68566:290:0;;;;;:::i;:::-;;:::i;63583:42::-;;;;;;;;;;;;;;;;74361:84;;;;;;;;;;;;;:::i;63245:39::-;;;;;;;;;;;;;;;;55419:233;;;;;;;;;;-1:-1:-1;55419:233:0;;;;;:::i;:::-;;:::i;63488:32::-;;;;;;;;;;-1:-1:-1;63488:32:0;;;;;;;;;;;63954:28;;;;;;;;;;-1:-1:-1;63954:28:0;;;;;;;;63632:43;;;;;;;;;;;;;;;;76252:90;;;;;;;;;;-1:-1:-1;76252:90:0;;;;;:::i;:::-;;:::i;63291:40::-;;;;;;;;;;;;;;;;63059;;;;;;;;;;;;;;;;41102:239;;;;;;;;;;-1:-1:-1;41102:239:0;;;;;:::i;:::-;;:::i;63755:21::-;;;;;;;;;;;;;:::i;74788:115::-;;;;;;;;;;-1:-1:-1;74788:115:0;;;;;:::i;:::-;;:::i;40832:208::-;;;;;;;;;;-1:-1:-1;40832:208:0;;;;;:::i;:::-;;:::i;11995:103::-;;;;;;;;;;;;;:::i;63108:37::-;;;;;;;;;;;;;;;;77131:94;;;;;;;;;;-1:-1:-1;77131:94:0;;;;;:::i;:::-;;:::i;72806:312::-;;;;;;;;;;-1:-1:-1;72806:312:0;;;;;:::i;:::-;;:::i;11344:87::-;;;;;;;;;;-1:-1:-1;11417:6:0;;-1:-1:-1;;;;;11417:6:0;11344:87;;73800:111;;;;;;;;;;-1:-1:-1;73800:111:0;;;;;:::i;:::-;;:::i;27188:147::-;;;;;;;;;;-1:-1:-1;27188:147:0;;;;;:::i;:::-;;:::i;41577:104::-;;;;;;;;;;;;;:::i;26293:49::-;;;;;;;;;;-1:-1:-1;26293:49:0;26338:4;26293:49;;43261:155;;;;;;;;;;-1:-1:-1;43261:155:0;;;;;:::i;:::-;;:::i;73683:109::-;;;;;;;;;;-1:-1:-1;73683:109:0;;;;;:::i;:::-;;:::i;63007:45::-;;;;;;;;;;;;;;;;63445:36;;;;;;;;;;-1:-1:-1;63445:36:0;;;;;;;;44384:328;;;;;;;;;;-1:-1:-1;44384:328:0;;;;;:::i;:::-;;:::i;73919:104::-;;;;;;;;;;-1:-1:-1;73919:104:0;;;;;:::i;:::-;;:::i;76140:::-;;;;;;;;;;-1:-1:-1;76140:104:0;;;;;:::i;:::-;;:::i;76466:657::-;;;;;;;;;;-1:-1:-1;76466:657:0;;;;;:::i;:::-;;:::i;29513:149::-;;;;;;;;;;-1:-1:-1;29513:149:0;;;;;:::i;:::-;;:::i;63152:38::-;;;;;;;;;;;;;;;;70612:183;;;;;;;;;;;;;:::i;43487:164::-;;;;;;;;;;-1:-1:-1;43487:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43608:25:0;;;43584:4;43608:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43487:164;63197:41;;;;;;;;;;;;;;;;70803:666;;;;;;:::i;:::-;;:::i;12253:201::-;;;;;;;;;;-1:-1:-1;12253:201:0;;;;;:::i;:::-;;:::i;63682:39::-;;;;;;;;;;;;;;;;63783:95;;;;;;;;;;;;;:::i;70327:277::-;;;;;;;;;;-1:-1:-1;70327:277:0;;;;;:::i;:::-;;:::i;74031:96::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;;;;;;;;;74100:13:::1;:19:::0;74031:96::o;77233:236::-;77396:4;77425:36;77449:11;77425:23;:36::i;:::-;77418:43;77233:236;-1:-1:-1;;77233:236:0:o;68864:230::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;66367:16:::1;::::0;::::1;;66359:54;;;::::0;-1:-1:-1;;;66359:54:0;;21712:2:1;66359:54:0::1;::::0;::::1;21694:21:1::0;21751:2;21731:18;;;21724:30;-1:-1:-1;;;21770:18:1;;;21763:55;21835:18;;66359:54:0::1;21510:349:1::0;66359:54:0::1;68940:16:::2;:24:::0;;-1:-1:-1;;68940:24:0::2;::::0;;69051::::2;::::0;69019:17:::2;::::0;68980:106:::2;::::0;::::2;::::0;68959:5:::2;::::0;68980:106:::2;68864:230::o:0;41408:100::-;41462:13;41495:5;41488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41408:100;:::o;42968:221::-;43044:7;46311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46311:16:0;43064:73;;;;-1:-1:-1;;;43064:73:0;;18468:2:1;43064:73:0;;;18450:21:1;18507:2;18487:18;;;18480:30;18546:34;18526:18;;;18519:62;-1:-1:-1;;;18597:18:1;;;18590:42;18649:19;;43064:73:0;18266:408:1;43064:73:0;-1:-1:-1;43157:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43157:24:0;;42968:221::o;42491:411::-;42572:13;42588:23;42603:7;42588:14;:23::i;:::-;42572:39;;42636:5;-1:-1:-1;;;;;42630:11:0;:2;-1:-1:-1;;;;;42630:11:0;;;42622:57;;;;-1:-1:-1;;;42622:57:0;;20479:2:1;42622:57:0;;;20461:21:1;20518:2;20498:18;;;20491:30;20557:34;20537:18;;;20530:62;-1:-1:-1;;;20608:18:1;;;20601:31;20649:19;;42622:57:0;20277:397:1;42622:57:0;10148:10;-1:-1:-1;;;;;42714:21:0;;;;:62;;-1:-1:-1;42739:37:0;42756:5;10148:10;43487:164;:::i;42739:37::-;42692:168;;;;-1:-1:-1;;;42692:168:0;;16077:2:1;42692:168:0;;;16059:21:1;16116:2;16096:18;;;16089:30;16155:34;16135:18;;;16128:62;16226:26;16206:18;;;16199:54;16270:19;;42692:168:0;15875:420:1;42692:168:0;42873:21;42882:2;42886:7;42873:8;:21::i;:::-;42561:341;42491:411;;:::o;75038:235::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;75158:8:::1;75153:113;75172:20;::::0;::::1;::::0;-1:-1:-1;75153:113:0::1;;;75214:40;-1:-1:-1::0;;;;;;;;;;;75241:9:0::1;;75251:1;75241:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;75214:40::-;75194:3:::0;::::1;::::0;::::1;:::i;:::-;;;;75153:113;;74911:119:::0;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;74981:41:::1;26338:4;75012:9:::0;74981:10:::1;:41::i;:::-;74911:119:::0;:::o;75281:239::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;75404:8:::1;75399:114;75418:20;::::0;::::1;::::0;-1:-1:-1;75399:114:0::1;;;75460:41;-1:-1:-1::0;;;;;;;;;;;75488:9:0::1;;75498:1;75488:12;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;75460:41::-;75440:3:::0;::::1;::::0;::::1;:::i;:::-;;;;75399:114;;74135:102:::0;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;74207:16:::1;:22:::0;74135:102::o;74245:108::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;74320:19:::1;:25:::0;74245:108::o;43718:339::-;43913:41;10148:10;43946:7;43913:18;:41::i;:::-;43905:103;;;;-1:-1:-1;;;43905:103:0;;;;;;;:::i;:::-;44021:28;44031:4;44037:2;44041:7;44021:9;:28::i;75528:129::-;75587:4;75611:38;75587:4;75639:9;75611:7;:38::i;29121:147::-;28802:7;28829:12;;;:6;:12;;;;;:22;;;26784:16;26795:4;26784:10;:16::i;:::-;29235:25:::1;29246:4;29252:7;29235:10;:25::i;54897:256::-:0;54994:7;55030:23;55047:5;55030:16;:23::i;:::-;55022:5;:31;55014:87;;;;-1:-1:-1;;;55014:87:0;;11355:2:1;55014:87:0;;;11337:21:1;11394:2;11374:18;;;11367:30;11433:34;11413:18;;;11406:62;-1:-1:-1;;;11484:18:1;;;11477:41;11535:19;;55014:87:0;11153:407:1;55014:87:0;-1:-1:-1;;;;;;55119:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;54897:256::o;72277:188::-;72335:4;72370:15;;72360:7;:25;72352:71;;;;-1:-1:-1;;;72352:71:0;;20077:2:1;72352:71:0;;;20059:21:1;20116:2;20096:18;;;20089:30;20155:34;20135:18;;;20128:62;-1:-1:-1;;;20206:18:1;;;20199:31;20247:19;;72352:71:0;19875:397:1;72352:71:0;46287:4;46311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46311:16:0;:30;;72441:16;46222:127;72633:165;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;72718:21:::1;72750:40;72776:3:::0;72718:21;72750:17:::1;:40::i;:::-;72689:109;72633:165:::0;:::o;30169:218::-;-1:-1:-1;;;;;30265:23:0;;10148:10;30265:23;30257:83;;;;-1:-1:-1;;;30257:83:0;;23136:2:1;30257:83:0;;;23118:21:1;23175:2;23155:18;;;23148:30;23214:34;23194:18;;;23187:62;-1:-1:-1;;;23265:18:1;;;23258:45;23320:19;;30257:83:0;22934:411:1;30257:83:0;30353:26;30365:4;30371:7;30353:11;:26::i;75665:132::-;75730:4;75754:35;-1:-1:-1;;;;;;;;;;;75779:9:0;75754:7;:35::i;69102:660::-;66367:16;;;;66359:54;;;;-1:-1:-1;;;66359:54:0;;21712:2:1;66359:54:0;;;21694:21:1;21751:2;21731:18;;;21724:30;-1:-1:-1;;;21770:18:1;;;21763:55;21835:18;;66359:54:0;21510:349:1;66359:54:0;69255:17:::1;66661:1;66642:16;:20;66634:63;;;::::0;-1:-1:-1;;;66634:63:0;;16502:2:1;66634:63:0::1;::::0;::::1;16484:21:1::0;16541:2;16521:18;;;16514:30;16580:32;16560:18;;;16553:60;16630:18;;66634:63:0::1;16300:354:1::0;66634:63:0::1;66750:19;;66730:16;:39;;66708:113;;;::::0;-1:-1:-1;;;66708:113:0;;22066:2:1;66708:113:0::1;::::0;::::1;22048:21:1::0;22105:2;22085:18;;;22078:30;-1:-1:-1;;;22124:18:1;;;22117:54;22188:18;;66708:113:0::1;21864:348:1::0;66708:113:0::1;66902:15;;66881:16;66855:23;;:42;;;;:::i;:::-;66854:63;;66832:159;;;::::0;-1:-1:-1;;;66832:159:0;;14542:2:1;66832:159:0::1;::::0;::::1;14524:21:1::0;14581:2;14561:18;;;14554:30;14620:34;14600:18;;;14593:62;-1:-1:-1;;;14671:18:1;;;14664:44;14725:19;;66832:159:0::1;14340:410:1::0;66832:159:0::1;69325:17:::2;::::0;69306;;67603:19:::2;67625:27;69306:17:::0;69325;67625:27:::2;:::i;:::-;67603:49;;67700:9;67685:11;:24;;67825:20;:9;:18;:20::i;:::-;67914:22;:11;:20;:22::i;:::-;67749:206;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67663:318;;;;;-1:-1:-1::0;;;67663:318:0::2;;;;;;;;:::i;:::-;;3277:1:::3;3875:7;;:19;;3867:63;;;::::0;-1:-1:-1;;;3867:63:0;;22419:2:1;3867:63:0::3;::::0;::::3;22401:21:1::0;22458:2;22438:18;;;22431:30;22497:33;22477:18;;;22470:61;22548:18;;3867:63:0::3;22217:355:1::0;3867:63:0::3;3277:1;4008:7;:18:::0;69382:34:::4;69433:17:::0;69419:32:::4;::::0;::::4;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;69419:32:0::4;;69382:69;;69467:8;69462:114;69485:17;69481:1;:21;;;69462:114;;;69547:17;69553:10;69547:5;:17::i;:::-;69524;69542:1;69524:20;;;;;;;;;;:::i;:::-;;::::0;;::::4;::::0;;;;;:40;69504:3;::::4;::::0;::::4;:::i;:::-;;;;69462:114;;;;69654:17;69614:24;;:57;;;;:::i;:::-;69586:24;:86:::0;69710:23:::4;::::0;:43:::4;::::0;69736:17;;69710:43:::4;:::i;:::-;69683:23;:71:::0;-1:-1:-1;;3233:1:0::3;4187:7;:22:::0;-1:-1:-1;;;;69102:660:0:o;72473:152::-;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;72541:21:::1;72573:44;72599:7;11417:6:::0;;-1:-1:-1;;;;;11417:6:0;;11344:87;72599:7:::1;72609;72573:17;:44::i;44128:185::-:0;44266:39;44283:4;44289:2;44293:7;44266:39;;;;;;;;;;;;:16;:39::i;68566:290::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;68649:16:::1;::::0;::::1;;68648:17;68640:59;;;::::0;-1:-1:-1;;;68640:59:0;;10997:2:1;68640:59:0::1;::::0;::::1;10979:21:1::0;11036:2;11016:18;;;11009:30;11075:31;11055:18;;;11048:59;11124:18;;68640:59:0::1;10795:353:1::0;68640:59:0::1;68710:16;:23:::0;;-1:-1:-1;;68710:23:0::1;68729:4;68710:23;::::0;;68744:17:::1;:29:::0;;;68789:59:::1;::::0;68764:9;;68813:15:::1;::::0;68789:59:::1;::::0;68710:16:::1;::::0;68789:59:::1;68566:290:::0;:::o;74361:84::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;74429:8:::1;::::0;;-1:-1:-1;;74417:20:0;::::1;74429:8;::::0;;::::1;74428:9;74417:20;::::0;;74361:84::o;55419:233::-;55494:7;55530:30;55317:10;:17;;55229:113;55530:30;55522:5;:38;55514:95;;;;-1:-1:-1;;;55514:95:0;;21299:2:1;55514:95:0;;;21281:21:1;21338:2;21318:18;;;21311:30;21377:34;21357:18;;;21350:62;-1:-1:-1;;;21428:18:1;;;21421:42;21480:19;;55514:95:0;21097:408:1;55514:95:0;55627:10;55638:5;55627:17;;;;;;;;:::i;:::-;;;;;;;;;55620:24;;55419:233;;;:::o;76252:90::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;76321:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;41102:239::-:0;41174:7;41210:16;;;:7;:16;;;;;;-1:-1:-1;;;;;41210:16:0;41245:19;41237:73;;;;-1:-1:-1;;;41237:73:0;;17272:2:1;41237:73:0;;;17254:21:1;17311:2;17291:18;;;17284:30;17350:34;17330:18;;;17323:62;-1:-1:-1;;;17401:18:1;;;17394:39;17450:19;;41237:73:0;17070:405:1;63755:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;74788:115::-;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;74855:40:::1;26338:4;74885:9:::0;74855::::1;:40::i;40832:208::-:0;40904:7;-1:-1:-1;;;;;40932:19:0;;40924:74;;;;-1:-1:-1;;;40924:74:0;;16861:2:1;40924:74:0;;;16843:21:1;16900:2;16880:18;;;16873:30;16939:34;16919:18;;;16912:62;-1:-1:-1;;;16990:18:1;;;16983:40;17040:19;;40924:74:0;16659:406:1;40924:74:0;-1:-1:-1;;;;;;41016:16:0;;;;;:9;:16;;;;;;;40832:208::o;11995:103::-;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;12060:30:::1;12087:1;12060:18;:30::i;:::-;11995:103::o:0;77131:94::-;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;77197:20:::1;77209:7;77197:11;:20::i;72806:312::-:0;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;72909:21:::1;72963:18:::0;;::::1;;72941:118;;;::::0;-1:-1:-1;;;72941:118:0;;19242:2:1;72941:118:0::1;::::0;::::1;19224:21:1::0;19281:2;19261:18;;;19254:30;19320:34;19300:18;;;19293:62;-1:-1:-1;;;19371:18:1;;;19364:48;19429:19;;72941:118:0::1;19040:414:1::0;72941:118:0::1;73070:40;73096:3;73102:7;73070:17;:40::i;73800:111::-:0;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;73877:20:::1;:26:::0;73800:111::o;27188:147::-;27274:4;27298:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;27298:29:0;;;;;;;;;;;;;;;27188:147::o;41577:104::-;41633:13;41666:7;41659:14;;;;;:::i;43261:155::-;43356:52;10148:10;43389:8;43399;43356:18;:52::i;73683:109::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;73759:19:::1;:25:::0;73683:109::o;44384:328::-;44559:41;10148:10;44592:7;44559:18;:41::i;:::-;44551:103;;;;-1:-1:-1;;;44551:103:0;;;;;;;:::i;:::-;44665:39;44679:4;44685:2;44689:7;44698:5;44665:13;:39::i;:::-;44384:328;;;;:::o;73919:104::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;73992:17:::1;:23:::0;73919:104::o;76140:::-;66203:39;26338:4;66231:10;66203:7;:39::i;:::-;66181:109;;;;-1:-1:-1;;;66181:109:0;;;;;;;:::i;:::-;76216:20;;::::1;::::0;:14:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;76466:657::-:0;46287:4;46311:16;;;:7;:16;;;;;;76584:13;;-1:-1:-1;;;;;46311:16:0;76615:113;;;;-1:-1:-1;;;76615:113:0;;19661:2:1;76615:113:0;;;19643:21:1;19700:2;19680:18;;;19673:30;19739:34;19719:18;;;19712:62;-1:-1:-1;;;19790:18:1;;;19783:45;19845:19;;76615:113:0;19459:411:1;76615:113:0;76741:18;76762:10;:8;:10::i;:::-;76788:8;;76741:31;;-1:-1:-1;76788:8:0;;76783:188;;76868:1;76843:14;76837:28;;;;;:::i;:::-;;;:32;:122;;;;;;;;;;;;;;;;;76917:14;76900:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;76837:122;76813:146;76466:657;-1:-1:-1;;;76466:657:0:o;76783:188::-;77022:1;77007:4;77001:18;:22;:114;;;;;;;;;;;;;;;;;77067:4;77073:18;:7;:16;:18::i;:::-;77050:42;;;;;;;;;:::i;29513:149::-;28802:7;28829:12;;;:6;:12;;;;;:22;;;26784:16;26795:4;26784:10;:16::i;:::-;29628:26:::1;29640:4;29646:7;29628:11;:26::i;70612:183::-:0;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;66489:12:::1;::::0;::::1;::::0;::::1;;;66481:53;;;::::0;-1:-1:-1;;;66481:53:0;;22779:2:1;66481:53:0::1;::::0;::::1;22761:21:1::0;22818:2;22798:18;;;22791:30;22857;22837:18;;;22830:58;22905:18;;66481:53:0::1;22577:352:1::0;66481:53:0::1;70690:12:::2;:20:::0;;-1:-1:-1;;70690:20:0::2;::::0;;70766::::2;::::0;70751:13:::2;::::0;70726:61:::2;::::0;::::2;::::0;70705:5:::2;::::0;70726:61:::2;70612:183::o:0;70803:666::-;66489:12;;;;;;;66481:53;;;;-1:-1:-1;;;66481:53:0;;22779:2:1;66481:53:0;;;22761:21:1;22818:2;22798:18;;;22791:30;22857;22837:18;;;22830:58;22905:18;;66481:53:0;22577:352:1;66481:53:0;-1:-1:-1;;;;;;;;;;;26784:16:0::1;26795:4;26784:10;:16::i;:::-;70987:17:::2;67119:1;67100:16;:20;67092:63;;;::::0;-1:-1:-1;;;67092:63:0;;16502:2:1;67092:63:0::2;::::0;::::2;16484:21:1::0;16541:2;16521:18;;;16514:30;16580:32;16560:18;;;16553:60;16630:18;;67092:63:0::2;16300:354:1::0;67092:63:0::2;67208:19;;67188:16;:39;;67166:113;;;::::0;-1:-1:-1;;;67166:113:0;;22066:2:1;67166:113:0::2;::::0;::::2;22048:21:1::0;22105:2;22085:18;;;22078:30;-1:-1:-1;;;22124:18:1;;;22117:54;22188:18;;67166:113:0::2;21864:348:1::0;67166:113:0::2;67360:19;;67339:16;67313:23;;:42;;;;:::i;:::-;67312:67;;67290:173;;;::::0;-1:-1:-1;;;67290:173:0;;18043:2:1;67290:173:0::2;::::0;::::2;18025:21:1::0;18082:2;18062:18;;;18055:30;18121:34;18101:18;;;18094:62;18192:26;18172:18;;;18165:54;18236:19;;67290:173:0::2;17841:420:1::0;67290:173:0::2;71057:13:::3;::::0;71038:17;;67603:19:::3;67625:27;71038:17:::0;71057:13;67625:27:::3;:::i;:::-;67603:49;;67700:9;67685:11;:24;;67825:20;:9;:18;:20::i;:::-;67914:22;:11;:20;:22::i;:::-;67749:206;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67663:318;;;;;-1:-1:-1::0;;;67663:318:0::3;;;;;;;;:::i;:::-;;3277:1:::4;3875:7;;:19;;3867:63;;;::::0;-1:-1:-1;;;3867:63:0;;22419:2:1;3867:63:0::4;::::0;::::4;22401:21:1::0;22458:2;22438:18;;;22431:30;22497:33;22477:18;;;22470:61;22548:18;;3867:63:0::4;22217:355:1::0;3867:63:0::4;3277:1;4008:7;:18:::0;71110:34:::5;71161:17:::0;71147:32:::5;::::0;::::5;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;71147:32:0::5;;71110:69;;71195:8;71190:114;71213:17;71209:1;:21;;;71190:114;;;71275:17;71281:10;71275:5;:17::i;:::-;71252;71270:1;71252:20;;;;;;;;;;:::i;:::-;;::::0;;::::5;::::0;;;;;:40;71232:3;::::5;::::0;::::5;:::i;:::-;;;;71190:114;;;;71361:17;71338:20;;:40;;;;:::i;:::-;71314:20;:65:::0;71417:23:::5;::::0;:43:::5;::::0;71443:17;;71417:43:::5;:::i;:::-;71390:23;:71:::0;-1:-1:-1;;3233:1:0::4;4187:7;:22:::0;-1:-1:-1;;;;;70803:666:0:o;12253:201::-;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12342:22:0;::::1;12334:73;;;::::0;-1:-1:-1;;;12334:73:0;;12186:2:1;12334:73:0::1;::::0;::::1;12168:21:1::0;12225:2;12205:18;;;12198:30;12264:34;12244:18;;;12237:62;-1:-1:-1;;;12315:18:1;;;12308:36;12361:19;;12334:73:0::1;11984:402:1::0;12334:73:0::1;12418:28;12437:8;12418:18;:28::i;63783:95::-:0;;;;;;;:::i;70327:277::-;11417:6;;-1:-1:-1;;;;;11417:6:0;10148:10;11564:23;11556:68;;;;-1:-1:-1;;;11556:68:0;;;;;;;:::i;:::-;70413:12:::1;::::0;::::1;::::0;::::1;;;70412:13;70404:59;;;::::0;-1:-1:-1;;;70404:59:0;;10595:2:1;70404:59:0::1;::::0;::::1;10577:21:1::0;10634:2;10614:18;;;10607:30;10673:34;10653:18;;;10646:62;-1:-1:-1;;;10724:18:1;;;10717:31;10765:19;;70404:59:0::1;10393:397:1::0;70404:59:0::1;70474:12;:19:::0;;-1:-1:-1;;70474:19:0::1;;;::::0;;70504:13:::1;:25:::0;;;70545:51:::1;::::0;70520:9;;70565:15:::1;::::0;70545:51:::1;::::0;70474:19;;70545:51:::1;70327:277:::0;:::o;26892:204::-;26977:4;-1:-1:-1;;;;;;27001:47:0;;-1:-1:-1;;;27001:47:0;;:87;;;27052:36;27076:11;27052:23;:36::i;50368:174::-;50443:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;50443:29:0;-1:-1:-1;;;;;50443:29:0;;;;;;;;:24;;50497:23;50443:24;50497:14;:23::i;:::-;-1:-1:-1;;;;;50488:46:0;;;;;;;;;;;50368:174;;:::o;46516:348::-;46609:4;46311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46311:16:0;46626:73;;;;-1:-1:-1;;;46626:73:0;;15315:2:1;46626:73:0;;;15297:21:1;15354:2;15334:18;;;15327:30;15393:34;15373:18;;;15366:62;-1:-1:-1;;;15444:18:1;;;15437:42;15496:19;;46626:73:0;15113:408:1;46626:73:0;46710:13;46726:23;46741:7;46726:14;:23::i;:::-;46710:39;;46779:5;-1:-1:-1;;;;;46768:16:0;:7;-1:-1:-1;;;;;46768:16:0;;:52;;;-1:-1:-1;;;;;;43608:25:0;;;43584:4;43608:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46788:32;46768:87;;;;46848:7;-1:-1:-1;;;;;46824:31:0;:20;46836:7;46824:11;:20::i;:::-;-1:-1:-1;;;;;46824:31:0;;46768:87;46760:96;46516:348;-1:-1:-1;;;;46516:348:0:o;49625:625::-;49784:4;-1:-1:-1;;;;;49757:31:0;:23;49772:7;49757:14;:23::i;:::-;-1:-1:-1;;;;;49757:31:0;;49749:81;;;;-1:-1:-1;;;49749:81:0;;12593:2:1;49749:81:0;;;12575:21:1;12632:2;12612:18;;;12605:30;12671:34;12651:18;;;12644:62;-1:-1:-1;;;12722:18:1;;;12715:35;12767:19;;49749:81:0;12391:401:1;49749:81:0;-1:-1:-1;;;;;49849:16:0;;49841:65;;;;-1:-1:-1;;;49841:65:0;;13356:2:1;49841:65:0;;;13338:21:1;13395:2;13375:18;;;13368:30;13434:34;13414:18;;;13407:62;-1:-1:-1;;;13485:18:1;;;13478:34;13529:19;;49841:65:0;13154:400:1;49841:65:0;49919:39;49940:4;49946:2;49950:7;49919:20;:39::i;:::-;50023:29;50040:1;50044:7;50023:8;:29::i;:::-;-1:-1:-1;;;;;50065:15:0;;;;;;:9;:15;;;;;:20;;50084:1;;50065:15;:20;;50084:1;;50065:20;:::i;:::-;;;;-1:-1:-1;;;;;;;50096:13:0;;;;;;:9;:13;;;;;:18;;50113:1;;50096:13;:18;;50113:1;;50096:18;:::i;:::-;;;;-1:-1:-1;;50125:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50125:21:0;-1:-1:-1;;;;;50125:21:0;;;;;;;;;50164:27;;50125:16;;50164:27;;;;;;;42561:341;42491:411;;:::o;27639:105::-;27706:30;27717:4;10148:10;27706;:30::i;31670:238::-;31754:22;31762:4;31768:7;31754;:22::i;:::-;31749:152;;31793:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;31793:29:0;;;;;;;;;:36;;-1:-1:-1;;31793:36:0;31825:4;31793:36;;;31876:12;10148:10;;10068:98;31876:12;-1:-1:-1;;;;;31849:40:0;31867:7;-1:-1:-1;;;;;31849:40:0;31861:4;31849:40;;;;;;;;;;31670:238;;:::o;15306:317::-;15421:6;15396:21;:31;;15388:73;;;;-1:-1:-1;;;15388:73:0;;14957:2:1;15388:73:0;;;14939:21:1;14996:2;14976:18;;;14969:30;15035:31;15015:18;;;15008:59;15084:18;;15388:73:0;14755:353:1;15388:73:0;15475:12;15493:9;-1:-1:-1;;;;;15493:14:0;15515:6;15493:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15474:52;;;15545:7;15537:78;;;;-1:-1:-1;;;15537:78:0;;14115:2:1;15537:78:0;;;14097:21:1;14154:2;14134:18;;;14127:30;14193:34;14173:18;;;14166:62;14264:28;14244:18;;;14237:56;14310:19;;15537:78:0;13913:422:1;32040:239:0;32124:22;32132:4;32138:7;32124;:22::i;:::-;32120:152;;;32195:5;32163:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;32163:29:0;;;;;;;;;;:37;;-1:-1:-1;;32163:37:0;;;32220:40;10148:10;;32163:12;;32220:40;;32195:5;32220:40;32040:239;;:::o;7630:723::-;7686:13;7907:10;7903:53;;-1:-1:-1;;7934:10:0;;;;;;;;;;;;-1:-1:-1;;;7934:10:0;;;;;7630:723::o;7903:53::-;7981:5;7966:12;8022:78;8029:9;;8022:78;;8055:8;;;;:::i;:::-;;-1:-1:-1;8078:10:0;;-1:-1:-1;8086:2:0;8078:10;;:::i;:::-;;;8022:78;;;8110:19;8142:6;8132:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8132:17:0;;8110:39;;8160:154;8167:10;;8160:154;;8194:11;8204:1;8194:11;;:::i;:::-;;-1:-1:-1;8263:10:0;8271:2;8263:5;:10;:::i;:::-;8250:24;;:2;:24;:::i;:::-;8237:39;;8220:6;8227;8220:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8220:56:0;;;;;;;;-1:-1:-1;8291:11:0;8300:2;8291:11;;:::i;:::-;;;8160:154;;71812:205;71858:7;71878:21;:9;1083:19;;1101:1;1083:19;;;994:127;71878:21;71910:16;71929:19;:9;964:14;;872:114;71929:19;71910:38;;71959:24;71969:3;71974:8;71959:9;:24::i;12614:191::-;12707:6;;;-1:-1:-1;;;;;12724:17:0;;;-1:-1:-1;;;;;;12724:17:0;;;;;;;12757:40;;12707:6;;;12724:17;12707:6;;12757:40;;12688:16;;12757:40;12677:128;12614:191;:::o;48868:420::-;48928:13;48944:23;48959:7;48944:14;:23::i;:::-;48928:39;;48980:48;49001:5;49016:1;49020:7;48980:20;:48::i;:::-;49069:29;49086:1;49090:7;49069:8;:29::i;:::-;-1:-1:-1;;;;;49111:16:0;;;;;;:9;:16;;;;;:21;;49131:1;;49111:16;:21;;49131:1;;49111:21;:::i;:::-;;;;-1:-1:-1;;49150:16:0;;;;:7;:16;;;;;;49143:23;;-1:-1:-1;;;;;;49143:23:0;;;49184:36;49158:7;;49150:16;-1:-1:-1;;;;;49184:36:0;;;;;49150:16;;49184:36;72689:109:::1;72633:165:::0;:::o;50684:315::-;50839:8;-1:-1:-1;;;;;50830:17:0;:5;-1:-1:-1;;;;;50830:17:0;;;50822:55;;;;-1:-1:-1;;;50822:55:0;;13761:2:1;50822:55:0;;;13743:21:1;13800:2;13780:18;;;13773:30;13839:27;13819:18;;;13812:55;13884:18;;50822:55:0;13559:349:1;50822:55:0;-1:-1:-1;;;;;50888:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;50888:46:0;;;;;;;;;;50950:41;;9574::1;;;50950::0;;9547:18:1;50950:41:0;;;;;;;50684:315;;;:::o;45594:::-;45751:28;45761:4;45767:2;45771:7;45751:9;:28::i;:::-;45798:48;45821:4;45827:2;45831:7;45840:5;45798:22;:48::i;:::-;45790:111;;;;-1:-1:-1;;;45790:111:0;;;;;;;:::i;76350:108::-;76410:13;76443:7;76436:14;;;;;:::i;54589:224::-;54691:4;-1:-1:-1;;;;;;54715:50:0;;-1:-1:-1;;;54715:50:0;;:90;;;54769:36;54793:11;54769:23;:36::i;72054:215::-;72216:45;72243:4;72249:2;72253:7;72216:26;:45::i;28034:505::-;28123:22;28131:4;28137:7;28123;:22::i;:::-;28118:414;;28311:41;28339:7;-1:-1:-1;;;;;28311:41:0;28349:2;28311:19;:41::i;:::-;28425:38;28453:4;28460:2;28425:19;:38::i;:::-;28216:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28216:270:0;;;;;;;;;;-1:-1:-1;;;28162:358:0;;;;;;;:::i;47206:110::-;47282:26;47292:2;47296:7;47282:26;;;;;;;;;;;;:9;:26::i;51564:799::-;51719:4;-1:-1:-1;;;;;51740:13:0;;14340:19;:23;51736:620;;51776:72;;-1:-1:-1;;;51776:72:0;;-1:-1:-1;;;;;51776:36:0;;;;;:72;;10148:10;;51827:4;;51833:7;;51842:5;;51776:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51776:72:0;;;;;;;;-1:-1:-1;;51776:72:0;;;;;;;;;;;;:::i;:::-;;;51772:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52018:13:0;;52014:272;;52061:60;;-1:-1:-1;;;52061:60:0;;;;;;;:::i;52014:272::-;52236:6;52230:13;52221:6;52217:2;52213:15;52206:38;51772:529;-1:-1:-1;;;;;;51899:51:0;-1:-1:-1;;;51899:51:0;;-1:-1:-1;51892:58:0;;51736:620;-1:-1:-1;52340:4:0;51564:799;;;;;;:::o;40463:305::-;40565:4;-1:-1:-1;;;;;;40602:40:0;;-1:-1:-1;;;40602:40:0;;:105;;-1:-1:-1;;;;;;;40659:48:0;;-1:-1:-1;;;40659:48:0;40602:105;:158;;;-1:-1:-1;;;;;;;;;;24260:40:0;;;40724:36;24151:157;56265:589;-1:-1:-1;;;;;56471:18:0;;56467:187;;56506:40;56538:7;57681:10;:17;;57654:24;;;;:15;:24;;;;;:44;;;57709:24;;;;;;;;;;;;57577:164;56506:40;56467:187;;;56576:2;-1:-1:-1;;;;;56568:10:0;:4;-1:-1:-1;;;;;56568:10:0;;56564:90;;56595:47;56628:4;56634:7;56595:32;:47::i;:::-;-1:-1:-1;;;;;56668:16:0;;56664:183;;56701:45;56738:7;56701:36;:45::i;56664:183::-;56774:4;-1:-1:-1;;;;;56768:10:0;:2;-1:-1:-1;;;;;56768:10:0;;56764:83;;56795:40;56823:2;56827:7;56795:27;:40::i;8931:451::-;9006:13;9032:19;9064:10;9068:6;9064:1;:10;:::i;:::-;:14;;9077:1;9064:14;:::i;:::-;9054:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9054:25:0;;9032:47;;-1:-1:-1;;;9090:6:0;9097:1;9090:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;9090:15:0;;;;;;;;;-1:-1:-1;;;9116:6:0;9123:1;9116:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;9116:15:0;;;;;;;;-1:-1:-1;9147:9:0;9159:10;9163:6;9159:1;:10;:::i;:::-;:14;;9172:1;9159:14;:::i;:::-;9147:26;;9142:135;9179:1;9175;:5;9142:135;;;-1:-1:-1;;;9227:5:0;9235:3;9227:11;9214:25;;;;;;;:::i;:::-;;;;9202:6;9209:1;9202:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;9202:37:0;;;;;;;;-1:-1:-1;9264:1:0;9254:11;;;;;9182:3;;;:::i;:::-;;;9142:135;;;-1:-1:-1;9295:10:0;;9287:55;;;;-1:-1:-1;;;9287:55:0;;10234:2:1;9287:55:0;;;10216:21:1;;;10253:18;;;10246:30;10312:34;10292:18;;;10285:62;10364:18;;9287:55:0;10032:356:1;47543:321:0;47673:18;47679:2;47683:7;47673:5;:18::i;:::-;47724:54;47755:1;47759:2;47763:7;47772:5;47724:22;:54::i;:::-;47702:154;;;;-1:-1:-1;;;47702:154:0;;;;;;;:::i;58368:988::-;58634:22;58684:1;58659:22;58676:4;58659:16;:22::i;:::-;:26;;;;:::i;:::-;58696:18;58717:26;;;:17;:26;;;;;;58634:51;;-1:-1:-1;58850:28:0;;;58846:328;;-1:-1:-1;;;;;58917:18:0;;58895:19;58917:18;;;:12;:18;;;;;;;;:34;;;;;;;;;58968:30;;;;;;:44;;;59085:30;;:17;:30;;;;;:43;;;58846:328;-1:-1:-1;59270:26:0;;;;:17;:26;;;;;;;;59263:33;;;-1:-1:-1;;;;;59314:18:0;;;;;:12;:18;;;;;:34;;;;;;;59307:41;58368:988::o;59651:1079::-;59929:10;:17;59904:22;;59929:21;;59949:1;;59929:21;:::i;:::-;59961:18;59982:24;;;:15;:24;;;;;;60355:10;:26;;59904:46;;-1:-1:-1;59982:24:0;;59904:46;;60355:26;;;;;;:::i;:::-;;;;;;;;;60333:48;;60419:11;60394:10;60405;60394:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;60499:28;;;:15;:28;;;;;;;:41;;;60671:24;;;;;60664:31;60706:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;59722:1008;;;59651:1079;:::o;57155:221::-;57240:14;57257:20;57274:2;57257:16;:20::i;:::-;-1:-1:-1;;;;;57288:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;57333:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;57155:221:0:o;48200:439::-;-1:-1:-1;;;;;48280:16:0;;48272:61;;;;-1:-1:-1;;;48272:61:0;;17682:2:1;48272:61:0;;;17664:21:1;;;17701:18;;;17694:30;17760:34;17740:18;;;17733:62;17812:18;;48272:61:0;17480:356:1;48272:61:0;46287:4;46311:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46311:16:0;:30;48344:58;;;;-1:-1:-1;;;48344:58:0;;12999:2:1;48344:58:0;;;12981:21:1;13038:2;13018:18;;;13011:30;13077;13057:18;;;13050:58;13125:18;;48344:58:0;12797:352:1;48344:58:0;48415:45;48444:1;48448:2;48452:7;48415:20;:45::i;:::-;-1:-1:-1;;;;;48473:13:0;;;;;;:9;:13;;;;;:18;;48490:1;;48473:13;:18;;48490:1;;48473:18;:::i;:::-;;;;-1:-1:-1;;48502:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48502:21:0;-1:-1:-1;;;;;48502:21:0;;;;;;;;48541:33;;48502:16;;;48541:33;;48502:16;;48541:33;72689:109:::1;72633:165:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:180::-;3578:6;3631:2;3619:9;3610:7;3606:23;3602:32;3599:52;;;3647:1;3644;3637:12;3599:52;-1:-1:-1;3670:23:1;;3519:180;-1:-1:-1;3519:180:1:o;3704:254::-;3772:6;3780;3833:2;3821:9;3812:7;3808:23;3804:32;3801:52;;;3849:1;3846;3839:12;3801:52;3885:9;3872:23;3862:33;;3914:38;3948:2;3937:9;3933:18;3914:38;:::i;3963:245::-;4021:6;4074:2;4062:9;4053:7;4049:23;4045:32;4042:52;;;4090:1;4087;4080:12;4042:52;4129:9;4116:23;4148:30;4172:5;4148:30;:::i;4213:249::-;4282:6;4335:2;4323:9;4314:7;4310:23;4306:32;4303:52;;;4351:1;4348;4341:12;4303:52;4383:9;4377:16;4402:30;4426:5;4402:30;:::i;4467:450::-;4536:6;4589:2;4577:9;4568:7;4564:23;4560:32;4557:52;;;4605:1;4602;4595:12;4557:52;4645:9;4632:23;4678:18;4670:6;4667:30;4664:50;;;4710:1;4707;4700:12;4664:50;4733:22;;4786:4;4778:13;;4774:27;-1:-1:-1;4764:55:1;;4815:1;4812;4805:12;4764:55;4838:73;4903:7;4898:2;4885:16;4880:2;4876;4872:11;4838:73;:::i;5107:257::-;5148:3;5186:5;5180:12;5213:6;5208:3;5201:19;5229:63;5285:6;5278:4;5273:3;5269:14;5262:4;5255:5;5251:16;5229:63;:::i;:::-;5346:2;5325:15;-1:-1:-1;;5321:29:1;5312:39;;;;5353:4;5308:50;;5107:257;-1:-1:-1;;5107:257:1:o;5369:470::-;5548:3;5586:6;5580:13;5602:53;5648:6;5643:3;5636:4;5628:6;5624:17;5602:53;:::i;:::-;5718:13;;5677:16;;;;5740:57;5718:13;5677:16;5774:4;5762:17;;5740:57;:::i;:::-;5813:20;;5369:470;-1:-1:-1;;;;5369:470:1:o;5844:1099::-;5972:3;6001:1;6034:6;6028:13;6064:3;6086:1;6114:9;6110:2;6106:18;6096:28;;6174:2;6163:9;6159:18;6196;6186:61;;6240:4;6232:6;6228:17;6218:27;;6186:61;6266:2;6314;6306:6;6303:14;6283:18;6280:38;6277:165;;;-1:-1:-1;;;6341:33:1;;6397:4;6394:1;6387:15;6427:4;6348:3;6415:17;6277:165;6458:18;6485:104;;;;6603:1;6598:320;;;;6451:467;;6485:104;-1:-1:-1;;6518:24:1;;6506:37;;6563:16;;;;-1:-1:-1;6485:104:1;;6598:320;23605:1;23598:14;;;23642:4;23629:18;;6693:1;6707:165;6721:6;6718:1;6715:13;6707:165;;;6799:14;;6786:11;;;6779:35;6842:16;;;;6736:10;;6707:165;;;6711:3;;6901:6;6896:3;6892:16;6885:23;;6451:467;-1:-1:-1;6934:3:1;;5844:1099;-1:-1:-1;;;;;;;;5844:1099:1:o;6948:779::-;-1:-1:-1;;;7354:3:1;7347:27;7329:3;7403:6;7397:13;7419:62;7474:6;7469:2;7464:3;7460:12;7453:4;7445:6;7441:17;7419:62;:::i;:::-;-1:-1:-1;;;7540:2:1;7500:16;;;7532:11;;;7525:44;7594:13;;7616:63;7594:13;7665:2;7657:11;;7650:4;7638:17;;7616:63;:::i;:::-;7699:17;7718:2;7695:26;;6948:779;-1:-1:-1;;;;6948:779:1:o;7942:786::-;8353:25;8348:3;8341:38;8323:3;8408:6;8402:13;8424:62;8479:6;8474:2;8469:3;8465:12;8458:4;8450:6;8446:17;8424:62;:::i;:::-;-1:-1:-1;;;8545:2:1;8505:16;;;8537:11;;;8530:40;8595:13;;8617:63;8595:13;8666:2;8658:11;;8651:4;8639:17;;8617:63;:::i;:::-;8700:17;8719:2;8696:26;;7942:786;-1:-1:-1;;;;7942:786:1:o;8941:488::-;-1:-1:-1;;;;;9210:15:1;;;9192:34;;9262:15;;9257:2;9242:18;;9235:43;9309:2;9294:18;;9287:34;;;9357:3;9352:2;9337:18;;9330:31;;;9135:4;;9378:45;;9403:19;;9395:6;9378:45;:::i;:::-;9370:53;8941:488;-1:-1:-1;;;;;;8941:488:1:o;9808:219::-;9957:2;9946:9;9939:21;9920:4;9977:44;10017:2;10006:9;10002:18;9994:6;9977:44;:::i;11565:414::-;11767:2;11749:21;;;11806:2;11786:18;;;11779:30;11845:34;11840:2;11825:18;;11818:62;-1:-1:-1;;;11911:2:1;11896:18;;11889:48;11969:3;11954:19;;11565:414::o;15526:344::-;15728:2;15710:21;;;15767:2;15747:18;;;15740:30;-1:-1:-1;;;15801:2:1;15786:18;;15779:50;15861:2;15846:18;;15526:344::o;18679:356::-;18881:2;18863:21;;;18900:18;;;18893:30;18959:34;18954:2;18939:18;;18932:62;19026:2;19011:18;;18679:356::o;20679:413::-;20881:2;20863:21;;;20920:2;20900:18;;;20893:30;20959:34;20954:2;20939:18;;20932:62;-1:-1:-1;;;21025:2:1;21010:18;;21003:47;21082:3;21067:19;;20679:413::o;23658:128::-;23698:3;23729:1;23725:6;23722:1;23719:13;23716:39;;;23735:18;;:::i;:::-;-1:-1:-1;23771:9:1;;23658:128::o;23791:120::-;23831:1;23857;23847:35;;23862:18;;:::i;:::-;-1:-1:-1;23896:9:1;;23791:120::o;23916:168::-;23956:7;24022:1;24018;24014:6;24010:14;24007:1;24004:21;23999:1;23992:9;23985:17;23981:45;23978:71;;;24029:18;;:::i;:::-;-1:-1:-1;24069:9:1;;23916:168::o;24089:125::-;24129:4;24157:1;24154;24151:8;24148:34;;;24162:18;;:::i;:::-;-1:-1:-1;24199:9:1;;24089:125::o;24219:258::-;24291:1;24301:113;24315:6;24312:1;24309:13;24301:113;;;24391:11;;;24385:18;24372:11;;;24365:39;24337:2;24330:10;24301:113;;;24432:6;24429:1;24426:13;24423:48;;;-1:-1:-1;;24467:1:1;24449:16;;24442:27;24219:258::o;24482:136::-;24521:3;24549:5;24539:39;;24558:18;;:::i;:::-;-1:-1:-1;;;24594:18:1;;24482:136::o;24623:380::-;24702:1;24698:12;;;;24745;;;24766:61;;24820:4;24812:6;24808:17;24798:27;;24766:61;24873:2;24865:6;24862:14;24842:18;24839:38;24836:161;;;24919:10;24914:3;24910:20;24907:1;24900:31;24954:4;24951:1;24944:15;24982:4;24979:1;24972:15;24836:161;;24623:380;;;:::o;25008:135::-;25047:3;-1:-1:-1;;25068:17:1;;25065:43;;;25088:18;;:::i;:::-;-1:-1:-1;25135:1:1;25124:13;;25008:135::o;25148:201::-;25186:3;25214:10;25259:2;25252:5;25248:14;25286:2;25277:7;25274:15;25271:41;;;25292:18;;:::i;:::-;25341:1;25328:15;;25148:201;-1:-1:-1;;;25148:201:1:o;25354:112::-;25386:1;25412;25402:35;;25417:18;;:::i;:::-;-1:-1:-1;25451:9:1;;25354:112::o;25471:127::-;25532:10;25527:3;25523:20;25520:1;25513:31;25563:4;25560:1;25553:15;25587:4;25584:1;25577:15;25603:127;25664:10;25659:3;25655:20;25652:1;25645:31;25695:4;25692:1;25685:15;25719:4;25716:1;25709:15;25735:127;25796:10;25791:3;25787:20;25784:1;25777:31;25827:4;25824:1;25817:15;25851:4;25848:1;25841:15;25867:127;25928:10;25923:3;25919:20;25916:1;25909:31;25959:4;25956:1;25949:15;25983:4;25980:1;25973:15;25999:127;26060:10;26055:3;26051:20;26048:1;26041:31;26091:4;26088:1;26081:15;26115:4;26112:1;26105:15;26131:131;-1:-1:-1;;;;;;26205:32:1;;26195:43;;26185:71;;26252:1;26249;26242:12
Swarm Source
ipfs://ae90fdbf1d4887928d6394afd0571abe0fd92e47a58a1cff19cfc4476acc81b1
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.