ERC-721
Overview
Max Total Supply
6,900 BREAD
Holders
2,172
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 BREADLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Breadaverse
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /*** __ __ _______ _____ _ _ _ _ \ \ / / |__ __| | __ \(_) (_) | | | \ \ /\ / /_ _ _ _| | ___ ___ | | | |_ __ _ _| |_ __ _| | \ \/ \/ / _` | | | | |/ _ \ / _ \| | | | |/ _` | | __/ _` | | \ /\ / (_| | |_| | | (_) | (_) | |__| | | (_| | | || (_| | | \/ \/ \__,_|\__, |_|\___/ \___/|_____/|_|\__, |_|\__\__,_|_| __/ | __/ | |___/ |___/ ***/ pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract Breadaverse is ERC721A, Ownable { using MerkleProof for bytes32[]; using Strings for uint256; uint16 public constant publicNfts = 6420; uint16 public constant reservedNfts = 480; uint16 private devsMinted; uint48 private publicMinted; bytes32 public merkleRoot; bool public preReveal = true; string private baseURI; string private preRevealBaseURI; bool public saleStarted = false; bool public publicSaleStarted = false; uint256 public breadPrice = 0 ether; function _baseURI() internal view virtual override returns (string memory) { return baseURI; } constructor(string memory name, string memory symbol) ERC721A(name, symbol) {} function setPreRevealBaseURI(string memory _preRevealBaseUri) public onlyOwner { preRevealBaseURI = _preRevealBaseUri; } function setBaseURI(string memory _baseUri) public onlyOwner { baseURI = _baseUri; } function mint( bytes32[] memory proof, bytes32 leaf, uint8 amount ) public payable { require(tx.origin == msg.sender, "The caller is another contract"); require(msg.value == (breadPrice * amount), "The price is invalid"); require(saleStarted == true, "The sale is paused"); require(publicMinted + amount <= publicNfts, "Mint limit reached"); if (publicSaleStarted == false) { require(keccak256(abi.encodePacked(msg.sender)) == leaf, "This leaf does not belong to the sender"); require(proof.verify(merkleRoot, leaf), "You are not in the list"); require(_numberMinted(msg.sender) + amount <= 5, "Address minted max amount"); } else { require(_numberMinted(msg.sender) + amount <= 2, "Address minted max amount"); } publicMinted += amount; _mint(msg.sender, amount); } //Reserved for marketing, devs, etc function devMint(address to, uint16 amount) public onlyOwner { require(devsMinted + amount <= reservedNfts, "Exceeded max supply for devs"); devsMinted += amount; _mint(to, amount); } function startSale() public onlyOwner { saleStarted = true; } function pauseSale() public onlyOwner { saleStarted = false; } function togglePublicSale() public onlyOwner { publicSaleStarted = !publicSaleStarted; } function setMerkleRoot(bytes32 _root) public onlyOwner { merkleRoot = _root; } function setbreadPrice(uint256 price) public onlyOwner { breadPrice = price; } function reveal() public onlyOwner { preReveal = false; } function withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); if (preReveal == true) return string(abi.encodePacked(preRevealBaseURI, tokenId.toString())); else return string(abi.encodePacked(baseURI, tokenId.toString())); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721A { using Address for address; using Strings for uint256; // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * 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(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner) if(!isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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); if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 && !_ownerships[tokenId].burned; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); 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); } /** * @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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * 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` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @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 {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v3.3.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * 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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breadPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"uint8","name":"amount","type":"uint8"}],"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":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"preReveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicNfts","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNfts","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preRevealBaseUri","type":"string"}],"name":"setPreRevealBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setbreadPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSale","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600a60006101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600e553480156200006757600080fd5b50604051620045d4380380620045d483398181016040528101906200008d9190620002fa565b81818160029080519060200190620000a7929190620001d8565b508060039080519060200190620000c0929190620001d8565b50620000d16200010160201b60201c565b6000819055505050620000f9620000ed6200010a60201b60201c565b6200011260201b60201c565b5050620004dd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e69062000402565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b60006200029f620002998462000396565b6200036d565b905082815260208101848484011115620002b857600080fd5b620002c5848285620003cc565b509392505050565b600082601f830112620002df57600080fd5b8151620002f184826020860162000288565b91505092915050565b600080604083850312156200030e57600080fd5b600083015167ffffffffffffffff8111156200032957600080fd5b6200033785828601620002cd565b925050602083015167ffffffffffffffff8111156200035557600080fd5b6200036385828601620002cd565b9150509250929050565b6000620003796200038c565b905062000387828262000438565b919050565b6000604051905090565b600067ffffffffffffffff821115620003b457620003b36200049d565b5b620003bf82620004cc565b9050602081019050919050565b60005b83811015620003ec578082015181840152602081019050620003cf565b83811115620003fc576000848401525b50505050565b600060028204905060018216806200041b57607f821691505b602082108114156200043257620004316200046e565b5b50919050565b6200044382620004cc565b810181811067ffffffffffffffff821117156200046557620004646200049d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6140e780620004ed6000396000f3fe6080604052600436106102035760003560e01c806386395b5811610118578063b66a0e5d116100a0578063e222c7f91161006f578063e222c7f9146106e7578063e878cff3146106fe578063e985e9c514610729578063f2fde38b14610766578063f38ade9b1461078f57610203565b8063b66a0e5d14610641578063b88d4fde14610658578063c6516cda14610681578063c87b56dd146106aa57610203565b8063a2e91477116100e7578063a2e914771461058d578063a475b5dd146105b8578063aa4e891a146105cf578063b499c0f0146105fa578063b61613d11461061657610203565b806386395b58146104e35780638da5cb5b1461050e57806395d89b4114610539578063a22cb4651461056457610203565b80633ccfd60b1161019b5780635c474f9e1161016a5780635c474f9e146103fe5780636352211e1461042957806370a0823114610466578063715018a6146104a35780637cb64759146104ba57610203565b80633ccfd60b1461037e57806342842e0e1461039557806355367ba9146103be57806355f804b3146103d557610203565b8063095ea7b3116101d7578063095ea7b3146102d657806318160ddd146102ff57806323b872dd1461032a5780632eb4a7ab1461035357610203565b80625550931461020857806301ffc9a71461023157806306fdde031461026e578063081812fc14610299575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190613296565b6107b8565b005b34801561023d57600080fd5b5061025860048036038101906102539190613203565b61083e565b60405161026591906136ad565b60405180910390f35b34801561027a57600080fd5b50610283610920565b60405161029091906136e3565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190613296565b6109b2565b6040516102cd9190613646565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190613137565b610a2e565b005b34801561030b57600080fd5b50610314610b33565b6040516103219190613880565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612ff5565b610b4a565b005b34801561035f57600080fd5b50610368610b5a565b60405161037591906136c8565b60405180910390f35b34801561038a57600080fd5b50610393610b60565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612ff5565b610c25565b005b3480156103ca57600080fd5b506103d3610c45565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190613255565b610cde565b005b34801561040a57600080fd5b50610413610d74565b60405161042091906136ad565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613296565b610d87565b60405161045d9190613646565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f90565b610d9d565b60405161049a9190613880565b60405180910390f35b3480156104af57600080fd5b506104b8610e6d565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906131da565b610ef5565b005b3480156104ef57600080fd5b506104f8610f7b565b6040516105059190613880565b60405180910390f35b34801561051a57600080fd5b50610523610f81565b6040516105309190613646565b60405180910390f35b34801561054557600080fd5b5061054e610fab565b60405161055b91906136e3565b60405180910390f35b34801561057057600080fd5b5061058b600480360381019061058691906130bf565b61103d565b005b34801561059957600080fd5b506105a26111b5565b6040516105af91906136ad565b60405180910390f35b3480156105c457600080fd5b506105cd6111c8565b005b3480156105db57600080fd5b506105e4611261565b6040516105f191906136ad565b60405180910390f35b610614600480360381019061060f9190613173565b611274565b005b34801561062257600080fd5b5061062b6115eb565b6040516106389190613865565b60405180910390f35b34801561064d57600080fd5b506106566115f1565b005b34801561066457600080fd5b5061067f600480360381019061067a9190613044565b61168a565b005b34801561068d57600080fd5b506106a860048036038101906106a391906130fb565b611702565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190613296565b611831565b6040516106de91906136e3565b60405180910390f35b3480156106f357600080fd5b506106fc6118fc565b005b34801561070a57600080fd5b506107136119a4565b6040516107209190613865565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612fb9565b6119aa565b60405161075d91906136ad565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612f90565b611a3e565b005b34801561079b57600080fd5b506107b660048036038101906107b19190613255565b611b36565b005b6107c0611bcc565b73ffffffffffffffffffffffffffffffffffffffff166107de610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b906137e5565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610919575061091882611bd4565b5b9050919050565b60606002805461092f90613c1c565b80601f016020809104026020016040519081016040528092919081815260200182805461095b90613c1c565b80156109a85780601f1061097d576101008083540402835291602001916109a8565b820191906000526020600020905b81548152906001019060200180831161098b57829003601f168201915b5050505050905090565b60006109bd82611c3e565b6109f3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3982610d87565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac0611bcc565b73ffffffffffffffffffffffffffffffffffffffff1614610b2357610aec81610ae7611bcc565b6119aa565b610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b2e838383611c8c565b505050565b6000610b3d611d3e565b6001546000540303905090565b610b55838383611d47565b505050565b60095481565b610b68611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610b86610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd3906137e5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c22573d6000803e3d6000fd5b50565b610c408383836040518060200160405280600081525061168a565b505050565b610c4d611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610c6b610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb8906137e5565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b610ce6611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610d04610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906137e5565b60405180910390fd5b80600b9080519060200190610d70929190612c9c565b5050565b600d60009054906101000a900460ff1681565b6000610d92826121fd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e75611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610e93610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906137e5565b60405180910390fd5b610ef36000612488565b565b610efd611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610f1b610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906137e5565b60405180910390fd5b8060098190555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fba90613c1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe690613c1c565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b611045611bcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110aa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110b7611bcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611164611bcc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a991906136ad565b60405180910390a35050565b600d60019054906101000a900460ff1681565b6111d0611bcc565b73ffffffffffffffffffffffffffffffffffffffff166111ee610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906137e5565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613765565b60405180910390fd5b8060ff16600e546112f39190613aa1565b3414611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613805565b60405180910390fd5b60011515600d60009054906101000a900460ff1615151461138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611381906137a5565b60405180910390fd5b61191461ffff168160ff16600860169054906101000a900465ffffffffffff166113b49190613a34565b65ffffffffffff1611156113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490613705565b60405180910390fd5b60001515600d60019054906101000a900460ff161515141561153657813360405160200161142b91906135db565b6040516020818303038152906040528051906020012014611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613825565b60405180910390fd5b611498600954838561254e9092919063ffffffff16565b6114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613785565b60405180910390fd5b60058160ff166114e63361262a565b6114f091906139de565b1115611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611528906137c5565b60405180910390fd5b611591565b60028160ff166115453361262a565b61154f91906139de565b1115611590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611587906137c5565b60405180910390fd5b5b8060ff16600860168282829054906101000a900465ffffffffffff166115b79190613a34565b92506101000a81548165ffffffffffff021916908365ffffffffffff1602179055506115e6338260ff16612694565b505050565b6101e081565b6115f9611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611617610f81565b73ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611664906137e5565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b611695848484611d47565b6116b48373ffffffffffffffffffffffffffffffffffffffff16612970565b156116fc576116c584848484612983565b6116fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61170a611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611728610f81565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906137e5565b60405180910390fd5b6101e061ffff1681600860149054906101000a900461ffff166117a191906139a6565b61ffff1611156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613845565b60405180910390fd5b80600860148282829054906101000a900461ffff1661180591906139a6565b92506101000a81548161ffff021916908361ffff16021790555061182d828261ffff16612694565b5050565b606061183c82611c3e565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613725565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514156118c957600c6118a283612ae3565b6040516020016118b3929190613622565b60405160208183030381529060405290506118f7565b600b6118d483612ae3565b6040516020016118e5929190613622565b60405160208183030381529060405290505b919050565b611904611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611922610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f906137e5565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61191481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a46611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611a64610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab1906137e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613745565b60405180910390fd5b611b3381612488565b50565b611b3e611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611b5c610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba9906137e5565b60405180910390fd5b80600c9080519060200190611bc8929190612c9c565b5050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c49611d3e565b11158015611c58575060005482105b8015611c85575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d52826121fd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611dde611bcc565b73ffffffffffffffffffffffffffffffffffffffff161480611e0d5750611e0c85611e07611bcc565b6119aa565b5b80611e525750611e1b611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611e3a846109b2565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eff8585856001612c90565b611f0b60008487611c8c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218b57600054821461218a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f68585856001612c96565b5050505050565b612205612d22565b600082905080612213611d3e565b1161245157600054811015612450576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161244e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612332578092505050612483565b5b60011561244d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612448578092505050612483565b612333565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b855181101561261c57600086828151811061259b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116125dc5782816040516020016125bf9291906135f6565b604051602081830303815290604052805190602001209250612608565b80836040516020016125ef9291906135f6565b6040516020818303038152906040528051906020012092505b50808061261490613c7f565b915050612557565b508381149150509392505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612701576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561273c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127496000848385612c90565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106128ec5781600081905550505061296b6000848385612c96565b505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129a9611bcc565b8786866040518563ffffffff1660e01b81526004016129cb9493929190613661565b602060405180830381600087803b1580156129e557600080fd5b505af1925050508015612a1657506040513d601f19601f82011682018060405250810190612a13919061322c565b60015b612a90573d8060008114612a46576040519150601f19603f3d011682016040523d82523d6000602084013e612a4b565b606091505b50600081511415612a88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b2b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c8b565b600082905060005b60008214612b5d578080612b4690613c7f565b915050600a82612b569190613a70565b9150612b33565b60008167ffffffffffffffff811115612b9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bd15781602001600182028036833780820191505090505b5090505b60008514612c8457600182612bea9190613afb565b9150600a85612bf99190613cf6565b6030612c0591906139de565b60f81b818381518110612c41577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c7d9190613a70565b9450612bd5565b8093505050505b919050565b50505050565b50505050565b828054612ca890613c1c565b90600052602060002090601f016020900481019282612cca5760008555612d11565b82601f10612ce357805160ff1916838001178555612d11565b82800160010185558215612d11579182015b82811115612d10578251825591602001919060010190612cf5565b5b509050612d1e9190612d65565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d7e576000816000905550600101612d66565b5090565b6000612d95612d90846138c0565b61389b565b90508083825260208201905082856020860282011115612db457600080fd5b60005b85811015612de45781612dca8882612ebe565b845260208401935060208301925050600181019050612db7565b5050509392505050565b6000612e01612dfc846138ec565b61389b565b905082815260208101848484011115612e1957600080fd5b612e24848285613bda565b509392505050565b6000612e3f612e3a8461391d565b61389b565b905082815260208101848484011115612e5757600080fd5b612e62848285613bda565b509392505050565b600081359050612e7981614010565b92915050565b600082601f830112612e9057600080fd5b8135612ea0848260208601612d82565b91505092915050565b600081359050612eb881614027565b92915050565b600081359050612ecd8161403e565b92915050565b600081359050612ee281614055565b92915050565b600081519050612ef781614055565b92915050565b600082601f830112612f0e57600080fd5b8135612f1e848260208601612dee565b91505092915050565b600082601f830112612f3857600080fd5b8135612f48848260208601612e2c565b91505092915050565b600081359050612f608161406c565b92915050565b600081359050612f7581614083565b92915050565b600081359050612f8a8161409a565b92915050565b600060208284031215612fa257600080fd5b6000612fb084828501612e6a565b91505092915050565b60008060408385031215612fcc57600080fd5b6000612fda85828601612e6a565b9250506020612feb85828601612e6a565b9150509250929050565b60008060006060848603121561300a57600080fd5b600061301886828701612e6a565b935050602061302986828701612e6a565b925050604061303a86828701612f66565b9150509250925092565b6000806000806080858703121561305a57600080fd5b600061306887828801612e6a565b945050602061307987828801612e6a565b935050604061308a87828801612f66565b925050606085013567ffffffffffffffff8111156130a757600080fd5b6130b387828801612efd565b91505092959194509250565b600080604083850312156130d257600080fd5b60006130e085828601612e6a565b92505060206130f185828601612ea9565b9150509250929050565b6000806040838503121561310e57600080fd5b600061311c85828601612e6a565b925050602061312d85828601612f51565b9150509250929050565b6000806040838503121561314a57600080fd5b600061315885828601612e6a565b925050602061316985828601612f66565b9150509250929050565b60008060006060848603121561318857600080fd5b600084013567ffffffffffffffff8111156131a257600080fd5b6131ae86828701612e7f565b93505060206131bf86828701612ebe565b92505060406131d086828701612f7b565b9150509250925092565b6000602082840312156131ec57600080fd5b60006131fa84828501612ebe565b91505092915050565b60006020828403121561321557600080fd5b600061322384828501612ed3565b91505092915050565b60006020828403121561323e57600080fd5b600061324c84828501612ee8565b91505092915050565b60006020828403121561326757600080fd5b600082013567ffffffffffffffff81111561328157600080fd5b61328d84828501612f27565b91505092915050565b6000602082840312156132a857600080fd5b60006132b684828501612f66565b91505092915050565b6132c881613b2f565b82525050565b6132df6132da82613b2f565b613cc8565b82525050565b6132ee81613b41565b82525050565b6132fd81613b4d565b82525050565b61331461330f82613b4d565b613cda565b82525050565b600061332582613963565b61332f8185613979565b935061333f818560208601613be9565b61334881613de3565b840191505092915050565b600061335e8261396e565b613368818561398a565b9350613378818560208601613be9565b61338181613de3565b840191505092915050565b60006133978261396e565b6133a1818561399b565b93506133b1818560208601613be9565b80840191505092915050565b600081546133ca81613c1c565b6133d4818661399b565b945060018216600081146133ef576001811461340057613433565b60ff19831686528186019350613433565b6134098561394e565b60005b8381101561342b5781548189015260018201915060208101905061340c565b838801955050505b50505092915050565b600061344960128361398a565b915061345482613e01565b602082019050919050565b600061346c601f8361398a565b915061347782613e2a565b602082019050919050565b600061348f60268361398a565b915061349a82613e53565b604082019050919050565b60006134b2601e8361398a565b91506134bd82613ea2565b602082019050919050565b60006134d560178361398a565b91506134e082613ecb565b602082019050919050565b60006134f860128361398a565b915061350382613ef4565b602082019050919050565b600061351b60198361398a565b915061352682613f1d565b602082019050919050565b600061353e60208361398a565b915061354982613f46565b602082019050919050565b600061356160148361398a565b915061356c82613f6f565b602082019050919050565b600061358460278361398a565b915061358f82613f98565b604082019050919050565b60006135a7601c8361398a565b91506135b282613fe7565b602082019050919050565b6135c681613b83565b82525050565b6135d581613bb1565b82525050565b60006135e782846132ce565b60148201915081905092915050565b60006136028285613303565b6020820191506136128284613303565b6020820191508190509392505050565b600061362e82856133bd565b915061363a828461338c565b91508190509392505050565b600060208201905061365b60008301846132bf565b92915050565b600060808201905061367660008301876132bf565b61368360208301866132bf565b61369060408301856135cc565b81810360608301526136a2818461331a565b905095945050505050565b60006020820190506136c260008301846132e5565b92915050565b60006020820190506136dd60008301846132f4565b92915050565b600060208201905081810360008301526136fd8184613353565b905092915050565b6000602082019050818103600083015261371e8161343c565b9050919050565b6000602082019050818103600083015261373e8161345f565b9050919050565b6000602082019050818103600083015261375e81613482565b9050919050565b6000602082019050818103600083015261377e816134a5565b9050919050565b6000602082019050818103600083015261379e816134c8565b9050919050565b600060208201905081810360008301526137be816134eb565b9050919050565b600060208201905081810360008301526137de8161350e565b9050919050565b600060208201905081810360008301526137fe81613531565b9050919050565b6000602082019050818103600083015261381e81613554565b9050919050565b6000602082019050818103600083015261383e81613577565b9050919050565b6000602082019050818103600083015261385e8161359a565b9050919050565b600060208201905061387a60008301846135bd565b92915050565b600060208201905061389560008301846135cc565b92915050565b60006138a56138b6565b90506138b18282613c4e565b919050565b6000604051905090565b600067ffffffffffffffff8211156138db576138da613db4565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561390757613906613db4565b5b61391082613de3565b9050602081019050919050565b600067ffffffffffffffff82111561393857613937613db4565b5b61394182613de3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b182613b83565b91506139bc83613b83565b92508261ffff038211156139d3576139d2613d27565b5b828201905092915050565b60006139e982613bb1565b91506139f483613bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a2957613a28613d27565b5b828201905092915050565b6000613a3f82613bbb565b9150613a4a83613bbb565b92508265ffffffffffff03821115613a6557613a64613d27565b5b828201905092915050565b6000613a7b82613bb1565b9150613a8683613bb1565b925082613a9657613a95613d56565b5b828204905092915050565b6000613aac82613bb1565b9150613ab783613bb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613af057613aef613d27565b5b828202905092915050565b6000613b0682613bb1565b9150613b1183613bb1565b925082821015613b2457613b23613d27565b5b828203905092915050565b6000613b3a82613b91565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613c07578082015181840152602081019050613bec565b83811115613c16576000848401525b50505050565b60006002820490506001821680613c3457607f821691505b60208210811415613c4857613c47613d85565b5b50919050565b613c5782613de3565b810181811067ffffffffffffffff82111715613c7657613c75613db4565b5b80604052505050565b6000613c8a82613bb1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cbd57613cbc613d27565b5b600182019050919050565b6000613cd382613ce4565b9050919050565b6000819050919050565b6000613cef82613df4565b9050919050565b6000613d0182613bb1565b9150613d0c83613bb1565b925082613d1c57613d1b613d56565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206c696d697420726561636865640000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f5468652073616c65206973207061757365640000000000000000000000000000600082015250565b7f41646472657373206d696e746564206d617820616d6f756e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520707269636520697320696e76616c6964000000000000000000000000600082015250565b7f54686973206c65616620646f6573206e6f742062656c6f6e6720746f2074686560008201527f2073656e64657200000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820737570706c7920666f72206465767300000000600082015250565b61401981613b2f565b811461402457600080fd5b50565b61403081613b41565b811461403b57600080fd5b50565b61404781613b4d565b811461405257600080fd5b50565b61405e81613b57565b811461406957600080fd5b50565b61407581613b83565b811461408057600080fd5b50565b61408c81613bb1565b811461409757600080fd5b50565b6140a381613bcd565b81146140ae57600080fd5b5056fea2646970667358221220c659fff219d650c1bf96eb22ca1c1b5b921fc9530cc28b43c8ca5ccde61bdaaf64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b427265616461766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054252454144000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102035760003560e01c806386395b5811610118578063b66a0e5d116100a0578063e222c7f91161006f578063e222c7f9146106e7578063e878cff3146106fe578063e985e9c514610729578063f2fde38b14610766578063f38ade9b1461078f57610203565b8063b66a0e5d14610641578063b88d4fde14610658578063c6516cda14610681578063c87b56dd146106aa57610203565b8063a2e91477116100e7578063a2e914771461058d578063a475b5dd146105b8578063aa4e891a146105cf578063b499c0f0146105fa578063b61613d11461061657610203565b806386395b58146104e35780638da5cb5b1461050e57806395d89b4114610539578063a22cb4651461056457610203565b80633ccfd60b1161019b5780635c474f9e1161016a5780635c474f9e146103fe5780636352211e1461042957806370a0823114610466578063715018a6146104a35780637cb64759146104ba57610203565b80633ccfd60b1461037e57806342842e0e1461039557806355367ba9146103be57806355f804b3146103d557610203565b8063095ea7b3116101d7578063095ea7b3146102d657806318160ddd146102ff57806323b872dd1461032a5780632eb4a7ab1461035357610203565b80625550931461020857806301ffc9a71461023157806306fdde031461026e578063081812fc14610299575b600080fd5b34801561021457600080fd5b5061022f600480360381019061022a9190613296565b6107b8565b005b34801561023d57600080fd5b5061025860048036038101906102539190613203565b61083e565b60405161026591906136ad565b60405180910390f35b34801561027a57600080fd5b50610283610920565b60405161029091906136e3565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190613296565b6109b2565b6040516102cd9190613646565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f89190613137565b610a2e565b005b34801561030b57600080fd5b50610314610b33565b6040516103219190613880565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612ff5565b610b4a565b005b34801561035f57600080fd5b50610368610b5a565b60405161037591906136c8565b60405180910390f35b34801561038a57600080fd5b50610393610b60565b005b3480156103a157600080fd5b506103bc60048036038101906103b79190612ff5565b610c25565b005b3480156103ca57600080fd5b506103d3610c45565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190613255565b610cde565b005b34801561040a57600080fd5b50610413610d74565b60405161042091906136ad565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613296565b610d87565b60405161045d9190613646565b60405180910390f35b34801561047257600080fd5b5061048d60048036038101906104889190612f90565b610d9d565b60405161049a9190613880565b60405180910390f35b3480156104af57600080fd5b506104b8610e6d565b005b3480156104c657600080fd5b506104e160048036038101906104dc91906131da565b610ef5565b005b3480156104ef57600080fd5b506104f8610f7b565b6040516105059190613880565b60405180910390f35b34801561051a57600080fd5b50610523610f81565b6040516105309190613646565b60405180910390f35b34801561054557600080fd5b5061054e610fab565b60405161055b91906136e3565b60405180910390f35b34801561057057600080fd5b5061058b600480360381019061058691906130bf565b61103d565b005b34801561059957600080fd5b506105a26111b5565b6040516105af91906136ad565b60405180910390f35b3480156105c457600080fd5b506105cd6111c8565b005b3480156105db57600080fd5b506105e4611261565b6040516105f191906136ad565b60405180910390f35b610614600480360381019061060f9190613173565b611274565b005b34801561062257600080fd5b5061062b6115eb565b6040516106389190613865565b60405180910390f35b34801561064d57600080fd5b506106566115f1565b005b34801561066457600080fd5b5061067f600480360381019061067a9190613044565b61168a565b005b34801561068d57600080fd5b506106a860048036038101906106a391906130fb565b611702565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190613296565b611831565b6040516106de91906136e3565b60405180910390f35b3480156106f357600080fd5b506106fc6118fc565b005b34801561070a57600080fd5b506107136119a4565b6040516107209190613865565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612fb9565b6119aa565b60405161075d91906136ad565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612f90565b611a3e565b005b34801561079b57600080fd5b506107b660048036038101906107b19190613255565b611b36565b005b6107c0611bcc565b73ffffffffffffffffffffffffffffffffffffffff166107de610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082b906137e5565b60405180910390fd5b80600e8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610919575061091882611bd4565b5b9050919050565b60606002805461092f90613c1c565b80601f016020809104026020016040519081016040528092919081815260200182805461095b90613c1c565b80156109a85780601f1061097d576101008083540402835291602001916109a8565b820191906000526020600020905b81548152906001019060200180831161098b57829003601f168201915b5050505050905090565b60006109bd82611c3e565b6109f3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3982610d87565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac0611bcc565b73ffffffffffffffffffffffffffffffffffffffff1614610b2357610aec81610ae7611bcc565b6119aa565b610b22576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b2e838383611c8c565b505050565b6000610b3d611d3e565b6001546000540303905090565b610b55838383611d47565b505050565b60095481565b610b68611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610b86610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd3906137e5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c22573d6000803e3d6000fd5b50565b610c408383836040518060200160405280600081525061168a565b505050565b610c4d611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610c6b610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb8906137e5565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b610ce6611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610d04610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906137e5565b60405180910390fd5b80600b9080519060200190610d70929190612c9c565b5050565b600d60009054906101000a900460ff1681565b6000610d92826121fd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e05576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610e75611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610e93610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906137e5565b60405180910390fd5b610ef36000612488565b565b610efd611bcc565b73ffffffffffffffffffffffffffffffffffffffff16610f1b610f81565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f68906137e5565b60405180910390fd5b8060098190555050565b600e5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610fba90613c1c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fe690613c1c565b80156110335780601f1061100857610100808354040283529160200191611033565b820191906000526020600020905b81548152906001019060200180831161101657829003601f168201915b5050505050905090565b611045611bcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110aa576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110b7611bcc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611164611bcc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111a991906136ad565b60405180910390a35050565b600d60019054906101000a900460ff1681565b6111d0611bcc565b73ffffffffffffffffffffffffffffffffffffffff166111ee610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b906137e5565b60405180910390fd5b6000600a60006101000a81548160ff021916908315150217905550565b600a60009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613765565b60405180910390fd5b8060ff16600e546112f39190613aa1565b3414611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90613805565b60405180910390fd5b60011515600d60009054906101000a900460ff1615151461138a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611381906137a5565b60405180910390fd5b61191461ffff168160ff16600860169054906101000a900465ffffffffffff166113b49190613a34565b65ffffffffffff1611156113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f490613705565b60405180910390fd5b60001515600d60019054906101000a900460ff161515141561153657813360405160200161142b91906135db565b6040516020818303038152906040528051906020012014611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613825565b60405180910390fd5b611498600954838561254e9092919063ffffffff16565b6114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90613785565b60405180910390fd5b60058160ff166114e63361262a565b6114f091906139de565b1115611531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611528906137c5565b60405180910390fd5b611591565b60028160ff166115453361262a565b61154f91906139de565b1115611590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611587906137c5565b60405180910390fd5b5b8060ff16600860168282829054906101000a900465ffffffffffff166115b79190613a34565b92506101000a81548165ffffffffffff021916908365ffffffffffff1602179055506115e6338260ff16612694565b505050565b6101e081565b6115f9611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611617610f81565b73ffffffffffffffffffffffffffffffffffffffff161461166d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611664906137e5565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b611695848484611d47565b6116b48373ffffffffffffffffffffffffffffffffffffffff16612970565b156116fc576116c584848484612983565b6116fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61170a611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611728610f81565b73ffffffffffffffffffffffffffffffffffffffff161461177e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611775906137e5565b60405180910390fd5b6101e061ffff1681600860149054906101000a900461ffff166117a191906139a6565b61ffff1611156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd90613845565b60405180910390fd5b80600860148282829054906101000a900461ffff1661180591906139a6565b92506101000a81548161ffff021916908361ffff16021790555061182d828261ffff16612694565b5050565b606061183c82611c3e565b61187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613725565b60405180910390fd5b60011515600a60009054906101000a900460ff16151514156118c957600c6118a283612ae3565b6040516020016118b3929190613622565b60405160208183030381529060405290506118f7565b600b6118d483612ae3565b6040516020016118e5929190613622565b60405160208183030381529060405290505b919050565b611904611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611922610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196f906137e5565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b61191481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a46611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611a64610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab1906137e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613745565b60405180910390fd5b611b3381612488565b50565b611b3e611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611b5c610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba9906137e5565b60405180910390fd5b80600c9080519060200190611bc8929190612c9c565b5050565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c49611d3e565b11158015611c58575060005482105b8015611c85575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d52826121fd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dbd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611dde611bcc565b73ffffffffffffffffffffffffffffffffffffffff161480611e0d5750611e0c85611e07611bcc565b6119aa565b5b80611e525750611e1b611bcc565b73ffffffffffffffffffffffffffffffffffffffff16611e3a846109b2565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ef2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eff8585856001612c90565b611f0b60008487611c8c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218b57600054821461218a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f68585856001612c96565b5050505050565b612205612d22565b600082905080612213611d3e565b1161245157600054811015612450576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161244e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612332578092505050612483565b5b60011561244d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612448578092505050612483565b612333565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b855181101561261c57600086828151811061259b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116125dc5782816040516020016125bf9291906135f6565b604051602081830303815290604052805190602001209250612608565b80836040516020016125ef9291906135f6565b6040516020818303038152906040528051906020012092505b50808061261490613c7f565b915050612557565b508381149150509392505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612701576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561273c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127496000848385612c90565b81600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555081600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550826004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106128ec5781600081905550505061296b6000848385612c96565b505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129a9611bcc565b8786866040518563ffffffff1660e01b81526004016129cb9493929190613661565b602060405180830381600087803b1580156129e557600080fd5b505af1925050508015612a1657506040513d601f19601f82011682018060405250810190612a13919061322c565b60015b612a90573d8060008114612a46576040519150601f19603f3d011682016040523d82523d6000602084013e612a4b565b606091505b50600081511415612a88576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b2b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c8b565b600082905060005b60008214612b5d578080612b4690613c7f565b915050600a82612b569190613a70565b9150612b33565b60008167ffffffffffffffff811115612b9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612bd15781602001600182028036833780820191505090505b5090505b60008514612c8457600182612bea9190613afb565b9150600a85612bf99190613cf6565b6030612c0591906139de565b60f81b818381518110612c41577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c7d9190613a70565b9450612bd5565b8093505050505b919050565b50505050565b50505050565b828054612ca890613c1c565b90600052602060002090601f016020900481019282612cca5760008555612d11565b82601f10612ce357805160ff1916838001178555612d11565b82800160010185558215612d11579182015b82811115612d10578251825591602001919060010190612cf5565b5b509050612d1e9190612d65565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612d7e576000816000905550600101612d66565b5090565b6000612d95612d90846138c0565b61389b565b90508083825260208201905082856020860282011115612db457600080fd5b60005b85811015612de45781612dca8882612ebe565b845260208401935060208301925050600181019050612db7565b5050509392505050565b6000612e01612dfc846138ec565b61389b565b905082815260208101848484011115612e1957600080fd5b612e24848285613bda565b509392505050565b6000612e3f612e3a8461391d565b61389b565b905082815260208101848484011115612e5757600080fd5b612e62848285613bda565b509392505050565b600081359050612e7981614010565b92915050565b600082601f830112612e9057600080fd5b8135612ea0848260208601612d82565b91505092915050565b600081359050612eb881614027565b92915050565b600081359050612ecd8161403e565b92915050565b600081359050612ee281614055565b92915050565b600081519050612ef781614055565b92915050565b600082601f830112612f0e57600080fd5b8135612f1e848260208601612dee565b91505092915050565b600082601f830112612f3857600080fd5b8135612f48848260208601612e2c565b91505092915050565b600081359050612f608161406c565b92915050565b600081359050612f7581614083565b92915050565b600081359050612f8a8161409a565b92915050565b600060208284031215612fa257600080fd5b6000612fb084828501612e6a565b91505092915050565b60008060408385031215612fcc57600080fd5b6000612fda85828601612e6a565b9250506020612feb85828601612e6a565b9150509250929050565b60008060006060848603121561300a57600080fd5b600061301886828701612e6a565b935050602061302986828701612e6a565b925050604061303a86828701612f66565b9150509250925092565b6000806000806080858703121561305a57600080fd5b600061306887828801612e6a565b945050602061307987828801612e6a565b935050604061308a87828801612f66565b925050606085013567ffffffffffffffff8111156130a757600080fd5b6130b387828801612efd565b91505092959194509250565b600080604083850312156130d257600080fd5b60006130e085828601612e6a565b92505060206130f185828601612ea9565b9150509250929050565b6000806040838503121561310e57600080fd5b600061311c85828601612e6a565b925050602061312d85828601612f51565b9150509250929050565b6000806040838503121561314a57600080fd5b600061315885828601612e6a565b925050602061316985828601612f66565b9150509250929050565b60008060006060848603121561318857600080fd5b600084013567ffffffffffffffff8111156131a257600080fd5b6131ae86828701612e7f565b93505060206131bf86828701612ebe565b92505060406131d086828701612f7b565b9150509250925092565b6000602082840312156131ec57600080fd5b60006131fa84828501612ebe565b91505092915050565b60006020828403121561321557600080fd5b600061322384828501612ed3565b91505092915050565b60006020828403121561323e57600080fd5b600061324c84828501612ee8565b91505092915050565b60006020828403121561326757600080fd5b600082013567ffffffffffffffff81111561328157600080fd5b61328d84828501612f27565b91505092915050565b6000602082840312156132a857600080fd5b60006132b684828501612f66565b91505092915050565b6132c881613b2f565b82525050565b6132df6132da82613b2f565b613cc8565b82525050565b6132ee81613b41565b82525050565b6132fd81613b4d565b82525050565b61331461330f82613b4d565b613cda565b82525050565b600061332582613963565b61332f8185613979565b935061333f818560208601613be9565b61334881613de3565b840191505092915050565b600061335e8261396e565b613368818561398a565b9350613378818560208601613be9565b61338181613de3565b840191505092915050565b60006133978261396e565b6133a1818561399b565b93506133b1818560208601613be9565b80840191505092915050565b600081546133ca81613c1c565b6133d4818661399b565b945060018216600081146133ef576001811461340057613433565b60ff19831686528186019350613433565b6134098561394e565b60005b8381101561342b5781548189015260018201915060208101905061340c565b838801955050505b50505092915050565b600061344960128361398a565b915061345482613e01565b602082019050919050565b600061346c601f8361398a565b915061347782613e2a565b602082019050919050565b600061348f60268361398a565b915061349a82613e53565b604082019050919050565b60006134b2601e8361398a565b91506134bd82613ea2565b602082019050919050565b60006134d560178361398a565b91506134e082613ecb565b602082019050919050565b60006134f860128361398a565b915061350382613ef4565b602082019050919050565b600061351b60198361398a565b915061352682613f1d565b602082019050919050565b600061353e60208361398a565b915061354982613f46565b602082019050919050565b600061356160148361398a565b915061356c82613f6f565b602082019050919050565b600061358460278361398a565b915061358f82613f98565b604082019050919050565b60006135a7601c8361398a565b91506135b282613fe7565b602082019050919050565b6135c681613b83565b82525050565b6135d581613bb1565b82525050565b60006135e782846132ce565b60148201915081905092915050565b60006136028285613303565b6020820191506136128284613303565b6020820191508190509392505050565b600061362e82856133bd565b915061363a828461338c565b91508190509392505050565b600060208201905061365b60008301846132bf565b92915050565b600060808201905061367660008301876132bf565b61368360208301866132bf565b61369060408301856135cc565b81810360608301526136a2818461331a565b905095945050505050565b60006020820190506136c260008301846132e5565b92915050565b60006020820190506136dd60008301846132f4565b92915050565b600060208201905081810360008301526136fd8184613353565b905092915050565b6000602082019050818103600083015261371e8161343c565b9050919050565b6000602082019050818103600083015261373e8161345f565b9050919050565b6000602082019050818103600083015261375e81613482565b9050919050565b6000602082019050818103600083015261377e816134a5565b9050919050565b6000602082019050818103600083015261379e816134c8565b9050919050565b600060208201905081810360008301526137be816134eb565b9050919050565b600060208201905081810360008301526137de8161350e565b9050919050565b600060208201905081810360008301526137fe81613531565b9050919050565b6000602082019050818103600083015261381e81613554565b9050919050565b6000602082019050818103600083015261383e81613577565b9050919050565b6000602082019050818103600083015261385e8161359a565b9050919050565b600060208201905061387a60008301846135bd565b92915050565b600060208201905061389560008301846135cc565b92915050565b60006138a56138b6565b90506138b18282613c4e565b919050565b6000604051905090565b600067ffffffffffffffff8211156138db576138da613db4565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561390757613906613db4565b5b61391082613de3565b9050602081019050919050565b600067ffffffffffffffff82111561393857613937613db4565b5b61394182613de3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139b182613b83565b91506139bc83613b83565b92508261ffff038211156139d3576139d2613d27565b5b828201905092915050565b60006139e982613bb1565b91506139f483613bb1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a2957613a28613d27565b5b828201905092915050565b6000613a3f82613bbb565b9150613a4a83613bbb565b92508265ffffffffffff03821115613a6557613a64613d27565b5b828201905092915050565b6000613a7b82613bb1565b9150613a8683613bb1565b925082613a9657613a95613d56565b5b828204905092915050565b6000613aac82613bb1565b9150613ab783613bb1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613af057613aef613d27565b5b828202905092915050565b6000613b0682613bb1565b9150613b1183613bb1565b925082821015613b2457613b23613d27565b5b828203905092915050565b6000613b3a82613b91565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600065ffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613c07578082015181840152602081019050613bec565b83811115613c16576000848401525b50505050565b60006002820490506001821680613c3457607f821691505b60208210811415613c4857613c47613d85565b5b50919050565b613c5782613de3565b810181811067ffffffffffffffff82111715613c7657613c75613db4565b5b80604052505050565b6000613c8a82613bb1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cbd57613cbc613d27565b5b600182019050919050565b6000613cd382613ce4565b9050919050565b6000819050919050565b6000613cef82613df4565b9050919050565b6000613d0182613bb1565b9150613d0c83613bb1565b925082613d1c57613d1b613d56565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74206c696d697420726561636865640000000000000000000000000000600082015250565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f596f7520617265206e6f7420696e20746865206c697374000000000000000000600082015250565b7f5468652073616c65206973207061757365640000000000000000000000000000600082015250565b7f41646472657373206d696e746564206d617820616d6f756e7400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520707269636520697320696e76616c6964000000000000000000000000600082015250565b7f54686973206c65616620646f6573206e6f742062656c6f6e6720746f2074686560008201527f2073656e64657200000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820737570706c7920666f72206465767300000000600082015250565b61401981613b2f565b811461402457600080fd5b50565b61403081613b41565b811461403b57600080fd5b50565b61404781613b4d565b811461405257600080fd5b50565b61405e81613b57565b811461406957600080fd5b50565b61407581613b83565b811461408057600080fd5b50565b61408c81613bb1565b811461409757600080fd5b50565b6140a381613bcd565b81146140ae57600080fd5b5056fea2646970667358221220c659fff219d650c1bf96eb22ca1c1b5b921fc9530cc28b43c8ca5ccde61bdaaf64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b427265616461766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054252454144000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Breadaverse
Arg [1] : symbol (string): BREAD
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4272656164617665727365000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4252454144000000000000000000000000000000000000000000000000000000
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.