ERC-721
Overview
Max Total Supply
0 RA
Holders
1,502
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RueArcanaToken
Compiler Version
v0.8.6+commit.11564f7e
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.6; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./IRueArcanaToken.sol"; contract RueArcanaToken is ERC721, IRueArcanaToken, Ownable, ReentrancyGuard { string public baseTokenURI; string public provenanceHash = ""; address public minter; bool public isMinterLocked = false; using Counters for Counters.Counter; Counters.Counter private tokenCounter; modifier onlyMinter() { require(msg.sender == minter, "Only minter"); _; } constructor(string memory baseURI) ERC721("RueArcana", "RA") { setBaseURI(baseURI); } function mint(uint256 _count, address _recipient) public override onlyMinter nonReentrant { for (uint i = 0; i < _count; i++) { uint256 mintIndex = tokenCounter.current() + 1; _safeMint(_recipient, mintIndex); tokenCounter.increment(); } } function updateMinter(address _minter) external override onlyOwner { require(!isMinterLocked, "Minter ownership renounced"); minter = _minter; } function lockMinter() external override onlyOwner { isMinterLocked = true; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public override onlyOwner { baseTokenURI = baseURI; } function setProvenanceHash(string memory _provenanceHash) public override onlyOwner { provenanceHash = _provenanceHash; } function tokenCount() public view override returns (uint256) { return tokenCounter.current(); } function withdraw() public onlyOwner { uint balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721 // SPDX-License-Identifier: MIT /// @title Interface for RueArcanaToken pragma solidity ^0.8.6; abstract contract IRueArcanaToken { function setProvenanceHash(string memory _provenanceHash) virtual external; function mint(uint256 _count, address _recipient) virtual external; function setBaseURI(string memory baseURI) virtual external; function updateMinter(address _minter) virtual external; function lockMinter() virtual external; function tokenCount() virtual external returns (uint256); }
// 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 "../../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; /** * @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 "../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; /** * @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; /** * @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; 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 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" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMinterLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_recipient","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","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":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"updateMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600990805190602001906200002b929190620002fd565b506000600a60146101000a81548160ff0219169083151502179055503480156200005457600080fd5b5060405162003d1238038062003d1283398181016040528101906200007a91906200042b565b6040518060400160405280600981526020017f527565417263616e6100000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f52410000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000fe929190620002fd565b50806001908051906020019062000117929190620002fd565b5050506200013a6200012e6200015a60201b60201c565b6200016260201b60201c565b600160078190555062000153816200022860201b60201c565b5062000683565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002386200015a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200025e620002d360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ae90620004a3565b60405180910390fd5b8060089080519060200190620002cf929190620002fd565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200030b906200056b565b90600052602060002090601f0160209004810192826200032f57600085556200037b565b82601f106200034a57805160ff19168380011785556200037b565b828001600101855582156200037b579182015b828111156200037a5782518255916020019190600101906200035d565b5b5090506200038a91906200038e565b5090565b5b80821115620003a95760008160009055506001016200038f565b5090565b6000620003c4620003be84620004ee565b620004c5565b905082815260208101848484011115620003e357620003e26200063a565b5b620003f084828562000535565b509392505050565b600082601f83011262000410576200040f62000635565b5b815162000422848260208601620003ad565b91505092915050565b60006020828403121562000444576200044362000644565b5b600082015167ffffffffffffffff8111156200046557620004646200063f565b5b6200047384828501620003f8565b91505092915050565b60006200048b60208362000524565b915062000498826200065a565b602082019050919050565b60006020820190508181036000830152620004be816200047c565b9050919050565b6000620004d1620004e4565b9050620004df8282620005a1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200050c576200050b62000606565b5b620005178262000649565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200055557808201518184015260208101905062000538565b8381111562000565576000848401525b50505050565b600060028204905060018216806200058457607f821691505b602082108114156200059b576200059a620005d7565b5b50919050565b620005ac8262000649565b810181811067ffffffffffffffff82111715620005ce57620005cd62000606565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61367f80620006936000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461045a578063d547cfb71461048a578063e985e9c5146104a8578063f2fde38b146104d8576101a9565b8063a22cb46514610404578063b88d4fde14610420578063c6ab67a31461043c576101a9565b80638da5cb5b116100d35780638da5cb5b1461038e57806394bf804d146103ac57806395d89b41146103c85780639f181b5e146103e6576101a9565b806370a082311461034a578063715018a61461037a57806376daebe114610384576101a9565b80631e688e101161016657806342842e0e1161014057806342842e0e146102c65780634eb03f6e146102e257806355f804b3146102fe5780636352211e1461031a576101a9565b80631e688e101461028257806323b872dd146102a05780633ccfd60b146102bc576101a9565b806301ffc9a7146101ae57806306fdde03146101de57806307546172146101fc578063081812fc1461021a578063095ea7b31461024a5780631096952314610266575b600080fd5b6101c860048036038101906101c39190612536565b6104f4565b6040516101d59190612a3a565b60405180910390f35b6101e66105d6565b6040516101f39190612a55565b60405180910390f35b610204610668565b60405161021191906129d3565b60405180910390f35b610234600480360381019061022f91906125d9565b61068e565b60405161024191906129d3565b60405180910390f35b610264600480360381019061025f91906124f6565b610713565b005b610280600480360381019061027b9190612590565b61082b565b005b61028a6108c1565b6040516102979190612a3a565b60405180910390f35b6102ba60048036038101906102b591906123e0565b6108d4565b005b6102c4610934565b005b6102e060048036038101906102db91906123e0565b6109ff565b005b6102fc60048036038101906102f79190612373565b610a1f565b005b61031860048036038101906103139190612590565b610b2f565b005b610334600480360381019061032f91906125d9565b610bc5565b60405161034191906129d3565b60405180910390f35b610364600480360381019061035f9190612373565b610c77565b6040516103719190612cd7565b60405180910390f35b610382610d2f565b005b61038c610db7565b005b610396610e50565b6040516103a391906129d3565b60405180910390f35b6103c660048036038101906103c19190612606565b610e7a565b005b6103d0610fb2565b6040516103dd9190612a55565b60405180910390f35b6103ee611044565b6040516103fb9190612cd7565b60405180910390f35b61041e600480360381019061041991906124b6565b611055565b005b61043a60048036038101906104359190612433565b6111d6565b005b610444611238565b6040516104519190612a55565b60405180910390f35b610474600480360381019061046f91906125d9565b6112c6565b6040516104819190612a55565b60405180910390f35b61049261136d565b60405161049f9190612a55565b60405180910390f35b6104c260048036038101906104bd91906123a0565b6113fb565b6040516104cf9190612a3a565b60405180910390f35b6104f260048036038101906104ed9190612373565b61148f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105bf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105cf57506105ce82611587565b5b9050919050565b6060600080546105e590612f2d565b80601f016020809104026020016040519081016040528092919081815260200182805461061190612f2d565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610699826115f1565b6106d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cf90612bd7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071e82610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690612c77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ae61165d565b73ffffffffffffffffffffffffffffffffffffffff1614806107dd57506107dc816107d761165d565b6113fb565b5b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612b57565b60405180910390fd5b6108268383611665565b505050565b61083361165d565b73ffffffffffffffffffffffffffffffffffffffff16610851610e50565b73ffffffffffffffffffffffffffffffffffffffff16146108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90612bf7565b60405180910390fd5b80600990805190602001906108bd929190612187565b5050565b600a60149054906101000a900460ff1681565b6108e56108df61165d565b8261171e565b610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b90612c97565b60405180910390fd5b61092f8383836117fc565b505050565b61093c61165d565b73ffffffffffffffffffffffffffffffffffffffff1661095a610e50565b73ffffffffffffffffffffffffffffffffffffffff16146109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790612bf7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109fb573d6000803e3d6000fd5b5050565b610a1a838383604051806020016040528060008152506111d6565b505050565b610a2761165d565b73ffffffffffffffffffffffffffffffffffffffff16610a45610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290612bf7565b60405180910390fd5b600a60149054906101000a900460ff1615610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290612c57565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b3761165d565b73ffffffffffffffffffffffffffffffffffffffff16610b55610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290612bf7565b60405180910390fd5b8060089080519060200190610bc1929190612187565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590612b97565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612b77565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3761165d565b73ffffffffffffffffffffffffffffffffffffffff16610d55610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612bf7565b60405180910390fd5b610db56000611a58565b565b610dbf61165d565b73ffffffffffffffffffffffffffffffffffffffff16610ddd610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612bf7565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190612b17565b60405180910390fd5b60026007541415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790612cb7565b60405180910390fd5b600260078190555060005b82811015610fa55760006001610f71600b611b1e565b610f7b9190612dbc565b9050610f878382611b2c565b610f91600b611b4a565b508080610f9d90612f90565b915050610f5b565b5060016007819055505050565b606060018054610fc190612f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fed90612f2d565b801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b5050505050905090565b6000611050600b611b1e565b905090565b61105d61165d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290612af7565b60405180910390fd5b80600560006110d861165d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661118561165d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111ca9190612a3a565b60405180910390a35050565b6111e76111e161165d565b8361171e565b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612c97565b60405180910390fd5b61123284848484611b60565b50505050565b6009805461124590612f2d565b80601f016020809104026020016040519081016040528092919081815260200182805461127190612f2d565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b505050505081565b60606112d1826115f1565b611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612c37565b60405180910390fd5b600061131a611bbc565b9050600081511161133a5760405180602001604052806000815250611365565b8061134484611c4e565b6040516020016113559291906129af565b6040516020818303038152906040525b915050919050565b6008805461137a90612f2d565b80601f01602080910402602001604051908101604052809291908181526020018280546113a690612f2d565b80156113f35780601f106113c8576101008083540402835291602001916113f3565b820191906000526020600020905b8154815290600101906020018083116113d657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61149761165d565b73ffffffffffffffffffffffffffffffffffffffff166114b5610e50565b73ffffffffffffffffffffffffffffffffffffffff161461150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290612bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290612a97565b60405180910390fd5b61158481611a58565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116d883610bc5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611729826115f1565b611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90612b37565b60405180910390fd5b600061177383610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117e257508373ffffffffffffffffffffffffffffffffffffffff166117ca8461068e565b73ffffffffffffffffffffffffffffffffffffffff16145b806117f357506117f281856113fb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661181c82610bc5565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990612c17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990612ad7565b60405180910390fd5b6118ed838383611daf565b6118f8600082611665565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119489190612e43565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199f9190612dbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611b46828260405180602001604052806000815250611db4565b5050565b6001816000016000828254019250508190555050565b611b6b8484846117fc565b611b7784848484611e0f565b611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90612a77565b60405180910390fd5b50505050565b606060088054611bcb90612f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf790612f2d565b8015611c445780601f10611c1957610100808354040283529160200191611c44565b820191906000526020600020905b815481529060010190602001808311611c2757829003601f168201915b5050505050905090565b60606000821415611c96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611daa565b600082905060005b60008214611cc8578080611cb190612f90565b915050600a82611cc19190612e12565b9150611c9e565b60008167ffffffffffffffff811115611ce457611ce36130c6565b5b6040519080825280601f01601f191660200182016040528015611d165781602001600182028036833780820191505090505b5090505b60008514611da357600182611d2f9190612e43565b9150600a85611d3e9190612fd9565b6030611d4a9190612dbc565b60f81b818381518110611d6057611d5f613097565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d9c9190612e12565b9450611d1a565b8093505050505b919050565b505050565b611dbe8383611fa6565b611dcb6000848484611e0f565b611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190612a77565b60405180910390fd5b505050565b6000611e308473ffffffffffffffffffffffffffffffffffffffff16612174565b15611f99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5961165d565b8786866040518563ffffffff1660e01b8152600401611e7b94939291906129ee565b602060405180830381600087803b158015611e9557600080fd5b505af1925050508015611ec657506040513d601f19601f82011682018060405250810190611ec39190612563565b60015b611f49573d8060008114611ef6576040519150601f19603f3d011682016040523d82523d6000602084013e611efb565b606091505b50600081511415611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890612a77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f9e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90612bb7565b60405180910390fd5b61201f816115f1565b1561205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690612ab7565b60405180910390fd5b61206b60008383611daf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bb9190612dbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461219390612f2d565b90600052602060002090601f0160209004810192826121b557600085556121fc565b82601f106121ce57805160ff19168380011785556121fc565b828001600101855582156121fc579182015b828111156121fb5782518255916020019190600101906121e0565b5b509050612209919061220d565b5090565b5b8082111561222657600081600090555060010161220e565b5090565b600061223d61223884612d17565b612cf2565b905082815260208101848484011115612259576122586130fa565b5b612264848285612eeb565b509392505050565b600061227f61227a84612d48565b612cf2565b90508281526020810184848401111561229b5761229a6130fa565b5b6122a6848285612eeb565b509392505050565b6000813590506122bd816135ed565b92915050565b6000813590506122d281613604565b92915050565b6000813590506122e78161361b565b92915050565b6000815190506122fc8161361b565b92915050565b600082601f830112612317576123166130f5565b5b813561232784826020860161222a565b91505092915050565b600082601f830112612345576123446130f5565b5b813561235584826020860161226c565b91505092915050565b60008135905061236d81613632565b92915050565b60006020828403121561238957612388613104565b5b6000612397848285016122ae565b91505092915050565b600080604083850312156123b7576123b6613104565b5b60006123c5858286016122ae565b92505060206123d6858286016122ae565b9150509250929050565b6000806000606084860312156123f9576123f8613104565b5b6000612407868287016122ae565b9350506020612418868287016122ae565b92505060406124298682870161235e565b9150509250925092565b6000806000806080858703121561244d5761244c613104565b5b600061245b878288016122ae565b945050602061246c878288016122ae565b935050604061247d8782880161235e565b925050606085013567ffffffffffffffff81111561249e5761249d6130ff565b5b6124aa87828801612302565b91505092959194509250565b600080604083850312156124cd576124cc613104565b5b60006124db858286016122ae565b92505060206124ec858286016122c3565b9150509250929050565b6000806040838503121561250d5761250c613104565b5b600061251b858286016122ae565b925050602061252c8582860161235e565b9150509250929050565b60006020828403121561254c5761254b613104565b5b600061255a848285016122d8565b91505092915050565b60006020828403121561257957612578613104565b5b6000612587848285016122ed565b91505092915050565b6000602082840312156125a6576125a5613104565b5b600082013567ffffffffffffffff8111156125c4576125c36130ff565b5b6125d084828501612330565b91505092915050565b6000602082840312156125ef576125ee613104565b5b60006125fd8482850161235e565b91505092915050565b6000806040838503121561261d5761261c613104565b5b600061262b8582860161235e565b925050602061263c858286016122ae565b9150509250929050565b61264f81612e77565b82525050565b61265e81612e89565b82525050565b600061266f82612d79565b6126798185612d8f565b9350612689818560208601612efa565b61269281613109565b840191505092915050565b60006126a882612d84565b6126b28185612da0565b93506126c2818560208601612efa565b6126cb81613109565b840191505092915050565b60006126e182612d84565b6126eb8185612db1565b93506126fb818560208601612efa565b80840191505092915050565b6000612714603283612da0565b915061271f8261311a565b604082019050919050565b6000612737602683612da0565b915061274282613169565b604082019050919050565b600061275a601c83612da0565b9150612765826131b8565b602082019050919050565b600061277d602483612da0565b9150612788826131e1565b604082019050919050565b60006127a0601983612da0565b91506127ab82613230565b602082019050919050565b60006127c3600b83612da0565b91506127ce82613259565b602082019050919050565b60006127e6602c83612da0565b91506127f182613282565b604082019050919050565b6000612809603883612da0565b9150612814826132d1565b604082019050919050565b600061282c602a83612da0565b915061283782613320565b604082019050919050565b600061284f602983612da0565b915061285a8261336f565b604082019050919050565b6000612872602083612da0565b915061287d826133be565b602082019050919050565b6000612895602c83612da0565b91506128a0826133e7565b604082019050919050565b60006128b8602083612da0565b91506128c382613436565b602082019050919050565b60006128db602983612da0565b91506128e68261345f565b604082019050919050565b60006128fe602f83612da0565b9150612909826134ae565b604082019050919050565b6000612921601a83612da0565b915061292c826134fd565b602082019050919050565b6000612944602183612da0565b915061294f82613526565b604082019050919050565b6000612967603183612da0565b915061297282613575565b604082019050919050565b600061298a601f83612da0565b9150612995826135c4565b602082019050919050565b6129a981612ee1565b82525050565b60006129bb82856126d6565b91506129c782846126d6565b91508190509392505050565b60006020820190506129e86000830184612646565b92915050565b6000608082019050612a036000830187612646565b612a106020830186612646565b612a1d60408301856129a0565b8181036060830152612a2f8184612664565b905095945050505050565b6000602082019050612a4f6000830184612655565b92915050565b60006020820190508181036000830152612a6f818461269d565b905092915050565b60006020820190508181036000830152612a9081612707565b9050919050565b60006020820190508181036000830152612ab08161272a565b9050919050565b60006020820190508181036000830152612ad08161274d565b9050919050565b60006020820190508181036000830152612af081612770565b9050919050565b60006020820190508181036000830152612b1081612793565b9050919050565b60006020820190508181036000830152612b30816127b6565b9050919050565b60006020820190508181036000830152612b50816127d9565b9050919050565b60006020820190508181036000830152612b70816127fc565b9050919050565b60006020820190508181036000830152612b908161281f565b9050919050565b60006020820190508181036000830152612bb081612842565b9050919050565b60006020820190508181036000830152612bd081612865565b9050919050565b60006020820190508181036000830152612bf081612888565b9050919050565b60006020820190508181036000830152612c10816128ab565b9050919050565b60006020820190508181036000830152612c30816128ce565b9050919050565b60006020820190508181036000830152612c50816128f1565b9050919050565b60006020820190508181036000830152612c7081612914565b9050919050565b60006020820190508181036000830152612c9081612937565b9050919050565b60006020820190508181036000830152612cb08161295a565b9050919050565b60006020820190508181036000830152612cd08161297d565b9050919050565b6000602082019050612cec60008301846129a0565b92915050565b6000612cfc612d0d565b9050612d088282612f5f565b919050565b6000604051905090565b600067ffffffffffffffff821115612d3257612d316130c6565b5b612d3b82613109565b9050602081019050919050565b600067ffffffffffffffff821115612d6357612d626130c6565b5b612d6c82613109565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dc782612ee1565b9150612dd283612ee1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0757612e0661300a565b5b828201905092915050565b6000612e1d82612ee1565b9150612e2883612ee1565b925082612e3857612e37613039565b5b828204905092915050565b6000612e4e82612ee1565b9150612e5983612ee1565b925082821015612e6c57612e6b61300a565b5b828203905092915050565b6000612e8282612ec1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f18578082015181840152602081019050612efd565b83811115612f27576000848401525b50505050565b60006002820490506001821680612f4557607f821691505b60208210811415612f5957612f58613068565b5b50919050565b612f6882613109565b810181811067ffffffffffffffff82111715612f8757612f866130c6565b5b80604052505050565b6000612f9b82612ee1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fce57612fcd61300a565b5b600182019050919050565b6000612fe482612ee1565b9150612fef83612ee1565b925082612fff57612ffe613039565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f6e6c79206d696e746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e746572206f776e6572736869702072656e6f756e636564000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6135f681612e77565b811461360157600080fd5b50565b61360d81612e89565b811461361857600080fd5b50565b61362481612e95565b811461362f57600080fd5b50565b61363b81612ee1565b811461364657600080fd5b5056fea26469706673582212208437a9a468464c134b6efb0aae5aced6deccbc096a38ffbaab49c05a3ced61fc64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461045a578063d547cfb71461048a578063e985e9c5146104a8578063f2fde38b146104d8576101a9565b8063a22cb46514610404578063b88d4fde14610420578063c6ab67a31461043c576101a9565b80638da5cb5b116100d35780638da5cb5b1461038e57806394bf804d146103ac57806395d89b41146103c85780639f181b5e146103e6576101a9565b806370a082311461034a578063715018a61461037a57806376daebe114610384576101a9565b80631e688e101161016657806342842e0e1161014057806342842e0e146102c65780634eb03f6e146102e257806355f804b3146102fe5780636352211e1461031a576101a9565b80631e688e101461028257806323b872dd146102a05780633ccfd60b146102bc576101a9565b806301ffc9a7146101ae57806306fdde03146101de57806307546172146101fc578063081812fc1461021a578063095ea7b31461024a5780631096952314610266575b600080fd5b6101c860048036038101906101c39190612536565b6104f4565b6040516101d59190612a3a565b60405180910390f35b6101e66105d6565b6040516101f39190612a55565b60405180910390f35b610204610668565b60405161021191906129d3565b60405180910390f35b610234600480360381019061022f91906125d9565b61068e565b60405161024191906129d3565b60405180910390f35b610264600480360381019061025f91906124f6565b610713565b005b610280600480360381019061027b9190612590565b61082b565b005b61028a6108c1565b6040516102979190612a3a565b60405180910390f35b6102ba60048036038101906102b591906123e0565b6108d4565b005b6102c4610934565b005b6102e060048036038101906102db91906123e0565b6109ff565b005b6102fc60048036038101906102f79190612373565b610a1f565b005b61031860048036038101906103139190612590565b610b2f565b005b610334600480360381019061032f91906125d9565b610bc5565b60405161034191906129d3565b60405180910390f35b610364600480360381019061035f9190612373565b610c77565b6040516103719190612cd7565b60405180910390f35b610382610d2f565b005b61038c610db7565b005b610396610e50565b6040516103a391906129d3565b60405180910390f35b6103c660048036038101906103c19190612606565b610e7a565b005b6103d0610fb2565b6040516103dd9190612a55565b60405180910390f35b6103ee611044565b6040516103fb9190612cd7565b60405180910390f35b61041e600480360381019061041991906124b6565b611055565b005b61043a60048036038101906104359190612433565b6111d6565b005b610444611238565b6040516104519190612a55565b60405180910390f35b610474600480360381019061046f91906125d9565b6112c6565b6040516104819190612a55565b60405180910390f35b61049261136d565b60405161049f9190612a55565b60405180910390f35b6104c260048036038101906104bd91906123a0565b6113fb565b6040516104cf9190612a3a565b60405180910390f35b6104f260048036038101906104ed9190612373565b61148f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105bf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105cf57506105ce82611587565b5b9050919050565b6060600080546105e590612f2d565b80601f016020809104026020016040519081016040528092919081815260200182805461061190612f2d565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610699826115f1565b6106d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cf90612bd7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071e82610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690612c77565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ae61165d565b73ffffffffffffffffffffffffffffffffffffffff1614806107dd57506107dc816107d761165d565b6113fb565b5b61081c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081390612b57565b60405180910390fd5b6108268383611665565b505050565b61083361165d565b73ffffffffffffffffffffffffffffffffffffffff16610851610e50565b73ffffffffffffffffffffffffffffffffffffffff16146108a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089e90612bf7565b60405180910390fd5b80600990805190602001906108bd929190612187565b5050565b600a60149054906101000a900460ff1681565b6108e56108df61165d565b8261171e565b610924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091b90612c97565b60405180910390fd5b61092f8383836117fc565b505050565b61093c61165d565b73ffffffffffffffffffffffffffffffffffffffff1661095a610e50565b73ffffffffffffffffffffffffffffffffffffffff16146109b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a790612bf7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109fb573d6000803e3d6000fd5b5050565b610a1a838383604051806020016040528060008152506111d6565b505050565b610a2761165d565b73ffffffffffffffffffffffffffffffffffffffff16610a45610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9290612bf7565b60405180910390fd5b600a60149054906101000a900460ff1615610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290612c57565b60405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610b3761165d565b73ffffffffffffffffffffffffffffffffffffffff16610b55610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290612bf7565b60405180910390fd5b8060089080519060200190610bc1929190612187565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590612b97565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90612b77565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3761165d565b73ffffffffffffffffffffffffffffffffffffffff16610d55610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da290612bf7565b60405180910390fd5b610db56000611a58565b565b610dbf61165d565b73ffffffffffffffffffffffffffffffffffffffff16610ddd610e50565b73ffffffffffffffffffffffffffffffffffffffff1614610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612bf7565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0190612b17565b60405180910390fd5b60026007541415610f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4790612cb7565b60405180910390fd5b600260078190555060005b82811015610fa55760006001610f71600b611b1e565b610f7b9190612dbc565b9050610f878382611b2c565b610f91600b611b4a565b508080610f9d90612f90565b915050610f5b565b5060016007819055505050565b606060018054610fc190612f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fed90612f2d565b801561103a5780601f1061100f5761010080835404028352916020019161103a565b820191906000526020600020905b81548152906001019060200180831161101d57829003601f168201915b5050505050905090565b6000611050600b611b1e565b905090565b61105d61165d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c290612af7565b60405180910390fd5b80600560006110d861165d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661118561165d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111ca9190612a3a565b60405180910390a35050565b6111e76111e161165d565b8361171e565b611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612c97565b60405180910390fd5b61123284848484611b60565b50505050565b6009805461124590612f2d565b80601f016020809104026020016040519081016040528092919081815260200182805461127190612f2d565b80156112be5780601f10611293576101008083540402835291602001916112be565b820191906000526020600020905b8154815290600101906020018083116112a157829003601f168201915b505050505081565b60606112d1826115f1565b611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790612c37565b60405180910390fd5b600061131a611bbc565b9050600081511161133a5760405180602001604052806000815250611365565b8061134484611c4e565b6040516020016113559291906129af565b6040516020818303038152906040525b915050919050565b6008805461137a90612f2d565b80601f01602080910402602001604051908101604052809291908181526020018280546113a690612f2d565b80156113f35780601f106113c8576101008083540402835291602001916113f3565b820191906000526020600020905b8154815290600101906020018083116113d657829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61149761165d565b73ffffffffffffffffffffffffffffffffffffffff166114b5610e50565b73ffffffffffffffffffffffffffffffffffffffff161461150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290612bf7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290612a97565b60405180910390fd5b61158481611a58565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116d883610bc5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611729826115f1565b611768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175f90612b37565b60405180910390fd5b600061177383610bc5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117e257508373ffffffffffffffffffffffffffffffffffffffff166117ca8461068e565b73ffffffffffffffffffffffffffffffffffffffff16145b806117f357506117f281856113fb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661181c82610bc5565b73ffffffffffffffffffffffffffffffffffffffff1614611872576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186990612c17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990612ad7565b60405180910390fd5b6118ed838383611daf565b6118f8600082611665565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119489190612e43565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199f9190612dbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611b46828260405180602001604052806000815250611db4565b5050565b6001816000016000828254019250508190555050565b611b6b8484846117fc565b611b7784848484611e0f565b611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad90612a77565b60405180910390fd5b50505050565b606060088054611bcb90612f2d565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf790612f2d565b8015611c445780601f10611c1957610100808354040283529160200191611c44565b820191906000526020600020905b815481529060010190602001808311611c2757829003601f168201915b5050505050905090565b60606000821415611c96576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611daa565b600082905060005b60008214611cc8578080611cb190612f90565b915050600a82611cc19190612e12565b9150611c9e565b60008167ffffffffffffffff811115611ce457611ce36130c6565b5b6040519080825280601f01601f191660200182016040528015611d165781602001600182028036833780820191505090505b5090505b60008514611da357600182611d2f9190612e43565b9150600a85611d3e9190612fd9565b6030611d4a9190612dbc565b60f81b818381518110611d6057611d5f613097565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d9c9190612e12565b9450611d1a565b8093505050505b919050565b505050565b611dbe8383611fa6565b611dcb6000848484611e0f565b611e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0190612a77565b60405180910390fd5b505050565b6000611e308473ffffffffffffffffffffffffffffffffffffffff16612174565b15611f99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e5961165d565b8786866040518563ffffffff1660e01b8152600401611e7b94939291906129ee565b602060405180830381600087803b158015611e9557600080fd5b505af1925050508015611ec657506040513d601f19601f82011682018060405250810190611ec39190612563565b60015b611f49573d8060008114611ef6576040519150601f19603f3d011682016040523d82523d6000602084013e611efb565b606091505b50600081511415611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3890612a77565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611f9e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612016576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200d90612bb7565b60405180910390fd5b61201f816115f1565b1561205f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205690612ab7565b60405180910390fd5b61206b60008383611daf565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120bb9190612dbc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461219390612f2d565b90600052602060002090601f0160209004810192826121b557600085556121fc565b82601f106121ce57805160ff19168380011785556121fc565b828001600101855582156121fc579182015b828111156121fb5782518255916020019190600101906121e0565b5b509050612209919061220d565b5090565b5b8082111561222657600081600090555060010161220e565b5090565b600061223d61223884612d17565b612cf2565b905082815260208101848484011115612259576122586130fa565b5b612264848285612eeb565b509392505050565b600061227f61227a84612d48565b612cf2565b90508281526020810184848401111561229b5761229a6130fa565b5b6122a6848285612eeb565b509392505050565b6000813590506122bd816135ed565b92915050565b6000813590506122d281613604565b92915050565b6000813590506122e78161361b565b92915050565b6000815190506122fc8161361b565b92915050565b600082601f830112612317576123166130f5565b5b813561232784826020860161222a565b91505092915050565b600082601f830112612345576123446130f5565b5b813561235584826020860161226c565b91505092915050565b60008135905061236d81613632565b92915050565b60006020828403121561238957612388613104565b5b6000612397848285016122ae565b91505092915050565b600080604083850312156123b7576123b6613104565b5b60006123c5858286016122ae565b92505060206123d6858286016122ae565b9150509250929050565b6000806000606084860312156123f9576123f8613104565b5b6000612407868287016122ae565b9350506020612418868287016122ae565b92505060406124298682870161235e565b9150509250925092565b6000806000806080858703121561244d5761244c613104565b5b600061245b878288016122ae565b945050602061246c878288016122ae565b935050604061247d8782880161235e565b925050606085013567ffffffffffffffff81111561249e5761249d6130ff565b5b6124aa87828801612302565b91505092959194509250565b600080604083850312156124cd576124cc613104565b5b60006124db858286016122ae565b92505060206124ec858286016122c3565b9150509250929050565b6000806040838503121561250d5761250c613104565b5b600061251b858286016122ae565b925050602061252c8582860161235e565b9150509250929050565b60006020828403121561254c5761254b613104565b5b600061255a848285016122d8565b91505092915050565b60006020828403121561257957612578613104565b5b6000612587848285016122ed565b91505092915050565b6000602082840312156125a6576125a5613104565b5b600082013567ffffffffffffffff8111156125c4576125c36130ff565b5b6125d084828501612330565b91505092915050565b6000602082840312156125ef576125ee613104565b5b60006125fd8482850161235e565b91505092915050565b6000806040838503121561261d5761261c613104565b5b600061262b8582860161235e565b925050602061263c858286016122ae565b9150509250929050565b61264f81612e77565b82525050565b61265e81612e89565b82525050565b600061266f82612d79565b6126798185612d8f565b9350612689818560208601612efa565b61269281613109565b840191505092915050565b60006126a882612d84565b6126b28185612da0565b93506126c2818560208601612efa565b6126cb81613109565b840191505092915050565b60006126e182612d84565b6126eb8185612db1565b93506126fb818560208601612efa565b80840191505092915050565b6000612714603283612da0565b915061271f8261311a565b604082019050919050565b6000612737602683612da0565b915061274282613169565b604082019050919050565b600061275a601c83612da0565b9150612765826131b8565b602082019050919050565b600061277d602483612da0565b9150612788826131e1565b604082019050919050565b60006127a0601983612da0565b91506127ab82613230565b602082019050919050565b60006127c3600b83612da0565b91506127ce82613259565b602082019050919050565b60006127e6602c83612da0565b91506127f182613282565b604082019050919050565b6000612809603883612da0565b9150612814826132d1565b604082019050919050565b600061282c602a83612da0565b915061283782613320565b604082019050919050565b600061284f602983612da0565b915061285a8261336f565b604082019050919050565b6000612872602083612da0565b915061287d826133be565b602082019050919050565b6000612895602c83612da0565b91506128a0826133e7565b604082019050919050565b60006128b8602083612da0565b91506128c382613436565b602082019050919050565b60006128db602983612da0565b91506128e68261345f565b604082019050919050565b60006128fe602f83612da0565b9150612909826134ae565b604082019050919050565b6000612921601a83612da0565b915061292c826134fd565b602082019050919050565b6000612944602183612da0565b915061294f82613526565b604082019050919050565b6000612967603183612da0565b915061297282613575565b604082019050919050565b600061298a601f83612da0565b9150612995826135c4565b602082019050919050565b6129a981612ee1565b82525050565b60006129bb82856126d6565b91506129c782846126d6565b91508190509392505050565b60006020820190506129e86000830184612646565b92915050565b6000608082019050612a036000830187612646565b612a106020830186612646565b612a1d60408301856129a0565b8181036060830152612a2f8184612664565b905095945050505050565b6000602082019050612a4f6000830184612655565b92915050565b60006020820190508181036000830152612a6f818461269d565b905092915050565b60006020820190508181036000830152612a9081612707565b9050919050565b60006020820190508181036000830152612ab08161272a565b9050919050565b60006020820190508181036000830152612ad08161274d565b9050919050565b60006020820190508181036000830152612af081612770565b9050919050565b60006020820190508181036000830152612b1081612793565b9050919050565b60006020820190508181036000830152612b30816127b6565b9050919050565b60006020820190508181036000830152612b50816127d9565b9050919050565b60006020820190508181036000830152612b70816127fc565b9050919050565b60006020820190508181036000830152612b908161281f565b9050919050565b60006020820190508181036000830152612bb081612842565b9050919050565b60006020820190508181036000830152612bd081612865565b9050919050565b60006020820190508181036000830152612bf081612888565b9050919050565b60006020820190508181036000830152612c10816128ab565b9050919050565b60006020820190508181036000830152612c30816128ce565b9050919050565b60006020820190508181036000830152612c50816128f1565b9050919050565b60006020820190508181036000830152612c7081612914565b9050919050565b60006020820190508181036000830152612c9081612937565b9050919050565b60006020820190508181036000830152612cb08161295a565b9050919050565b60006020820190508181036000830152612cd08161297d565b9050919050565b6000602082019050612cec60008301846129a0565b92915050565b6000612cfc612d0d565b9050612d088282612f5f565b919050565b6000604051905090565b600067ffffffffffffffff821115612d3257612d316130c6565b5b612d3b82613109565b9050602081019050919050565b600067ffffffffffffffff821115612d6357612d626130c6565b5b612d6c82613109565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612dc782612ee1565b9150612dd283612ee1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e0757612e0661300a565b5b828201905092915050565b6000612e1d82612ee1565b9150612e2883612ee1565b925082612e3857612e37613039565b5b828204905092915050565b6000612e4e82612ee1565b9150612e5983612ee1565b925082821015612e6c57612e6b61300a565b5b828203905092915050565b6000612e8282612ec1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f18578082015181840152602081019050612efd565b83811115612f27576000848401525b50505050565b60006002820490506001821680612f4557607f821691505b60208210811415612f5957612f58613068565b5b50919050565b612f6882613109565b810181811067ffffffffffffffff82111715612f8757612f866130c6565b5b80604052505050565b6000612f9b82612ee1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fce57612fcd61300a565b5b600182019050919050565b6000612fe482612ee1565b9150612fef83612ee1565b925082612fff57612ffe613039565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f6e6c79206d696e746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d696e746572206f776e6572736869702072656e6f756e636564000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6135f681612e77565b811461360157600080fd5b50565b61360d81612e89565b811461361857600080fd5b50565b61362481612e95565b811461362f57600080fd5b50565b61363b81612ee1565b811461364657600080fd5b5056fea26469706673582212208437a9a468464c134b6efb0aae5aced6deccbc096a38ffbaab49c05a3ced61fc64736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [2] : 697066733a2f2f00000000000000000000000000000000000000000000000000
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.