Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 SP-Xg
Holders
150
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SP-XgLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SkullpunksXG
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./SkullPunksLogic.sol"; contract SkullpunksXG is ERC721URIStorage,SkullPunksLogic{ constructor(address payable wallet,uint256 price) ERC721("Skullpunks-Xg", "SP-Xg") SkullPunksLogic(){ require(updatePrice(price), "unable to update price"); require(updateWallet(wallet), "unable to update wallet"); } function mint(string memory tokenURI, uint256 edition,uint256 toAllow) public payable returns (bool){ uint256 allowance = getFreeMint(msg.sender); //requires payment for users with no passes if(allowance < 1){ require(msg.value >= price, "Amount not equal to price"); } require(!getEditionStatus(edition), "This edition has already been transformed"); require(updateEditionLog(edition),"This edition cannot be updated at this time"); //allow people to mint during flashsale without affecting their free passes if(!isFlash()){ require(initialMintAllowance(msg.sender,toAllow),"Allowance update error"); require(updateMintAllowance(msg.sender),"This senders allowance cannot be updated at this time"); } if(msg.value > 0){ forwardEth(); } _mint(msg.sender, edition); _setTokenURI(edition, tokenURI); return true; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; contract SkullPunksLogic is Ownable{ mapping(address=>uint256) mintAllowance; mapping(address=>bool) mintAllowanceSatus; mapping(uint256=>bool) editionLog; address payable public _wallet; uint256 public price; bool isFlashSale; constructor() Ownable(){ } //mint called everytime signin successful in the dapp function initialMintAllowance(address _add,uint256 allowance) internal returns (bool){ if(mintAllowanceSatus[_add] == false){ mintAllowance[_add] += allowance; mintAllowanceSatus[_add] == true; } return true; } //mint allance updated everytime mint is done function updateMintAllowance(address _add) internal returns (bool){ uint256 allowance = getFreeMint(_add); if(allowance > 0){ mintAllowance[_add] -= 1; } return true; } //show allowace of address function getFreeMint(address _add) public view returns (uint256){ return mintAllowance[_add]; } //mint allance provision made by only admin for special cases and giveaways to the community function mintAllowanceProvision(address _add,uint256 allowance) public onlyOwner returns (bool){ mintAllowance[_add] += allowance; return true; } //prevents multiple creation of one og edtion function updateEditionLog(uint256 edition) internal returns (bool){ editionLog[edition]= true; return true; } //get status of og edtion function getEditionStatus(uint256 edition) public view returns (bool){ return editionLog[edition]; } //forward to wallet function forwardEth() internal returns (bool){ _wallet.transfer(msg.value); return true; } //update price function updatePrice(uint256 _price) public onlyOwner returns (bool){ price = _price ; return true; } //get price function getPrice() public view returns (uint256){ return price; } //update wallet function updateWallet(address payable wallet) public onlyOwner returns (bool){ _wallet = wallet; return true; } //update wallet function updateFlashSale(uint256 status,uint256 _price) public onlyOwner returns (bool){ if(status == 0 ){ isFlashSale=false; }else{ isFlashSale=true; } updatePrice(_price); return true; } function isFlash() public view returns(bool){ return isFlashSale; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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/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/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/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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// 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/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 (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"}],"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":"_wallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"edition","type":"uint256"}],"name":"getEditionStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"name":"getFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFlash","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"edition","type":"uint256"},{"internalType":"uint256","name":"toAllow","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"}],"name":"mintAllowanceProvision","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updateFlashSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePrice","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"updateWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200461f3803806200461f8339818101604052810190620000379190620005b6565b6040518060400160405280600d81526020017f536b756c6c70756e6b732d5867000000000000000000000000000000000000008152506040518060400160405280600581526020017f53502d58670000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000461565b508060019080519060200190620000d492919062000461565b50505062000109620000f4620001c9640100000000026401000000009004565b620001d1640100000000026401000000009004565b620001238162000297640100000000026401000000009004565b62000165576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015c906200065e565b60405180910390fd5b6200017f826200034a640100000000026401000000009004565b620001c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b890620006d0565b60405180910390fd5b5050620007c8565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000620002b2620001c9640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff16620002e162000437640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff16146200033a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003319062000742565b60405180910390fd5b81600c8190555060019050919050565b600062000365620001c9640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff166200039462000437640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff1614620003ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e49062000742565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200046f9062000793565b90600052602060002090601f016020900481019282620004935760008555620004df565b82601f10620004ae57805160ff1916838001178555620004df565b82800160010185558215620004df579182015b82811115620004de578251825591602001919060010190620004c1565b5b509050620004ee9190620004f2565b5090565b5b808211156200050d576000816000905550600101620004f3565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005438262000516565b9050919050565b620005558162000536565b81146200056157600080fd5b50565b60008151905062000575816200054a565b92915050565b6000819050919050565b62000590816200057b565b81146200059c57600080fd5b50565b600081519050620005b08162000585565b92915050565b60008060408385031215620005d057620005cf62000511565b5b6000620005e08582860162000564565b9250506020620005f3858286016200059f565b9150509250929050565b600082825260208201905092915050565b7f756e61626c6520746f2075706461746520707269636500000000000000000000600082015250565b600062000646601683620005fd565b915062000653826200060e565b602082019050919050565b60006020820190508181036000830152620006798162000637565b9050919050565b7f756e61626c6520746f207570646174652077616c6c6574000000000000000000600082015250565b6000620006b8601783620005fd565b9150620006c58262000680565b602082019050919050565b60006020820190508181036000830152620006eb81620006a9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200072a602083620005fd565b91506200073782620006f2565b602082019050919050565b600060208201905081810360008301526200075d816200071b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007ac57607f821691505b602082108103620007c257620007c162000764565b5b50919050565b613e4780620007d86000396000f3fe6080604052600436106101b9576000357c0100000000000000000000000000000000000000000000000000000000900480637c68675111610109578063a035b1fe116100a7578063c87b56dd11610081578063c87b56dd14610624578063e985e9c514610661578063f2fde38b1461069e578063fc98cc8e146106c7576101b9565b8063a035b1fe146105a7578063a22cb465146105d2578063b88d4fde146105fb576101b9565b80638da5cb5b116100e35780638da5cb5b146104fb57806395d89b411461052657806398d5fdca1461055157806399fbf82d1461057c576101b9565b80637c68675114610444578063848b86e3146104815780638d6cc56d146104be576101b9565b806342842e0e116101765780636352211e116101505780636352211e146103765780636da6951a146103b357806370a08231146103f0578063715018a61461042d576101b9565b806342842e0e146102e55780634d53bc331461030e578063610757e41461034b576101b9565b806301ffc9a7146101be57806306fdde03146101fb578063081812fc14610226578063095ea7b3146102635780631c635ded1461028c57806323b872dd146102bc575b600080fd5b3480156101ca57600080fd5b506101e560048036038101906101e09190612737565b610704565b6040516101f2919061277f565b60405180910390f35b34801561020757600080fd5b506102106107e6565b60405161021d9190612833565b60405180910390f35b34801561023257600080fd5b5061024d6004803603810190610248919061288b565b610878565b60405161025a91906128f9565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612940565b6108fd565b005b6102a660048036038101906102a19190612ab5565b610a14565b6040516102b3919061277f565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612b24565b610bd3565b005b3480156102f157600080fd5b5061030c60048036038101906103079190612b24565b610c33565b005b34801561031a57600080fd5b5061033560048036038101906103309190612b77565b610c53565b604051610342919061277f565b60405180910390f35b34801561035757600080fd5b50610360610d29565b60405161036d9190612bd8565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061288b565b610d4f565b6040516103aa91906128f9565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612940565b610e00565b6040516103e7919061277f565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612bf3565b610ede565b6040516104249190612c2f565b60405180910390f35b34801561043957600080fd5b50610442610f95565b005b34801561045057600080fd5b5061046b6004803603810190610466919061288b565b61101d565b604051610478919061277f565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612c76565b611047565b6040516104b5919061277f565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e0919061288b565b61110f565b6040516104f2919061277f565b60405180910390f35b34801561050757600080fd5b5061051061119d565b60405161051d91906128f9565b60405180910390f35b34801561053257600080fd5b5061053b6111c7565b6040516105489190612833565b60405180910390f35b34801561055d57600080fd5b50610566611259565b6040516105739190612c2f565b60405180910390f35b34801561058857600080fd5b50610591611263565b60405161059e919061277f565b60405180910390f35b3480156105b357600080fd5b506105bc61127a565b6040516105c99190612c2f565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190612ccf565b611280565b005b34801561060757600080fd5b50610622600480360381019061061d9190612db0565b611296565b005b34801561063057600080fd5b5061064b6004803603810190610646919061288b565b6112f8565b6040516106589190612833565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612e33565b611449565b604051610695919061277f565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612bf3565b6114dd565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612bf3565b6115d4565b6040516106fb9190612c2f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107df57506107de8261161d565b5b9050919050565b6060600080546107f590612ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461082190612ea2565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b600061088382611687565b6108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990612f45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090882610d4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612fd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109976116f3565b73ffffffffffffffffffffffffffffffffffffffff1614806109c657506109c5816109c06116f3565b611449565b5b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613069565b60405180910390fd5b610a0f83836116fb565b505050565b600080610a20336115d4565b90506001811015610a7157600c54341015610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a67906130d5565b60405180910390fd5b5b610a7a8461101d565b15610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613167565b60405180910390fd5b610ac3846117b4565b610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906131f9565b60405180910390fd5b610b0a611263565b610ba057610b1833846117eb565b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613265565b60405180910390fd5b610b60336118f5565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b96906132f7565b60405180910390fd5b5b6000341115610bb357610bb161196e565b505b610bbd33856119e0565b610bc78486611bb9565b60019150509392505050565b610be4610bde6116f3565b82611c2d565b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613389565b60405180910390fd5b610c2e838383611d0b565b505050565b610c4e83838360405180602001604052806000815250611296565b505050565b6000610c5d6116f3565b73ffffffffffffffffffffffffffffffffffffffff16610c7b61119d565b73ffffffffffffffffffffffffffffffffffffffff1614610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906133f5565b60405180910390fd5b60008303610cf9576000600d60006101000a81548160ff021916908315150217905550610d15565b6001600d60006101000a81548160ff0219169083151502179055505b610d1e8261110f565b506001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90613487565b60405180910390fd5b80915050919050565b6000610e0a6116f3565b73ffffffffffffffffffffffffffffffffffffffff16610e2861119d565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906133f5565b60405180910390fd5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ecd91906134d6565b925050819055506001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f459061359e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9d6116f3565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61119d565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611008906133f5565b60405180910390fd5b61101b6000611f71565b565b6000600a600083815260200190815260200160002060009054906101000a900460ff169050919050565b60006110516116f3565b73ffffffffffffffffffffffffffffffffffffffff1661106f61119d565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc906133f5565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60006111196116f3565b73ffffffffffffffffffffffffffffffffffffffff1661113761119d565b73ffffffffffffffffffffffffffffffffffffffff161461118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906133f5565b60405180910390fd5b81600c8190555060019050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d690612ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461120290612ea2565b801561124f5780601f106112245761010080835404028352916020019161124f565b820191906000526020600020905b81548152906001019060200180831161123257829003601f168201915b5050505050905090565b6000600c54905090565b6000600d60009054906101000a900460ff16905090565b600c5481565b61129261128b6116f3565b8383612037565b5050565b6112a76112a16116f3565b83611c2d565b6112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90613389565b60405180910390fd5b6112f2848484846121a3565b50505050565b606061130382611687565b611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990613630565b60405180910390fd5b600060066000848152602001908152602001600020805461136290612ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90612ea2565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b5050505050905060006113ec6121ff565b90506000815103611401578192505050611444565b60008251111561143657808260405160200161141e92919061368c565b60405160208183030381529060405292505050611444565b61143f84612216565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114e56116f3565b73ffffffffffffffffffffffffffffffffffffffff1661150361119d565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906133f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613722565b60405180910390fd5b6115d181611f71565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661176e83610d4f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600a600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b6000801515600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036118eb5781600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189391906134d6565b9250508190555060011515600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a905050505b6001905092915050565b600080611901836115d4565b90506000811115611964576001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461195c9190613742565b925050819055505b6001915050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156119d8573d6000803e3d6000fd5b506001905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906137c2565b60405180910390fd5b611a5881611687565b15611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f9061382e565b60405180910390fd5b611aa4600083836122bd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af491906134d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bb5600083836122c2565b5050565b611bc282611687565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf8906138c0565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611c28929190612628565b505050565b6000611c3882611687565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613952565b60405180910390fd5b6000611c8283610d4f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cf157508373ffffffffffffffffffffffffffffffffffffffff16611cd984610878565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d025750611d018185611449565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d2b82610d4f565b73ffffffffffffffffffffffffffffffffffffffff1614611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906139e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790613a76565b60405180910390fd5b611dfb8383836122bd565b611e066000826116fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e569190613742565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ead91906134d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f6c8383836122c2565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613ae2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612196919061277f565b60405180910390a3505050565b6121ae848484611d0b565b6121ba848484846122c7565b6121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f090613b74565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061222182611687565b612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790613c06565b60405180910390fd5b600061226a6121ff565b9050600081511161228a57604051806020016040528060008152506122b5565b8061229484612486565b6040516020016122a592919061368c565b6040516020818303038152906040525b915050919050565b505050565b505050565b60006122e88473ffffffffffffffffffffffffffffffffffffffff16612605565b15612479578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123116116f3565b8786866040518563ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161234f9493929190613c7b565b6020604051808303816000875af192505050801561238b57506040513d601f19601f820116820180604052508101906123889190613cdc565b60015b61240d573d80600081146123bb576040519150601f19603f3d011682016040523d82523d6000602084013e6123c0565b606091505b506000815103612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90613b74565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061247e565b600190505b949350505050565b6060600082036124cd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612600565b600082905060005b600082146124ff5780806124e890613d09565b915050600a826124f89190613d80565b91506124d5565b60008167ffffffffffffffff81111561251b5761251a61298a565b5b6040519080825280601f01601f19166020018201604052801561254d5781602001600182028036833780820191505090505b5090505b600085146125f9576001826125669190613742565b9150600a856125759190613db1565b603061258191906134d6565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106125b6576125b5613de2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f29190613d80565b9450612551565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461263490612ea2565b90600052602060002090601f016020900481019282612656576000855561269d565b82601f1061266f57805160ff191683800117855561269d565b8280016001018555821561269d579182015b8281111561269c578251825591602001919060010190612681565b5b5090506126aa91906126ae565b5090565b5b808211156126c75760008160009055506001016126af565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612714816126df565b811461271f57600080fd5b50565b6000813590506127318161270b565b92915050565b60006020828403121561274d5761274c6126d5565b5b600061275b84828501612722565b91505092915050565b60008115159050919050565b61277981612764565b82525050565b60006020820190506127946000830184612770565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d45780820151818401526020810190506127b9565b838111156127e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006128058261279a565b61280f81856127a5565b935061281f8185602086016127b6565b612828816127e9565b840191505092915050565b6000602082019050818103600083015261284d81846127fa565b905092915050565b6000819050919050565b61286881612855565b811461287357600080fd5b50565b6000813590506128858161285f565b92915050565b6000602082840312156128a1576128a06126d5565b5b60006128af84828501612876565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e3826128b8565b9050919050565b6128f3816128d8565b82525050565b600060208201905061290e60008301846128ea565b92915050565b61291d816128d8565b811461292857600080fd5b50565b60008135905061293a81612914565b92915050565b60008060408385031215612957576129566126d5565b5b60006129658582860161292b565b925050602061297685828601612876565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129c2826127e9565b810181811067ffffffffffffffff821117156129e1576129e061298a565b5b80604052505050565b60006129f46126cb565b9050612a0082826129b9565b919050565b600067ffffffffffffffff821115612a2057612a1f61298a565b5b612a29826127e9565b9050602081019050919050565b82818337600083830152505050565b6000612a58612a5384612a05565b6129ea565b905082815260208101848484011115612a7457612a73612985565b5b612a7f848285612a36565b509392505050565b600082601f830112612a9c57612a9b612980565b5b8135612aac848260208601612a45565b91505092915050565b600080600060608486031215612ace57612acd6126d5565b5b600084013567ffffffffffffffff811115612aec57612aeb6126da565b5b612af886828701612a87565b9350506020612b0986828701612876565b9250506040612b1a86828701612876565b9150509250925092565b600080600060608486031215612b3d57612b3c6126d5565b5b6000612b4b8682870161292b565b9350506020612b5c8682870161292b565b9250506040612b6d86828701612876565b9150509250925092565b60008060408385031215612b8e57612b8d6126d5565b5b6000612b9c85828601612876565b9250506020612bad85828601612876565b9150509250929050565b6000612bc2826128b8565b9050919050565b612bd281612bb7565b82525050565b6000602082019050612bed6000830184612bc9565b92915050565b600060208284031215612c0957612c086126d5565b5b6000612c178482850161292b565b91505092915050565b612c2981612855565b82525050565b6000602082019050612c446000830184612c20565b92915050565b612c5381612bb7565b8114612c5e57600080fd5b50565b600081359050612c7081612c4a565b92915050565b600060208284031215612c8c57612c8b6126d5565b5b6000612c9a84828501612c61565b91505092915050565b612cac81612764565b8114612cb757600080fd5b50565b600081359050612cc981612ca3565b92915050565b60008060408385031215612ce657612ce56126d5565b5b6000612cf48582860161292b565b9250506020612d0585828601612cba565b9150509250929050565b600067ffffffffffffffff821115612d2a57612d2961298a565b5b612d33826127e9565b9050602081019050919050565b6000612d53612d4e84612d0f565b6129ea565b905082815260208101848484011115612d6f57612d6e612985565b5b612d7a848285612a36565b509392505050565b600082601f830112612d9757612d96612980565b5b8135612da7848260208601612d40565b91505092915050565b60008060008060808587031215612dca57612dc96126d5565b5b6000612dd88782880161292b565b9450506020612de98782880161292b565b9350506040612dfa87828801612876565b925050606085013567ffffffffffffffff811115612e1b57612e1a6126da565b5b612e2787828801612d82565b91505092959194509250565b60008060408385031215612e4a57612e496126d5565b5b6000612e588582860161292b565b9250506020612e698582860161292b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eba57607f821691505b602082108103612ecd57612ecc612e73565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f2f602c836127a5565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fc16021836127a5565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006130536038836127a5565b915061305e82612ff7565b604082019050919050565b6000602082019050818103600083015261308281613046565b9050919050565b7f416d6f756e74206e6f7420657175616c20746f20707269636500000000000000600082015250565b60006130bf6019836127a5565b91506130ca82613089565b602082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f546869732065646974696f6e2068617320616c7265616479206265656e20747260008201527f616e73666f726d65640000000000000000000000000000000000000000000000602082015250565b60006131516029836127a5565b915061315c826130f5565b604082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b7f546869732065646974696f6e2063616e6e6f742062652075706461746564206160008201527f7420746869732074696d65000000000000000000000000000000000000000000602082015250565b60006131e3602b836127a5565b91506131ee82613187565b604082019050919050565b60006020820190508181036000830152613212816131d6565b9050919050565b7f416c6c6f77616e636520757064617465206572726f7200000000000000000000600082015250565b600061324f6016836127a5565b915061325a82613219565b602082019050919050565b6000602082019050818103600083015261327e81613242565b9050919050565b7f546869732073656e6465727320616c6c6f77616e63652063616e6e6f7420626560008201527f207570646174656420617420746869732074696d650000000000000000000000602082015250565b60006132e16035836127a5565b91506132ec82613285565b604082019050919050565b60006020820190508181036000830152613310816132d4565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006133736031836127a5565b915061337e82613317565b604082019050919050565b600060208201905081810360008301526133a281613366565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133df6020836127a5565b91506133ea826133a9565b602082019050919050565b6000602082019050818103600083015261340e816133d2565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006134716029836127a5565b915061347c82613415565b604082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134e182612855565b91506134ec83612855565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613521576135206134a7565b5b828201905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613588602a836127a5565b91506135938261352c565b604082019050919050565b600060208201905081810360008301526135b78161357b565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b600061361a6031836127a5565b9150613625826135be565b604082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b600081905092915050565b60006136668261279a565b6136708185613650565b93506136808185602086016127b6565b80840191505092915050565b6000613698828561365b565b91506136a4828461365b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061370c6026836127a5565b9150613717826136b0565b604082019050919050565b6000602082019050818103600083015261373b816136ff565b9050919050565b600061374d82612855565b915061375883612855565b92508282101561376b5761376a6134a7565b5b828203905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137ac6020836127a5565b91506137b782613776565b602082019050919050565b600060208201905081810360008301526137db8161379f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613818601c836127a5565b9150613823826137e2565b602082019050919050565b600060208201905081810360008301526138478161380b565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006138aa602e836127a5565b91506138b58261384e565b604082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061393c602c836127a5565b9150613947826138e0565b604082019050919050565b6000602082019050818103600083015261396b8161392f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006139ce6025836127a5565b91506139d982613972565b604082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a606024836127a5565b9150613a6b82613a04565b604082019050919050565b60006020820190508181036000830152613a8f81613a53565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613acc6019836127a5565b9150613ad782613a96565b602082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b5e6032836127a5565b9150613b6982613b02565b604082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bf0602f836127a5565b9150613bfb82613b94565b604082019050919050565b60006020820190508181036000830152613c1f81613be3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c4d82613c26565b613c578185613c31565b9350613c678185602086016127b6565b613c70816127e9565b840191505092915050565b6000608082019050613c9060008301876128ea565b613c9d60208301866128ea565b613caa6040830185612c20565b8181036060830152613cbc8184613c42565b905095945050505050565b600081519050613cd68161270b565b92915050565b600060208284031215613cf257613cf16126d5565b5b6000613d0084828501613cc7565b91505092915050565b6000613d1482612855565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d4657613d456134a7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d8b82612855565b9150613d9683612855565b925082613da657613da5613d51565b5b828204905092915050565b6000613dbc82612855565b9150613dc783612855565b925082613dd757613dd6613d51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122047c4bab95636592f607b8a4a2ca900c6ec43b42f01c6e6861c16d9d62193dff964736f6c634300080d0033000000000000000000000000de3e6601d4fde06a7609f28db92a103a295a50a1000000000000000000000000000000000000000000000000007c585087238000
Deployed Bytecode
0x6080604052600436106101b9576000357c0100000000000000000000000000000000000000000000000000000000900480637c68675111610109578063a035b1fe116100a7578063c87b56dd11610081578063c87b56dd14610624578063e985e9c514610661578063f2fde38b1461069e578063fc98cc8e146106c7576101b9565b8063a035b1fe146105a7578063a22cb465146105d2578063b88d4fde146105fb576101b9565b80638da5cb5b116100e35780638da5cb5b146104fb57806395d89b411461052657806398d5fdca1461055157806399fbf82d1461057c576101b9565b80637c68675114610444578063848b86e3146104815780638d6cc56d146104be576101b9565b806342842e0e116101765780636352211e116101505780636352211e146103765780636da6951a146103b357806370a08231146103f0578063715018a61461042d576101b9565b806342842e0e146102e55780634d53bc331461030e578063610757e41461034b576101b9565b806301ffc9a7146101be57806306fdde03146101fb578063081812fc14610226578063095ea7b3146102635780631c635ded1461028c57806323b872dd146102bc575b600080fd5b3480156101ca57600080fd5b506101e560048036038101906101e09190612737565b610704565b6040516101f2919061277f565b60405180910390f35b34801561020757600080fd5b506102106107e6565b60405161021d9190612833565b60405180910390f35b34801561023257600080fd5b5061024d6004803603810190610248919061288b565b610878565b60405161025a91906128f9565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612940565b6108fd565b005b6102a660048036038101906102a19190612ab5565b610a14565b6040516102b3919061277f565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612b24565b610bd3565b005b3480156102f157600080fd5b5061030c60048036038101906103079190612b24565b610c33565b005b34801561031a57600080fd5b5061033560048036038101906103309190612b77565b610c53565b604051610342919061277f565b60405180910390f35b34801561035757600080fd5b50610360610d29565b60405161036d9190612bd8565b60405180910390f35b34801561038257600080fd5b5061039d6004803603810190610398919061288b565b610d4f565b6040516103aa91906128f9565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d59190612940565b610e00565b6040516103e7919061277f565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612bf3565b610ede565b6040516104249190612c2f565b60405180910390f35b34801561043957600080fd5b50610442610f95565b005b34801561045057600080fd5b5061046b6004803603810190610466919061288b565b61101d565b604051610478919061277f565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190612c76565b611047565b6040516104b5919061277f565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e0919061288b565b61110f565b6040516104f2919061277f565b60405180910390f35b34801561050757600080fd5b5061051061119d565b60405161051d91906128f9565b60405180910390f35b34801561053257600080fd5b5061053b6111c7565b6040516105489190612833565b60405180910390f35b34801561055d57600080fd5b50610566611259565b6040516105739190612c2f565b60405180910390f35b34801561058857600080fd5b50610591611263565b60405161059e919061277f565b60405180910390f35b3480156105b357600080fd5b506105bc61127a565b6040516105c99190612c2f565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f49190612ccf565b611280565b005b34801561060757600080fd5b50610622600480360381019061061d9190612db0565b611296565b005b34801561063057600080fd5b5061064b6004803603810190610646919061288b565b6112f8565b6040516106589190612833565b60405180910390f35b34801561066d57600080fd5b5061068860048036038101906106839190612e33565b611449565b604051610695919061277f565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190612bf3565b6114dd565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190612bf3565b6115d4565b6040516106fb9190612c2f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107cf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107df57506107de8261161d565b5b9050919050565b6060600080546107f590612ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461082190612ea2565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b600061088382611687565b6108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990612f45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090882610d4f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612fd7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109976116f3565b73ffffffffffffffffffffffffffffffffffffffff1614806109c657506109c5816109c06116f3565b611449565b5b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90613069565b60405180910390fd5b610a0f83836116fb565b505050565b600080610a20336115d4565b90506001811015610a7157600c54341015610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a67906130d5565b60405180910390fd5b5b610a7a8461101d565b15610aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab190613167565b60405180910390fd5b610ac3846117b4565b610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906131f9565b60405180910390fd5b610b0a611263565b610ba057610b1833846117eb565b610b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4e90613265565b60405180910390fd5b610b60336118f5565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b96906132f7565b60405180910390fd5b5b6000341115610bb357610bb161196e565b505b610bbd33856119e0565b610bc78486611bb9565b60019150509392505050565b610be4610bde6116f3565b82611c2d565b610c23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1a90613389565b60405180910390fd5b610c2e838383611d0b565b505050565b610c4e83838360405180602001604052806000815250611296565b505050565b6000610c5d6116f3565b73ffffffffffffffffffffffffffffffffffffffff16610c7b61119d565b73ffffffffffffffffffffffffffffffffffffffff1614610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc8906133f5565b60405180910390fd5b60008303610cf9576000600d60006101000a81548160ff021916908315150217905550610d15565b6001600d60006101000a81548160ff0219169083151502179055505b610d1e8261110f565b506001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90613487565b60405180910390fd5b80915050919050565b6000610e0a6116f3565b73ffffffffffffffffffffffffffffffffffffffff16610e2861119d565b73ffffffffffffffffffffffffffffffffffffffff1614610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906133f5565b60405180910390fd5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ecd91906134d6565b925050819055506001905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f459061359e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f9d6116f3565b73ffffffffffffffffffffffffffffffffffffffff16610fbb61119d565b73ffffffffffffffffffffffffffffffffffffffff1614611011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611008906133f5565b60405180910390fd5b61101b6000611f71565b565b6000600a600083815260200190815260200160002060009054906101000a900460ff169050919050565b60006110516116f3565b73ffffffffffffffffffffffffffffffffffffffff1661106f61119d565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc906133f5565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60006111196116f3565b73ffffffffffffffffffffffffffffffffffffffff1661113761119d565b73ffffffffffffffffffffffffffffffffffffffff161461118d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611184906133f5565b60405180910390fd5b81600c8190555060019050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111d690612ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461120290612ea2565b801561124f5780601f106112245761010080835404028352916020019161124f565b820191906000526020600020905b81548152906001019060200180831161123257829003601f168201915b5050505050905090565b6000600c54905090565b6000600d60009054906101000a900460ff16905090565b600c5481565b61129261128b6116f3565b8383612037565b5050565b6112a76112a16116f3565b83611c2d565b6112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd90613389565b60405180910390fd5b6112f2848484846121a3565b50505050565b606061130382611687565b611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990613630565b60405180910390fd5b600060066000848152602001908152602001600020805461136290612ea2565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90612ea2565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b5050505050905060006113ec6121ff565b90506000815103611401578192505050611444565b60008251111561143657808260405160200161141e92919061368c565b60405160208183030381529060405292505050611444565b61143f84612216565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114e56116f3565b73ffffffffffffffffffffffffffffffffffffffff1661150361119d565b73ffffffffffffffffffffffffffffffffffffffff1614611559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611550906133f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90613722565b60405180910390fd5b6115d181611f71565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661176e83610d4f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600a600084815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b6000801515600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036118eb5781600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461189391906134d6565b9250508190555060011515600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a905050505b6001905092915050565b600080611901836115d4565b90506000811115611964576001600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461195c9190613742565b925050819055505b6001915050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156119d8573d6000803e3d6000fd5b506001905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a46906137c2565b60405180910390fd5b611a5881611687565b15611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f9061382e565b60405180910390fd5b611aa4600083836122bd565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af491906134d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bb5600083836122c2565b5050565b611bc282611687565b611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf8906138c0565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611c28929190612628565b505050565b6000611c3882611687565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e90613952565b60405180910390fd5b6000611c8283610d4f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cf157508373ffffffffffffffffffffffffffffffffffffffff16611cd984610878565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d025750611d018185611449565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d2b82610d4f565b73ffffffffffffffffffffffffffffffffffffffff1614611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906139e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de790613a76565b60405180910390fd5b611dfb8383836122bd565b611e066000826116fb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e569190613742565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ead91906134d6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f6c8383836122c2565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90613ae2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612196919061277f565b60405180910390a3505050565b6121ae848484611d0b565b6121ba848484846122c7565b6121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f090613b74565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061222182611687565b612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790613c06565b60405180910390fd5b600061226a6121ff565b9050600081511161228a57604051806020016040528060008152506122b5565b8061229484612486565b6040516020016122a592919061368c565b6040516020818303038152906040525b915050919050565b505050565b505050565b60006122e88473ffffffffffffffffffffffffffffffffffffffff16612605565b15612479578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123116116f3565b8786866040518563ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161234f9493929190613c7b565b6020604051808303816000875af192505050801561238b57506040513d601f19601f820116820180604052508101906123889190613cdc565b60015b61240d573d80600081146123bb576040519150601f19603f3d011682016040523d82523d6000602084013e6123c0565b606091505b506000815103612405576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fc90613b74565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061247e565b600190505b949350505050565b6060600082036124cd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612600565b600082905060005b600082146124ff5780806124e890613d09565b915050600a826124f89190613d80565b91506124d5565b60008167ffffffffffffffff81111561251b5761251a61298a565b5b6040519080825280601f01601f19166020018201604052801561254d5781602001600182028036833780820191505090505b5090505b600085146125f9576001826125669190613742565b9150600a856125759190613db1565b603061258191906134d6565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106125b6576125b5613de2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125f29190613d80565b9450612551565b8093505050505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461263490612ea2565b90600052602060002090601f016020900481019282612656576000855561269d565b82601f1061266f57805160ff191683800117855561269d565b8280016001018555821561269d579182015b8281111561269c578251825591602001919060010190612681565b5b5090506126aa91906126ae565b5090565b5b808211156126c75760008160009055506001016126af565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612714816126df565b811461271f57600080fd5b50565b6000813590506127318161270b565b92915050565b60006020828403121561274d5761274c6126d5565b5b600061275b84828501612722565b91505092915050565b60008115159050919050565b61277981612764565b82525050565b60006020820190506127946000830184612770565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d45780820151818401526020810190506127b9565b838111156127e3576000848401525b50505050565b6000601f19601f8301169050919050565b60006128058261279a565b61280f81856127a5565b935061281f8185602086016127b6565b612828816127e9565b840191505092915050565b6000602082019050818103600083015261284d81846127fa565b905092915050565b6000819050919050565b61286881612855565b811461287357600080fd5b50565b6000813590506128858161285f565b92915050565b6000602082840312156128a1576128a06126d5565b5b60006128af84828501612876565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128e3826128b8565b9050919050565b6128f3816128d8565b82525050565b600060208201905061290e60008301846128ea565b92915050565b61291d816128d8565b811461292857600080fd5b50565b60008135905061293a81612914565b92915050565b60008060408385031215612957576129566126d5565b5b60006129658582860161292b565b925050602061297685828601612876565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129c2826127e9565b810181811067ffffffffffffffff821117156129e1576129e061298a565b5b80604052505050565b60006129f46126cb565b9050612a0082826129b9565b919050565b600067ffffffffffffffff821115612a2057612a1f61298a565b5b612a29826127e9565b9050602081019050919050565b82818337600083830152505050565b6000612a58612a5384612a05565b6129ea565b905082815260208101848484011115612a7457612a73612985565b5b612a7f848285612a36565b509392505050565b600082601f830112612a9c57612a9b612980565b5b8135612aac848260208601612a45565b91505092915050565b600080600060608486031215612ace57612acd6126d5565b5b600084013567ffffffffffffffff811115612aec57612aeb6126da565b5b612af886828701612a87565b9350506020612b0986828701612876565b9250506040612b1a86828701612876565b9150509250925092565b600080600060608486031215612b3d57612b3c6126d5565b5b6000612b4b8682870161292b565b9350506020612b5c8682870161292b565b9250506040612b6d86828701612876565b9150509250925092565b60008060408385031215612b8e57612b8d6126d5565b5b6000612b9c85828601612876565b9250506020612bad85828601612876565b9150509250929050565b6000612bc2826128b8565b9050919050565b612bd281612bb7565b82525050565b6000602082019050612bed6000830184612bc9565b92915050565b600060208284031215612c0957612c086126d5565b5b6000612c178482850161292b565b91505092915050565b612c2981612855565b82525050565b6000602082019050612c446000830184612c20565b92915050565b612c5381612bb7565b8114612c5e57600080fd5b50565b600081359050612c7081612c4a565b92915050565b600060208284031215612c8c57612c8b6126d5565b5b6000612c9a84828501612c61565b91505092915050565b612cac81612764565b8114612cb757600080fd5b50565b600081359050612cc981612ca3565b92915050565b60008060408385031215612ce657612ce56126d5565b5b6000612cf48582860161292b565b9250506020612d0585828601612cba565b9150509250929050565b600067ffffffffffffffff821115612d2a57612d2961298a565b5b612d33826127e9565b9050602081019050919050565b6000612d53612d4e84612d0f565b6129ea565b905082815260208101848484011115612d6f57612d6e612985565b5b612d7a848285612a36565b509392505050565b600082601f830112612d9757612d96612980565b5b8135612da7848260208601612d40565b91505092915050565b60008060008060808587031215612dca57612dc96126d5565b5b6000612dd88782880161292b565b9450506020612de98782880161292b565b9350506040612dfa87828801612876565b925050606085013567ffffffffffffffff811115612e1b57612e1a6126da565b5b612e2787828801612d82565b91505092959194509250565b60008060408385031215612e4a57612e496126d5565b5b6000612e588582860161292b565b9250506020612e698582860161292b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612eba57607f821691505b602082108103612ecd57612ecc612e73565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612f2f602c836127a5565b9150612f3a82612ed3565b604082019050919050565b60006020820190508181036000830152612f5e81612f22565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fc16021836127a5565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006130536038836127a5565b915061305e82612ff7565b604082019050919050565b6000602082019050818103600083015261308281613046565b9050919050565b7f416d6f756e74206e6f7420657175616c20746f20707269636500000000000000600082015250565b60006130bf6019836127a5565b91506130ca82613089565b602082019050919050565b600060208201905081810360008301526130ee816130b2565b9050919050565b7f546869732065646974696f6e2068617320616c7265616479206265656e20747260008201527f616e73666f726d65640000000000000000000000000000000000000000000000602082015250565b60006131516029836127a5565b915061315c826130f5565b604082019050919050565b6000602082019050818103600083015261318081613144565b9050919050565b7f546869732065646974696f6e2063616e6e6f742062652075706461746564206160008201527f7420746869732074696d65000000000000000000000000000000000000000000602082015250565b60006131e3602b836127a5565b91506131ee82613187565b604082019050919050565b60006020820190508181036000830152613212816131d6565b9050919050565b7f416c6c6f77616e636520757064617465206572726f7200000000000000000000600082015250565b600061324f6016836127a5565b915061325a82613219565b602082019050919050565b6000602082019050818103600083015261327e81613242565b9050919050565b7f546869732073656e6465727320616c6c6f77616e63652063616e6e6f7420626560008201527f207570646174656420617420746869732074696d650000000000000000000000602082015250565b60006132e16035836127a5565b91506132ec82613285565b604082019050919050565b60006020820190508181036000830152613310816132d4565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006133736031836127a5565b915061337e82613317565b604082019050919050565b600060208201905081810360008301526133a281613366565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006133df6020836127a5565b91506133ea826133a9565b602082019050919050565b6000602082019050818103600083015261340e816133d2565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006134716029836127a5565b915061347c82613415565b604082019050919050565b600060208201905081810360008301526134a081613464565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134e182612855565b91506134ec83612855565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613521576135206134a7565b5b828201905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613588602a836127a5565b91506135938261352c565b604082019050919050565b600060208201905081810360008301526135b78161357b565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b600061361a6031836127a5565b9150613625826135be565b604082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b600081905092915050565b60006136668261279a565b6136708185613650565b93506136808185602086016127b6565b80840191505092915050565b6000613698828561365b565b91506136a4828461365b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061370c6026836127a5565b9150613717826136b0565b604082019050919050565b6000602082019050818103600083015261373b816136ff565b9050919050565b600061374d82612855565b915061375883612855565b92508282101561376b5761376a6134a7565b5b828203905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137ac6020836127a5565b91506137b782613776565b602082019050919050565b600060208201905081810360008301526137db8161379f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613818601c836127a5565b9150613823826137e2565b602082019050919050565b600060208201905081810360008301526138478161380b565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006138aa602e836127a5565b91506138b58261384e565b604082019050919050565b600060208201905081810360008301526138d98161389d565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061393c602c836127a5565b9150613947826138e0565b604082019050919050565b6000602082019050818103600083015261396b8161392f565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006139ce6025836127a5565b91506139d982613972565b604082019050919050565b600060208201905081810360008301526139fd816139c1565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a606024836127a5565b9150613a6b82613a04565b604082019050919050565b60006020820190508181036000830152613a8f81613a53565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613acc6019836127a5565b9150613ad782613a96565b602082019050919050565b60006020820190508181036000830152613afb81613abf565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613b5e6032836127a5565b9150613b6982613b02565b604082019050919050565b60006020820190508181036000830152613b8d81613b51565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613bf0602f836127a5565b9150613bfb82613b94565b604082019050919050565b60006020820190508181036000830152613c1f81613be3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c4d82613c26565b613c578185613c31565b9350613c678185602086016127b6565b613c70816127e9565b840191505092915050565b6000608082019050613c9060008301876128ea565b613c9d60208301866128ea565b613caa6040830185612c20565b8181036060830152613cbc8184613c42565b905095945050505050565b600081519050613cd68161270b565b92915050565b600060208284031215613cf257613cf16126d5565b5b6000613d0084828501613cc7565b91505092915050565b6000613d1482612855565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d4657613d456134a7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d8b82612855565b9150613d9683612855565b925082613da657613da5613d51565b5b828204905092915050565b6000613dbc82612855565b9150613dc783612855565b925082613dd757613dd6613d51565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122047c4bab95636592f607b8a4a2ca900c6ec43b42f01c6e6861c16d9d62193dff964736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000de3e6601d4fde06a7609f28db92a103a295a50a1000000000000000000000000000000000000000000000000007c585087238000
-----Decoded View---------------
Arg [0] : wallet (address): 0xde3E6601D4FdE06A7609f28dB92a103A295A50A1
Arg [1] : price (uint256): 35000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000de3e6601d4fde06a7609f28db92a103a295a50a1
Arg [1] : 000000000000000000000000000000000000000000000000007c585087238000
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.