ERC-721
Overview
Max Total Supply
5,000 WOLF
Holders
652
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 WOLFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MidniteWolfPack
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; /** * @author The Midnite Team * @title Handles Midnite Wolf minting */ contract MidniteWolfPack is ERC721, Pausable, AccessControl, ERC721Burnable { using Counters for Counters.Counter; // Set up our user roles to be required against logic bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); // Keep a track of our token count Counters.Counter private _tokenIdCounter; // Set up events to be fired event WolfMinted(address to, uint tokenId); // Set our base mint price to 0.025eth in wei uint mintPrice = 25000000000000000; // Set our token supply limit uint TOTAL_SUPPLY = 5000; // Set our limit for per-tx tokens in public sale uint MAX_TOKENS_PER_TX = 10; // Set our base URI for metadata referencing string baseURI; /** * @dev Initialises our MidniteWolfPack contract. */ constructor() ERC721("MidniteWolfPack", "WOLF") { // Set up our user roles against our message sender _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); } /** * @dev Used in calculation of our token metadata URI * * @return string Base URI of our token metadata */ function _baseURI() internal view override returns (string memory) { return baseURI; } /** * @dev Allows our PAUSER role to prevent minting process */ function pause() public onlyRole(PAUSER_ROLE) { _pause(); } /** * @dev Allows our PAUSER role to reactivate minting process */ function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } /** * @dev Allows an address to mint a token. * * @param to Address of minter. Will be recipient of token. * @param amount Number of tokens requested to be minted. * * Emits a {WolfMinted} event. */ function safeMint(address to, uint amount) public payable { uint tokenId = _tokenIdCounter.current(); // We only want 5000 tokens to be minted in total require(tokenId < TOTAL_SUPPLY, "Mint has ended."); // Validate the supply available for request require(amount <= MAX_TOKENS_PER_TX, "Too many tokens requested."); require((tokenId + amount) <= TOTAL_SUPPLY, "Too many tokens requested."); // Validate that our minting price is correct require(msg.value >= (mintPrice * amount), "Incorrect amount sent."); // Iterate through our requested amount to mint tokens for (uint i; i < amount;) { // Increment our counter to preserve tokenId _tokenIdCounter.increment(); // Get our current token position and mint uint mintTokenId = _tokenIdCounter.current() - 1; _mint(to, mintTokenId); emit WolfMinted(to, mintTokenId); unchecked { ++i; } } } /** * @dev Allow admin to mint tokens to be held internally by the team. * * @param to Address of minter. Will be recipient of token. * @param amount Number of tokens requested to be minted. * * Emits a {WolfMinted} event. */ function internalMint(address to, uint amount) public onlyRole(DEFAULT_ADMIN_ROLE) { // Iterate through our requested amount to mint tokens for (uint i; i < amount;) { // Increment our counter to preserve tokenId _tokenIdCounter.increment(); // Get our current token position and mint uint mintTokenId = _tokenIdCounter.current() - 1; _mint(to, mintTokenId); emit WolfMinted(to, mintTokenId); unchecked { ++i; } } } /** * @dev Allow admin to update the base URI allowing for reveal. * * @param _newBaseURI New base URI to be updated to. */ function setBaseURI(string memory _newBaseURI) public onlyRole(DEFAULT_ADMIN_ROLE) { baseURI = _newBaseURI; } /** * @dev Allow admin to update the mint price. * * @param _newMintPrice New mint price to be updated to. */ function setMintPrice(uint _newMintPrice) public onlyRole(DEFAULT_ADMIN_ROLE) { mintPrice = _newMintPrice; } /** * @dev Hook that is called before any token transfer. This includes minting and burning. * * @param from Address token is being transferred from. * @param to Address token is being transferred to. * @param tokenId Unique ID of the token being transferred. */ function _beforeTokenTransfer(address from, address to, uint tokenId) internal whenNotPaused override(ERC721) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev Allows that the beneficiary can receive deposited ETH. * * @param _withdrawal WEI amount to be withdrawn. * * @return bool Returns true if withdrawal was successful. */ function withdraw(uint _withdrawal) external returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender)); (bool success, ) = msg.sender.call{value: _withdrawal}(""); require(success, "Unable to process withdrawal."); return true; } /** * @dev Fallback function executed on a call if no other functions matches. */ fallback() external payable { revert(); } /** * @dev Fallback function executed on a payable call if no other functions matches. */ receive() external payable { revert(); } /** * @dev Calculates the number of tokens minted on contract. * * @return uint The current number of tokens minted. */ function totalMinted() public view returns (uint) { return _tokenIdCounter.current(); } /** * @dev Exposes the total number of tokens available for supply. * * @return uint The total token supply. */ function totalSupply() public view returns (uint) { return TOTAL_SUPPLY; } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _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 || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @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, _msgSender()); _; } /** * @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 `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()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"WolfMinted","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawal","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526658d15e17628000600955611388600a55600a600b553480156200002757600080fd5b506040518060400160405280600f81526020017f4d69646e697465576f6c665061636b00000000000000000000000000000000008152506040518060400160405280600481526020017f574f4c46000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ac92919062000295565b508060019080519060200190620000c592919062000295565b5050506000600660006101000a81548160ff021916908315150217905550620000f86000801b336200013060201b60201c565b6200012a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200013060201b60201c565b620003aa565b6200014282826200022260201b60201c565b6200021e5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001c36200028d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002a39062000345565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b600060028204905060018216806200035e57607f821691505b602082108114156200037557620003746200037b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61429380620003ba6000396000f3fe6080604052600436106101dc5760003560e01c80635c975abb11610102578063a22cb46511610095578063d547741f11610064578063d547741f146106b9578063e63ab1e9146106e2578063e985e9c51461070d578063f4a0a5281461074a576101e6565b8063a22cb465146105ff578063a2309ff814610628578063b88d4fde14610653578063c87b56dd1461067c576101e6565b806391d14854116100d157806391d148541461055057806395d89b411461058d578063a1448194146105b8578063a217fddf146105d4576101e6565b80635c975abb146104945780636352211e146104bf57806370a08231146104fc5780638456cb5914610539576101e6565b80632e1a7d4d1161017a5780633f4ba83a116101495780633f4ba83a1461040257806342842e0e1461041957806342966c681461044257806355f804b31461046b576101e6565b80632e1a7d4d1461034a5780632f2ff15d1461038757806335001a1a146103b057806336568abe146103d9576101e6565b8063095ea7b3116101b6578063095ea7b31461029057806318160ddd146102b957806323b872dd146102e4578063248a9ca31461030d576101e6565b806301ffc9a7146101eb57806306fdde0314610228578063081812fc14610253576101e6565b366101e657600080fd5b600080fd5b3480156101f757600080fd5b50610212600480360381019061020d9190612dfb565b610773565b60405161021f9190613427565b60405180910390f35b34801561023457600080fd5b5061023d610785565b60405161024a919061345d565b60405180910390f35b34801561025f57600080fd5b5061027a60048036038101906102759190612e8e565b610817565b6040516102879190613397565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612d5a565b61089c565b005b3480156102c557600080fd5b506102ce6109b4565b6040516102db919061375f565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612c54565b6109be565b005b34801561031957600080fd5b50610334600480360381019061032f9190612d96565b610a1e565b6040516103419190613442565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612e8e565b610a3e565b60405161037e9190613427565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190612dbf565b610b0c565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612d5a565b610b35565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612dbf565b610bce565b005b34801561040e57600080fd5b50610417610c51565b005b34801561042557600080fd5b50610440600480360381019061043b9190612c54565b610c8e565b005b34801561044e57600080fd5b5061046960048036038101906104649190612e8e565b610cae565b005b34801561047757600080fd5b50610492600480360381019061048d9190612e4d565b610d0a565b005b3480156104a057600080fd5b506104a9610d3a565b6040516104b69190613427565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612e8e565b610d51565b6040516104f39190613397565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612bef565b610e03565b604051610530919061375f565b60405180910390f35b34801561054557600080fd5b5061054e610ebb565b005b34801561055c57600080fd5b5061057760048036038101906105729190612dbf565b610ef8565b6040516105849190613427565b60405180910390f35b34801561059957600080fd5b506105a2610f63565b6040516105af919061345d565b60405180910390f35b6105d260048036038101906105cd9190612d5a565b610ff5565b005b3480156105e057600080fd5b506105e96111b0565b6040516105f69190613442565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612d1e565b6111b7565b005b34801561063457600080fd5b5061063d6111cd565b60405161064a919061375f565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612ca3565b6111de565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612e8e565b611240565b6040516106b0919061345d565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612dbf565b6112e7565b005b3480156106ee57600080fd5b506106f7611310565b6040516107049190613442565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190612c18565b611334565b6040516107419190613427565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190612e8e565b6113c8565b005b600061077e826113e8565b9050919050565b60606000805461079490613a4e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090613a4e565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b600061082282611462565b610861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108589061363f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a782610d51565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f9061369f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109376114ce565b73ffffffffffffffffffffffffffffffffffffffff1614806109665750610965816109606114ce565b611334565b5b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906135bf565b60405180910390fd5b6109af83836114d6565b505050565b6000600a54905090565b6109cf6109c96114ce565b8261158f565b610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906136bf565b60405180910390fd5b610a1983838361166d565b505050565b600060076000838152602001908152602001600020600101549050919050565b6000610a4d6000801b33610ef8565b610a5657600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff1683604051610a7c90613348565b60006040518083038185875af1925050503d8060008114610ab9576040519150601f19603f3d011682016040523d82523d6000602084013e610abe565b606091505b5050905080610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906136df565b60405180910390fd5b6001915050919050565b610b1582610a1e565b610b2681610b216114ce565b6118d4565b610b308383611971565b505050565b6000801b610b4a81610b456114ce565b6118d4565b60005b82811015610bc857610b5f6008611a52565b60006001610b6d6008611a68565b610b779190613930565b9050610b838582611a76565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898582604051610bb49291906133fe565b60405180910390a181600101915050610b4d565b50505050565b610bd66114ce565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a9061373f565b60405180910390fd5b610c4d8282611c50565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610c8381610c7e6114ce565b6118d4565b610c8b611d32565b50565b610ca9838383604051806020016040528060008152506111de565b505050565b610cbf610cb96114ce565b8261158f565b610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf5906136ff565b60405180910390fd5b610d0781611dd4565b50565b6000801b610d1f81610d1a6114ce565b6118d4565b81600c9080519060200190610d359291906129fe565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df1906135ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906135df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610eed81610ee86114ce565b6118d4565b610ef5611ef1565b50565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610f7290613a4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e90613a4e565b8015610feb5780601f10610fc057610100808354040283529160200191610feb565b820191906000526020600020905b815481529060010190602001808311610fce57829003601f168201915b5050505050905090565b60006110016008611a68565b9050600a548110611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061371f565b60405180910390fd5b600b5482111561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110839061357f565b60405180910390fd5b600a54828261109b919061384f565b11156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d39061357f565b60405180910390fd5b816009546110ea91906138d6565b34101561112c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111239061365f565b60405180910390fd5b60005b828110156111aa576111416008611a52565b6000600161114f6008611a68565b6111599190613930565b90506111658582611a76565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea308985826040516111969291906133fe565b60405180910390a18160010191505061112f565b50505050565b6000801b81565b6111c96111c26114ce565b8383611f94565b5050565b60006111d96008611a68565b905090565b6111ef6111e96114ce565b8361158f565b61122e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611225906136bf565b60405180910390fd5b61123a84848484612101565b50505050565b606061124b82611462565b61128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061367f565b60405180910390fd5b600061129461215d565b905060008151116112b457604051806020016040528060008152506112df565b806112be846121ef565b6040516020016112cf929190613324565b6040516020818303038152906040525b915050919050565b6112f082610a1e565b611301816112fc6114ce565b6118d4565b61130b8383611c50565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b6113dd816113d86114ce565b6118d4565b816009819055505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061145b575061145a8261239c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154983610d51565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061159a82611462565b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061355f565b60405180910390fd5b60006115e483610d51565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061165357508373ffffffffffffffffffffffffffffffffffffffff1661163b84610817565b73ffffffffffffffffffffffffffffffffffffffff16145b8061166457506116638185611334565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168d82610d51565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906134df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061351f565b60405180910390fd5b61175e83838361247e565b6117696000826114d6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b99190613930565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611810919061384f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118cf8383836124d6565b505050565b6118de8282610ef8565b61196d576119038173ffffffffffffffffffffffffffffffffffffffff1660146124db565b6119118360001c60206124db565b60405160200161192292919061335d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611964919061345d565b60405180910390fd5b5050565b61197b8282610ef8565b611a4e5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506119f36114ce565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add9061361f565b60405180910390fd5b611aef81611462565b15611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b26906134ff565b60405180910390fd5b611b3b6000838361247e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8b919061384f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c4c600083836124d6565b5050565b611c5a8282610ef8565b15611d2e5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cd36114ce565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d3a610d3a565b611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d709061349f565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611dbd6114ce565b604051611dca9190613397565b60405180910390a1565b6000611ddf82610d51565b9050611ded8160008461247e565b611df86000836114d6565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e489190613930565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eed816000846124d6565b5050565b611ef9610d3a565b15611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f309061359f565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f7d6114ce565b604051611f8a9190613397565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061353f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120f49190613427565b60405180910390a3505050565b61210c84848461166d565b612118848484846127d5565b612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906134bf565b60405180910390fd5b50505050565b6060600c805461216c90613a4e565b80601f016020809104026020016040519081016040528092919081815260200182805461219890613a4e565b80156121e55780601f106121ba576101008083540402835291602001916121e5565b820191906000526020600020905b8154815290600101906020018083116121c857829003601f168201915b5050505050905090565b60606000821415612237576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612397565b600082905060005b6000821461226957808061225290613ab1565b915050600a8261226291906138a5565b915061223f565b60008167ffffffffffffffff8111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd5781602001600182028036833780820191505090505b5090505b60008514612390576001826122f69190613930565b9150600a856123059190613afa565b6030612311919061384f565b60f81b81838151811061234d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238991906138a5565b94506122e1565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061246757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061247757506124768261296c565b5b9050919050565b612486610d3a565b156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd9061359f565b60405180910390fd5b6124d18383836129d6565b505050565b505050565b6060600060028360026124ee91906138d6565b6124f8919061384f565b67ffffffffffffffff811115612537577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125695781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106125c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612651577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261269191906138d6565b61269b919061384f565b90505b6001811115612787577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612703577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612740577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061278090613a24565b905061269e565b50600084146127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c29061347f565b60405180910390fd5b8091505092915050565b60006127f68473ffffffffffffffffffffffffffffffffffffffff166129db565b1561295f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261281f6114ce565b8786866040518563ffffffff1660e01b815260040161284194939291906133b2565b602060405180830381600087803b15801561285b57600080fd5b505af192505050801561288c57506040513d601f19601f820116820180604052508101906128899190612e24565b60015b61290f573d80600081146128bc576040519150601f19603f3d011682016040523d82523d6000602084013e6128c1565b606091505b50600081511415612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe906134bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612964565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a0a90613a4e565b90600052602060002090601f016020900481019282612a2c5760008555612a73565b82601f10612a4557805160ff1916838001178555612a73565b82800160010185558215612a73579182015b82811115612a72578251825591602001919060010190612a57565b5b509050612a809190612a84565b5090565b5b80821115612a9d576000816000905550600101612a85565b5090565b6000612ab4612aaf8461379f565b61377a565b905082815260208101848484011115612acc57600080fd5b612ad78482856139e2565b509392505050565b6000612af2612aed846137d0565b61377a565b905082815260208101848484011115612b0a57600080fd5b612b158482856139e2565b509392505050565b600081359050612b2c816141ea565b92915050565b600081359050612b4181614201565b92915050565b600081359050612b5681614218565b92915050565b600081359050612b6b8161422f565b92915050565b600081519050612b808161422f565b92915050565b600082601f830112612b9757600080fd5b8135612ba7848260208601612aa1565b91505092915050565b600082601f830112612bc157600080fd5b8135612bd1848260208601612adf565b91505092915050565b600081359050612be981614246565b92915050565b600060208284031215612c0157600080fd5b6000612c0f84828501612b1d565b91505092915050565b60008060408385031215612c2b57600080fd5b6000612c3985828601612b1d565b9250506020612c4a85828601612b1d565b9150509250929050565b600080600060608486031215612c6957600080fd5b6000612c7786828701612b1d565b9350506020612c8886828701612b1d565b9250506040612c9986828701612bda565b9150509250925092565b60008060008060808587031215612cb957600080fd5b6000612cc787828801612b1d565b9450506020612cd887828801612b1d565b9350506040612ce987828801612bda565b925050606085013567ffffffffffffffff811115612d0657600080fd5b612d1287828801612b86565b91505092959194509250565b60008060408385031215612d3157600080fd5b6000612d3f85828601612b1d565b9250506020612d5085828601612b32565b9150509250929050565b60008060408385031215612d6d57600080fd5b6000612d7b85828601612b1d565b9250506020612d8c85828601612bda565b9150509250929050565b600060208284031215612da857600080fd5b6000612db684828501612b47565b91505092915050565b60008060408385031215612dd257600080fd5b6000612de085828601612b47565b9250506020612df185828601612b1d565b9150509250929050565b600060208284031215612e0d57600080fd5b6000612e1b84828501612b5c565b91505092915050565b600060208284031215612e3657600080fd5b6000612e4484828501612b71565b91505092915050565b600060208284031215612e5f57600080fd5b600082013567ffffffffffffffff811115612e7957600080fd5b612e8584828501612bb0565b91505092915050565b600060208284031215612ea057600080fd5b6000612eae84828501612bda565b91505092915050565b612ec081613964565b82525050565b612ecf81613976565b82525050565b612ede81613982565b82525050565b6000612eef82613801565b612ef98185613817565b9350612f098185602086016139f1565b612f1281613be7565b840191505092915050565b6000612f288261380c565b612f328185613833565b9350612f428185602086016139f1565b612f4b81613be7565b840191505092915050565b6000612f618261380c565b612f6b8185613844565b9350612f7b8185602086016139f1565b80840191505092915050565b6000612f94602083613833565b9150612f9f82613bf8565b602082019050919050565b6000612fb7601483613833565b9150612fc282613c21565b602082019050919050565b6000612fda603283613833565b9150612fe582613c4a565b604082019050919050565b6000612ffd602583613833565b915061300882613c99565b604082019050919050565b6000613020601c83613833565b915061302b82613ce8565b602082019050919050565b6000613043602483613833565b915061304e82613d11565b604082019050919050565b6000613066601983613833565b915061307182613d60565b602082019050919050565b6000613089602c83613833565b915061309482613d89565b604082019050919050565b60006130ac601a83613833565b91506130b782613dd8565b602082019050919050565b60006130cf601083613833565b91506130da82613e01565b602082019050919050565b60006130f2603883613833565b91506130fd82613e2a565b604082019050919050565b6000613115602a83613833565b915061312082613e79565b604082019050919050565b6000613138602983613833565b915061314382613ec8565b604082019050919050565b600061315b602083613833565b915061316682613f17565b602082019050919050565b600061317e602c83613833565b915061318982613f40565b604082019050919050565b60006131a1601683613833565b91506131ac82613f8f565b602082019050919050565b60006131c4602f83613833565b91506131cf82613fb8565b604082019050919050565b60006131e7602183613833565b91506131f282614007565b604082019050919050565b600061320a600083613828565b915061321582614056565b600082019050919050565b600061322d603183613833565b915061323882614059565b604082019050919050565b6000613250601783613844565b915061325b826140a8565b601782019050919050565b6000613273601d83613833565b915061327e826140d1565b602082019050919050565b6000613296603083613833565b91506132a1826140fa565b604082019050919050565b60006132b9600f83613833565b91506132c482614149565b602082019050919050565b60006132dc601183613844565b91506132e782614172565b601182019050919050565b60006132ff602f83613833565b915061330a8261419b565b604082019050919050565b61331e816139d8565b82525050565b60006133308285612f56565b915061333c8284612f56565b91508190509392505050565b6000613353826131fd565b9150819050919050565b600061336882613243565b91506133748285612f56565b915061337f826132cf565b915061338b8284612f56565b91508190509392505050565b60006020820190506133ac6000830184612eb7565b92915050565b60006080820190506133c76000830187612eb7565b6133d46020830186612eb7565b6133e16040830185613315565b81810360608301526133f38184612ee4565b905095945050505050565b60006040820190506134136000830185612eb7565b6134206020830184613315565b9392505050565b600060208201905061343c6000830184612ec6565b92915050565b60006020820190506134576000830184612ed5565b92915050565b600060208201905081810360008301526134778184612f1d565b905092915050565b6000602082019050818103600083015261349881612f87565b9050919050565b600060208201905081810360008301526134b881612faa565b9050919050565b600060208201905081810360008301526134d881612fcd565b9050919050565b600060208201905081810360008301526134f881612ff0565b9050919050565b6000602082019050818103600083015261351881613013565b9050919050565b6000602082019050818103600083015261353881613036565b9050919050565b6000602082019050818103600083015261355881613059565b9050919050565b600060208201905081810360008301526135788161307c565b9050919050565b600060208201905081810360008301526135988161309f565b9050919050565b600060208201905081810360008301526135b8816130c2565b9050919050565b600060208201905081810360008301526135d8816130e5565b9050919050565b600060208201905081810360008301526135f881613108565b9050919050565b600060208201905081810360008301526136188161312b565b9050919050565b600060208201905081810360008301526136388161314e565b9050919050565b6000602082019050818103600083015261365881613171565b9050919050565b6000602082019050818103600083015261367881613194565b9050919050565b60006020820190508181036000830152613698816131b7565b9050919050565b600060208201905081810360008301526136b8816131da565b9050919050565b600060208201905081810360008301526136d881613220565b9050919050565b600060208201905081810360008301526136f881613266565b9050919050565b6000602082019050818103600083015261371881613289565b9050919050565b60006020820190508181036000830152613738816132ac565b9050919050565b60006020820190508181036000830152613758816132f2565b9050919050565b60006020820190506137746000830184613315565b92915050565b6000613784613795565b90506137908282613a80565b919050565b6000604051905090565b600067ffffffffffffffff8211156137ba576137b9613bb8565b5b6137c382613be7565b9050602081019050919050565b600067ffffffffffffffff8211156137eb576137ea613bb8565b5b6137f482613be7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061385a826139d8565b9150613865836139d8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561389a57613899613b2b565b5b828201905092915050565b60006138b0826139d8565b91506138bb836139d8565b9250826138cb576138ca613b5a565b5b828204905092915050565b60006138e1826139d8565b91506138ec836139d8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392557613924613b2b565b5b828202905092915050565b600061393b826139d8565b9150613946836139d8565b92508282101561395957613958613b2b565b5b828203905092915050565b600061396f826139b8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a0f5780820151818401526020810190506139f4565b83811115613a1e576000848401525b50505050565b6000613a2f826139d8565b91506000821415613a4357613a42613b2b565b5b600182039050919050565b60006002820490506001821680613a6657607f821691505b60208210811415613a7a57613a79613b89565b5b50919050565b613a8982613be7565b810181811067ffffffffffffffff82111715613aa857613aa7613bb8565b5b80604052505050565b6000613abc826139d8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613aef57613aee613b2b565b5b600182019050919050565b6000613b05826139d8565b9150613b10836139d8565b925082613b2057613b1f613b5a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920746f6b656e73207265717565737465642e000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e742073656e742e00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f556e61626c6520746f2070726f63657373207769746864726177616c2e000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d696e742068617320656e6465642e0000000000000000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6141f381613964565b81146141fe57600080fd5b50565b61420a81613976565b811461421557600080fd5b50565b61422181613982565b811461422c57600080fd5b50565b6142388161398c565b811461424357600080fd5b50565b61424f816139d8565b811461425a57600080fd5b5056fea26469706673582212204b241f50a69bfd0bf88ff0adad51e10f6ea485635a4840241c5e02b2b336ccc964736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c80635c975abb11610102578063a22cb46511610095578063d547741f11610064578063d547741f146106b9578063e63ab1e9146106e2578063e985e9c51461070d578063f4a0a5281461074a576101e6565b8063a22cb465146105ff578063a2309ff814610628578063b88d4fde14610653578063c87b56dd1461067c576101e6565b806391d14854116100d157806391d148541461055057806395d89b411461058d578063a1448194146105b8578063a217fddf146105d4576101e6565b80635c975abb146104945780636352211e146104bf57806370a08231146104fc5780638456cb5914610539576101e6565b80632e1a7d4d1161017a5780633f4ba83a116101495780633f4ba83a1461040257806342842e0e1461041957806342966c681461044257806355f804b31461046b576101e6565b80632e1a7d4d1461034a5780632f2ff15d1461038757806335001a1a146103b057806336568abe146103d9576101e6565b8063095ea7b3116101b6578063095ea7b31461029057806318160ddd146102b957806323b872dd146102e4578063248a9ca31461030d576101e6565b806301ffc9a7146101eb57806306fdde0314610228578063081812fc14610253576101e6565b366101e657600080fd5b600080fd5b3480156101f757600080fd5b50610212600480360381019061020d9190612dfb565b610773565b60405161021f9190613427565b60405180910390f35b34801561023457600080fd5b5061023d610785565b60405161024a919061345d565b60405180910390f35b34801561025f57600080fd5b5061027a60048036038101906102759190612e8e565b610817565b6040516102879190613397565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b29190612d5a565b61089c565b005b3480156102c557600080fd5b506102ce6109b4565b6040516102db919061375f565b60405180910390f35b3480156102f057600080fd5b5061030b60048036038101906103069190612c54565b6109be565b005b34801561031957600080fd5b50610334600480360381019061032f9190612d96565b610a1e565b6040516103419190613442565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612e8e565b610a3e565b60405161037e9190613427565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a99190612dbf565b610b0c565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612d5a565b610b35565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190612dbf565b610bce565b005b34801561040e57600080fd5b50610417610c51565b005b34801561042557600080fd5b50610440600480360381019061043b9190612c54565b610c8e565b005b34801561044e57600080fd5b5061046960048036038101906104649190612e8e565b610cae565b005b34801561047757600080fd5b50610492600480360381019061048d9190612e4d565b610d0a565b005b3480156104a057600080fd5b506104a9610d3a565b6040516104b69190613427565b60405180910390f35b3480156104cb57600080fd5b506104e660048036038101906104e19190612e8e565b610d51565b6040516104f39190613397565b60405180910390f35b34801561050857600080fd5b50610523600480360381019061051e9190612bef565b610e03565b604051610530919061375f565b60405180910390f35b34801561054557600080fd5b5061054e610ebb565b005b34801561055c57600080fd5b5061057760048036038101906105729190612dbf565b610ef8565b6040516105849190613427565b60405180910390f35b34801561059957600080fd5b506105a2610f63565b6040516105af919061345d565b60405180910390f35b6105d260048036038101906105cd9190612d5a565b610ff5565b005b3480156105e057600080fd5b506105e96111b0565b6040516105f69190613442565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612d1e565b6111b7565b005b34801561063457600080fd5b5061063d6111cd565b60405161064a919061375f565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612ca3565b6111de565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612e8e565b611240565b6040516106b0919061345d565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612dbf565b6112e7565b005b3480156106ee57600080fd5b506106f7611310565b6040516107049190613442565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190612c18565b611334565b6040516107419190613427565b60405180910390f35b34801561075657600080fd5b50610771600480360381019061076c9190612e8e565b6113c8565b005b600061077e826113e8565b9050919050565b60606000805461079490613a4e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090613a4e565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b600061082282611462565b610861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108589061363f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a782610d51565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090f9061369f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109376114ce565b73ffffffffffffffffffffffffffffffffffffffff1614806109665750610965816109606114ce565b611334565b5b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906135bf565b60405180910390fd5b6109af83836114d6565b505050565b6000600a54905090565b6109cf6109c96114ce565b8261158f565b610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a05906136bf565b60405180910390fd5b610a1983838361166d565b505050565b600060076000838152602001908152602001600020600101549050919050565b6000610a4d6000801b33610ef8565b610a5657600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff1683604051610a7c90613348565b60006040518083038185875af1925050503d8060008114610ab9576040519150601f19603f3d011682016040523d82523d6000602084013e610abe565b606091505b5050905080610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906136df565b60405180910390fd5b6001915050919050565b610b1582610a1e565b610b2681610b216114ce565b6118d4565b610b308383611971565b505050565b6000801b610b4a81610b456114ce565b6118d4565b60005b82811015610bc857610b5f6008611a52565b60006001610b6d6008611a68565b610b779190613930565b9050610b838582611a76565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898582604051610bb49291906133fe565b60405180910390a181600101915050610b4d565b50505050565b610bd66114ce565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a9061373f565b60405180910390fd5b610c4d8282611c50565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610c8381610c7e6114ce565b6118d4565b610c8b611d32565b50565b610ca9838383604051806020016040528060008152506111de565b505050565b610cbf610cb96114ce565b8261158f565b610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf5906136ff565b60405180910390fd5b610d0781611dd4565b50565b6000801b610d1f81610d1a6114ce565b6118d4565b81600c9080519060200190610d359291906129fe565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df1906135ff565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b906135df565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610eed81610ee86114ce565b6118d4565b610ef5611ef1565b50565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610f7290613a4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9e90613a4e565b8015610feb5780601f10610fc057610100808354040283529160200191610feb565b820191906000526020600020905b815481529060010190602001808311610fce57829003601f168201915b5050505050905090565b60006110016008611a68565b9050600a548110611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e9061371f565b60405180910390fd5b600b5482111561108c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110839061357f565b60405180910390fd5b600a54828261109b919061384f565b11156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d39061357f565b60405180910390fd5b816009546110ea91906138d6565b34101561112c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111239061365f565b60405180910390fd5b60005b828110156111aa576111416008611a52565b6000600161114f6008611a68565b6111599190613930565b90506111658582611a76565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea308985826040516111969291906133fe565b60405180910390a18160010191505061112f565b50505050565b6000801b81565b6111c96111c26114ce565b8383611f94565b5050565b60006111d96008611a68565b905090565b6111ef6111e96114ce565b8361158f565b61122e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611225906136bf565b60405180910390fd5b61123a84848484612101565b50505050565b606061124b82611462565b61128a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112819061367f565b60405180910390fd5b600061129461215d565b905060008151116112b457604051806020016040528060008152506112df565b806112be846121ef565b6040516020016112cf929190613324565b6040516020818303038152906040525b915050919050565b6112f082610a1e565b611301816112fc6114ce565b6118d4565b61130b8383611c50565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b6113dd816113d86114ce565b6118d4565b816009819055505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061145b575061145a8261239c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661154983610d51565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061159a82611462565b6115d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d09061355f565b60405180910390fd5b60006115e483610d51565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061165357508373ffffffffffffffffffffffffffffffffffffffff1661163b84610817565b73ffffffffffffffffffffffffffffffffffffffff16145b8061166457506116638185611334565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168d82610d51565b73ffffffffffffffffffffffffffffffffffffffff16146116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da906134df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061351f565b60405180910390fd5b61175e83838361247e565b6117696000826114d6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117b99190613930565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611810919061384f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118cf8383836124d6565b505050565b6118de8282610ef8565b61196d576119038173ffffffffffffffffffffffffffffffffffffffff1660146124db565b6119118360001c60206124db565b60405160200161192292919061335d565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611964919061345d565b60405180910390fd5b5050565b61197b8282610ef8565b611a4e5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506119f36114ce565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611add9061361f565b60405180910390fd5b611aef81611462565b15611b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b26906134ff565b60405180910390fd5b611b3b6000838361247e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8b919061384f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c4c600083836124d6565b5050565b611c5a8282610ef8565b15611d2e5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611cd36114ce565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611d3a610d3a565b611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d709061349f565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611dbd6114ce565b604051611dca9190613397565b60405180910390a1565b6000611ddf82610d51565b9050611ded8160008461247e565b611df86000836114d6565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e489190613930565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eed816000846124d6565b5050565b611ef9610d3a565b15611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f309061359f565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f7d6114ce565b604051611f8a9190613397565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffa9061353f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120f49190613427565b60405180910390a3505050565b61210c84848461166d565b612118848484846127d5565b612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e906134bf565b60405180910390fd5b50505050565b6060600c805461216c90613a4e565b80601f016020809104026020016040519081016040528092919081815260200182805461219890613a4e565b80156121e55780601f106121ba576101008083540402835291602001916121e5565b820191906000526020600020905b8154815290600101906020018083116121c857829003601f168201915b5050505050905090565b60606000821415612237576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612397565b600082905060005b6000821461226957808061225290613ab1565b915050600a8261226291906138a5565b915061223f565b60008167ffffffffffffffff8111156122ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122dd5781602001600182028036833780820191505090505b5090505b60008514612390576001826122f69190613930565b9150600a856123059190613afa565b6030612311919061384f565b60f81b81838151811061234d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561238991906138a5565b94506122e1565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061246757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061247757506124768261296c565b5b9050919050565b612486610d3a565b156124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd9061359f565b60405180910390fd5b6124d18383836129d6565b505050565b505050565b6060600060028360026124ee91906138d6565b6124f8919061384f565b67ffffffffffffffff811115612537577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125695781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106125c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612651577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261269191906138d6565b61269b919061384f565b90505b6001811115612787577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612703577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612740577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061278090613a24565b905061269e565b50600084146127cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c29061347f565b60405180910390fd5b8091505092915050565b60006127f68473ffffffffffffffffffffffffffffffffffffffff166129db565b1561295f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261281f6114ce565b8786866040518563ffffffff1660e01b815260040161284194939291906133b2565b602060405180830381600087803b15801561285b57600080fd5b505af192505050801561288c57506040513d601f19601f820116820180604052508101906128899190612e24565b60015b61290f573d80600081146128bc576040519150601f19603f3d011682016040523d82523d6000602084013e6128c1565b606091505b50600081511415612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe906134bf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612964565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a0a90613a4e565b90600052602060002090601f016020900481019282612a2c5760008555612a73565b82601f10612a4557805160ff1916838001178555612a73565b82800160010185558215612a73579182015b82811115612a72578251825591602001919060010190612a57565b5b509050612a809190612a84565b5090565b5b80821115612a9d576000816000905550600101612a85565b5090565b6000612ab4612aaf8461379f565b61377a565b905082815260208101848484011115612acc57600080fd5b612ad78482856139e2565b509392505050565b6000612af2612aed846137d0565b61377a565b905082815260208101848484011115612b0a57600080fd5b612b158482856139e2565b509392505050565b600081359050612b2c816141ea565b92915050565b600081359050612b4181614201565b92915050565b600081359050612b5681614218565b92915050565b600081359050612b6b8161422f565b92915050565b600081519050612b808161422f565b92915050565b600082601f830112612b9757600080fd5b8135612ba7848260208601612aa1565b91505092915050565b600082601f830112612bc157600080fd5b8135612bd1848260208601612adf565b91505092915050565b600081359050612be981614246565b92915050565b600060208284031215612c0157600080fd5b6000612c0f84828501612b1d565b91505092915050565b60008060408385031215612c2b57600080fd5b6000612c3985828601612b1d565b9250506020612c4a85828601612b1d565b9150509250929050565b600080600060608486031215612c6957600080fd5b6000612c7786828701612b1d565b9350506020612c8886828701612b1d565b9250506040612c9986828701612bda565b9150509250925092565b60008060008060808587031215612cb957600080fd5b6000612cc787828801612b1d565b9450506020612cd887828801612b1d565b9350506040612ce987828801612bda565b925050606085013567ffffffffffffffff811115612d0657600080fd5b612d1287828801612b86565b91505092959194509250565b60008060408385031215612d3157600080fd5b6000612d3f85828601612b1d565b9250506020612d5085828601612b32565b9150509250929050565b60008060408385031215612d6d57600080fd5b6000612d7b85828601612b1d565b9250506020612d8c85828601612bda565b9150509250929050565b600060208284031215612da857600080fd5b6000612db684828501612b47565b91505092915050565b60008060408385031215612dd257600080fd5b6000612de085828601612b47565b9250506020612df185828601612b1d565b9150509250929050565b600060208284031215612e0d57600080fd5b6000612e1b84828501612b5c565b91505092915050565b600060208284031215612e3657600080fd5b6000612e4484828501612b71565b91505092915050565b600060208284031215612e5f57600080fd5b600082013567ffffffffffffffff811115612e7957600080fd5b612e8584828501612bb0565b91505092915050565b600060208284031215612ea057600080fd5b6000612eae84828501612bda565b91505092915050565b612ec081613964565b82525050565b612ecf81613976565b82525050565b612ede81613982565b82525050565b6000612eef82613801565b612ef98185613817565b9350612f098185602086016139f1565b612f1281613be7565b840191505092915050565b6000612f288261380c565b612f328185613833565b9350612f428185602086016139f1565b612f4b81613be7565b840191505092915050565b6000612f618261380c565b612f6b8185613844565b9350612f7b8185602086016139f1565b80840191505092915050565b6000612f94602083613833565b9150612f9f82613bf8565b602082019050919050565b6000612fb7601483613833565b9150612fc282613c21565b602082019050919050565b6000612fda603283613833565b9150612fe582613c4a565b604082019050919050565b6000612ffd602583613833565b915061300882613c99565b604082019050919050565b6000613020601c83613833565b915061302b82613ce8565b602082019050919050565b6000613043602483613833565b915061304e82613d11565b604082019050919050565b6000613066601983613833565b915061307182613d60565b602082019050919050565b6000613089602c83613833565b915061309482613d89565b604082019050919050565b60006130ac601a83613833565b91506130b782613dd8565b602082019050919050565b60006130cf601083613833565b91506130da82613e01565b602082019050919050565b60006130f2603883613833565b91506130fd82613e2a565b604082019050919050565b6000613115602a83613833565b915061312082613e79565b604082019050919050565b6000613138602983613833565b915061314382613ec8565b604082019050919050565b600061315b602083613833565b915061316682613f17565b602082019050919050565b600061317e602c83613833565b915061318982613f40565b604082019050919050565b60006131a1601683613833565b91506131ac82613f8f565b602082019050919050565b60006131c4602f83613833565b91506131cf82613fb8565b604082019050919050565b60006131e7602183613833565b91506131f282614007565b604082019050919050565b600061320a600083613828565b915061321582614056565b600082019050919050565b600061322d603183613833565b915061323882614059565b604082019050919050565b6000613250601783613844565b915061325b826140a8565b601782019050919050565b6000613273601d83613833565b915061327e826140d1565b602082019050919050565b6000613296603083613833565b91506132a1826140fa565b604082019050919050565b60006132b9600f83613833565b91506132c482614149565b602082019050919050565b60006132dc601183613844565b91506132e782614172565b601182019050919050565b60006132ff602f83613833565b915061330a8261419b565b604082019050919050565b61331e816139d8565b82525050565b60006133308285612f56565b915061333c8284612f56565b91508190509392505050565b6000613353826131fd565b9150819050919050565b600061336882613243565b91506133748285612f56565b915061337f826132cf565b915061338b8284612f56565b91508190509392505050565b60006020820190506133ac6000830184612eb7565b92915050565b60006080820190506133c76000830187612eb7565b6133d46020830186612eb7565b6133e16040830185613315565b81810360608301526133f38184612ee4565b905095945050505050565b60006040820190506134136000830185612eb7565b6134206020830184613315565b9392505050565b600060208201905061343c6000830184612ec6565b92915050565b60006020820190506134576000830184612ed5565b92915050565b600060208201905081810360008301526134778184612f1d565b905092915050565b6000602082019050818103600083015261349881612f87565b9050919050565b600060208201905081810360008301526134b881612faa565b9050919050565b600060208201905081810360008301526134d881612fcd565b9050919050565b600060208201905081810360008301526134f881612ff0565b9050919050565b6000602082019050818103600083015261351881613013565b9050919050565b6000602082019050818103600083015261353881613036565b9050919050565b6000602082019050818103600083015261355881613059565b9050919050565b600060208201905081810360008301526135788161307c565b9050919050565b600060208201905081810360008301526135988161309f565b9050919050565b600060208201905081810360008301526135b8816130c2565b9050919050565b600060208201905081810360008301526135d8816130e5565b9050919050565b600060208201905081810360008301526135f881613108565b9050919050565b600060208201905081810360008301526136188161312b565b9050919050565b600060208201905081810360008301526136388161314e565b9050919050565b6000602082019050818103600083015261365881613171565b9050919050565b6000602082019050818103600083015261367881613194565b9050919050565b60006020820190508181036000830152613698816131b7565b9050919050565b600060208201905081810360008301526136b8816131da565b9050919050565b600060208201905081810360008301526136d881613220565b9050919050565b600060208201905081810360008301526136f881613266565b9050919050565b6000602082019050818103600083015261371881613289565b9050919050565b60006020820190508181036000830152613738816132ac565b9050919050565b60006020820190508181036000830152613758816132f2565b9050919050565b60006020820190506137746000830184613315565b92915050565b6000613784613795565b90506137908282613a80565b919050565b6000604051905090565b600067ffffffffffffffff8211156137ba576137b9613bb8565b5b6137c382613be7565b9050602081019050919050565b600067ffffffffffffffff8211156137eb576137ea613bb8565b5b6137f482613be7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061385a826139d8565b9150613865836139d8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561389a57613899613b2b565b5b828201905092915050565b60006138b0826139d8565b91506138bb836139d8565b9250826138cb576138ca613b5a565b5b828204905092915050565b60006138e1826139d8565b91506138ec836139d8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561392557613924613b2b565b5b828202905092915050565b600061393b826139d8565b9150613946836139d8565b92508282101561395957613958613b2b565b5b828203905092915050565b600061396f826139b8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a0f5780820151818401526020810190506139f4565b83811115613a1e576000848401525b50505050565b6000613a2f826139d8565b91506000821415613a4357613a42613b2b565b5b600182039050919050565b60006002820490506001821680613a6657607f821691505b60208210811415613a7a57613a79613b89565b5b50919050565b613a8982613be7565b810181811067ffffffffffffffff82111715613aa857613aa7613bb8565b5b80604052505050565b6000613abc826139d8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613aef57613aee613b2b565b5b600182019050919050565b6000613b05826139d8565b9150613b10836139d8565b925082613b2057613b1f613b5a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920746f6b656e73207265717565737465642e000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e742073656e742e00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f556e61626c6520746f2070726f63657373207769746864726177616c2e000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d696e742068617320656e6465642e0000000000000000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6141f381613964565b81146141fe57600080fd5b50565b61420a81613976565b811461421557600080fd5b50565b61422181613982565b811461422c57600080fd5b50565b6142388161398c565b811461424357600080fd5b50565b61424f816139d8565b811461425a57600080fd5b5056fea26469706673582212204b241f50a69bfd0bf88ff0adad51e10f6ea485635a4840241c5e02b2b336ccc964736f6c63430008040033
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.