Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
6,789 BM
Holders
2,345
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredMilady
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2024-01-27 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.18; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer( uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to ); } contract BoredMilady is IERC721A { address private _owner; uint256 public MAX_SUPPLY = 6789; uint256 public MAX_FREE = 6789; uint256 public MAX_FREE_PER_WALLET = 5; uint256 public COST = 0.001 ether; uint256 public FREE_MINTED = 0; string private constant _name = "Bored Milady"; string private constant _symbol = "BM"; string private _baseURI = "QmPTeDm8XMefi6W7efkH4UXa5fmhAWjf3ZTxcPqjHUtSsq"; mapping(address => uint256) public blockmints; constructor() { _owner = msg.sender; } function mint(uint32 amount) public payable nob { _verify_mint(amount); _mint(msg.sender, amount); } /** * @notice Team Mint */ function teamMint(uint256 amount) external onlyOwner { require(totalSupply() + amount <= MAX_SUPPLY, "Sold out"); _mint(msg.sender, amount); } function _verify_mint(uint32 amount) internal { require(totalSupply() + amount <= MAX_SUPPLY, "Sold out"); require(amount + balanceOf(msg.sender) <= 20, "No more!"); if (msg.sender != owner()) { if ( !(blockmints[msg.sender] >= MAX_FREE_PER_WALLET) && FREE_MINTED + MAX_FREE_PER_WALLET <= MAX_FREE ) { if (amount <= MAX_FREE_PER_WALLET - blockmints[msg.sender]) { require(msg.value >= 0, "Please send the exact amount."); } else { require( msg.value >= COST * (amount - (MAX_FREE_PER_WALLET - blockmints[msg.sender])), "Please send the exact amount." ); } FREE_MINTED += amount; blockmints[msg.sender] += amount; } else { require( msg.value >= amount * COST, "Please send the exact amount." ); } } } function setData(string memory _base) external onlyOwner { _baseURI = _base; } function setConfig( uint256 _MAX_SUPPLY, uint256 _MAX_FREE, uint256 _MAX_FREE_PER_WALLET ) external onlyOwner { MAX_SUPPLY = _MAX_SUPPLY; MAX_FREE = _MAX_FREE; MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address __owner) public view override returns (uint256) { if (_addressToUint256(__owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[__owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address __owner) internal view returns (uint256) { return (_packedAddressData[__owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address __owner) internal view returns (uint64) { return uint64(_packedAddressData[__owner] >> BITPOS_AUX); } // ============================================================= // IERC165 // ============================================================= /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @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; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI; return bytes(baseURI).length != 0 ? string( abi.encodePacked( "ipfs://", baseURI, "/", _toString(tokenId), ".json" ) ) : ""; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= function owner() public view returns (address) { return _owner; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address __owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == __owner) revert(); if (_msgSenderERC721A() != __owner) if (!isApprovedForAll(__owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(__owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address __owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[__owner][operator]; } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } modifier onlyOwner() { require(_owner == msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin == msg.sender, "no Script"); _; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"__owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blockmints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"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":"uint256","name":"_MAX_SUPPLY","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE_PER_WALLET","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611a85600155611a85600255600560035566038d7ea4c6800060045560006005556040518060600160405280602e815260200162002f5e602e9139600690816200004f919062000323565b5060006008553480156200006257600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200040a565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200012b57607f821691505b602082108103620001415762000140620000e3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001ab7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200016c565b620001b786836200016c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000204620001fe620001f884620001cf565b620001d9565b620001cf565b9050919050565b6000819050919050565b6200022083620001e3565b620002386200022f826200020b565b84845462000179565b825550505050565b600090565b6200024f62000240565b6200025c81848462000215565b505050565b5b8181101562000284576200027860008262000245565b60018101905062000262565b5050565b601f821115620002d3576200029d8162000147565b620002a8846200015c565b81016020851015620002b8578190505b620002d0620002c7856200015c565b83018262000261565b50505b505050565b600082821c905092915050565b6000620002f860001984600802620002d8565b1980831691505092915050565b6000620003138383620002e5565b9150826002028217905092915050565b6200032e82620000a9565b67ffffffffffffffff8111156200034a5762000349620000b4565b5b62000356825462000112565b6200036382828562000288565b600060209050601f8311600181146200039b576000841562000386578287015190505b62000392858262000305565b86555062000402565b601f198416620003ab8662000147565b60005b82811015620003d557848901518255600182019150602085019450602081019050620003ae565b86831015620003f55784890151620003f1601f891682620002e5565b8355505b6001600288020188555050505b505050505050565b612b44806200041a6000396000f3fe6080604052600436106101815760003560e01c80635e1a2636116100d1578063a22cb4651161008a578063bf8fbbd211610064578063bf8fbbd21461055f578063c87b56dd1461058a578063e985e9c5146105c7578063ed6661c21461060457610181565b8063a22cb465146104f1578063a71bbebe1461051a578063b88d4fde1461053657610181565b80635e1a2636146103cb5780636352211e146103f657806370a08231146104335780638da5cb5b1461047057806395d89b411461049b57806398710d1e146104c657610181565b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b146103255780633d44b0a01461033c57806342842e0e1461037957806347064d6a146103a257610181565b806323b872dd146102a85780632fbba115146102d157806332cb6b0c146102fa57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b578063129ee21a1461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611c30565b61062f565b6040516101ba9190611c78565b60405180910390f35b3480156101cf57600080fd5b506101d86106c1565b6040516101e59190611d23565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190611d7b565b6106fe565b6040516102229190611de9565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190611e30565b61077a565b005b34801561026057600080fd5b5061027b60048036038101906102769190611e70565b6108f3565b005b34801561028957600080fd5b5061029261099b565b60405161029f9190611ed2565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190611eed565b6109ae565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190611d7b565b6109be565b005b34801561030657600080fd5b5061030f610ab0565b60405161031c9190611ed2565b60405180910390f35b34801561033157600080fd5b5061033a610ab6565b005b34801561034857600080fd5b50610363600480360381019061035e9190611f40565b610bf3565b6040516103709190611ed2565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190611eed565b610c0b565b005b3480156103ae57600080fd5b506103c960048036038101906103c491906120a2565b610c2b565b005b3480156103d757600080fd5b506103e0610ccc565b6040516103ed9190611ed2565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190611d7b565b610cd2565b60405161042a9190611de9565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190611f40565b610ce4565b6040516104679190611ed2565b60405180910390f35b34801561047c57600080fd5b50610485610d78565b6040516104929190611de9565b60405180910390f35b3480156104a757600080fd5b506104b0610da1565b6040516104bd9190611d23565b60405180910390f35b3480156104d257600080fd5b506104db610dde565b6040516104e89190611ed2565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612117565b610de4565b005b610534600480360381019061052f9190612193565b610f5b565b005b34801561054257600080fd5b5061055d60048036038101906105589190612261565b610fe5565b005b34801561056b57600080fd5b50610574610ff6565b6040516105819190611ed2565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190611d7b565b610ffc565b6040516105be9190611d23565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906122e4565b61111d565b6040516105fb9190611c78565b60405180910390f35b34801561061057600080fd5b506106196111b1565b6040516106269190611ed2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600c81526020017f426f726564204d696c6164790000000000000000000000000000000000000000815250905090565b6000610709826111b7565b61073f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610785826111d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166107de6112a4565b73ffffffffffffffffffffffffffffffffffffffff16146108415761080a816108056112a4565b61111d565b610840576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600b600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612370565b60405180910390fd5b826001819055508160028190555080600381905550505050565b60006109a56112ac565b60085403905090565b6109b98383836112b1565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390612370565b60405180910390fd5b60015481610a5861099b565b610a6291906123bf565b1115610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a9061243f565b60405180910390fd5b610aad3382611627565b50565b60015481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90612370565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b6a90612490565b60006040518083038185875af1925050503d8060008114610ba7576040519150601f19603f3d011682016040523d82523d6000602084013e610bac565b606091505b5050905080610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be7906124f1565b60405180910390fd5b50565b60076020528060005260406000206000915090505481565b610c2683838360405180602001604052806000815250610fe5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090612370565b60405180910390fd5b8060069081610cc8919061271d565b5050565b60055481565b6000610cdd826111d8565b9050919050565b600080610cf0836117c9565b03610d27576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f424d000000000000000000000000000000000000000000000000000000000000815250905090565b60035481565b610dec6112a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e50576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c6000610e5d6112a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f0a6112a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f4f9190611c78565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061283b565b60405180910390fd5b610fd2816117d3565b610fe2338263ffffffff16611627565b50565b610ff08484846112b1565b50505050565b60045481565b6060611007826111b7565b61103d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006805461104c90612540565b80601f016020809104026020016040519081016040528092919081815260200182805461107890612540565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b5050505050905060008151036110ea5760405180602001604052806000815250611115565b806110f484611b5a565b60405160200161110592919061297b565b6040516020818303038152906040525b915050919050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60025481565b6000816111c26112ac565b111580156111d1575060085482105b9050919050565b600080829050806111e76112ac565b1161126d5760085481101561126c5760006009600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361126a575b60008103611260576009600083600190039350838152602001908152602001600020549050611236565b809250505061129f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006112bc826111d8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611323576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661137c6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614806113ab57506113aa866113a56112a4565b61111d565b5b806113e857506113b96112a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611421576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061142c836117c9565b1461146857600b600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61152f876117c9565b1717600960008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115b757600060018501905060006009600083815260200190815260200160002054036115b55760085481146115b4578360096000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461161f8686866001611bb4565b505050505050565b600060085490506000611639846117c9565b03611670576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036116aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161170f60018414611bba565b901b60a042901b61171f856117c9565b171760096000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611745578160088190555050506117c46000848385611bb4565b505050565b6000819050919050565b6001548163ffffffff166117e561099b565b6117ef91906123bf565b1115611830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118279061243f565b60405180910390fd5b601461183b33610ce4565b8263ffffffff1661184c91906123bf565b111561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490612a0c565b60405180910390fd5b611895610d78565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b5757600354600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515801561192a575060025460035460055461192791906123bf565b11155b15611aff57600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460035461197c9190612a2c565b8163ffffffff16116119d15760003410156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390612aac565b60405180910390fd5b611a7f565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600354611a1e9190612a2c565b8163ffffffff16611a2f9190612a2c565b600454611a3c9190612acc565b341015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590612aac565b60405180910390fd5b5b8063ffffffff1660056000828254611a9791906123bf565b925050819055508063ffffffff16600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af391906123bf565b92505081905550611b56565b6004548163ffffffff16611b139190612acc565b341015611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90612aac565b60405180910390fd5b5b5b50565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ba057600183039250600a81066030018353600a81049050611b80565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c0d81611bd8565b8114611c1857600080fd5b50565b600081359050611c2a81611c04565b92915050565b600060208284031215611c4657611c45611bce565b5b6000611c5484828501611c1b565b91505092915050565b60008115159050919050565b611c7281611c5d565b82525050565b6000602082019050611c8d6000830184611c69565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ccd578082015181840152602081019050611cb2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cf582611c93565b611cff8185611c9e565b9350611d0f818560208601611caf565b611d1881611cd9565b840191505092915050565b60006020820190508181036000830152611d3d8184611cea565b905092915050565b6000819050919050565b611d5881611d45565b8114611d6357600080fd5b50565b600081359050611d7581611d4f565b92915050565b600060208284031215611d9157611d90611bce565b5b6000611d9f84828501611d66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dd382611da8565b9050919050565b611de381611dc8565b82525050565b6000602082019050611dfe6000830184611dda565b92915050565b611e0d81611dc8565b8114611e1857600080fd5b50565b600081359050611e2a81611e04565b92915050565b60008060408385031215611e4757611e46611bce565b5b6000611e5585828601611e1b565b9250506020611e6685828601611d66565b9150509250929050565b600080600060608486031215611e8957611e88611bce565b5b6000611e9786828701611d66565b9350506020611ea886828701611d66565b9250506040611eb986828701611d66565b9150509250925092565b611ecc81611d45565b82525050565b6000602082019050611ee76000830184611ec3565b92915050565b600080600060608486031215611f0657611f05611bce565b5b6000611f1486828701611e1b565b9350506020611f2586828701611e1b565b9250506040611f3686828701611d66565b9150509250925092565b600060208284031215611f5657611f55611bce565b5b6000611f6484828501611e1b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611faf82611cd9565b810181811067ffffffffffffffff82111715611fce57611fcd611f77565b5b80604052505050565b6000611fe1611bc4565b9050611fed8282611fa6565b919050565b600067ffffffffffffffff82111561200d5761200c611f77565b5b61201682611cd9565b9050602081019050919050565b82818337600083830152505050565b600061204561204084611ff2565b611fd7565b90508281526020810184848401111561206157612060611f72565b5b61206c848285612023565b509392505050565b600082601f83011261208957612088611f6d565b5b8135612099848260208601612032565b91505092915050565b6000602082840312156120b8576120b7611bce565b5b600082013567ffffffffffffffff8111156120d6576120d5611bd3565b5b6120e284828501612074565b91505092915050565b6120f481611c5d565b81146120ff57600080fd5b50565b600081359050612111816120eb565b92915050565b6000806040838503121561212e5761212d611bce565b5b600061213c85828601611e1b565b925050602061214d85828601612102565b9150509250929050565b600063ffffffff82169050919050565b61217081612157565b811461217b57600080fd5b50565b60008135905061218d81612167565b92915050565b6000602082840312156121a9576121a8611bce565b5b60006121b78482850161217e565b91505092915050565b600067ffffffffffffffff8211156121db576121da611f77565b5b6121e482611cd9565b9050602081019050919050565b60006122046121ff846121c0565b611fd7565b9050828152602081018484840111156122205761221f611f72565b5b61222b848285612023565b509392505050565b600082601f83011261224857612247611f6d565b5b81356122588482602086016121f1565b91505092915050565b6000806000806080858703121561227b5761227a611bce565b5b600061228987828801611e1b565b945050602061229a87828801611e1b565b93505060406122ab87828801611d66565b925050606085013567ffffffffffffffff8111156122cc576122cb611bd3565b5b6122d887828801612233565b91505092959194509250565b600080604083850312156122fb576122fa611bce565b5b600061230985828601611e1b565b925050602061231a85828601611e1b565b9150509250929050565b7f6e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b600061235a600983611c9e565b915061236582612324565b602082019050919050565b600060208201905081810360008301526123898161234d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123ca82611d45565b91506123d583611d45565b92508282019050808211156123ed576123ec612390565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612429600883611c9e565b9150612434826123f3565b602082019050919050565b600060208201905081810360008301526124588161241c565b9050919050565b600081905092915050565b50565b600061247a60008361245f565b91506124858261246a565b600082019050919050565b600061249b8261246d565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006124db601083611c9e565b91506124e6826124a5565b602082019050919050565b6000602082019050818103600083015261250a816124ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061255857607f821691505b60208210810361256b5761256a612511565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612596565b6125dd8683612596565b95508019841693508086168417925050509392505050565b6000819050919050565b600061261a61261561261084611d45565b6125f5565b611d45565b9050919050565b6000819050919050565b612634836125ff565b61264861264082612621565b8484546125a3565b825550505050565b600090565b61265d612650565b61266881848461262b565b505050565b5b8181101561268c57612681600082612655565b60018101905061266e565b5050565b601f8211156126d1576126a281612571565b6126ab84612586565b810160208510156126ba578190505b6126ce6126c685612586565b83018261266d565b50505b505050565b600082821c905092915050565b60006126f4600019846008026126d6565b1980831691505092915050565b600061270d83836126e3565b9150826002028217905092915050565b61272682611c93565b67ffffffffffffffff81111561273f5761273e611f77565b5b6127498254612540565b612754828285612690565b600060209050601f8311600181146127875760008415612775578287015190505b61277f8582612701565b8655506127e7565b601f19841661279586612571565b60005b828110156127bd57848901518255600182019150602085019450602081019050612798565b868310156127da57848901516127d6601f8916826126e3565b8355505b6001600288020188555050505b505050505050565b7f6e6f205363726970740000000000000000000000000000000000000000000000600082015250565b6000612825600983611c9e565b9150612830826127ef565b602082019050919050565b6000602082019050818103600083015261285481612818565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061289c60078361285b565b91506128a782612866565b600782019050919050565b60006128bd82611c93565b6128c7818561285b565b93506128d7818560208601611caf565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b600061291960018361285b565b9150612924826128e3565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061296560058361285b565b91506129708261292f565b600582019050919050565b60006129868261288f565b915061299282856128b2565b915061299d8261290c565b91506129a982846128b2565b91506129b482612958565b91508190509392505050565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b60006129f6600883611c9e565b9150612a01826129c0565b602082019050919050565b60006020820190508181036000830152612a25816129e9565b9050919050565b6000612a3782611d45565b9150612a4283611d45565b9250828203905081811115612a5a57612a59612390565b5b92915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612a96601d83611c9e565b9150612aa182612a60565b602082019050919050565b60006020820190508181036000830152612ac581612a89565b9050919050565b6000612ad782611d45565b9150612ae283611d45565b9250828202612af081611d45565b91508282048414831517612b0757612b06612390565b5b509291505056fea2646970667358221220011f311d6b1ee775ae588abd501003dc2a7342d06d889e18a93f958b7ac8cbe364736f6c63430008120033516d505465446d38584d65666936573765666b483455586135666d6841576a66335a54786350716a485574537371
Deployed Bytecode
0x6080604052600436106101815760003560e01c80635e1a2636116100d1578063a22cb4651161008a578063bf8fbbd211610064578063bf8fbbd21461055f578063c87b56dd1461058a578063e985e9c5146105c7578063ed6661c21461060457610181565b8063a22cb465146104f1578063a71bbebe1461051a578063b88d4fde1461053657610181565b80635e1a2636146103cb5780636352211e146103f657806370a08231146104335780638da5cb5b1461047057806395d89b411461049b57806398710d1e146104c657610181565b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b146103255780633d44b0a01461033c57806342842e0e1461037957806347064d6a146103a257610181565b806323b872dd146102a85780632fbba115146102d157806332cb6b0c146102fa57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b578063129ee21a1461025457806318160ddd1461027d575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190611c30565b61062f565b6040516101ba9190611c78565b60405180910390f35b3480156101cf57600080fd5b506101d86106c1565b6040516101e59190611d23565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190611d7b565b6106fe565b6040516102229190611de9565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190611e30565b61077a565b005b34801561026057600080fd5b5061027b60048036038101906102769190611e70565b6108f3565b005b34801561028957600080fd5b5061029261099b565b60405161029f9190611ed2565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190611eed565b6109ae565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190611d7b565b6109be565b005b34801561030657600080fd5b5061030f610ab0565b60405161031c9190611ed2565b60405180910390f35b34801561033157600080fd5b5061033a610ab6565b005b34801561034857600080fd5b50610363600480360381019061035e9190611f40565b610bf3565b6040516103709190611ed2565b60405180910390f35b34801561038557600080fd5b506103a0600480360381019061039b9190611eed565b610c0b565b005b3480156103ae57600080fd5b506103c960048036038101906103c491906120a2565b610c2b565b005b3480156103d757600080fd5b506103e0610ccc565b6040516103ed9190611ed2565b60405180910390f35b34801561040257600080fd5b5061041d60048036038101906104189190611d7b565b610cd2565b60405161042a9190611de9565b60405180910390f35b34801561043f57600080fd5b5061045a60048036038101906104559190611f40565b610ce4565b6040516104679190611ed2565b60405180910390f35b34801561047c57600080fd5b50610485610d78565b6040516104929190611de9565b60405180910390f35b3480156104a757600080fd5b506104b0610da1565b6040516104bd9190611d23565b60405180910390f35b3480156104d257600080fd5b506104db610dde565b6040516104e89190611ed2565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190612117565b610de4565b005b610534600480360381019061052f9190612193565b610f5b565b005b34801561054257600080fd5b5061055d60048036038101906105589190612261565b610fe5565b005b34801561056b57600080fd5b50610574610ff6565b6040516105819190611ed2565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190611d7b565b610ffc565b6040516105be9190611d23565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906122e4565b61111d565b6040516105fb9190611c78565b60405180910390f35b34801561061057600080fd5b506106196111b1565b6040516106269190611ed2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061068a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600c81526020017f426f726564204d696c6164790000000000000000000000000000000000000000815250905090565b6000610709826111b7565b61073f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610785826111d8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bf57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166107de6112a4565b73ffffffffffffffffffffffffffffffffffffffff16146108415761080a816108056112a4565b61111d565b610840576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600b600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612370565b60405180910390fd5b826001819055508160028190555080600381905550505050565b60006109a56112ac565b60085403905090565b6109b98383836112b1565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4390612370565b60405180910390fd5b60015481610a5861099b565b610a6291906123bf565b1115610aa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9a9061243f565b60405180910390fd5b610aad3382611627565b50565b60015481565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3b90612370565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b6a90612490565b60006040518083038185875af1925050503d8060008114610ba7576040519150601f19603f3d011682016040523d82523d6000602084013e610bac565b606091505b5050905080610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be7906124f1565b60405180910390fd5b50565b60076020528060005260406000206000915090505481565b610c2683838360405180602001604052806000815250610fe5565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090612370565b60405180910390fd5b8060069081610cc8919061271d565b5050565b60055481565b6000610cdd826111d8565b9050919050565b600080610cf0836117c9565b03610d27576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600281526020017f424d000000000000000000000000000000000000000000000000000000000000815250905090565b60035481565b610dec6112a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e50576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c6000610e5d6112a4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f0a6112a4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f4f9190611c78565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc09061283b565b60405180910390fd5b610fd2816117d3565b610fe2338263ffffffff16611627565b50565b610ff08484846112b1565b50505050565b60045481565b6060611007826111b7565b61103d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006805461104c90612540565b80601f016020809104026020016040519081016040528092919081815260200182805461107890612540565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b5050505050905060008151036110ea5760405180602001604052806000815250611115565b806110f484611b5a565b60405160200161110592919061297b565b6040516020818303038152906040525b915050919050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60025481565b6000816111c26112ac565b111580156111d1575060085482105b9050919050565b600080829050806111e76112ac565b1161126d5760085481101561126c5760006009600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361126a575b60008103611260576009600083600190039350838152602001908152602001600020549050611236565b809250505061129f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006112bc826111d8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611323576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661137c6112a4565b73ffffffffffffffffffffffffffffffffffffffff1614806113ab57506113aa866113a56112a4565b61111d565b5b806113e857506113b96112a4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611421576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061142c836117c9565b1461146857600b600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61152f876117c9565b1717600960008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115b757600060018501905060006009600083815260200190815260200160002054036115b55760085481146115b4578360096000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461161f8686866001611bb4565b505050505050565b600060085490506000611639846117c9565b03611670576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036116aa576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161170f60018414611bba565b901b60a042901b61171f856117c9565b171760096000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611745578160088190555050506117c46000848385611bb4565b505050565b6000819050919050565b6001548163ffffffff166117e561099b565b6117ef91906123bf565b1115611830576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118279061243f565b60405180910390fd5b601461183b33610ce4565b8263ffffffff1661184c91906123bf565b111561188d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188490612a0c565b60405180910390fd5b611895610d78565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611b5757600354600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515801561192a575060025460035460055461192791906123bf565b11155b15611aff57600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460035461197c9190612a2c565b8163ffffffff16116119d15760003410156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390612aac565b60405180910390fd5b611a7f565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600354611a1e9190612a2c565b8163ffffffff16611a2f9190612a2c565b600454611a3c9190612acc565b341015611a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7590612aac565b60405180910390fd5b5b8063ffffffff1660056000828254611a9791906123bf565b925050819055508063ffffffff16600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611af391906123bf565b92505081905550611b56565b6004548163ffffffff16611b139190612acc565b341015611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90612aac565b60405180910390fd5b5b5b50565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611ba057600183039250600a81066030018353600a81049050611b80565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c0d81611bd8565b8114611c1857600080fd5b50565b600081359050611c2a81611c04565b92915050565b600060208284031215611c4657611c45611bce565b5b6000611c5484828501611c1b565b91505092915050565b60008115159050919050565b611c7281611c5d565b82525050565b6000602082019050611c8d6000830184611c69565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ccd578082015181840152602081019050611cb2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611cf582611c93565b611cff8185611c9e565b9350611d0f818560208601611caf565b611d1881611cd9565b840191505092915050565b60006020820190508181036000830152611d3d8184611cea565b905092915050565b6000819050919050565b611d5881611d45565b8114611d6357600080fd5b50565b600081359050611d7581611d4f565b92915050565b600060208284031215611d9157611d90611bce565b5b6000611d9f84828501611d66565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611dd382611da8565b9050919050565b611de381611dc8565b82525050565b6000602082019050611dfe6000830184611dda565b92915050565b611e0d81611dc8565b8114611e1857600080fd5b50565b600081359050611e2a81611e04565b92915050565b60008060408385031215611e4757611e46611bce565b5b6000611e5585828601611e1b565b9250506020611e6685828601611d66565b9150509250929050565b600080600060608486031215611e8957611e88611bce565b5b6000611e9786828701611d66565b9350506020611ea886828701611d66565b9250506040611eb986828701611d66565b9150509250925092565b611ecc81611d45565b82525050565b6000602082019050611ee76000830184611ec3565b92915050565b600080600060608486031215611f0657611f05611bce565b5b6000611f1486828701611e1b565b9350506020611f2586828701611e1b565b9250506040611f3686828701611d66565b9150509250925092565b600060208284031215611f5657611f55611bce565b5b6000611f6484828501611e1b565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611faf82611cd9565b810181811067ffffffffffffffff82111715611fce57611fcd611f77565b5b80604052505050565b6000611fe1611bc4565b9050611fed8282611fa6565b919050565b600067ffffffffffffffff82111561200d5761200c611f77565b5b61201682611cd9565b9050602081019050919050565b82818337600083830152505050565b600061204561204084611ff2565b611fd7565b90508281526020810184848401111561206157612060611f72565b5b61206c848285612023565b509392505050565b600082601f83011261208957612088611f6d565b5b8135612099848260208601612032565b91505092915050565b6000602082840312156120b8576120b7611bce565b5b600082013567ffffffffffffffff8111156120d6576120d5611bd3565b5b6120e284828501612074565b91505092915050565b6120f481611c5d565b81146120ff57600080fd5b50565b600081359050612111816120eb565b92915050565b6000806040838503121561212e5761212d611bce565b5b600061213c85828601611e1b565b925050602061214d85828601612102565b9150509250929050565b600063ffffffff82169050919050565b61217081612157565b811461217b57600080fd5b50565b60008135905061218d81612167565b92915050565b6000602082840312156121a9576121a8611bce565b5b60006121b78482850161217e565b91505092915050565b600067ffffffffffffffff8211156121db576121da611f77565b5b6121e482611cd9565b9050602081019050919050565b60006122046121ff846121c0565b611fd7565b9050828152602081018484840111156122205761221f611f72565b5b61222b848285612023565b509392505050565b600082601f83011261224857612247611f6d565b5b81356122588482602086016121f1565b91505092915050565b6000806000806080858703121561227b5761227a611bce565b5b600061228987828801611e1b565b945050602061229a87828801611e1b565b93505060406122ab87828801611d66565b925050606085013567ffffffffffffffff8111156122cc576122cb611bd3565b5b6122d887828801612233565b91505092959194509250565b600080604083850312156122fb576122fa611bce565b5b600061230985828601611e1b565b925050602061231a85828601611e1b565b9150509250929050565b7f6e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b600061235a600983611c9e565b915061236582612324565b602082019050919050565b600060208201905081810360008301526123898161234d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123ca82611d45565b91506123d583611d45565b92508282019050808211156123ed576123ec612390565b5b92915050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000612429600883611c9e565b9150612434826123f3565b602082019050919050565b600060208201905081810360008301526124588161241c565b9050919050565b600081905092915050565b50565b600061247a60008361245f565b91506124858261246a565b600082019050919050565b600061249b8261246d565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006124db601083611c9e565b91506124e6826124a5565b602082019050919050565b6000602082019050818103600083015261250a816124ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061255857607f821691505b60208210810361256b5761256a612511565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026125d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612596565b6125dd8683612596565b95508019841693508086168417925050509392505050565b6000819050919050565b600061261a61261561261084611d45565b6125f5565b611d45565b9050919050565b6000819050919050565b612634836125ff565b61264861264082612621565b8484546125a3565b825550505050565b600090565b61265d612650565b61266881848461262b565b505050565b5b8181101561268c57612681600082612655565b60018101905061266e565b5050565b601f8211156126d1576126a281612571565b6126ab84612586565b810160208510156126ba578190505b6126ce6126c685612586565b83018261266d565b50505b505050565b600082821c905092915050565b60006126f4600019846008026126d6565b1980831691505092915050565b600061270d83836126e3565b9150826002028217905092915050565b61272682611c93565b67ffffffffffffffff81111561273f5761273e611f77565b5b6127498254612540565b612754828285612690565b600060209050601f8311600181146127875760008415612775578287015190505b61277f8582612701565b8655506127e7565b601f19841661279586612571565b60005b828110156127bd57848901518255600182019150602085019450602081019050612798565b868310156127da57848901516127d6601f8916826126e3565b8355505b6001600288020188555050505b505050505050565b7f6e6f205363726970740000000000000000000000000000000000000000000000600082015250565b6000612825600983611c9e565b9150612830826127ef565b602082019050919050565b6000602082019050818103600083015261285481612818565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061289c60078361285b565b91506128a782612866565b600782019050919050565b60006128bd82611c93565b6128c7818561285b565b93506128d7818560208601611caf565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b600061291960018361285b565b9150612924826128e3565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061296560058361285b565b91506129708261292f565b600582019050919050565b60006129868261288f565b915061299282856128b2565b915061299d8261290c565b91506129a982846128b2565b91506129b482612958565b91508190509392505050565b7f4e6f206d6f726521000000000000000000000000000000000000000000000000600082015250565b60006129f6600883611c9e565b9150612a01826129c0565b602082019050919050565b60006020820190508181036000830152612a25816129e9565b9050919050565b6000612a3782611d45565b9150612a4283611d45565b9250828203905081811115612a5a57612a59612390565b5b92915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612a96601d83611c9e565b9150612aa182612a60565b602082019050919050565b60006020820190508181036000830152612ac581612a89565b9050919050565b6000612ad782611d45565b9150612ae283611d45565b9250828202612af081611d45565b91508282048414831517612b0757612b06612390565b5b509291505056fea2646970667358221220011f311d6b1ee775ae588abd501003dc2a7342d06d889e18a93f958b7ac8cbe364736f6c63430008120033
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.