ERC-721
Overview
Max Total Supply
1,065 GUNNERZ
Holders
203
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 GUNNERZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Gunnerz
Compiler Version
v0.8.11+commit.d7f03943
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.11; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Gunnerz is ERC721, Ownable { using Counters for Counters.Counter; constructor( string memory _name, string memory _symbol, string memory baseURI_ ) ERC721(_name, _symbol) { baseURI = baseURI_; } /** * Minting functionality */ uint256 public constant MAX_PER_TXN = 10; uint256 public constant MAX_SUPPLY_ABSOLUTE = 5000; uint256 public constant SALE_PRICE = 0.02 ether; uint256 public mintableSupply = 5000; uint256 public freeMintAmount = 1000; Counters.Counter private supplyCounter; modifier withinQuantityLimits(uint256 _quantity) { require(_quantity > 0 && _quantity <= MAX_PER_TXN, "Invalid quantity"); _; } modifier withinMaximumSupply(uint256 _quantity) { require(totalSupply() + _quantity <= mintableSupply, "Surpasses supply"); _; } modifier hasCorrectAmount(uint256 _wei, uint256 _quantity) { require(_wei >= mintPrice(_quantity), "Insufficent funds"); _; } function mintWhitelist(uint256 _quantity, bytes32[] calldata merkleProof) public payable whitelistSaleActive hasValidMerkleProof(merkleProof, whitelistMerkleRoot) hasCorrectAmount(msg.value, _quantity) { _mintGunner(_msgSender(), _quantity); } function mintPublic(uint256 _quantity) public payable publicSaleActive hasCorrectAmount(msg.value, _quantity) { _mintGunner(_msgSender(), _quantity); } function _mintGunner(address recipient, uint256 _quantity) private withinQuantityLimits(_quantity) withinMaximumSupply(_quantity) { for (uint256 i = 0; i < _quantity; i++) { supplyCounter.increment(); _mint(recipient, totalSupply()); } } function totalSupply() public view returns (uint256) { return supplyCounter.current(); } function mintPrice(uint256 _quantity) public view returns (uint256) { if (totalSupply() + _quantity <= freeMintAmount) { return 0; } return SALE_PRICE * _quantity; } function setMintableSupply(uint256 _total) public onlyOwner { require(_total <= MAX_SUPPLY_ABSOLUTE, "Surpasses absolute maximum"); require(_total >= totalSupply(), "Must be above total minted"); mintableSupply = _total; } function setFreeMintTotal(uint256 _total) public onlyOwner { require(_total <= MAX_SUPPLY_ABSOLUTE, "Surpasses absolute maximum"); require(_total >= totalSupply(), "Must be above total minted"); freeMintAmount = _total; } /** * Gift a mint */ function mintAdmin(address recipient, uint256 _quantity) public payable onlyOwner { _mintGunner(recipient, _quantity); } /** * Public and Whitelist Sale Toggle */ bool public publicSale = false; bool public whitelistSale = false; modifier publicSaleActive() { require(publicSale, "Public sale has not started"); _; } function setPublicSale(bool toggle) external onlyOwner { publicSale = toggle; } modifier whitelistSaleActive() { require(whitelistSale, "Whitelist has not started"); require(!publicSale, "Public sale has started"); _; } function setWhitelistSale(bool toggle) external onlyOwner { whitelistSale = toggle; } /** * Whitelist merkle root */ bytes32 public whitelistMerkleRoot; modifier hasValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) { require( MerkleProof.verify( merkleProof, root, keccak256(abi.encodePacked(msg.sender)) ), "Address not whitelisted" ); _; } function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner { whitelistMerkleRoot = merkleRoot; } /** * Base URI */ string private baseURI; function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * Withdrawal (owner restricted) */ function withdraw() public onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "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":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"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":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_ABSOLUTE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintAdmin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_total","type":"uint256"}],"name":"setFreeMintTotal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"setMintableSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"toggle","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526113886007556103e86008556000600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055503480156200005357600080fd5b506040516200498f3803806200498f83398181016040528101906200007991906200040c565b8282816000908051906020019062000093929190620001bf565b508060019080519060200190620000ac929190620001bf565b505050620000cf620000c3620000f160201b60201c565b620000f960201b60201c565b80600c9080519060200190620000e7929190620001bf565b505050506200052a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cd90620004f4565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002d8826200028d565b810181811067ffffffffffffffff82111715620002fa57620002f96200029e565b5b80604052505050565b60006200030f6200026f565b90506200031d8282620002cd565b919050565b600067ffffffffffffffff82111562000340576200033f6200029e565b5b6200034b826200028d565b9050602081019050919050565b60005b83811015620003785780820151818401526020810190506200035b565b8381111562000388576000848401525b50505050565b6000620003a56200039f8462000322565b62000303565b905082815260208101848484011115620003c457620003c362000288565b5b620003d184828562000358565b509392505050565b600082601f830112620003f157620003f062000283565b5b8151620004038482602086016200038e565b91505092915050565b60008060006060848603121562000428576200042762000279565b5b600084015167ffffffffffffffff8111156200044957620004486200027e565b5b6200045786828701620003d9565b935050602084015167ffffffffffffffff8111156200047b576200047a6200027e565b5b6200048986828701620003d9565b925050604084015167ffffffffffffffff811115620004ad57620004ac6200027e565b5b620004bb86828701620003d9565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200050d57607f821691505b60208210811415620005245762000523620004c5565b5b50919050565b614455806200053a6000396000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063bd32fb66116100a0578063cc5c095c1161006f578063cc5c095c14610747578063e6a72acf14610772578063e985e9c5146107af578063efd0cbf9146107ec578063f2fde38b146108085761020f565b8063bd32fb661461069c578063c3a71999146106c5578063c87b56dd146106e1578063ca7ce3ec1461071e5761020f565b80638da5cb5b116100e75780638da5cb5b146105c957806395d89b41146105f4578063a22cb4651461061f578063aa98e0c614610648578063b88d4fde146106735761020f565b80636352211e1461050d57806370a082311461054a578063715018a6146105875780637f205a741461059e5761020f565b806333bc1c5c1161019b57806342842e0e1161016a57806342842e0e1461043e57806349281f731461046757806351b96d921461049057806355f804b3146104bb5780635aca1bb6146104e45761020f565b806333bc1c5c146103a857806338f1c4d2146103d35780633a467e3d146103fc5780633ccfd60b146104275761020f565b8063095ea7b3116101e2578063095ea7b3146102d557806318160ddd146102fe57806323b872dd146103295780632bdb52281461035257806331ffd6f11461037d5761020f565b806301ffc9a714610214578063061431a81461025157806306fdde031461026d578063081812fc14610298575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612a5c565b610831565b6040516102489190612aa4565b60405180910390f35b61026b60048036038101906102669190612b5a565b610913565b005b34801561027957600080fd5b50610282610ad0565b60405161028f9190612c53565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612c75565b610b62565b6040516102cc9190612ce3565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612d2a565b610be7565b005b34801561030a57600080fd5b50610313610cff565b6040516103209190612d79565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612d94565b610d10565b005b34801561035e57600080fd5b50610367610d70565b6040516103749190612d79565b60405180910390f35b34801561038957600080fd5b50610392610d76565b60405161039f9190612aa4565b60405180910390f35b3480156103b457600080fd5b506103bd610d89565b6040516103ca9190612aa4565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612c75565b610d9c565b005b34801561040857600080fd5b50610411610eb1565b60405161041e9190612d79565b60405180910390f35b34801561043357600080fd5b5061043c610eb7565b005b34801561044a57600080fd5b5061046560048036038101906104609190612d94565b610f4c565b005b34801561047357600080fd5b5061048e60048036038101906104899190612c75565b610f6c565b005b34801561049c57600080fd5b506104a5611081565b6040516104b29190612d79565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612f17565b611086565b005b3480156104f057600080fd5b5061050b60048036038101906105069190612f8c565b61111c565b005b34801561051957600080fd5b50610534600480360381019061052f9190612c75565b6111b5565b6040516105419190612ce3565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190612fb9565b611267565b60405161057e9190612d79565b60405180910390f35b34801561059357600080fd5b5061059c61131f565b005b3480156105aa57600080fd5b506105b36113a7565b6040516105c09190612d79565b60405180910390f35b3480156105d557600080fd5b506105de6113b2565b6040516105eb9190612ce3565b60405180910390f35b34801561060057600080fd5b506106096113dc565b6040516106169190612c53565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612fe6565b61146e565b005b34801561065457600080fd5b5061065d611484565b60405161066a919061303f565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906130fb565b61148a565b005b3480156106a857600080fd5b506106c360048036038101906106be91906131aa565b6114ec565b005b6106df60048036038101906106da9190612d2a565b611572565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612c75565b6115fc565b6040516107159190612c53565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612f8c565b6116a3565b005b34801561075357600080fd5b5061075c61173c565b6040516107699190612d79565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612c75565b611742565b6040516107a69190612d79565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906131d7565b611783565b6040516107e39190612aa4565b60405180910390f35b61080660048036038101906108019190612c75565b611817565b005b34801561081457600080fd5b5061082f600480360381019061082a9190612fb9565b6118c9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090c575061090b826119c1565b5b9050919050565b600a60019054906101000a900460ff16610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990613263565b60405180910390fd5b600a60009054906101000a900460ff16156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906132cf565b60405180910390fd5b8181600b54610a29838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001610a0e9190613337565b60405160208183030381529060405280519060200120611a2b565b610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f9061339e565b60405180910390fd5b3486610a7381611742565b821015610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac9061340a565b60405180910390fd5b610ac6610ac0611a42565b89611a4a565b5050505050505050565b606060008054610adf90613459565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0b90613459565b8015610b585780601f10610b2d57610100808354040283529160200191610b58565b820191906000526020600020905b815481529060010190602001808311610b3b57829003601f168201915b5050505050905090565b6000610b6d82611b33565b610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906134fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf2826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a9061358f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c82611a42565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610cb081610cab611a42565b611783565b5b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790613621565b60405180910390fd5b610cfa8383611b9f565b505050565b6000610d0b6009611c58565b905090565b610d21610d1b611a42565b82611c66565b610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906136b3565b60405180910390fd5b610d6b838383611d44565b505050565b61138881565b600a60019054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b610da4611a42565b73ffffffffffffffffffffffffffffffffffffffff16610dc26113b2565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061371f565b60405180910390fd5b611388811115610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e549061378b565b60405180910390fd5b610e65610cff565b811015610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906137f7565b60405180910390fd5b8060088190555050565b60085481565b610ebf611a42565b73ffffffffffffffffffffffffffffffffffffffff16610edd6113b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a9061371f565b60405180910390fd5b6000479050610f49610f436113b2565b82611fa0565b50565b610f678383836040518060200160405280600081525061148a565b505050565b610f74611a42565b73ffffffffffffffffffffffffffffffffffffffff16610f926113b2565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf9061371f565b60405180910390fd5b61138881111561102d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110249061378b565b60405180910390fd5b611035610cff565b811015611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906137f7565b60405180910390fd5b8060078190555050565b600a81565b61108e611a42565b73ffffffffffffffffffffffffffffffffffffffff166110ac6113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061371f565b60405180910390fd5b80600c908051906020019061111892919061294d565b5050565b611124611a42565b73ffffffffffffffffffffffffffffffffffffffff166111426113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061371f565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613889565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf9061391b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611327611a42565b73ffffffffffffffffffffffffffffffffffffffff166113456113b2565b73ffffffffffffffffffffffffffffffffffffffff161461139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061371f565b60405180910390fd5b6113a56000612094565b565b66470de4df82000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113eb90613459565b80601f016020809104026020016040519081016040528092919081815260200182805461141790613459565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b5050505050905090565b611480611479611a42565b838361215a565b5050565b600b5481565b61149b611495611a42565b83611c66565b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906136b3565b60405180910390fd5b6114e6848484846122c7565b50505050565b6114f4611a42565b73ffffffffffffffffffffffffffffffffffffffff166115126113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f9061371f565b60405180910390fd5b80600b8190555050565b61157a611a42565b73ffffffffffffffffffffffffffffffffffffffff166115986113b2565b73ffffffffffffffffffffffffffffffffffffffff16146115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061371f565b60405180910390fd5b6115f88282611a4a565b5050565b606061160782611b33565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d906139ad565b60405180910390fd5b6000611650612323565b90506000815111611670576040518060200160405280600081525061169b565b8061167a846123b5565b60405160200161168b929190613a09565b6040516020818303038152906040525b915050919050565b6116ab611a42565b73ffffffffffffffffffffffffffffffffffffffff166116c96113b2565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169061371f565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b60075481565b600060085482611750610cff565b61175a9190613a5c565b11611768576000905061177e565b8166470de4df82000061177b9190613ab2565b90505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff16611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613b58565b60405180910390fd5b348161187181611742565b8210156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa9061340a565b60405180910390fd5b6118c46118be611a42565b84611a4a565b505050565b6118d1611a42565b73ffffffffffffffffffffffffffffffffffffffff166118ef6113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c9061371f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90613bea565b60405180910390fd5b6119be81612094565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082611a388584612516565b1490509392505050565b600033905090565b80600081118015611a5c5750600a8111155b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613c56565b60405180910390fd5b8160075481611aa8610cff565b611ab29190613a5c565b1115611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613cc2565b60405180910390fd5b60005b83811015611b2c57611b0860096125c9565b611b1985611b14610cff565b6125df565b8080611b2490613ce2565b915050611af6565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c12836111b5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611c7182611b33565b611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790613d9d565b60405180910390fd5b6000611cbb836111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2a57508373ffffffffffffffffffffffffffffffffffffffff16611d1284610b62565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3b5750611d3a8185611783565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d64826111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613e2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190613ec1565b60405180910390fd5b611e358383836127ad565b611e40600082611b9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e909190613ee1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee79190613a5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda90613f61565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161200990613fb2565b60006040518083038185875af1925050503d8060008114612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b505090508061208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614039565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c0906140a5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122ba9190612aa4565b60405180910390a3505050565b6122d2848484611d44565b6122de848484846127b2565b61231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614137565b60405180910390fd5b50505050565b6060600c805461233290613459565b80601f016020809104026020016040519081016040528092919081815260200182805461235e90613459565b80156123ab5780601f10612380576101008083540402835291602001916123ab565b820191906000526020600020905b81548152906001019060200180831161238e57829003601f168201915b5050505050905090565b606060008214156123fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612511565b600082905060005b6000821461242f57808061241890613ce2565b915050600a826124289190614186565b9150612405565b60008167ffffffffffffffff81111561244b5761244a612dec565b5b6040519080825280601f01601f19166020018201604052801561247d5781602001600182028036833780820191505090505b5090505b6000851461250a576001826124969190613ee1565b9150600a856124a591906141b7565b60306124b19190613a5c565b60f81b8183815181106124c7576124c66141e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125039190614186565b9450612481565b8093505050505b919050565b60008082905060005b84518110156125be57600085828151811061253d5761253c6141e8565b5b6020026020010151905080831161257e578281604051602001612561929190614238565b6040516020818303038152906040528051906020012092506125aa565b8083604051602001612591929190614238565b6040516020818303038152906040528051906020012092505b5080806125b690613ce2565b91505061251f565b508091505092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612646906142b0565b60405180910390fd5b61265881611b33565b15612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f9061431c565b60405180910390fd5b6126a4600083836127ad565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f49190613a5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006127d38473ffffffffffffffffffffffffffffffffffffffff1661293a565b1561292d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fc611a42565b8786866040518563ffffffff1660e01b815260040161281e9493929190614391565b6020604051808303816000875af192505050801561285a57506040513d601f19601f8201168201806040525081019061285791906143f2565b60015b6128dd573d806000811461288a576040519150601f19603f3d011682016040523d82523d6000602084013e61288f565b606091505b506000815114156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90614137565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612932565b600190505b949350505050565b600080823b905060008111915050919050565b82805461295990613459565b90600052602060002090601f01602090048101928261297b57600085556129c2565b82601f1061299457805160ff19168380011785556129c2565b828001600101855582156129c2579182015b828111156129c15782518255916020019190600101906129a6565b5b5090506129cf91906129d3565b5090565b5b808211156129ec5760008160009055506001016129d4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3981612a04565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b600060208284031215612a7257612a716129fa565b5b6000612a8084828501612a47565b91505092915050565b60008115159050919050565b612a9e81612a89565b82525050565b6000602082019050612ab96000830184612a95565b92915050565b6000819050919050565b612ad281612abf565b8114612add57600080fd5b50565b600081359050612aef81612ac9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b1a57612b19612af5565b5b8235905067ffffffffffffffff811115612b3757612b36612afa565b5b602083019150836020820283011115612b5357612b52612aff565b5b9250929050565b600080600060408486031215612b7357612b726129fa565b5b6000612b8186828701612ae0565b935050602084013567ffffffffffffffff811115612ba257612ba16129ff565b5b612bae86828701612b04565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bf4578082015181840152602081019050612bd9565b83811115612c03576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c2582612bba565b612c2f8185612bc5565b9350612c3f818560208601612bd6565b612c4881612c09565b840191505092915050565b60006020820190508181036000830152612c6d8184612c1a565b905092915050565b600060208284031215612c8b57612c8a6129fa565b5b6000612c9984828501612ae0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ccd82612ca2565b9050919050565b612cdd81612cc2565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b612d0781612cc2565b8114612d1257600080fd5b50565b600081359050612d2481612cfe565b92915050565b60008060408385031215612d4157612d406129fa565b5b6000612d4f85828601612d15565b9250506020612d6085828601612ae0565b9150509250929050565b612d7381612abf565b82525050565b6000602082019050612d8e6000830184612d6a565b92915050565b600080600060608486031215612dad57612dac6129fa565b5b6000612dbb86828701612d15565b9350506020612dcc86828701612d15565b9250506040612ddd86828701612ae0565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2482612c09565b810181811067ffffffffffffffff82111715612e4357612e42612dec565b5b80604052505050565b6000612e566129f0565b9050612e628282612e1b565b919050565b600067ffffffffffffffff821115612e8257612e81612dec565b5b612e8b82612c09565b9050602081019050919050565b82818337600083830152505050565b6000612eba612eb584612e67565b612e4c565b905082815260208101848484011115612ed657612ed5612de7565b5b612ee1848285612e98565b509392505050565b600082601f830112612efe57612efd612af5565b5b8135612f0e848260208601612ea7565b91505092915050565b600060208284031215612f2d57612f2c6129fa565b5b600082013567ffffffffffffffff811115612f4b57612f4a6129ff565b5b612f5784828501612ee9565b91505092915050565b612f6981612a89565b8114612f7457600080fd5b50565b600081359050612f8681612f60565b92915050565b600060208284031215612fa257612fa16129fa565b5b6000612fb084828501612f77565b91505092915050565b600060208284031215612fcf57612fce6129fa565b5b6000612fdd84828501612d15565b91505092915050565b60008060408385031215612ffd57612ffc6129fa565b5b600061300b85828601612d15565b925050602061301c85828601612f77565b9150509250929050565b6000819050919050565b61303981613026565b82525050565b60006020820190506130546000830184613030565b92915050565b600067ffffffffffffffff82111561307557613074612dec565b5b61307e82612c09565b9050602081019050919050565b600061309e6130998461305a565b612e4c565b9050828152602081018484840111156130ba576130b9612de7565b5b6130c5848285612e98565b509392505050565b600082601f8301126130e2576130e1612af5565b5b81356130f284826020860161308b565b91505092915050565b60008060008060808587031215613115576131146129fa565b5b600061312387828801612d15565b945050602061313487828801612d15565b935050604061314587828801612ae0565b925050606085013567ffffffffffffffff811115613166576131656129ff565b5b613172878288016130cd565b91505092959194509250565b61318781613026565b811461319257600080fd5b50565b6000813590506131a48161317e565b92915050565b6000602082840312156131c0576131bf6129fa565b5b60006131ce84828501613195565b91505092915050565b600080604083850312156131ee576131ed6129fa565b5b60006131fc85828601612d15565b925050602061320d85828601612d15565b9150509250929050565b7f57686974656c69737420686173206e6f74207374617274656400000000000000600082015250565b600061324d601983612bc5565b915061325882613217565b602082019050919050565b6000602082019050818103600083015261327c81613240565b9050919050565b7f5075626c69632073616c65206861732073746172746564000000000000000000600082015250565b60006132b9601783612bc5565b91506132c482613283565b602082019050919050565b600060208201905081810360008301526132e8816132ac565b9050919050565b60008160601b9050919050565b6000613307826132ef565b9050919050565b6000613319826132fc565b9050919050565b61333161332c82612cc2565b61330e565b82525050565b60006133438284613320565b60148201915081905092915050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000613388601783612bc5565b915061339382613352565b602082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b60006133f4601183612bc5565b91506133ff826133be565b602082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061347157607f821691505b602082108114156134855761348461342a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006134e7602c83612bc5565b91506134f28261348b565b604082019050919050565b60006020820190508181036000830152613516816134da565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613579602183612bc5565b91506135848261351d565b604082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061360b603883612bc5565b9150613616826135af565b604082019050919050565b6000602082019050818103600083015261363a816135fe565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061369d603183612bc5565b91506136a882613641565b604082019050919050565b600060208201905081810360008301526136cc81613690565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613709602083612bc5565b9150613714826136d3565b602082019050919050565b60006020820190508181036000830152613738816136fc565b9050919050565b7f537572706173736573206162736f6c757465206d6178696d756d000000000000600082015250565b6000613775601a83612bc5565b91506137808261373f565b602082019050919050565b600060208201905081810360008301526137a481613768565b9050919050565b7f4d7573742062652061626f766520746f74616c206d696e746564000000000000600082015250565b60006137e1601a83612bc5565b91506137ec826137ab565b602082019050919050565b60006020820190508181036000830152613810816137d4565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613873602983612bc5565b915061387e82613817565b604082019050919050565b600060208201905081810360008301526138a281613866565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613905602a83612bc5565b9150613910826138a9565b604082019050919050565b60006020820190508181036000830152613934816138f8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613997602f83612bc5565b91506139a28261393b565b604082019050919050565b600060208201905081810360008301526139c68161398a565b9050919050565b600081905092915050565b60006139e382612bba565b6139ed81856139cd565b93506139fd818560208601612bd6565b80840191505092915050565b6000613a1582856139d8565b9150613a2182846139d8565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6782612abf565b9150613a7283612abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa757613aa6613a2d565b5b828201905092915050565b6000613abd82612abf565b9150613ac883612abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b0157613b00613a2d565b5b828202905092915050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613b42601b83612bc5565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bd4602683612bc5565b9150613bdf82613b78565b604082019050919050565b60006020820190508181036000830152613c0381613bc7565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b6000613c40601083612bc5565b9150613c4b82613c0a565b602082019050919050565b60006020820190508181036000830152613c6f81613c33565b9050919050565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b6000613cac601083612bc5565b9150613cb782613c76565b602082019050919050565b60006020820190508181036000830152613cdb81613c9f565b9050919050565b6000613ced82612abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d2057613d1f613a2d565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613d87602c83612bc5565b9150613d9282613d2b565b604082019050919050565b60006020820190508181036000830152613db681613d7a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613e19602983612bc5565b9150613e2482613dbd565b604082019050919050565b60006020820190508181036000830152613e4881613e0c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613eab602483612bc5565b9150613eb682613e4f565b604082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b6000613eec82612abf565b9150613ef783612abf565b925082821015613f0a57613f09613a2d565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613f4b601d83612bc5565b9150613f5682613f15565b602082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b600081905092915050565b50565b6000613f9c600083613f81565b9150613fa782613f8c565b600082019050919050565b6000613fbd82613f8f565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614023603a83612bc5565b915061402e82613fc7565b604082019050919050565b6000602082019050818103600083015261405281614016565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061408f601983612bc5565b915061409a82614059565b602082019050919050565b600060208201905081810360008301526140be81614082565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614121603283612bc5565b915061412c826140c5565b604082019050919050565b6000602082019050818103600083015261415081614114565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061419182612abf565b915061419c83612abf565b9250826141ac576141ab614157565b5b828204905092915050565b60006141c282612abf565b91506141cd83612abf565b9250826141dd576141dc614157565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61423261422d82613026565b614217565b82525050565b60006142448285614221565b6020820191506142548284614221565b6020820191508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061429a602083612bc5565b91506142a582614264565b602082019050919050565b600060208201905081810360008301526142c98161428d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614306601c83612bc5565b9150614311826142d0565b602082019050919050565b60006020820190508181036000830152614335816142f9565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143638261433c565b61436d8185614347565b935061437d818560208601612bd6565b61438681612c09565b840191505092915050565b60006080820190506143a66000830187612cd4565b6143b36020830186612cd4565b6143c06040830185612d6a565b81810360608301526143d28184614358565b905095945050505050565b6000815190506143ec81612a30565b92915050565b600060208284031215614408576144076129fa565b5b6000614416848285016143dd565b9150509291505056fea26469706673582212208eb5a5155a3e649ea72ad167ef23339dc9ec50268fa6055c7df6c94de30fd72264736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c47756e6e65727a20436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747554e4e45525a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d545a64396942546a6e4c3371594237314e415a6842395a6a385071395562506e725371624675726e703268742f00000000000000000000
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636352211e11610118578063bd32fb66116100a0578063cc5c095c1161006f578063cc5c095c14610747578063e6a72acf14610772578063e985e9c5146107af578063efd0cbf9146107ec578063f2fde38b146108085761020f565b8063bd32fb661461069c578063c3a71999146106c5578063c87b56dd146106e1578063ca7ce3ec1461071e5761020f565b80638da5cb5b116100e75780638da5cb5b146105c957806395d89b41146105f4578063a22cb4651461061f578063aa98e0c614610648578063b88d4fde146106735761020f565b80636352211e1461050d57806370a082311461054a578063715018a6146105875780637f205a741461059e5761020f565b806333bc1c5c1161019b57806342842e0e1161016a57806342842e0e1461043e57806349281f731461046757806351b96d921461049057806355f804b3146104bb5780635aca1bb6146104e45761020f565b806333bc1c5c146103a857806338f1c4d2146103d35780633a467e3d146103fc5780633ccfd60b146104275761020f565b8063095ea7b3116101e2578063095ea7b3146102d557806318160ddd146102fe57806323b872dd146103295780632bdb52281461035257806331ffd6f11461037d5761020f565b806301ffc9a714610214578063061431a81461025157806306fdde031461026d578063081812fc14610298575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612a5c565b610831565b6040516102489190612aa4565b60405180910390f35b61026b60048036038101906102669190612b5a565b610913565b005b34801561027957600080fd5b50610282610ad0565b60405161028f9190612c53565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612c75565b610b62565b6040516102cc9190612ce3565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612d2a565b610be7565b005b34801561030a57600080fd5b50610313610cff565b6040516103209190612d79565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612d94565b610d10565b005b34801561035e57600080fd5b50610367610d70565b6040516103749190612d79565b60405180910390f35b34801561038957600080fd5b50610392610d76565b60405161039f9190612aa4565b60405180910390f35b3480156103b457600080fd5b506103bd610d89565b6040516103ca9190612aa4565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190612c75565b610d9c565b005b34801561040857600080fd5b50610411610eb1565b60405161041e9190612d79565b60405180910390f35b34801561043357600080fd5b5061043c610eb7565b005b34801561044a57600080fd5b5061046560048036038101906104609190612d94565b610f4c565b005b34801561047357600080fd5b5061048e60048036038101906104899190612c75565b610f6c565b005b34801561049c57600080fd5b506104a5611081565b6040516104b29190612d79565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612f17565b611086565b005b3480156104f057600080fd5b5061050b60048036038101906105069190612f8c565b61111c565b005b34801561051957600080fd5b50610534600480360381019061052f9190612c75565b6111b5565b6040516105419190612ce3565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190612fb9565b611267565b60405161057e9190612d79565b60405180910390f35b34801561059357600080fd5b5061059c61131f565b005b3480156105aa57600080fd5b506105b36113a7565b6040516105c09190612d79565b60405180910390f35b3480156105d557600080fd5b506105de6113b2565b6040516105eb9190612ce3565b60405180910390f35b34801561060057600080fd5b506106096113dc565b6040516106169190612c53565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612fe6565b61146e565b005b34801561065457600080fd5b5061065d611484565b60405161066a919061303f565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906130fb565b61148a565b005b3480156106a857600080fd5b506106c360048036038101906106be91906131aa565b6114ec565b005b6106df60048036038101906106da9190612d2a565b611572565b005b3480156106ed57600080fd5b5061070860048036038101906107039190612c75565b6115fc565b6040516107159190612c53565b60405180910390f35b34801561072a57600080fd5b5061074560048036038101906107409190612f8c565b6116a3565b005b34801561075357600080fd5b5061075c61173c565b6040516107699190612d79565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190612c75565b611742565b6040516107a69190612d79565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906131d7565b611783565b6040516107e39190612aa4565b60405180910390f35b61080660048036038101906108019190612c75565b611817565b005b34801561081457600080fd5b5061082f600480360381019061082a9190612fb9565b6118c9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108fc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061090c575061090b826119c1565b5b9050919050565b600a60019054906101000a900460ff16610962576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095990613263565b60405180910390fd5b600a60009054906101000a900460ff16156109b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a9906132cf565b60405180910390fd5b8181600b54610a29838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001610a0e9190613337565b60405160208183030381529060405280519060200120611a2b565b610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f9061339e565b60405180910390fd5b3486610a7381611742565b821015610ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aac9061340a565b60405180910390fd5b610ac6610ac0611a42565b89611a4a565b5050505050505050565b606060008054610adf90613459565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0b90613459565b8015610b585780601f10610b2d57610100808354040283529160200191610b58565b820191906000526020600020905b815481529060010190602001808311610b3b57829003601f168201915b5050505050905090565b6000610b6d82611b33565b610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba3906134fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf2826111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5a9061358f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c82611a42565b73ffffffffffffffffffffffffffffffffffffffff161480610cb15750610cb081610cab611a42565b611783565b5b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790613621565b60405180910390fd5b610cfa8383611b9f565b505050565b6000610d0b6009611c58565b905090565b610d21610d1b611a42565b82611c66565b610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d57906136b3565b60405180910390fd5b610d6b838383611d44565b505050565b61138881565b600a60019054906101000a900460ff1681565b600a60009054906101000a900460ff1681565b610da4611a42565b73ffffffffffffffffffffffffffffffffffffffff16610dc26113b2565b73ffffffffffffffffffffffffffffffffffffffff1614610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f9061371f565b60405180910390fd5b611388811115610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e549061378b565b60405180910390fd5b610e65610cff565b811015610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906137f7565b60405180910390fd5b8060088190555050565b60085481565b610ebf611a42565b73ffffffffffffffffffffffffffffffffffffffff16610edd6113b2565b73ffffffffffffffffffffffffffffffffffffffff1614610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a9061371f565b60405180910390fd5b6000479050610f49610f436113b2565b82611fa0565b50565b610f678383836040518060200160405280600081525061148a565b505050565b610f74611a42565b73ffffffffffffffffffffffffffffffffffffffff16610f926113b2565b73ffffffffffffffffffffffffffffffffffffffff1614610fe8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdf9061371f565b60405180910390fd5b61138881111561102d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110249061378b565b60405180910390fd5b611035610cff565b811015611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e906137f7565b60405180910390fd5b8060078190555050565b600a81565b61108e611a42565b73ffffffffffffffffffffffffffffffffffffffff166110ac6113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f99061371f565b60405180910390fd5b80600c908051906020019061111892919061294d565b5050565b611124611a42565b73ffffffffffffffffffffffffffffffffffffffff166111426113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f9061371f565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613889565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf9061391b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611327611a42565b73ffffffffffffffffffffffffffffffffffffffff166113456113b2565b73ffffffffffffffffffffffffffffffffffffffff161461139b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113929061371f565b60405180910390fd5b6113a56000612094565b565b66470de4df82000081565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113eb90613459565b80601f016020809104026020016040519081016040528092919081815260200182805461141790613459565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b5050505050905090565b611480611479611a42565b838361215a565b5050565b600b5481565b61149b611495611a42565b83611c66565b6114da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d1906136b3565b60405180910390fd5b6114e6848484846122c7565b50505050565b6114f4611a42565b73ffffffffffffffffffffffffffffffffffffffff166115126113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f9061371f565b60405180910390fd5b80600b8190555050565b61157a611a42565b73ffffffffffffffffffffffffffffffffffffffff166115986113b2565b73ffffffffffffffffffffffffffffffffffffffff16146115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e59061371f565b60405180910390fd5b6115f88282611a4a565b5050565b606061160782611b33565b611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d906139ad565b60405180910390fd5b6000611650612323565b90506000815111611670576040518060200160405280600081525061169b565b8061167a846123b5565b60405160200161168b929190613a09565b6040516020818303038152906040525b915050919050565b6116ab611a42565b73ffffffffffffffffffffffffffffffffffffffff166116c96113b2565b73ffffffffffffffffffffffffffffffffffffffff161461171f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117169061371f565b60405180910390fd5b80600a60016101000a81548160ff02191690831515021790555050565b60075481565b600060085482611750610cff565b61175a9190613a5c565b11611768576000905061177e565b8166470de4df82000061177b9190613ab2565b90505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff16611866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185d90613b58565b60405180910390fd5b348161187181611742565b8210156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa9061340a565b60405180910390fd5b6118c46118be611a42565b84611a4a565b505050565b6118d1611a42565b73ffffffffffffffffffffffffffffffffffffffff166118ef6113b2565b73ffffffffffffffffffffffffffffffffffffffff1614611945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193c9061371f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90613bea565b60405180910390fd5b6119be81612094565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600082611a388584612516565b1490509392505050565b600033905090565b80600081118015611a5c5750600a8111155b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613c56565b60405180910390fd5b8160075481611aa8610cff565b611ab29190613a5c565b1115611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90613cc2565b60405180910390fd5b60005b83811015611b2c57611b0860096125c9565b611b1985611b14610cff565b6125df565b8080611b2490613ce2565b915050611af6565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c12836111b5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611c7182611b33565b611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca790613d9d565b60405180910390fd5b6000611cbb836111b5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d2a57508373ffffffffffffffffffffffffffffffffffffffff16611d1284610b62565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d3b5750611d3a8185611783565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d64826111b5565b73ffffffffffffffffffffffffffffffffffffffff1614611dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db190613e2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2190613ec1565b60405180910390fd5b611e358383836127ad565b611e40600082611b9f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e909190613ee1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ee79190613a5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fda90613f61565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161200990613fb2565b60006040518083038185875af1925050503d8060008114612046576040519150601f19603f3d011682016040523d82523d6000602084013e61204b565b606091505b505090508061208f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208690614039565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c0906140a5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122ba9190612aa4565b60405180910390a3505050565b6122d2848484611d44565b6122de848484846127b2565b61231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490614137565b60405180910390fd5b50505050565b6060600c805461233290613459565b80601f016020809104026020016040519081016040528092919081815260200182805461235e90613459565b80156123ab5780601f10612380576101008083540402835291602001916123ab565b820191906000526020600020905b81548152906001019060200180831161238e57829003601f168201915b5050505050905090565b606060008214156123fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612511565b600082905060005b6000821461242f57808061241890613ce2565b915050600a826124289190614186565b9150612405565b60008167ffffffffffffffff81111561244b5761244a612dec565b5b6040519080825280601f01601f19166020018201604052801561247d5781602001600182028036833780820191505090505b5090505b6000851461250a576001826124969190613ee1565b9150600a856124a591906141b7565b60306124b19190613a5c565b60f81b8183815181106124c7576124c66141e8565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125039190614186565b9450612481565b8093505050505b919050565b60008082905060005b84518110156125be57600085828151811061253d5761253c6141e8565b5b6020026020010151905080831161257e578281604051602001612561929190614238565b6040516020818303038152906040528051906020012092506125aa565b8083604051602001612591929190614238565b6040516020818303038152906040528051906020012092505b5080806125b690613ce2565b91505061251f565b508091505092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612646906142b0565b60405180910390fd5b61265881611b33565b15612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f9061431c565b60405180910390fd5b6126a4600083836127ad565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f49190613a5c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b60006127d38473ffffffffffffffffffffffffffffffffffffffff1661293a565b1561292d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127fc611a42565b8786866040518563ffffffff1660e01b815260040161281e9493929190614391565b6020604051808303816000875af192505050801561285a57506040513d601f19601f8201168201806040525081019061285791906143f2565b60015b6128dd573d806000811461288a576040519150601f19603f3d011682016040523d82523d6000602084013e61288f565b606091505b506000815114156128d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128cc90614137565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612932565b600190505b949350505050565b600080823b905060008111915050919050565b82805461295990613459565b90600052602060002090601f01602090048101928261297b57600085556129c2565b82601f1061299457805160ff19168380011785556129c2565b828001600101855582156129c2579182015b828111156129c15782518255916020019190600101906129a6565b5b5090506129cf91906129d3565b5090565b5b808211156129ec5760008160009055506001016129d4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3981612a04565b8114612a4457600080fd5b50565b600081359050612a5681612a30565b92915050565b600060208284031215612a7257612a716129fa565b5b6000612a8084828501612a47565b91505092915050565b60008115159050919050565b612a9e81612a89565b82525050565b6000602082019050612ab96000830184612a95565b92915050565b6000819050919050565b612ad281612abf565b8114612add57600080fd5b50565b600081359050612aef81612ac9565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612b1a57612b19612af5565b5b8235905067ffffffffffffffff811115612b3757612b36612afa565b5b602083019150836020820283011115612b5357612b52612aff565b5b9250929050565b600080600060408486031215612b7357612b726129fa565b5b6000612b8186828701612ae0565b935050602084013567ffffffffffffffff811115612ba257612ba16129ff565b5b612bae86828701612b04565b92509250509250925092565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bf4578082015181840152602081019050612bd9565b83811115612c03576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c2582612bba565b612c2f8185612bc5565b9350612c3f818560208601612bd6565b612c4881612c09565b840191505092915050565b60006020820190508181036000830152612c6d8184612c1a565b905092915050565b600060208284031215612c8b57612c8a6129fa565b5b6000612c9984828501612ae0565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ccd82612ca2565b9050919050565b612cdd81612cc2565b82525050565b6000602082019050612cf86000830184612cd4565b92915050565b612d0781612cc2565b8114612d1257600080fd5b50565b600081359050612d2481612cfe565b92915050565b60008060408385031215612d4157612d406129fa565b5b6000612d4f85828601612d15565b9250506020612d6085828601612ae0565b9150509250929050565b612d7381612abf565b82525050565b6000602082019050612d8e6000830184612d6a565b92915050565b600080600060608486031215612dad57612dac6129fa565b5b6000612dbb86828701612d15565b9350506020612dcc86828701612d15565b9250506040612ddd86828701612ae0565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e2482612c09565b810181811067ffffffffffffffff82111715612e4357612e42612dec565b5b80604052505050565b6000612e566129f0565b9050612e628282612e1b565b919050565b600067ffffffffffffffff821115612e8257612e81612dec565b5b612e8b82612c09565b9050602081019050919050565b82818337600083830152505050565b6000612eba612eb584612e67565b612e4c565b905082815260208101848484011115612ed657612ed5612de7565b5b612ee1848285612e98565b509392505050565b600082601f830112612efe57612efd612af5565b5b8135612f0e848260208601612ea7565b91505092915050565b600060208284031215612f2d57612f2c6129fa565b5b600082013567ffffffffffffffff811115612f4b57612f4a6129ff565b5b612f5784828501612ee9565b91505092915050565b612f6981612a89565b8114612f7457600080fd5b50565b600081359050612f8681612f60565b92915050565b600060208284031215612fa257612fa16129fa565b5b6000612fb084828501612f77565b91505092915050565b600060208284031215612fcf57612fce6129fa565b5b6000612fdd84828501612d15565b91505092915050565b60008060408385031215612ffd57612ffc6129fa565b5b600061300b85828601612d15565b925050602061301c85828601612f77565b9150509250929050565b6000819050919050565b61303981613026565b82525050565b60006020820190506130546000830184613030565b92915050565b600067ffffffffffffffff82111561307557613074612dec565b5b61307e82612c09565b9050602081019050919050565b600061309e6130998461305a565b612e4c565b9050828152602081018484840111156130ba576130b9612de7565b5b6130c5848285612e98565b509392505050565b600082601f8301126130e2576130e1612af5565b5b81356130f284826020860161308b565b91505092915050565b60008060008060808587031215613115576131146129fa565b5b600061312387828801612d15565b945050602061313487828801612d15565b935050604061314587828801612ae0565b925050606085013567ffffffffffffffff811115613166576131656129ff565b5b613172878288016130cd565b91505092959194509250565b61318781613026565b811461319257600080fd5b50565b6000813590506131a48161317e565b92915050565b6000602082840312156131c0576131bf6129fa565b5b60006131ce84828501613195565b91505092915050565b600080604083850312156131ee576131ed6129fa565b5b60006131fc85828601612d15565b925050602061320d85828601612d15565b9150509250929050565b7f57686974656c69737420686173206e6f74207374617274656400000000000000600082015250565b600061324d601983612bc5565b915061325882613217565b602082019050919050565b6000602082019050818103600083015261327c81613240565b9050919050565b7f5075626c69632073616c65206861732073746172746564000000000000000000600082015250565b60006132b9601783612bc5565b91506132c482613283565b602082019050919050565b600060208201905081810360008301526132e8816132ac565b9050919050565b60008160601b9050919050565b6000613307826132ef565b9050919050565b6000613319826132fc565b9050919050565b61333161332c82612cc2565b61330e565b82525050565b60006133438284613320565b60148201915081905092915050565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b6000613388601783612bc5565b915061339382613352565b602082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b7f496e737566666963656e742066756e6473000000000000000000000000000000600082015250565b60006133f4601183612bc5565b91506133ff826133be565b602082019050919050565b60006020820190508181036000830152613423816133e7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061347157607f821691505b602082108114156134855761348461342a565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006134e7602c83612bc5565b91506134f28261348b565b604082019050919050565b60006020820190508181036000830152613516816134da565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613579602183612bc5565b91506135848261351d565b604082019050919050565b600060208201905081810360008301526135a88161356c565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061360b603883612bc5565b9150613616826135af565b604082019050919050565b6000602082019050818103600083015261363a816135fe565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061369d603183612bc5565b91506136a882613641565b604082019050919050565b600060208201905081810360008301526136cc81613690565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613709602083612bc5565b9150613714826136d3565b602082019050919050565b60006020820190508181036000830152613738816136fc565b9050919050565b7f537572706173736573206162736f6c757465206d6178696d756d000000000000600082015250565b6000613775601a83612bc5565b91506137808261373f565b602082019050919050565b600060208201905081810360008301526137a481613768565b9050919050565b7f4d7573742062652061626f766520746f74616c206d696e746564000000000000600082015250565b60006137e1601a83612bc5565b91506137ec826137ab565b602082019050919050565b60006020820190508181036000830152613810816137d4565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613873602983612bc5565b915061387e82613817565b604082019050919050565b600060208201905081810360008301526138a281613866565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613905602a83612bc5565b9150613910826138a9565b604082019050919050565b60006020820190508181036000830152613934816138f8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613997602f83612bc5565b91506139a28261393b565b604082019050919050565b600060208201905081810360008301526139c68161398a565b9050919050565b600081905092915050565b60006139e382612bba565b6139ed81856139cd565b93506139fd818560208601612bd6565b80840191505092915050565b6000613a1582856139d8565b9150613a2182846139d8565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613a6782612abf565b9150613a7283612abf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613aa757613aa6613a2d565b5b828201905092915050565b6000613abd82612abf565b9150613ac883612abf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b0157613b00613a2d565b5b828202905092915050565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b6000613b42601b83612bc5565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bd4602683612bc5565b9150613bdf82613b78565b604082019050919050565b60006020820190508181036000830152613c0381613bc7565b9050919050565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b6000613c40601083612bc5565b9150613c4b82613c0a565b602082019050919050565b60006020820190508181036000830152613c6f81613c33565b9050919050565b7f53757270617373657320737570706c7900000000000000000000000000000000600082015250565b6000613cac601083612bc5565b9150613cb782613c76565b602082019050919050565b60006020820190508181036000830152613cdb81613c9f565b9050919050565b6000613ced82612abf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d2057613d1f613a2d565b5b600182019050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613d87602c83612bc5565b9150613d9282613d2b565b604082019050919050565b60006020820190508181036000830152613db681613d7a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613e19602983612bc5565b9150613e2482613dbd565b604082019050919050565b60006020820190508181036000830152613e4881613e0c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613eab602483612bc5565b9150613eb682613e4f565b604082019050919050565b60006020820190508181036000830152613eda81613e9e565b9050919050565b6000613eec82612abf565b9150613ef783612abf565b925082821015613f0a57613f09613a2d565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613f4b601d83612bc5565b9150613f5682613f15565b602082019050919050565b60006020820190508181036000830152613f7a81613f3e565b9050919050565b600081905092915050565b50565b6000613f9c600083613f81565b9150613fa782613f8c565b600082019050919050565b6000613fbd82613f8f565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614023603a83612bc5565b915061402e82613fc7565b604082019050919050565b6000602082019050818103600083015261405281614016565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061408f601983612bc5565b915061409a82614059565b602082019050919050565b600060208201905081810360008301526140be81614082565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614121603283612bc5565b915061412c826140c5565b604082019050919050565b6000602082019050818103600083015261415081614114565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061419182612abf565b915061419c83612abf565b9250826141ac576141ab614157565b5b828204905092915050565b60006141c282612abf565b91506141cd83612abf565b9250826141dd576141dc614157565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b61423261422d82613026565b614217565b82525050565b60006142448285614221565b6020820191506142548284614221565b6020820191508190509392505050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061429a602083612bc5565b91506142a582614264565b602082019050919050565b600060208201905081810360008301526142c98161428d565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614306601c83612bc5565b9150614311826142d0565b602082019050919050565b60006020820190508181036000830152614335816142f9565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006143638261433c565b61436d8185614347565b935061437d818560208601612bd6565b61438681612c09565b840191505092915050565b60006080820190506143a66000830187612cd4565b6143b36020830186612cd4565b6143c06040830185612d6a565b81810360608301526143d28184614358565b905095945050505050565b6000815190506143ec81612a30565b92915050565b600060208284031215614408576144076129fa565b5b6000614416848285016143dd565b9150509291505056fea26469706673582212208eb5a5155a3e649ea72ad167ef23339dc9ec50268fa6055c7df6c94de30fd72264736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c47756e6e65727a20436c75620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000747554e4e45525a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d545a64396942546a6e4c3371594237314e415a6842395a6a385071395562506e725371624675726e703268742f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Gunnerz Club
Arg [1] : _symbol (string): GUNNERZ
Arg [2] : baseURI_ (string): ipfs://QmTZd9iBTjnL3qYB71NAZhB9Zj8Pq9UbPnrSqbFurnp2ht/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 47756e6e65727a20436c75620000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 47554e4e45525a00000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d545a64396942546a6e4c3371594237314e415a6842395a
Arg [9] : 6a385071395562506e725371624675726e703268742f00000000000000000000
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.