Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
0 MAD
Holders
1,490
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MADLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MADworld
Compiler Version
v0.8.7+commit.e28d00a7
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/[email protected]/token/ERC721/ERC721.sol"; import "@openzeppelin/[email protected]/security/Pausable.sol"; import "@openzeppelin/[email protected]/access/AccessControl.sol"; import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol"; contract MADworld is ERC721, Pausable, AccessControl, ERC721Burnable { bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() ERC721("MADworld.io", "MAD") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(PAUSER_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); } function _baseURI() internal pure override returns (string memory) { return "https://ipfs.madworld.io/metadata/"; } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function safeMint(address to, uint256 tokenId) public onlyRole(MINTER_ROLE) { _safeMint(to, tokenId); } function batchMint(address[] memory to, uint256[] memory tokenId) public onlyRole(MINTER_ROLE) { require(tokenId.length == to.length, "MAD: tokenId and tos length mismatch"); for (uint i = 0; i < tokenId.length; i++) { _safeMint(to[i], tokenId[i]); } } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override { super._beforeTokenTransfer(from, to, tokenId); } // 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 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 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 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 { 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 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 granted `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}. * ==== */ 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); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT 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 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 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 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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
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"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_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":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"tokenId","type":"uint256[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","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":"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":"tokenId","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f4d4144776f726c642e696f0000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d41440000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620002c7565b508060019080519060200190620000af929190620002c7565b5050506000600660006101000a81548160ff021916908315150217905550620000e26000801b336200014c60201b60201c565b620001147f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200014c60201b60201c565b620001467f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200014c60201b60201c565b620003dc565b6200015e82826200016260201b60201c565b5050565b6200017482826200025460201b60201c565b620002505760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001f5620002bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002d59062000377565b90600052602060002090601f016020900481019282620002f9576000855562000345565b82601f106200031457805160ff191683800117855562000345565b8280016001018555821562000345579182015b828111156200034457825182559160200191906001019062000327565b5b50905062000354919062000358565b5090565b5b808211156200037357600081600090555060010162000359565b5090565b600060028204905060018216806200039057607f821691505b60208210811415620003a757620003a6620003ad565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c3e80620003ec6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806368573107116100f9578063a22cb46511610097578063d539139311610071578063d5391393146104a2578063d547741f146104c0578063e63ab1e9146104dc578063e985e9c5146104fa576101a9565b8063a22cb4651461043a578063b88d4fde14610456578063c87b56dd14610472576101a9565b806391d14854116100d357806391d14854146103b257806395d89b41146103e2578063a144819414610400578063a217fddf1461041c576101a9565b8063685731071461035c57806370a08231146103785780638456cb59146103a8576101a9565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e146102d657806342966c68146102f25780635c975abb1461030e5780636352211e1461032c576101a9565b80632f2ff15d1461029457806336568abe146102b05780633f4ba83a146102cc576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806323b872dd14610248578063248a9ca314610264575b600080fd5b6101c860048036038101906101c391906128d7565b61052a565b6040516101d59190612e04565b60405180910390f35b6101e661053c565b6040516101f39190612e3a565b60405180910390f35b61021660048036038101906102119190612931565b6105ce565b6040516102239190612d9d565b60405180910390f35b610246600480360381019061024191906127b2565b610653565b005b610262600480360381019061025d919061269c565b61076b565b005b61027e6004803603810190610279919061286a565b6107cb565b60405161028b9190612e1f565b60405180910390f35b6102ae60048036038101906102a99190612897565b6107eb565b005b6102ca60048036038101906102c59190612897565b610814565b005b6102d4610897565b005b6102f060048036038101906102eb919061269c565b6108d4565b005b61030c60048036038101906103079190612931565b6108f4565b005b610316610950565b6040516103239190612e04565b60405180910390f35b61034660048036038101906103419190612931565b610967565b6040516103539190612d9d565b60405180910390f35b610376600480360381019061037191906127f2565b610a19565b005b610392600480360381019061038d919061262f565b610af2565b60405161039f91906130dc565b60405180910390f35b6103b0610baa565b005b6103cc60048036038101906103c79190612897565b610be7565b6040516103d99190612e04565b60405180910390f35b6103ea610c52565b6040516103f79190612e3a565b60405180910390f35b61041a600480360381019061041591906127b2565b610ce4565b005b610424610d25565b6040516104319190612e1f565b60405180910390f35b610454600480360381019061044f9190612772565b610d2c565b005b610470600480360381019061046b91906126ef565b610ead565b005b61048c60048036038101906104879190612931565b610f0f565b6040516104999190612e3a565b60405180910390f35b6104aa610fb6565b6040516104b79190612e1f565b60405180910390f35b6104da60048036038101906104d59190612897565b610fda565b005b6104e4611003565b6040516104f19190612e1f565b60405180910390f35b610514600480360381019061050f919061265c565b611027565b6040516105219190612e04565b60405180910390f35b6000610535826110bb565b9050919050565b60606000805461054b906133e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610577906133e7565b80156105c45780601f10610599576101008083540402835291602001916105c4565b820191906000526020600020905b8154815290600101906020018083116105a757829003601f168201915b5050505050905090565b60006105d982611135565b610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90612fdc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065e82610967565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c69061303c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ee6111a1565b73ffffffffffffffffffffffffffffffffffffffff16148061071d575061071c816107176111a1565b611027565b5b61075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390612f5c565b60405180910390fd5b61076683836111a9565b505050565b61077c6107766111a1565b82611262565b6107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b29061305c565b60405180910390fd5b6107c6838383611340565b505050565b600060076000838152602001908152602001600020600101549050919050565b6107f4826107cb565b610805816108006111a1565b61159c565b61080f8383611639565b505050565b61081c6111a1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108809061309c565b60405180910390fd5b610893828261171a565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108c9816108c46111a1565b61159c565b6108d16117fc565b50565b6108ef83838360405180602001604052806000815250610ead565b505050565b6109056108ff6111a1565b82611262565b610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b9061307c565b60405180910390fd5b61094d8161189e565b50565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790612f9c565b60405180910390fd5b80915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a4b81610a466111a1565b61159c565b8251825114610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906130bc565b60405180910390fd5b60005b8251811015610aec57610ad9848281518110610ab157610ab0613551565b5b6020026020010151848381518110610acc57610acb613551565b5b60200260200101516119af565b8080610ae49061344a565b915050610a92565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90612f7c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bdc81610bd76111a1565b61159c565b610be46119cd565b50565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c61906133e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8d906133e7565b8015610cda5780601f10610caf57610100808354040283529160200191610cda565b820191906000526020600020905b815481529060010190602001808311610cbd57829003601f168201915b5050505050905090565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d1681610d116111a1565b61159c565b610d2083836119af565b505050565b6000801b81565b610d346111a1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990612efc565b60405180910390fd5b8060056000610daf6111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e5c6111a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ea19190612e04565b60405180910390a35050565b610ebe610eb86111a1565b83611262565b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef49061305c565b60405180910390fd5b610f0984848484611a70565b50505050565b6060610f1a82611135565b610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f509061301c565b60405180910390fd5b6000610f63611acc565b90506000815111610f835760405180602001604052806000815250610fae565b80610f8d84611aec565b604051602001610f9e929190612d3f565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610fe3826107cb565b610ff481610fef6111a1565b61159c565b610ffe838361171a565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061112e575061112d82611c4d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661121c83610967565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061126d82611135565b6112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390612f1c565b60405180910390fd5b60006112b783610967565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061132657508373ffffffffffffffffffffffffffffffffffffffff1661130e846105ce565b73ffffffffffffffffffffffffffffffffffffffff16145b8061133757506113368185611027565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661136082610967565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90612ffc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90612edc565b60405180910390fd5b611431838383611d2f565b61143c6000826111a9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148c91906132c9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e391906131e8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6115a68282610be7565b611635576115cb8173ffffffffffffffffffffffffffffffffffffffff166014611d87565b6115d98360001c6020611d87565b6040516020016115ea929190612d63565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c9190612e3a565b60405180910390fd5b5050565b6116438282610be7565b6117165760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116bb6111a1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6117248282610be7565b156117f85760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061179d6111a1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611804610950565b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612e7c565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118876111a1565b6040516118949190612d9d565b60405180910390a1565b60006118a982610967565b90506118b781600084611d2f565b6118c26000836111a9565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191291906132c9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6119c9828260405180602001604052806000815250611fc3565b5050565b6119d5610950565b15611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90612f3c565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a596111a1565b604051611a669190612d9d565b60405180910390a1565b611a7b848484611340565b611a878484848461201e565b611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612e9c565b60405180910390fd5b50505050565b6060604051806060016040528060228152602001613be760229139905090565b60606000821415611b34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c48565b600082905060005b60008214611b66578080611b4f9061344a565b915050600a82611b5f919061323e565b9150611b3c565b60008167ffffffffffffffff811115611b8257611b81613580565b5b6040519080825280601f01601f191660200182016040528015611bb45781602001600182028036833780820191505090505b5090505b60008514611c4157600182611bcd91906132c9565b9150600a85611bdc9190613493565b6030611be891906131e8565b60f81b818381518110611bfe57611bfd613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c3a919061323e565b9450611bb8565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d285750611d27826121b5565b5b9050919050565b611d37610950565b15611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90612f3c565b60405180910390fd5b611d8283838361221f565b505050565b606060006002836002611d9a919061326f565b611da491906131e8565b67ffffffffffffffff811115611dbd57611dbc613580565b5b6040519080825280601f01601f191660200182016040528015611def5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611e2757611e26613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e8b57611e8a613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611ecb919061326f565b611ed591906131e8565b90505b6001811115611f75577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611f1757611f16613551565b5b1a60f81b828281518110611f2e57611f2d613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611f6e906133bd565b9050611ed8565b5060008414611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090612e5c565b60405180910390fd5b8091505092915050565b611fcd8383612224565b611fda600084848461201e565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090612e9c565b60405180910390fd5b505050565b600061203f8473ffffffffffffffffffffffffffffffffffffffff166123f2565b156121a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120686111a1565b8786866040518563ffffffff1660e01b815260040161208a9493929190612db8565b602060405180830381600087803b1580156120a457600080fd5b505af19250505080156120d557506040513d601f19601f820116820180604052508101906120d29190612904565b60015b612158573d8060008114612105576040519150601f19603f3d011682016040523d82523d6000602084013e61210a565b606091505b50600081511415612150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214790612e9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121ad565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228b90612fbc565b60405180910390fd5b61229d81611135565b156122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d490612ebc565b60405180910390fd5b6122e960008383611d2f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233991906131e8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60006124186124138461311c565b6130f7565b9050808382526020820190508285602086028201111561243b5761243a6135b4565b5b60005b8581101561246b57816124518882612527565b84526020840193506020830192505060018101905061243e565b5050509392505050565b600061248861248384613148565b6130f7565b905080838252602082019050828560208602820111156124ab576124aa6135b4565b5b60005b858110156124db57816124c1888261261a565b8452602084019350602083019250506001810190506124ae565b5050509392505050565b60006124f86124f384613174565b6130f7565b905082815260208101848484011115612514576125136135b9565b5b61251f84828561337b565b509392505050565b60008135905061253681613b73565b92915050565b600082601f830112612551576125506135af565b5b8135612561848260208601612405565b91505092915050565b600082601f83011261257f5761257e6135af565b5b813561258f848260208601612475565b91505092915050565b6000813590506125a781613b8a565b92915050565b6000813590506125bc81613ba1565b92915050565b6000813590506125d181613bb8565b92915050565b6000815190506125e681613bb8565b92915050565b600082601f830112612601576126006135af565b5b81356126118482602086016124e5565b91505092915050565b60008135905061262981613bcf565b92915050565b600060208284031215612645576126446135c3565b5b600061265384828501612527565b91505092915050565b60008060408385031215612673576126726135c3565b5b600061268185828601612527565b925050602061269285828601612527565b9150509250929050565b6000806000606084860312156126b5576126b46135c3565b5b60006126c386828701612527565b93505060206126d486828701612527565b92505060406126e58682870161261a565b9150509250925092565b60008060008060808587031215612709576127086135c3565b5b600061271787828801612527565b945050602061272887828801612527565b93505060406127398782880161261a565b925050606085013567ffffffffffffffff81111561275a576127596135be565b5b612766878288016125ec565b91505092959194509250565b60008060408385031215612789576127886135c3565b5b600061279785828601612527565b92505060206127a885828601612598565b9150509250929050565b600080604083850312156127c9576127c86135c3565b5b60006127d785828601612527565b92505060206127e88582860161261a565b9150509250929050565b60008060408385031215612809576128086135c3565b5b600083013567ffffffffffffffff811115612827576128266135be565b5b6128338582860161253c565b925050602083013567ffffffffffffffff811115612854576128536135be565b5b6128608582860161256a565b9150509250929050565b6000602082840312156128805761287f6135c3565b5b600061288e848285016125ad565b91505092915050565b600080604083850312156128ae576128ad6135c3565b5b60006128bc858286016125ad565b92505060206128cd85828601612527565b9150509250929050565b6000602082840312156128ed576128ec6135c3565b5b60006128fb848285016125c2565b91505092915050565b60006020828403121561291a576129196135c3565b5b6000612928848285016125d7565b91505092915050565b600060208284031215612947576129466135c3565b5b60006129558482850161261a565b91505092915050565b612967816132fd565b82525050565b6129768161330f565b82525050565b6129858161331b565b82525050565b6000612996826131a5565b6129a081856131bb565b93506129b081856020860161338a565b6129b9816135c8565b840191505092915050565b60006129cf826131b0565b6129d981856131cc565b93506129e981856020860161338a565b6129f2816135c8565b840191505092915050565b6000612a08826131b0565b612a1281856131dd565b9350612a2281856020860161338a565b80840191505092915050565b6000612a3b6020836131cc565b9150612a46826135d9565b602082019050919050565b6000612a5e6014836131cc565b9150612a6982613602565b602082019050919050565b6000612a816032836131cc565b9150612a8c8261362b565b604082019050919050565b6000612aa4601c836131cc565b9150612aaf8261367a565b602082019050919050565b6000612ac76024836131cc565b9150612ad2826136a3565b604082019050919050565b6000612aea6019836131cc565b9150612af5826136f2565b602082019050919050565b6000612b0d602c836131cc565b9150612b188261371b565b604082019050919050565b6000612b306010836131cc565b9150612b3b8261376a565b602082019050919050565b6000612b536038836131cc565b9150612b5e82613793565b604082019050919050565b6000612b76602a836131cc565b9150612b81826137e2565b604082019050919050565b6000612b996029836131cc565b9150612ba482613831565b604082019050919050565b6000612bbc6020836131cc565b9150612bc782613880565b602082019050919050565b6000612bdf602c836131cc565b9150612bea826138a9565b604082019050919050565b6000612c026029836131cc565b9150612c0d826138f8565b604082019050919050565b6000612c25602f836131cc565b9150612c3082613947565b604082019050919050565b6000612c486021836131cc565b9150612c5382613996565b604082019050919050565b6000612c6b6031836131cc565b9150612c76826139e5565b604082019050919050565b6000612c8e6017836131dd565b9150612c9982613a34565b601782019050919050565b6000612cb16030836131cc565b9150612cbc82613a5d565b604082019050919050565b6000612cd46011836131dd565b9150612cdf82613aac565b601182019050919050565b6000612cf7602f836131cc565b9150612d0282613ad5565b604082019050919050565b6000612d1a6024836131cc565b9150612d2582613b24565b604082019050919050565b612d3981613371565b82525050565b6000612d4b82856129fd565b9150612d5782846129fd565b91508190509392505050565b6000612d6e82612c81565b9150612d7a82856129fd565b9150612d8582612cc7565b9150612d9182846129fd565b91508190509392505050565b6000602082019050612db2600083018461295e565b92915050565b6000608082019050612dcd600083018761295e565b612dda602083018661295e565b612de76040830185612d30565b8181036060830152612df9818461298b565b905095945050505050565b6000602082019050612e19600083018461296d565b92915050565b6000602082019050612e34600083018461297c565b92915050565b60006020820190508181036000830152612e5481846129c4565b905092915050565b60006020820190508181036000830152612e7581612a2e565b9050919050565b60006020820190508181036000830152612e9581612a51565b9050919050565b60006020820190508181036000830152612eb581612a74565b9050919050565b60006020820190508181036000830152612ed581612a97565b9050919050565b60006020820190508181036000830152612ef581612aba565b9050919050565b60006020820190508181036000830152612f1581612add565b9050919050565b60006020820190508181036000830152612f3581612b00565b9050919050565b60006020820190508181036000830152612f5581612b23565b9050919050565b60006020820190508181036000830152612f7581612b46565b9050919050565b60006020820190508181036000830152612f9581612b69565b9050919050565b60006020820190508181036000830152612fb581612b8c565b9050919050565b60006020820190508181036000830152612fd581612baf565b9050919050565b60006020820190508181036000830152612ff581612bd2565b9050919050565b6000602082019050818103600083015261301581612bf5565b9050919050565b6000602082019050818103600083015261303581612c18565b9050919050565b6000602082019050818103600083015261305581612c3b565b9050919050565b6000602082019050818103600083015261307581612c5e565b9050919050565b6000602082019050818103600083015261309581612ca4565b9050919050565b600060208201905081810360008301526130b581612cea565b9050919050565b600060208201905081810360008301526130d581612d0d565b9050919050565b60006020820190506130f16000830184612d30565b92915050565b6000613101613112565b905061310d8282613419565b919050565b6000604051905090565b600067ffffffffffffffff82111561313757613136613580565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561316357613162613580565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561318f5761318e613580565b5b613198826135c8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131f382613371565b91506131fe83613371565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613233576132326134c4565b5b828201905092915050565b600061324982613371565b915061325483613371565b925082613264576132636134f3565b5b828204905092915050565b600061327a82613371565b915061328583613371565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132be576132bd6134c4565b5b828202905092915050565b60006132d482613371565b91506132df83613371565b9250828210156132f2576132f16134c4565b5b828203905092915050565b600061330882613351565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133a857808201518184015260208101905061338d565b838111156133b7576000848401525b50505050565b60006133c882613371565b915060008214156133dc576133db6134c4565b5b600182039050919050565b600060028204905060018216806133ff57607f821691505b6020821081141561341357613412613522565b5b50919050565b613422826135c8565b810181811067ffffffffffffffff8211171561344157613440613580565b5b80604052505050565b600061345582613371565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613488576134876134c4565b5b600182019050919050565b600061349e82613371565b91506134a983613371565b9250826134b9576134b86134f3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f4d41443a20746f6b656e496420616e6420746f73206c656e677468206d69736d60008201527f6174636800000000000000000000000000000000000000000000000000000000602082015250565b613b7c816132fd565b8114613b8757600080fd5b50565b613b938161330f565b8114613b9e57600080fd5b50565b613baa8161331b565b8114613bb557600080fd5b50565b613bc181613325565b8114613bcc57600080fd5b50565b613bd881613371565b8114613be357600080fd5b5056fe68747470733a2f2f697066732e6d6164776f726c642e696f2f6d657461646174612fa264697066735822122073fab16db45e50e7564b12264d3d307241f161dc7887a95f03fa6c45dcf5fae864736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806368573107116100f9578063a22cb46511610097578063d539139311610071578063d5391393146104a2578063d547741f146104c0578063e63ab1e9146104dc578063e985e9c5146104fa576101a9565b8063a22cb4651461043a578063b88d4fde14610456578063c87b56dd14610472576101a9565b806391d14854116100d357806391d14854146103b257806395d89b41146103e2578063a144819414610400578063a217fddf1461041c576101a9565b8063685731071461035c57806370a08231146103785780638456cb59146103a8576101a9565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e146102d657806342966c68146102f25780635c975abb1461030e5780636352211e1461032c576101a9565b80632f2ff15d1461029457806336568abe146102b05780633f4ba83a146102cc576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806323b872dd14610248578063248a9ca314610264575b600080fd5b6101c860048036038101906101c391906128d7565b61052a565b6040516101d59190612e04565b60405180910390f35b6101e661053c565b6040516101f39190612e3a565b60405180910390f35b61021660048036038101906102119190612931565b6105ce565b6040516102239190612d9d565b60405180910390f35b610246600480360381019061024191906127b2565b610653565b005b610262600480360381019061025d919061269c565b61076b565b005b61027e6004803603810190610279919061286a565b6107cb565b60405161028b9190612e1f565b60405180910390f35b6102ae60048036038101906102a99190612897565b6107eb565b005b6102ca60048036038101906102c59190612897565b610814565b005b6102d4610897565b005b6102f060048036038101906102eb919061269c565b6108d4565b005b61030c60048036038101906103079190612931565b6108f4565b005b610316610950565b6040516103239190612e04565b60405180910390f35b61034660048036038101906103419190612931565b610967565b6040516103539190612d9d565b60405180910390f35b610376600480360381019061037191906127f2565b610a19565b005b610392600480360381019061038d919061262f565b610af2565b60405161039f91906130dc565b60405180910390f35b6103b0610baa565b005b6103cc60048036038101906103c79190612897565b610be7565b6040516103d99190612e04565b60405180910390f35b6103ea610c52565b6040516103f79190612e3a565b60405180910390f35b61041a600480360381019061041591906127b2565b610ce4565b005b610424610d25565b6040516104319190612e1f565b60405180910390f35b610454600480360381019061044f9190612772565b610d2c565b005b610470600480360381019061046b91906126ef565b610ead565b005b61048c60048036038101906104879190612931565b610f0f565b6040516104999190612e3a565b60405180910390f35b6104aa610fb6565b6040516104b79190612e1f565b60405180910390f35b6104da60048036038101906104d59190612897565b610fda565b005b6104e4611003565b6040516104f19190612e1f565b60405180910390f35b610514600480360381019061050f919061265c565b611027565b6040516105219190612e04565b60405180910390f35b6000610535826110bb565b9050919050565b60606000805461054b906133e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610577906133e7565b80156105c45780601f10610599576101008083540402835291602001916105c4565b820191906000526020600020905b8154815290600101906020018083116105a757829003601f168201915b5050505050905090565b60006105d982611135565b610618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060f90612fdc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061065e82610967565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c69061303c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ee6111a1565b73ffffffffffffffffffffffffffffffffffffffff16148061071d575061071c816107176111a1565b611027565b5b61075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390612f5c565b60405180910390fd5b61076683836111a9565b505050565b61077c6107766111a1565b82611262565b6107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b29061305c565b60405180910390fd5b6107c6838383611340565b505050565b600060076000838152602001908152602001600020600101549050919050565b6107f4826107cb565b610805816108006111a1565b61159c565b61080f8383611639565b505050565b61081c6111a1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610889576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108809061309c565b60405180910390fd5b610893828261171a565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6108c9816108c46111a1565b61159c565b6108d16117fc565b50565b6108ef83838360405180602001604052806000815250610ead565b505050565b6109056108ff6111a1565b82611262565b610944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093b9061307c565b60405180910390fd5b61094d8161189e565b50565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790612f9c565b60405180910390fd5b80915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610a4b81610a466111a1565b61159c565b8251825114610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a86906130bc565b60405180910390fd5b60005b8251811015610aec57610ad9848281518110610ab157610ab0613551565b5b6020026020010151848381518110610acc57610acb613551565b5b60200260200101516119af565b8080610ae49061344a565b915050610a92565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90612f7c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bdc81610bd76111a1565b61159c565b610be46119cd565b50565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c61906133e7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8d906133e7565b8015610cda5780601f10610caf57610100808354040283529160200191610cda565b820191906000526020600020905b815481529060010190602001808311610cbd57829003601f168201915b5050505050905090565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d1681610d116111a1565b61159c565b610d2083836119af565b505050565b6000801b81565b610d346111a1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9990612efc565b60405180910390fd5b8060056000610daf6111a1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e5c6111a1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ea19190612e04565b60405180910390a35050565b610ebe610eb86111a1565b83611262565b610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef49061305c565b60405180910390fd5b610f0984848484611a70565b50505050565b6060610f1a82611135565b610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f509061301c565b60405180910390fd5b6000610f63611acc565b90506000815111610f835760405180602001604052806000815250610fae565b80610f8d84611aec565b604051602001610f9e929190612d3f565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610fe3826107cb565b610ff481610fef6111a1565b61159c565b610ffe838361171a565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061112e575061112d82611c4d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661121c83610967565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061126d82611135565b6112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390612f1c565b60405180910390fd5b60006112b783610967565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061132657508373ffffffffffffffffffffffffffffffffffffffff1661130e846105ce565b73ffffffffffffffffffffffffffffffffffffffff16145b8061133757506113368185611027565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661136082610967565b73ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad90612ffc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90612edc565b60405180910390fd5b611431838383611d2f565b61143c6000826111a9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461148c91906132c9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114e391906131e8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6115a68282610be7565b611635576115cb8173ffffffffffffffffffffffffffffffffffffffff166014611d87565b6115d98360001c6020611d87565b6040516020016115ea929190612d63565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c9190612e3a565b60405180910390fd5b5050565b6116438282610be7565b6117165760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116bb6111a1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6117248282610be7565b156117f85760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061179d6111a1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611804610950565b611843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183a90612e7c565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118876111a1565b6040516118949190612d9d565b60405180910390a1565b60006118a982610967565b90506118b781600084611d2f565b6118c26000836111a9565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461191291906132c9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6119c9828260405180602001604052806000815250611fc3565b5050565b6119d5610950565b15611a15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0c90612f3c565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a596111a1565b604051611a669190612d9d565b60405180910390a1565b611a7b848484611340565b611a878484848461201e565b611ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abd90612e9c565b60405180910390fd5b50505050565b6060604051806060016040528060228152602001613be760229139905090565b60606000821415611b34576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c48565b600082905060005b60008214611b66578080611b4f9061344a565b915050600a82611b5f919061323e565b9150611b3c565b60008167ffffffffffffffff811115611b8257611b81613580565b5b6040519080825280601f01601f191660200182016040528015611bb45781602001600182028036833780820191505090505b5090505b60008514611c4157600182611bcd91906132c9565b9150600a85611bdc9190613493565b6030611be891906131e8565b60f81b818381518110611bfe57611bfd613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c3a919061323e565b9450611bb8565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d285750611d27826121b5565b5b9050919050565b611d37610950565b15611d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6e90612f3c565b60405180910390fd5b611d8283838361221f565b505050565b606060006002836002611d9a919061326f565b611da491906131e8565b67ffffffffffffffff811115611dbd57611dbc613580565b5b6040519080825280601f01601f191660200182016040528015611def5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611e2757611e26613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611e8b57611e8a613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611ecb919061326f565b611ed591906131e8565b90505b6001811115611f75577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611f1757611f16613551565b5b1a60f81b828281518110611f2e57611f2d613551565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611f6e906133bd565b9050611ed8565b5060008414611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090612e5c565b60405180910390fd5b8091505092915050565b611fcd8383612224565b611fda600084848461201e565b612019576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201090612e9c565b60405180910390fd5b505050565b600061203f8473ffffffffffffffffffffffffffffffffffffffff166123f2565b156121a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120686111a1565b8786866040518563ffffffff1660e01b815260040161208a9493929190612db8565b602060405180830381600087803b1580156120a457600080fd5b505af19250505080156120d557506040513d601f19601f820116820180604052508101906120d29190612904565b60015b612158573d8060008114612105576040519150601f19603f3d011682016040523d82523d6000602084013e61210a565b606091505b50600081511415612150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214790612e9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121ad565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228b90612fbc565b60405180910390fd5b61229d81611135565b156122dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d490612ebc565b60405180910390fd5b6122e960008383611d2f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461233991906131e8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60006124186124138461311c565b6130f7565b9050808382526020820190508285602086028201111561243b5761243a6135b4565b5b60005b8581101561246b57816124518882612527565b84526020840193506020830192505060018101905061243e565b5050509392505050565b600061248861248384613148565b6130f7565b905080838252602082019050828560208602820111156124ab576124aa6135b4565b5b60005b858110156124db57816124c1888261261a565b8452602084019350602083019250506001810190506124ae565b5050509392505050565b60006124f86124f384613174565b6130f7565b905082815260208101848484011115612514576125136135b9565b5b61251f84828561337b565b509392505050565b60008135905061253681613b73565b92915050565b600082601f830112612551576125506135af565b5b8135612561848260208601612405565b91505092915050565b600082601f83011261257f5761257e6135af565b5b813561258f848260208601612475565b91505092915050565b6000813590506125a781613b8a565b92915050565b6000813590506125bc81613ba1565b92915050565b6000813590506125d181613bb8565b92915050565b6000815190506125e681613bb8565b92915050565b600082601f830112612601576126006135af565b5b81356126118482602086016124e5565b91505092915050565b60008135905061262981613bcf565b92915050565b600060208284031215612645576126446135c3565b5b600061265384828501612527565b91505092915050565b60008060408385031215612673576126726135c3565b5b600061268185828601612527565b925050602061269285828601612527565b9150509250929050565b6000806000606084860312156126b5576126b46135c3565b5b60006126c386828701612527565b93505060206126d486828701612527565b92505060406126e58682870161261a565b9150509250925092565b60008060008060808587031215612709576127086135c3565b5b600061271787828801612527565b945050602061272887828801612527565b93505060406127398782880161261a565b925050606085013567ffffffffffffffff81111561275a576127596135be565b5b612766878288016125ec565b91505092959194509250565b60008060408385031215612789576127886135c3565b5b600061279785828601612527565b92505060206127a885828601612598565b9150509250929050565b600080604083850312156127c9576127c86135c3565b5b60006127d785828601612527565b92505060206127e88582860161261a565b9150509250929050565b60008060408385031215612809576128086135c3565b5b600083013567ffffffffffffffff811115612827576128266135be565b5b6128338582860161253c565b925050602083013567ffffffffffffffff811115612854576128536135be565b5b6128608582860161256a565b9150509250929050565b6000602082840312156128805761287f6135c3565b5b600061288e848285016125ad565b91505092915050565b600080604083850312156128ae576128ad6135c3565b5b60006128bc858286016125ad565b92505060206128cd85828601612527565b9150509250929050565b6000602082840312156128ed576128ec6135c3565b5b60006128fb848285016125c2565b91505092915050565b60006020828403121561291a576129196135c3565b5b6000612928848285016125d7565b91505092915050565b600060208284031215612947576129466135c3565b5b60006129558482850161261a565b91505092915050565b612967816132fd565b82525050565b6129768161330f565b82525050565b6129858161331b565b82525050565b6000612996826131a5565b6129a081856131bb565b93506129b081856020860161338a565b6129b9816135c8565b840191505092915050565b60006129cf826131b0565b6129d981856131cc565b93506129e981856020860161338a565b6129f2816135c8565b840191505092915050565b6000612a08826131b0565b612a1281856131dd565b9350612a2281856020860161338a565b80840191505092915050565b6000612a3b6020836131cc565b9150612a46826135d9565b602082019050919050565b6000612a5e6014836131cc565b9150612a6982613602565b602082019050919050565b6000612a816032836131cc565b9150612a8c8261362b565b604082019050919050565b6000612aa4601c836131cc565b9150612aaf8261367a565b602082019050919050565b6000612ac76024836131cc565b9150612ad2826136a3565b604082019050919050565b6000612aea6019836131cc565b9150612af5826136f2565b602082019050919050565b6000612b0d602c836131cc565b9150612b188261371b565b604082019050919050565b6000612b306010836131cc565b9150612b3b8261376a565b602082019050919050565b6000612b536038836131cc565b9150612b5e82613793565b604082019050919050565b6000612b76602a836131cc565b9150612b81826137e2565b604082019050919050565b6000612b996029836131cc565b9150612ba482613831565b604082019050919050565b6000612bbc6020836131cc565b9150612bc782613880565b602082019050919050565b6000612bdf602c836131cc565b9150612bea826138a9565b604082019050919050565b6000612c026029836131cc565b9150612c0d826138f8565b604082019050919050565b6000612c25602f836131cc565b9150612c3082613947565b604082019050919050565b6000612c486021836131cc565b9150612c5382613996565b604082019050919050565b6000612c6b6031836131cc565b9150612c76826139e5565b604082019050919050565b6000612c8e6017836131dd565b9150612c9982613a34565b601782019050919050565b6000612cb16030836131cc565b9150612cbc82613a5d565b604082019050919050565b6000612cd46011836131dd565b9150612cdf82613aac565b601182019050919050565b6000612cf7602f836131cc565b9150612d0282613ad5565b604082019050919050565b6000612d1a6024836131cc565b9150612d2582613b24565b604082019050919050565b612d3981613371565b82525050565b6000612d4b82856129fd565b9150612d5782846129fd565b91508190509392505050565b6000612d6e82612c81565b9150612d7a82856129fd565b9150612d8582612cc7565b9150612d9182846129fd565b91508190509392505050565b6000602082019050612db2600083018461295e565b92915050565b6000608082019050612dcd600083018761295e565b612dda602083018661295e565b612de76040830185612d30565b8181036060830152612df9818461298b565b905095945050505050565b6000602082019050612e19600083018461296d565b92915050565b6000602082019050612e34600083018461297c565b92915050565b60006020820190508181036000830152612e5481846129c4565b905092915050565b60006020820190508181036000830152612e7581612a2e565b9050919050565b60006020820190508181036000830152612e9581612a51565b9050919050565b60006020820190508181036000830152612eb581612a74565b9050919050565b60006020820190508181036000830152612ed581612a97565b9050919050565b60006020820190508181036000830152612ef581612aba565b9050919050565b60006020820190508181036000830152612f1581612add565b9050919050565b60006020820190508181036000830152612f3581612b00565b9050919050565b60006020820190508181036000830152612f5581612b23565b9050919050565b60006020820190508181036000830152612f7581612b46565b9050919050565b60006020820190508181036000830152612f9581612b69565b9050919050565b60006020820190508181036000830152612fb581612b8c565b9050919050565b60006020820190508181036000830152612fd581612baf565b9050919050565b60006020820190508181036000830152612ff581612bd2565b9050919050565b6000602082019050818103600083015261301581612bf5565b9050919050565b6000602082019050818103600083015261303581612c18565b9050919050565b6000602082019050818103600083015261305581612c3b565b9050919050565b6000602082019050818103600083015261307581612c5e565b9050919050565b6000602082019050818103600083015261309581612ca4565b9050919050565b600060208201905081810360008301526130b581612cea565b9050919050565b600060208201905081810360008301526130d581612d0d565b9050919050565b60006020820190506130f16000830184612d30565b92915050565b6000613101613112565b905061310d8282613419565b919050565b6000604051905090565b600067ffffffffffffffff82111561313757613136613580565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561316357613162613580565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561318f5761318e613580565b5b613198826135c8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006131f382613371565b91506131fe83613371565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613233576132326134c4565b5b828201905092915050565b600061324982613371565b915061325483613371565b925082613264576132636134f3565b5b828204905092915050565b600061327a82613371565b915061328583613371565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132be576132bd6134c4565b5b828202905092915050565b60006132d482613371565b91506132df83613371565b9250828210156132f2576132f16134c4565b5b828203905092915050565b600061330882613351565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133a857808201518184015260208101905061338d565b838111156133b7576000848401525b50505050565b60006133c882613371565b915060008214156133dc576133db6134c4565b5b600182039050919050565b600060028204905060018216806133ff57607f821691505b6020821081141561341357613412613522565b5b50919050565b613422826135c8565b810181811067ffffffffffffffff8211171561344157613440613580565b5b80604052505050565b600061345582613371565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613488576134876134c4565b5b600182019050919050565b600061349e82613371565b91506134a983613371565b9250826134b9576134b86134f3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f4d41443a20746f6b656e496420616e6420746f73206c656e677468206d69736d60008201527f6174636800000000000000000000000000000000000000000000000000000000602082015250565b613b7c816132fd565b8114613b8757600080fd5b50565b613b938161330f565b8114613b9e57600080fd5b50565b613baa8161331b565b8114613bb557600080fd5b50565b613bc181613325565b8114613bcc57600080fd5b50565b613bd881613371565b8114613be357600080fd5b5056fe68747470733a2f2f697066732e6d6164776f726c642e696f2f6d657461646174612fa264697066735822122073fab16db45e50e7564b12264d3d307241f161dc7887a95f03fa6c45dcf5fae864736f6c63430008070033
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.