Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
954 MDA
Holders
292
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MDALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MutantDogeAcademy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./Ownable.sol"; import "./MerkleProof.sol"; import "./ERC721Enumerable.sol"; contract MutantDogeAcademy is ERC721Enumerable,Ownable{ string public baseURI; uint256 public constant MAX_QUANTITY = 5555; uint256 private constant GOLD_FREE_COUNT = 2; uint256 private constant PRSALE_MINT_PRICE = 0.05 * 10**18; uint256 private constant PRSALE_FEE_AMOUNT = 10; uint256 private mintPrice = 0.1 * 10**18; uint256 private silverMintPrice = 0.05 * 10**18; uint256 private goldMintPrice = 0.03 * 10**18; uint256 private silverOGMintPrice = 0.01 * 10**18; address public onwer; bytes32 public goldWlMerkleRoot; bytes32 public silverWlMerkleRoot; bytes32 public goldOGMerkleRoot; bytes32 public silverOGMerkleRoot; enum Status { PRESALE_LIVE, SALE_LIVE } Status public state; mapping(address => uint256) preSalemintedAmount; mapping(address => uint256) public mintedTotal; constructor(string memory _baseInitURI,bytes32 _merkleRootGoldWL,bytes32 _merkleRootSilverdWL,bytes32 _merkleRootGoldOG,bytes32 _merkleRootSilverOG) ERC721("Mutant Doge Academy", "MDA") { baseURI=_baseInitURI; onwer=msg.sender; goldWlMerkleRoot=_merkleRootGoldWL; silverWlMerkleRoot=_merkleRootSilverdWL; goldOGMerkleRoot=_merkleRootGoldOG; silverOGMerkleRoot=_merkleRootSilverOG; _internalMint(address(this), 1 ); } function mint(address to,uint256 amount,bytes32[] memory proof)public payable{ require(amount >= 1,"The parameter you passed in is incorrect"); if(state == Status.PRESALE_LIVE){ require(preSalemintedAmount[to] + amount <= 1,"you exceeded the pre-sale volume"); require(msg.value >= PRSALE_MINT_PRICE * amount , "You must pay enough to complete the minting"); preSalemintedAmount[to]+=amount; }else if(preSalemintedAmount[to] == 1){ if(_verify(to,goldOGMerkleRoot,proof)){ if(mintedTotal[to] >= PRSALE_FEE_AMOUNT + GOLD_FREE_COUNT + preSalemintedAmount[to] ){ require(msg.value >= silverOGMintPrice * amount, "You must pay enough to complete the minting"); }else if(mintedTotal[to] + amount > PRSALE_FEE_AMOUNT + GOLD_FREE_COUNT + preSalemintedAmount[to]){ require(msg.value >= silverOGMintPrice * (mintedTotal[to] + amount - PRSALE_FEE_AMOUNT - GOLD_FREE_COUNT - preSalemintedAmount[to]), "You must pay enough to complete the minting"); } }else if(mintedTotal[to] >= PRSALE_FEE_AMOUNT + preSalemintedAmount[to]){ require(msg.value >= silverOGMintPrice * amount,"You must pay enough to complete the minting"); }else if(mintedTotal[to] + amount > PRSALE_FEE_AMOUNT + preSalemintedAmount[to]){ require(msg.value >= silverOGMintPrice * (mintedTotal[to] + amount - PRSALE_FEE_AMOUNT - preSalemintedAmount[to]),"You must pay enough to complete the minting"); } }else if(_verify(to,goldOGMerkleRoot,proof)){ if(mintedTotal[to] >= GOLD_FREE_COUNT){ require(msg.value >= silverOGMintPrice * amount, "You must pay enough to complete the minting"); }else if(mintedTotal[to] + amount > GOLD_FREE_COUNT){ require(msg.value >= silverOGMintPrice * (mintedTotal[to] + amount - GOLD_FREE_COUNT), "You must pay enough to complete the minting"); } }else if(_verify(to,silverOGMerkleRoot,proof)){ require(msg.value >= silverOGMintPrice,"You must pay enough to complete the minting"); }else if(_verify(to,goldWlMerkleRoot,proof)){ require(msg.value >= goldMintPrice * amount, "You must pay enough to complete the minting"); }else if(_verify(to,silverWlMerkleRoot,proof)){ require(msg.value >= silverMintPrice * amount, "You must pay enough to complete the minting"); }else{ require(msg.value >= mintPrice * amount, "You must pay enough to complete the minting"); } _internalMint(to,amount); } function _verify(address to,bytes32 root,bytes32[] memory proof) internal pure returns (bool) { bytes32 leaf= keccak256(abi.encodePacked(to)); return MerkleProof.verify(proof, root, leaf); } function onlyOwnerMint(address to,uint256 amount) public onlyOwner{ _internalMint(to,amount); } function _internalMint(address to,uint256 amount) private { require(totalSupply()+amount <= MAX_QUANTITY,"The casting quantity has been completed"); payable(onwer).transfer(msg.value); uint256 tokenId = totalSupply(); for(uint256 i =1; i <= amount; i++){ tokenId++; mintedTotal[to]+=1; _safeMint(to,tokenId); } } function presaleOf(address to) public view returns(uint256){ return preSalemintedAmount[to]; } function withdraw() external onlyOwner { Address.sendValue(payable(msg.sender), address(this).balance); } function withdrawToAddress(address recipient) external onlyOwner{ Address.sendValue(payable(recipient), address(this).balance); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setGoldWLmerkleRoot(bytes32 _goldWLmerkleRoot)public onlyOwner{ goldWlMerkleRoot = _goldWLmerkleRoot; } function setSilverWLmerkleRoot(bytes32 _silverWLmerkleRoot)public onlyOwner{ silverWlMerkleRoot = _silverWLmerkleRoot; } function setGoldOGmerkleRoot(bytes32 _goldOGmerkleRoot)public onlyOwner{ goldOGMerkleRoot = _goldOGmerkleRoot; } function setSilverOGmerkleRoot(bytes32 _silverOGmerkleRoot)public onlyOwner{ silverOGMerkleRoot = _silverOGmerkleRoot; } function setAllMerkleRott(bytes32 _merkleRootGoldWL,bytes32 _merkleRootSilverdWL,bytes32 _merkleRootGoldOG,bytes32 _merkleRootSilverOG)public onlyOwner{ goldWlMerkleRoot=_merkleRootGoldWL; silverWlMerkleRoot=_merkleRootSilverdWL; goldOGMerkleRoot=_merkleRootGoldOG; silverOGMerkleRoot=_merkleRootSilverOG; } function setSaleState(Status _state) external onlyOwner { state = _state; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseInitURI","type":"string"},{"internalType":"bytes32","name":"_merkleRootGoldWL","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootSilverdWL","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootGoldOG","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootSilverOG","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldOGMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldWlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onlyOwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"onwer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"presaleOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootGoldWL","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootSilverdWL","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootGoldOG","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootSilverOG","type":"bytes32"}],"name":"setAllMerkleRott","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_goldOGmerkleRoot","type":"bytes32"}],"name":"setGoldOGmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_goldWLmerkleRoot","type":"bytes32"}],"name":"setGoldWLmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MutantDogeAcademy.Status","name":"_state","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_silverOGmerkleRoot","type":"bytes32"}],"name":"setSilverOGmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_silverWLmerkleRoot","type":"bytes32"}],"name":"setSilverWLmerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"silverOGMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"silverWlMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum MutantDogeAcademy.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267016345785d8a0000600c5566b1a2bc2ec50000600d55666a94d74f430000600e55662386f26fc10000600f553480156200003e57600080fd5b506040516200386438038062003864833981016040819052620000619162000a3a565b604080518082018252601381527f4d7574616e7420446f67652041636164656d79000000000000000000000000006020808301918252835180850190945260038452624d444160e81b908401528151919291620000c19160009162000961565b508051620000d790600190602084019062000961565b505050620000f4620000ee6200014860201b60201c565b6200014c565b84516200010990600b90602088019062000961565b50601080546001600160a01b0319163317905560118490556012839055601382905560148190556200013d3060016200019e565b505050505062000c84565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115b381620001ac60085490565b620001b8919062000b6d565b11156200021c5760405162461bcd60e51b815260206004820152602760248201527f5468652063617374696e67207175616e7469747920686173206265656e20636f6044820152661b5c1b195d195960ca1b60648201526084015b60405180910390fd5b6010546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801562000256573d6000803e3d6000fd5b5060006200026360085490565b905060015b828111620002d257816200027c8162000c0e565b6001600160a01b038616600090815260176020526040812080549295506001935091620002ab90849062000b6d565b90915550620002bd90508483620002d8565b80620002c98162000c0e565b91505062000268565b50505050565b620002fa828260405180602001604052806000815250620002fe60201b60201c565b5050565b6200030a838362000376565b620003196000848484620004cc565b620003715760405162461bcd60e51b815260206004820152603260248201526000805160206200384483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000213565b505050565b6001600160a01b038216620003ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000213565b6000818152600260205260409020546001600160a01b031615620004355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000213565b620004436000838362000635565b6001600160a01b03821660009081526003602052604081208054600192906200046e90849062000b6d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004ed846001600160a01b03166200071160201b620015c21760201c565b156200062957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200052790339089908890889060040162000b17565b602060405180830381600087803b1580156200054257600080fd5b505af192505050801562000575575060408051601f3d908101601f19168201909252620005729181019062000a07565b60015b6200060e573d808015620005a6576040519150601f19603f3d011682016040523d82523d6000602084013e620005ab565b606091505b508051620006065760405162461bcd60e51b815260206004820152603260248201526000805160206200384483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000213565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200062d565b5060015b949350505050565b6200064d8383836200037160201b620009c21760201c565b6001600160a01b038316620006ab57620006a581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006d1565b816001600160a01b0316836001600160a01b031614620006d157620006d1838262000720565b6001600160a01b038216620006eb576200037181620007cd565b826001600160a01b0316826001600160a01b031614620003715762000371828262000887565b6001600160a01b03163b151590565b600060016200073a84620008d860201b6200120c1760201c565b62000746919062000b88565b6000838152600760205260409020549091508082146200079a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007e19060019062000b88565b600083815260096020526040812054600880549394509092849081106200080c576200080c62000c58565b90600052602060002001549050806008838154811062000830576200083062000c58565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200086b576200086b62000c42565b6001900381819060005260206000200160009055905550505050565b60006200089f83620008d860201b6200120c1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009455760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000213565b506001600160a01b031660009081526003602052604090205490565b8280546200096f9062000bd1565b90600052602060002090601f016020900481019282620009935760008555620009de565b82601f10620009ae57805160ff1916838001178555620009de565b82800160010185558215620009de579182015b82811115620009de578251825591602001919060010190620009c1565b50620009ec929150620009f0565b5090565b5b80821115620009ec5760008155600101620009f1565b60006020828403121562000a1a57600080fd5b81516001600160e01b03198116811462000a3357600080fd5b9392505050565b600080600080600060a0868803121562000a5357600080fd5b85516001600160401b038082111562000a6b57600080fd5b818801915088601f83011262000a8057600080fd5b81518181111562000a955762000a9562000c6e565b604051601f8201601f19908116603f0116810190838211818310171562000ac05762000ac062000c6e565b816040528281528b602084870101111562000ada57600080fd5b62000aed83602083016020880162000ba2565b60208b015160408c015160608d01516080909d0151929e919d509b9a509098509650505050505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000b568160a085016020870162000ba2565b601f01601f19169190910160a00195945050505050565b6000821982111562000b835762000b8362000c2c565b500190565b60008282101562000b9d5762000b9d62000c2c565b500390565b60005b8381101562000bbf57818101518382015260200162000ba5565b83811115620002d25750506000910152565b600181811c9082168062000be657607f821691505b6020821081141562000c0857634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000c255762000c2562000c2c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612bb08062000c946000396000f3fe60806040526004361061023b5760003560e01c806375cb02201161012e578063bab79cd9116100ab578063e41ee46a1161006f578063e41ee46a146106a5578063e75460ad146106bb578063e7d71e14146106db578063e985e9c5146106f1578063f2fde38b1461073a57600080fd5b8063bab79cd914610608578063c19d93fb1461061e578063c87b56dd14610645578063c910435514610665578063d8d16b571461068557600080fd5b80639e67dcbd116100f25780639e67dcbd14610572578063a22cb46514610592578063a6026294146105b2578063a92bd72c146105c8578063b88d4fde146105e857600080fd5b806375cb0220146104d35780638da5cb5b1461050957806395c18ea11461052757806395d89b411461054757806397da036a1461055c57600080fd5b80633ccfd60b116101bc5780636352211e116101805780636352211e14610456578063641ce140146104765780636c0360eb1461048957806370a082311461049e578063715018a6146104be57600080fd5b80633ccfd60b146103c157806342842e0e146103d65780634f6ccce7146103f657806355f804b3146104165780635a67de071461043657600080fd5b806318160ddd1161020357806318160ddd1461032c5780632343cee81461034157806323b872dd146103615780632f745c59146103815780633433edd9146103a157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf578063145f798f146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461271d565b61075a565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610785565b60405161026c9190612881565b3480156102a357600080fd5b506102b76102b23660046126d2565b610817565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046125df565b6108b1565b005b3480156102fd57600080fd5b5061031e61030c36600461249d565b60176020526000908152604090205481565b60405190815260200161026c565b34801561033857600080fd5b5060085461031e565b34801561034d57600080fd5b506102ef61035c3660046126d2565b6109c7565b34801561036d57600080fd5b506102ef61037c3660046124eb565b6109f6565b34801561038d57600080fd5b5061031e61039c3660046125df565b610a27565b3480156103ad57600080fd5b506010546102b7906001600160a01b031681565b3480156103cd57600080fd5b506102ef610abd565b3480156103e257600080fd5b506102ef6103f13660046124eb565b610af3565b34801561040257600080fd5b5061031e6104113660046126d2565b610b0e565b34801561042257600080fd5b506102ef610431366004612778565b610ba1565b34801561044257600080fd5b506102ef610451366004612757565b610be2565b34801561046257600080fd5b506102b76104713660046126d2565b610c32565b6102ef610484366004612609565b610ca9565b34801561049557600080fd5b5061028a61117e565b3480156104aa57600080fd5b5061031e6104b936600461249d565b61120c565b3480156104ca57600080fd5b506102ef611293565b3480156104df57600080fd5b5061031e6104ee36600461249d565b6001600160a01b031660009081526016602052604090205490565b34801561051557600080fd5b50600a546001600160a01b03166102b7565b34801561053357600080fd5b506102ef6105423660046125df565b6112c7565b34801561055357600080fd5b5061028a6112fb565b34801561056857600080fd5b5061031e60125481565b34801561057e57600080fd5b506102ef61058d3660046126d2565b61130a565b34801561059e57600080fd5b506102ef6105ad3660046125a3565b611339565b3480156105be57600080fd5b5061031e60115481565b3480156105d457600080fd5b506102ef6105e336600461249d565b611344565b3480156105f457600080fd5b506102ef610603366004612527565b61137b565b34801561061457600080fd5b5061031e60135481565b34801561062a57600080fd5b506015546106389060ff1681565b60405161026c9190612859565b34801561065157600080fd5b5061028a6106603660046126d2565b6113b3565b34801561067157600080fd5b506102ef6106803660046126d2565b61148e565b34801561069157600080fd5b506102ef6106a03660046126d2565b6114bd565b3480156106b157600080fd5b5061031e6115b381565b3480156106c757600080fd5b506102ef6106d63660046126eb565b6114ec565b3480156106e757600080fd5b5061031e60145481565b3480156106fd57600080fd5b5061026061070c3660046124b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b506102ef61075536600461249d565b61152a565b60006001600160e01b0319821663780e9d6360e01b148061077f575061077f826115d1565b92915050565b60606000805461079490612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090612a76565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108bc82610c32565b9050806001600160a01b0316836001600160a01b0316141561092a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088c565b336001600160a01b03821614806109465750610946813361070c565b6109b85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088c565b6109c28383611621565b505050565b600a546001600160a01b031633146109f15760405162461bcd60e51b815260040161088c90612931565b601155565b610a00338261168f565b610a1c5760405162461bcd60e51b815260040161088c90612966565b6109c2838383611786565b6000610a328361120c565b8210610a945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161088c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ae75760405162461bcd60e51b815260040161088c90612931565b610af1334761192d565b565b6109c28383836040518060200160405280600081525061137b565b6000610b1960085490565b8210610b7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161088c565b60088281548110610b8f57610b8f612b38565b90600052602060002001549050919050565b600a546001600160a01b03163314610bcb5760405162461bcd60e51b815260040161088c90612931565b8051610bde90600b906020840190612390565b5050565b600a546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161088c90612931565b6015805482919060ff191660018381811115610c2a57610c2a612b0c565b021790555050565b6000818152600260205260408120546001600160a01b03168061077f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088c565b6001821015610d0b5760405162461bcd60e51b815260206004820152602860248201527f54686520706172616d6574657220796f752070617373656420696e20697320696044820152671b98dbdc9c9958dd60c21b606482015260840161088c565b600060155460ff166001811115610d2457610d24612b0c565b1415610e02576001600160a01b038316600090815260166020526040902054600190610d519084906129e8565b1115610d9f5760405162461bcd60e51b815260206004820181905260248201527f796f7520657863656564656420746865207072652d73616c6520766f6c756d65604482015260640161088c565b610db08266b1a2bc2ec50000612a14565b341015610dcf5760405162461bcd60e51b815260040161088c906128e6565b6001600160a01b03831660009081526016602052604081208054849290610df79084906129e8565b909155506111749050565b6001600160a01b0383166000908152601660205260409020546001141561103f57610e308360135483611a46565b15610f6e576001600160a01b038316600090815260166020526040902054610e5a6002600a6129e8565b610e6491906129e8565b6001600160a01b03841660009081526017602052604090205410610eb45781600f54610e909190612a14565b341015610eaf5760405162461bcd60e51b815260040161088c906128e6565b611174565b6001600160a01b038316600090815260166020526040902054610ed96002600a6129e8565b610ee391906129e8565b6001600160a01b038416600090815260176020526040902054610f079084906129e8565b1115610eaf576001600160a01b038316600090815260166020908152604080832054601790925290912054600290600a90610f439086906129e8565b610f4d9190612a33565b610f579190612a33565b610f619190612a33565b600f54610e909190612a14565b6001600160a01b038316600090815260166020526040902054610f9290600a6129e8565b6001600160a01b03841660009081526017602052604090205410610fbe5781600f54610e909190612a14565b6001600160a01b038316600090815260166020526040902054610fe290600a6129e8565b6001600160a01b0384166000908152601760205260409020546110069084906129e8565b1115610eaf576001600160a01b038316600090815260166020908152604080832054601790925290912054600a90610f4d9085906129e8565b61104c8360135483611a46565b156110d3576001600160a01b03831660009081526017602052604090205460021161107f5781600f54610e909190612a14565b6001600160a01b0383166000908152601760205260409020546002906110a69084906129e8565b1115610eaf576001600160a01b038316600090815260176020526040902054600290610f579084906129e8565b6110e08360145483611a46565b1561110757600f54341015610eaf5760405162461bcd60e51b815260040161088c906128e6565b6111148360115483611a46565b156111275781600e54610e909190612a14565b6111348360125483611a46565b156111475781600d54610e909190612a14565b81600c546111559190612a14565b3410156111745760405162461bcd60e51b815260040161088c906128e6565b6109c28383611a96565b600b805461118b90612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546111b790612a76565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b505050505081565b60006001600160a01b0382166112775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112bd5760405162461bcd60e51b815260040161088c90612931565b610af16000611bb5565b600a546001600160a01b031633146112f15760405162461bcd60e51b815260040161088c90612931565b610bde8282611a96565b60606001805461079490612a76565b600a546001600160a01b031633146113345760405162461bcd60e51b815260040161088c90612931565b601255565b610bde338383611c07565b600a546001600160a01b0316331461136e5760405162461bcd60e51b815260040161088c90612931565b611378814761192d565b50565b611385338361168f565b6113a15760405162461bcd60e51b815260040161088c90612966565b6113ad84848484611cd6565b50505050565b6000818152600260205260409020546060906001600160a01b03166114325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088c565b600061143c611d09565b9050600081511161145c5760405180602001604052806000815250611487565b8061146684611d18565b6040516020016114779291906127ed565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114b85760405162461bcd60e51b815260040161088c90612931565b601455565b600a546001600160a01b031633146114e75760405162461bcd60e51b815260040161088c90612931565b601355565b600a546001600160a01b031633146115165760405162461bcd60e51b815260040161088c90612931565b601193909355601291909155601355601455565b600a546001600160a01b031633146115545760405162461bcd60e51b815260040161088c90612931565b6001600160a01b0381166115b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61137881611bb5565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b148061160257506001600160e01b03198216635b5e139f60e01b145b8061077f57506301ffc9a760e01b6001600160e01b031983161461077f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165682610c32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b600061171383610c32565b9050806001600160a01b0316846001600160a01b0316148061174e5750836001600160a01b031661174384610817565b6001600160a01b0316145b8061177e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179982610c32565b6001600160a01b0316146117fd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161088c565b6001600160a01b03821661185f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b61186a838383611e16565b611875600082611621565b6001600160a01b038316600090815260036020526040812080546001929061189e908490612a33565b90915550506001600160a01b03821660009081526003602052604081208054600192906118cc9084906129e8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561197d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161088c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119ca576040519150601f19603f3d011682016040523d82523d6000602084013e6119cf565b606091505b50509050806109c25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161088c565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050611a8d838583611ece565b95945050505050565b6115b381611aa360085490565b611aad91906129e8565b1115611b0b5760405162461bcd60e51b815260206004820152602760248201527f5468652063617374696e67207175616e7469747920686173206265656e20636f6044820152661b5c1b195d195960ca1b606482015260840161088c565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611b44573d6000803e3d6000fd5b506000611b5060085490565b905060015b8281116113ad5781611b6681612ab1565b6001600160a01b038616600090815260176020526040812080549295506001935091611b939084906129e8565b90915550611ba390508483611ee4565b80611bad81612ab1565b915050611b55565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ce1848484611786565b611ced84848484611efe565b6113ad5760405162461bcd60e51b815260040161088c90612894565b6060600b805461079490612a76565b606081611d3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d665780611d5081612ab1565b9150611d5f9050600a83612a00565b9150611d40565b60008167ffffffffffffffff811115611d8157611d81612b4e565b6040519080825280601f01601f191660200182016040528015611dab576020820181803683370190505b5090505b841561177e57611dc0600183612a33565b9150611dcd600a86612acc565b611dd89060306129e8565b60f81b818381518110611ded57611ded612b38565b60200101906001600160f81b031916908160001a905350611e0f600a86612a00565b9450611daf565b6001600160a01b038316611e7157611e6c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e94565b816001600160a01b0316836001600160a01b031614611e9457611e94838261200b565b6001600160a01b038216611eab576109c2816120a8565b826001600160a01b0316826001600160a01b0316146109c2576109c28282612157565b600082611edb858461219b565b14949350505050565b610bde82826040518060200160405280600081525061220f565b60006001600160a01b0384163b1561200057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f4290339089908890889060040161281c565b602060405180830381600087803b158015611f5c57600080fd5b505af1925050508015611f8c575060408051601f3d908101601f19168201909252611f899181019061273a565b60015b611fe6573d808015611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b508051611fde5760405162461bcd60e51b815260040161088c90612894565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177e565b506001949350505050565b600060016120188461120c565b6120229190612a33565b600083815260076020526040902054909150808214612075576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120ba90600190612a33565b600083815260096020526040812054600880549394509092849081106120e2576120e2612b38565b90600052602060002001549050806008838154811061210357612103612b38565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061213b5761213b612b22565b6001900381819060005260206000200160009055905550505050565b60006121628361120c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b84518110156122075760008582815181106121bd576121bd612b38565b602002602001015190508083116121e357600083815260208290526040902092506121f4565b600081815260208490526040902092505b50806121ff81612ab1565b9150506121a0565b509392505050565b6122198383612242565b6122266000848484611efe565b6109c25760405162461bcd60e51b815260040161088c90612894565b6001600160a01b0382166122985760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088c565b6000818152600260205260409020546001600160a01b0316156122fd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088c565b61230960008383611e16565b6001600160a01b03821660009081526003602052604081208054600192906123329084906129e8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461239c90612a76565b90600052602060002090601f0160209004810192826123be5760008555612404565b82601f106123d757805160ff1916838001178555612404565b82800160010185558215612404579182015b828111156124045782518255916020019190600101906123e9565b50612410929150612414565b5090565b5b808211156124105760008155600101612415565b600067ffffffffffffffff83111561244357612443612b4e565b612456601f8401601f19166020016129b7565b905082815283838301111561246a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461249857600080fd5b919050565b6000602082840312156124af57600080fd5b61148782612481565b600080604083850312156124cb57600080fd5b6124d483612481565b91506124e260208401612481565b90509250929050565b60008060006060848603121561250057600080fd5b61250984612481565b925061251760208501612481565b9150604084013590509250925092565b6000806000806080858703121561253d57600080fd5b61254685612481565b935061255460208601612481565b925060408501359150606085013567ffffffffffffffff81111561257757600080fd5b8501601f8101871361258857600080fd5b61259787823560208401612429565b91505092959194509250565b600080604083850312156125b657600080fd5b6125bf83612481565b9150602083013580151581146125d457600080fd5b809150509250929050565b600080604083850312156125f257600080fd5b6125fb83612481565b946020939093013593505050565b60008060006060848603121561261e57600080fd5b61262784612481565b92506020808501359250604085013567ffffffffffffffff8082111561264c57600080fd5b818701915087601f83011261266057600080fd5b81358181111561267257612672612b4e565b8060051b91506126838483016129b7565b8181528481019084860184860187018c101561269e57600080fd5b600095505b838610156126c15780358352600195909501949186019186016126a3565b508096505050505050509250925092565b6000602082840312156126e457600080fd5b5035919050565b6000806000806080858703121561270157600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561272f57600080fd5b813561148781612b64565b60006020828403121561274c57600080fd5b815161148781612b64565b60006020828403121561276957600080fd5b81356002811061148757600080fd5b60006020828403121561278a57600080fd5b813567ffffffffffffffff8111156127a157600080fd5b8201601f810184136127b257600080fd5b61177e84823560208401612429565b600081518084526127d9816020860160208601612a4a565b601f01601f19169290920160200192915050565b600083516127ff818460208801612a4a565b835190830190612813818360208801612a4a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284f908301846127c1565b9695505050505050565b602081016002831061287b57634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061148760208301846127c1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602b908201527f596f75206d7573742070617920656e6f75676820746f20636f6d706c6574652060408201526a746865206d696e74696e6760a81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129e0576129e0612b4e565b604052919050565b600082198211156129fb576129fb612ae0565b500190565b600082612a0f57612a0f612af6565b500490565b6000816000190483118215151615612a2e57612a2e612ae0565b500290565b600082821015612a4557612a45612ae0565b500390565b60005b83811015612a65578181015183820152602001612a4d565b838111156113ad5750506000910152565b600181811c90821680612a8a57607f821691505b60208210811415612aab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac557612ac5612ae0565b5060010190565b600082612adb57612adb612af6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461137857600080fdfea2646970667358221220d79f3bf4387e048f43c91db8e0e2a1720e60176004cbf5fb56e9b2d82acf2f1564736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000a0f341ac33f582431955faab64443cd8461e0dd45d90b1854839862d2a39454fa05036df7ad53f43711ebd2b43e1acbddcea9dc619e9ee9201d970d4698ad816e3aa5d973f8f47f6557dffaacbd3a0eccd4aec4c271894de04272ba8520120bd0cde39212584bdb884c29f9185911630246b8755e51e65e3ea385b78d049a49299000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f7777772e6d64612e646f672f6170692f0000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806375cb02201161012e578063bab79cd9116100ab578063e41ee46a1161006f578063e41ee46a146106a5578063e75460ad146106bb578063e7d71e14146106db578063e985e9c5146106f1578063f2fde38b1461073a57600080fd5b8063bab79cd914610608578063c19d93fb1461061e578063c87b56dd14610645578063c910435514610665578063d8d16b571461068557600080fd5b80639e67dcbd116100f25780639e67dcbd14610572578063a22cb46514610592578063a6026294146105b2578063a92bd72c146105c8578063b88d4fde146105e857600080fd5b806375cb0220146104d35780638da5cb5b1461050957806395c18ea11461052757806395d89b411461054757806397da036a1461055c57600080fd5b80633ccfd60b116101bc5780636352211e116101805780636352211e14610456578063641ce140146104765780636c0360eb1461048957806370a082311461049e578063715018a6146104be57600080fd5b80633ccfd60b146103c157806342842e0e146103d65780634f6ccce7146103f657806355f804b3146104165780635a67de071461043657600080fd5b806318160ddd1161020357806318160ddd1461032c5780632343cee81461034157806323b872dd146103615780632f745c59146103815780633433edd9146103a157600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf578063145f798f146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461271d565b61075a565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610785565b60405161026c9190612881565b3480156102a357600080fd5b506102b76102b23660046126d2565b610817565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea3660046125df565b6108b1565b005b3480156102fd57600080fd5b5061031e61030c36600461249d565b60176020526000908152604090205481565b60405190815260200161026c565b34801561033857600080fd5b5060085461031e565b34801561034d57600080fd5b506102ef61035c3660046126d2565b6109c7565b34801561036d57600080fd5b506102ef61037c3660046124eb565b6109f6565b34801561038d57600080fd5b5061031e61039c3660046125df565b610a27565b3480156103ad57600080fd5b506010546102b7906001600160a01b031681565b3480156103cd57600080fd5b506102ef610abd565b3480156103e257600080fd5b506102ef6103f13660046124eb565b610af3565b34801561040257600080fd5b5061031e6104113660046126d2565b610b0e565b34801561042257600080fd5b506102ef610431366004612778565b610ba1565b34801561044257600080fd5b506102ef610451366004612757565b610be2565b34801561046257600080fd5b506102b76104713660046126d2565b610c32565b6102ef610484366004612609565b610ca9565b34801561049557600080fd5b5061028a61117e565b3480156104aa57600080fd5b5061031e6104b936600461249d565b61120c565b3480156104ca57600080fd5b506102ef611293565b3480156104df57600080fd5b5061031e6104ee36600461249d565b6001600160a01b031660009081526016602052604090205490565b34801561051557600080fd5b50600a546001600160a01b03166102b7565b34801561053357600080fd5b506102ef6105423660046125df565b6112c7565b34801561055357600080fd5b5061028a6112fb565b34801561056857600080fd5b5061031e60125481565b34801561057e57600080fd5b506102ef61058d3660046126d2565b61130a565b34801561059e57600080fd5b506102ef6105ad3660046125a3565b611339565b3480156105be57600080fd5b5061031e60115481565b3480156105d457600080fd5b506102ef6105e336600461249d565b611344565b3480156105f457600080fd5b506102ef610603366004612527565b61137b565b34801561061457600080fd5b5061031e60135481565b34801561062a57600080fd5b506015546106389060ff1681565b60405161026c9190612859565b34801561065157600080fd5b5061028a6106603660046126d2565b6113b3565b34801561067157600080fd5b506102ef6106803660046126d2565b61148e565b34801561069157600080fd5b506102ef6106a03660046126d2565b6114bd565b3480156106b157600080fd5b5061031e6115b381565b3480156106c757600080fd5b506102ef6106d63660046126eb565b6114ec565b3480156106e757600080fd5b5061031e60145481565b3480156106fd57600080fd5b5061026061070c3660046124b8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074657600080fd5b506102ef61075536600461249d565b61152a565b60006001600160e01b0319821663780e9d6360e01b148061077f575061077f826115d1565b92915050565b60606000805461079490612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090612a76565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108bc82610c32565b9050806001600160a01b0316836001600160a01b0316141561092a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161088c565b336001600160a01b03821614806109465750610946813361070c565b6109b85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161088c565b6109c28383611621565b505050565b600a546001600160a01b031633146109f15760405162461bcd60e51b815260040161088c90612931565b601155565b610a00338261168f565b610a1c5760405162461bcd60e51b815260040161088c90612966565b6109c2838383611786565b6000610a328361120c565b8210610a945760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161088c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ae75760405162461bcd60e51b815260040161088c90612931565b610af1334761192d565b565b6109c28383836040518060200160405280600081525061137b565b6000610b1960085490565b8210610b7c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161088c565b60088281548110610b8f57610b8f612b38565b90600052602060002001549050919050565b600a546001600160a01b03163314610bcb5760405162461bcd60e51b815260040161088c90612931565b8051610bde90600b906020840190612390565b5050565b600a546001600160a01b03163314610c0c5760405162461bcd60e51b815260040161088c90612931565b6015805482919060ff191660018381811115610c2a57610c2a612b0c565b021790555050565b6000818152600260205260408120546001600160a01b03168061077f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161088c565b6001821015610d0b5760405162461bcd60e51b815260206004820152602860248201527f54686520706172616d6574657220796f752070617373656420696e20697320696044820152671b98dbdc9c9958dd60c21b606482015260840161088c565b600060155460ff166001811115610d2457610d24612b0c565b1415610e02576001600160a01b038316600090815260166020526040902054600190610d519084906129e8565b1115610d9f5760405162461bcd60e51b815260206004820181905260248201527f796f7520657863656564656420746865207072652d73616c6520766f6c756d65604482015260640161088c565b610db08266b1a2bc2ec50000612a14565b341015610dcf5760405162461bcd60e51b815260040161088c906128e6565b6001600160a01b03831660009081526016602052604081208054849290610df79084906129e8565b909155506111749050565b6001600160a01b0383166000908152601660205260409020546001141561103f57610e308360135483611a46565b15610f6e576001600160a01b038316600090815260166020526040902054610e5a6002600a6129e8565b610e6491906129e8565b6001600160a01b03841660009081526017602052604090205410610eb45781600f54610e909190612a14565b341015610eaf5760405162461bcd60e51b815260040161088c906128e6565b611174565b6001600160a01b038316600090815260166020526040902054610ed96002600a6129e8565b610ee391906129e8565b6001600160a01b038416600090815260176020526040902054610f079084906129e8565b1115610eaf576001600160a01b038316600090815260166020908152604080832054601790925290912054600290600a90610f439086906129e8565b610f4d9190612a33565b610f579190612a33565b610f619190612a33565b600f54610e909190612a14565b6001600160a01b038316600090815260166020526040902054610f9290600a6129e8565b6001600160a01b03841660009081526017602052604090205410610fbe5781600f54610e909190612a14565b6001600160a01b038316600090815260166020526040902054610fe290600a6129e8565b6001600160a01b0384166000908152601760205260409020546110069084906129e8565b1115610eaf576001600160a01b038316600090815260166020908152604080832054601790925290912054600a90610f4d9085906129e8565b61104c8360135483611a46565b156110d3576001600160a01b03831660009081526017602052604090205460021161107f5781600f54610e909190612a14565b6001600160a01b0383166000908152601760205260409020546002906110a69084906129e8565b1115610eaf576001600160a01b038316600090815260176020526040902054600290610f579084906129e8565b6110e08360145483611a46565b1561110757600f54341015610eaf5760405162461bcd60e51b815260040161088c906128e6565b6111148360115483611a46565b156111275781600e54610e909190612a14565b6111348360125483611a46565b156111475781600d54610e909190612a14565b81600c546111559190612a14565b3410156111745760405162461bcd60e51b815260040161088c906128e6565b6109c28383611a96565b600b805461118b90612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546111b790612a76565b80156112045780601f106111d957610100808354040283529160200191611204565b820191906000526020600020905b8154815290600101906020018083116111e757829003601f168201915b505050505081565b60006001600160a01b0382166112775760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161088c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112bd5760405162461bcd60e51b815260040161088c90612931565b610af16000611bb5565b600a546001600160a01b031633146112f15760405162461bcd60e51b815260040161088c90612931565b610bde8282611a96565b60606001805461079490612a76565b600a546001600160a01b031633146113345760405162461bcd60e51b815260040161088c90612931565b601255565b610bde338383611c07565b600a546001600160a01b0316331461136e5760405162461bcd60e51b815260040161088c90612931565b611378814761192d565b50565b611385338361168f565b6113a15760405162461bcd60e51b815260040161088c90612966565b6113ad84848484611cd6565b50505050565b6000818152600260205260409020546060906001600160a01b03166114325760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161088c565b600061143c611d09565b9050600081511161145c5760405180602001604052806000815250611487565b8061146684611d18565b6040516020016114779291906127ed565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114b85760405162461bcd60e51b815260040161088c90612931565b601455565b600a546001600160a01b031633146114e75760405162461bcd60e51b815260040161088c90612931565b601355565b600a546001600160a01b031633146115165760405162461bcd60e51b815260040161088c90612931565b601193909355601291909155601355601455565b600a546001600160a01b031633146115545760405162461bcd60e51b815260040161088c90612931565b6001600160a01b0381166115b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161088c565b61137881611bb5565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b148061160257506001600160e01b03198216635b5e139f60e01b145b8061077f57506301ffc9a760e01b6001600160e01b031983161461077f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061165682610c32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117085760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161088c565b600061171383610c32565b9050806001600160a01b0316846001600160a01b0316148061174e5750836001600160a01b031661174384610817565b6001600160a01b0316145b8061177e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661179982610c32565b6001600160a01b0316146117fd5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161088c565b6001600160a01b03821661185f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161088c565b61186a838383611e16565b611875600082611621565b6001600160a01b038316600090815260036020526040812080546001929061189e908490612a33565b90915550506001600160a01b03821660009081526003602052604081208054600192906118cc9084906129e8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b8047101561197d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161088c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119ca576040519150601f19603f3d011682016040523d82523d6000602084013e6119cf565b606091505b50509050806109c25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161088c565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050611a8d838583611ece565b95945050505050565b6115b381611aa360085490565b611aad91906129e8565b1115611b0b5760405162461bcd60e51b815260206004820152602760248201527f5468652063617374696e67207175616e7469747920686173206265656e20636f6044820152661b5c1b195d195960ca1b606482015260840161088c565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611b44573d6000803e3d6000fd5b506000611b5060085490565b905060015b8281116113ad5781611b6681612ab1565b6001600160a01b038616600090815260176020526040812080549295506001935091611b939084906129e8565b90915550611ba390508483611ee4565b80611bad81612ab1565b915050611b55565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c695760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161088c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ce1848484611786565b611ced84848484611efe565b6113ad5760405162461bcd60e51b815260040161088c90612894565b6060600b805461079490612a76565b606081611d3c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d665780611d5081612ab1565b9150611d5f9050600a83612a00565b9150611d40565b60008167ffffffffffffffff811115611d8157611d81612b4e565b6040519080825280601f01601f191660200182016040528015611dab576020820181803683370190505b5090505b841561177e57611dc0600183612a33565b9150611dcd600a86612acc565b611dd89060306129e8565b60f81b818381518110611ded57611ded612b38565b60200101906001600160f81b031916908160001a905350611e0f600a86612a00565b9450611daf565b6001600160a01b038316611e7157611e6c81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611e94565b816001600160a01b0316836001600160a01b031614611e9457611e94838261200b565b6001600160a01b038216611eab576109c2816120a8565b826001600160a01b0316826001600160a01b0316146109c2576109c28282612157565b600082611edb858461219b565b14949350505050565b610bde82826040518060200160405280600081525061220f565b60006001600160a01b0384163b1561200057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f4290339089908890889060040161281c565b602060405180830381600087803b158015611f5c57600080fd5b505af1925050508015611f8c575060408051601f3d908101601f19168201909252611f899181019061273a565b60015b611fe6573d808015611fba576040519150601f19603f3d011682016040523d82523d6000602084013e611fbf565b606091505b508051611fde5760405162461bcd60e51b815260040161088c90612894565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061177e565b506001949350505050565b600060016120188461120c565b6120229190612a33565b600083815260076020526040902054909150808214612075576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906120ba90600190612a33565b600083815260096020526040812054600880549394509092849081106120e2576120e2612b38565b90600052602060002001549050806008838154811061210357612103612b38565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061213b5761213b612b22565b6001900381819060005260206000200160009055905550505050565b60006121628361120c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b84518110156122075760008582815181106121bd576121bd612b38565b602002602001015190508083116121e357600083815260208290526040902092506121f4565b600081815260208490526040902092505b50806121ff81612ab1565b9150506121a0565b509392505050565b6122198383612242565b6122266000848484611efe565b6109c25760405162461bcd60e51b815260040161088c90612894565b6001600160a01b0382166122985760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161088c565b6000818152600260205260409020546001600160a01b0316156122fd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161088c565b61230960008383611e16565b6001600160a01b03821660009081526003602052604081208054600192906123329084906129e8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461239c90612a76565b90600052602060002090601f0160209004810192826123be5760008555612404565b82601f106123d757805160ff1916838001178555612404565b82800160010185558215612404579182015b828111156124045782518255916020019190600101906123e9565b50612410929150612414565b5090565b5b808211156124105760008155600101612415565b600067ffffffffffffffff83111561244357612443612b4e565b612456601f8401601f19166020016129b7565b905082815283838301111561246a57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461249857600080fd5b919050565b6000602082840312156124af57600080fd5b61148782612481565b600080604083850312156124cb57600080fd5b6124d483612481565b91506124e260208401612481565b90509250929050565b60008060006060848603121561250057600080fd5b61250984612481565b925061251760208501612481565b9150604084013590509250925092565b6000806000806080858703121561253d57600080fd5b61254685612481565b935061255460208601612481565b925060408501359150606085013567ffffffffffffffff81111561257757600080fd5b8501601f8101871361258857600080fd5b61259787823560208401612429565b91505092959194509250565b600080604083850312156125b657600080fd5b6125bf83612481565b9150602083013580151581146125d457600080fd5b809150509250929050565b600080604083850312156125f257600080fd5b6125fb83612481565b946020939093013593505050565b60008060006060848603121561261e57600080fd5b61262784612481565b92506020808501359250604085013567ffffffffffffffff8082111561264c57600080fd5b818701915087601f83011261266057600080fd5b81358181111561267257612672612b4e565b8060051b91506126838483016129b7565b8181528481019084860184860187018c101561269e57600080fd5b600095505b838610156126c15780358352600195909501949186019186016126a3565b508096505050505050509250925092565b6000602082840312156126e457600080fd5b5035919050565b6000806000806080858703121561270157600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561272f57600080fd5b813561148781612b64565b60006020828403121561274c57600080fd5b815161148781612b64565b60006020828403121561276957600080fd5b81356002811061148757600080fd5b60006020828403121561278a57600080fd5b813567ffffffffffffffff8111156127a157600080fd5b8201601f810184136127b257600080fd5b61177e84823560208401612429565b600081518084526127d9816020860160208601612a4a565b601f01601f19169290920160200192915050565b600083516127ff818460208801612a4a565b835190830190612813818360208801612a4a565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284f908301846127c1565b9695505050505050565b602081016002831061287b57634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061148760208301846127c1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602b908201527f596f75206d7573742070617920656e6f75676820746f20636f6d706c6574652060408201526a746865206d696e74696e6760a81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156129e0576129e0612b4e565b604052919050565b600082198211156129fb576129fb612ae0565b500190565b600082612a0f57612a0f612af6565b500490565b6000816000190483118215151615612a2e57612a2e612ae0565b500290565b600082821015612a4557612a45612ae0565b500390565b60005b83811015612a65578181015183820152602001612a4d565b838111156113ad5750506000910152565b600181811c90821680612a8a57607f821691505b60208210811415612aab57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ac557612ac5612ae0565b5060010190565b600082612adb57612adb612af6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461137857600080fdfea2646970667358221220d79f3bf4387e048f43c91db8e0e2a1720e60176004cbf5fb56e9b2d82acf2f1564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a0f341ac33f582431955faab64443cd8461e0dd45d90b1854839862d2a39454fa05036df7ad53f43711ebd2b43e1acbddcea9dc619e9ee9201d970d4698ad816e3aa5d973f8f47f6557dffaacbd3a0eccd4aec4c271894de04272ba8520120bd0cde39212584bdb884c29f9185911630246b8755e51e65e3ea385b78d049a49299000000000000000000000000000000000000000000000000000000000000001868747470733a2f2f7777772e6d64612e646f672f6170692f0000000000000000
-----Decoded View---------------
Arg [0] : _baseInitURI (string): https://www.mda.dog/api/
Arg [1] : _merkleRootGoldWL (bytes32): 0xf341ac33f582431955faab64443cd8461e0dd45d90b1854839862d2a39454fa0
Arg [2] : _merkleRootSilverdWL (bytes32): 0x5036df7ad53f43711ebd2b43e1acbddcea9dc619e9ee9201d970d4698ad816e3
Arg [3] : _merkleRootGoldOG (bytes32): 0xaa5d973f8f47f6557dffaacbd3a0eccd4aec4c271894de04272ba8520120bd0c
Arg [4] : _merkleRootSilverOG (bytes32): 0xde39212584bdb884c29f9185911630246b8755e51e65e3ea385b78d049a49299
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : f341ac33f582431955faab64443cd8461e0dd45d90b1854839862d2a39454fa0
Arg [2] : 5036df7ad53f43711ebd2b43e1acbddcea9dc619e9ee9201d970d4698ad816e3
Arg [3] : aa5d973f8f47f6557dffaacbd3a0eccd4aec4c271894de04272ba8520120bd0c
Arg [4] : de39212584bdb884c29f9185911630246b8755e51e65e3ea385b78d049a49299
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [6] : 68747470733a2f2f7777772e6d64612e646f672f6170692f0000000000000000
Deployed Bytecode Sourcemap
148:6499:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989:222:4;;;;;;;;;;-1:-1:-1;989:222:4;;;;;:::i;:::-;;:::i;:::-;;;7816:14:14;;7809:22;7791:41;;7779:2;7764:18;989:222:4;;;;;;;;2423:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3934:217::-;;;;;;;;;;-1:-1:-1;3934:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7114:32:14;;;7096:51;;7084:2;7069:18;3934:217:3;6950:203:14;3472:401:3;;;;;;;;;;-1:-1:-1;3472:401:3;;;;;:::i;:::-;;:::i;:::-;;974:46:11;;;;;;;;;;-1:-1:-1;974:46:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7989:25:14;;;7977:2;7962:18;974:46:11;7843:177:14;1614:111:4;;;;;;;;;;-1:-1:-1;1701:10:4;:17;1614:111;;5627:126:11;;;;;;;;;;-1:-1:-1;5627:126:11;;;;;:::i;:::-;;:::i;4661:330:3:-;;;;;;;;;;-1:-1:-1;4661:330:3;;;;;:::i;:::-;;:::i;1290:253:4:-;;;;;;;;;;-1:-1:-1;1290:253:4;;;;;:::i;:::-;;:::i;666:20:11:-;;;;;;;;;;-1:-1:-1;666:20:11;;;;-1:-1:-1;;;;;666:20:11;;;5145:119;;;;;;;;;;;;;:::i;5057:179:3:-;;;;;;;;;;-1:-1:-1;5057:179:3;;;;;:::i;:::-;;:::i;1797:230:4:-;;;;;;;;;;-1:-1:-1;1797:230:4;;;;;:::i;:::-;;:::i;5531:88:11:-;;;;;;;;;;-1:-1:-1;5531:88:11;;;;;:::i;:::-;;:::i;6551:89::-;;;;;;;;;;-1:-1:-1;6551:89:11;;;;;:::i;:::-;;:::i;2126:235:3:-;;;;;;;;;;-1:-1:-1;2126:235:3;;;;;:::i;:::-;;:::i;1553:2704:11:-;;;;;;:::i;:::-;;:::i;209:21::-;;;;;;;;;;;;;:::i;1864:205:3:-;;;;;;;;;;-1:-1:-1;1864:205:3;;;;;:::i;:::-;;:::i;1661:101:12:-;;;;;;;;;;;;;:::i;5027:108:11:-;;;;;;;;;;-1:-1:-1;5027:108:11;;;;;:::i;:::-;-1:-1:-1;;;;;5104:23:11;5078:7;5104:23;;;:19;:23;;;;;;;5027:108;1029:85:12;;;;;;;;;;-1:-1:-1;1101:6:12;;-1:-1:-1;;;;;1101:6:12;1029:85;;4502:108:11;;;;;;;;;;-1:-1:-1;4502:108:11;;;;;:::i;:::-;;:::i;2585:102:3:-;;;;;;;;;;;;;:::i;731:33:11:-;;;;;;;;;;;;;;;;5761:134;;;;;;;;;;-1:-1:-1;5761:134:11;;;;;:::i;:::-;;:::i;4218:153:3:-;;;;;;;;;;-1:-1:-1;4218:153:3;;;;;:::i;:::-;;:::i;693:31:11:-;;;;;;;;;;;;;;;;5272:143;;;;;;;;;;-1:-1:-1;5272:143:11;;;;;:::i;:::-;;:::i;5302:320:3:-;;;;;;;;;;-1:-1:-1;5302:320:3;;;;;:::i;:::-;;:::i;771:31:11:-;;;;;;;;;;;;;;;;894:19;;;;;;;;;;-1:-1:-1;894:19:11;;;;;;;;;;;;;;;:::i;2753:329:3:-;;;;;;;;;;-1:-1:-1;2753:329:3;;;;;:::i;:::-;;:::i;6037:134:11:-;;;;;;;;;;-1:-1:-1;6037:134:11;;;;;:::i;:::-;;:::i;5903:126::-;;;;;;;;;;-1:-1:-1;5903:126:11;;;;;:::i;:::-;;:::i;237:43::-;;;;;;;;;;;;276:4;237:43;;6179:364;;;;;;;;;;-1:-1:-1;6179:364:11;;;;;:::i;:::-;;:::i;809:33::-;;;;;;;;;;;;;;;;4437:162:3;;;;;;;;;;-1:-1:-1;4437:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4557:25:3;;;4534:4;4557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4437:162;1911:198:12;;;;;;;;;;-1:-1:-1;1911:198:12;;;;;:::i;:::-;;:::i;989:222:4:-;1091:4;-1:-1:-1;;;;;;1114:50:4;;-1:-1:-1;;;1114:50:4;;:90;;;1168:36;1192:11;1168:23;:36::i;:::-;1107:97;989:222;-1:-1:-1;;989:222:4:o;2423:98:3:-;2477:13;2509:5;2502:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2423:98;:::o;3934:217::-;4010:7;7182:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7182:16:3;4029:73;;;;-1:-1:-1;;;4029:73:3;;15177:2:14;4029:73:3;;;15159:21:14;15216:2;15196:18;;;15189:30;15255:34;15235:18;;;15228:62;-1:-1:-1;;;15306:18:14;;;15299:42;15358:19;;4029:73:3;;;;;;;;;-1:-1:-1;4120:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4120:24:3;;3934:217::o;3472:401::-;3552:13;3568:23;3583:7;3568:14;:23::i;:::-;3552:39;;3615:5;-1:-1:-1;;;;;3609:11:3;:2;-1:-1:-1;;;;;3609:11:3;;;3601:57;;;;-1:-1:-1;;;3601:57:3;;17140:2:14;3601:57:3;;;17122:21:14;17179:2;17159:18;;;17152:30;17218:34;17198:18;;;17191:62;-1:-1:-1;;;17269:18:14;;;17262:31;17310:19;;3601:57:3;16938:397:14;3601:57:3;719:10:1;-1:-1:-1;;;;;3690:21:3;;;;:62;;-1:-1:-1;3715:37:3;3732:5;719:10:1;4437:162:3;:::i;3715:37::-;3669:165;;;;-1:-1:-1;;;3669:165:3;;13570:2:14;3669:165:3;;;13552:21:14;13609:2;13589:18;;;13582:30;13648:34;13628:18;;;13621:62;13719:26;13699:18;;;13692:54;13763:19;;3669:165:3;13368:420:14;3669:165:3;3845:21;3854:2;3858:7;3845:8;:21::i;:::-;3542:331;3472:401;;:::o;5627:126:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5709:16:11::1;:36:::0;5627:126::o;4661:330:3:-;4850:41;719:10:1;4883:7:3;4850:18;:41::i;:::-;4842:103;;;;-1:-1:-1;;;4842:103:3;;;;;;;:::i;:::-;4956:28;4966:4;4972:2;4976:7;4956:9;:28::i;1290:253:4:-;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;-1:-1:-1;;;1406:87:4;;8795:2:14;1406:87:4;;;8777:21:14;8834:2;8814:18;;;8807:30;8873:34;8853:18;;;8846:62;-1:-1:-1;;;8924:18:14;;;8917:41;8975:19;;1406:87:4;8593:407:14;1406:87:4;-1:-1:-1;;;;;;1510:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1290:253::o;5145:119:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5195:61:11::1;5221:10;5234:21;5195:17;:61::i;:::-;5145:119::o:0;5057:179:3:-;5190:39;5207:4;5213:2;5217:7;5190:39;;;;;;;;;;;;:16;:39::i;1797:230:4:-;1872:7;1907:30;1701:10;:17;;1614:111;1907:30;1899:5;:38;1891:95;;;;-1:-1:-1;;;1891:95:4;;17960:2:14;1891:95:4;;;17942:21:14;17999:2;17979:18;;;17972:30;18038:34;18018:18;;;18011:62;-1:-1:-1;;;18089:18:14;;;18082:42;18141:19;;1891:95:4;17758:408:14;1891:95:4;2003:10;2014:5;2003:17;;;;;;;;:::i;:::-;;;;;;;;;1996:24;;1797:230;;;:::o;5531:88:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5598:13:11;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;5531:88:::0;:::o;6551:89::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6618:5:11::1;:14:::0;;6626:6;;6618:5;-1:-1:-1;;6618:14:11::1;::::0;6626:6;6618:14;;::::1;;;;;;:::i;:::-;;;;;;6551:89:::0;:::o;2126:235:3:-;2198:7;2233:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2233:16:3;2267:19;2259:73;;;;-1:-1:-1;;;2259:73:3;;14406:2:14;2259:73:3;;;14388:21:14;14445:2;14425:18;;;14418:30;14484:34;14464:18;;;14457:62;-1:-1:-1;;;14535:18:14;;;14528:39;14584:19;;2259:73:3;14204:405:14;1553:2704:11;1659:1;1649:6;:11;;1641:63;;;;-1:-1:-1;;;1641:63:11;;11555:2:14;1641:63:11;;;11537:21:14;11594:2;11574:18;;;11567:30;11633:34;11613:18;;;11606:62;-1:-1:-1;;;11684:18:14;;;11677:38;11732:19;;1641:63:11;11353:404:14;1641:63:11;1727:19;1718:5;;;;;:28;;;;;;;:::i;:::-;;1715:2496;;;-1:-1:-1;;;;;1770:23:11;;;;;;:19;:23;;;;;;1806:1;;1770:32;;1796:6;;1770:32;:::i;:::-;:37;;1762:81;;;;-1:-1:-1;;;1762:81:11;;15590:2:14;1762:81:11;;;15572:21:14;;;15609:18;;;15602:30;15668:34;15648:18;;;15641:62;15720:18;;1762:81:11;15388:356:14;1762:81:11;1879:26;1899:6;383:13;1879:26;:::i;:::-;1866:9;:39;;1858:96;;;;-1:-1:-1;;;1858:96:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1969:23:11;;;;;;:19;:23;;;;;:31;;1994:6;;1969:23;:31;;1994:6;;1969:31;:::i;:::-;;;;-1:-1:-1;1715:2496:11;;-1:-1:-1;1715:2496:11;;-1:-1:-1;;;;;2020:23:11;;;;;;:19;:23;;;;;;2047:1;2020:28;2017:2194;;;2067:34;2075:2;2078:16;;2095:5;2067:7;:34::i;:::-;2064:1085;;;-1:-1:-1;;;;;2181:23:11;;;;;;:19;:23;;;;;;2143:35;330:1;448:2;2143:35;:::i;:::-;:61;;;;:::i;:::-;-1:-1:-1;;;;;2124:15:11;;;;;;:11;:15;;;;;;:80;2121:537;;2266:6;2246:17;;:26;;;;:::i;:::-;2233:9;:39;;2225:95;;;;-1:-1:-1;;;2225:95:11;;;;;;;:::i;:::-;2017:2194;;2121:537;-1:-1:-1;;;;;2415:23:11;;;;;;:19;:23;;;;;;2377:35;330:1;448:2;2377:35;:::i;:::-;:61;;;;:::i;:::-;-1:-1:-1;;;;;2349:15:11;;;;;;:11;:15;;;;;;:25;;2368:6;;2349:25;:::i;:::-;:89;2346:312;;;-1:-1:-1;;;;;2566:23:11;;;;;;:19;:23;;;;;;;;;2500:11;:15;;;;;;;330:1;;448:2;;2500:25;;2519:6;;2500:25;:::i;:::-;:45;;;;:::i;:::-;:63;;;;:::i;:::-;:89;;;;:::i;:::-;2479:17;;:111;;;;:::i;2064:1085::-;-1:-1:-1;;;;;2720:23:11;;;;;;:19;:23;;;;;;2700:43;;448:2;2700:43;:::i;:::-;-1:-1:-1;;;;;2681:15:11;;;;;;:11;:15;;;;;;:62;2678:471;;2805:6;2785:17;;:26;;;;:::i;2678:471::-;-1:-1:-1;;;;;2929:23:11;;;;;;:19;:23;;;;;;2909:43;;448:2;2909:43;:::i;:::-;-1:-1:-1;;;;;2882:15:11;;;;;;:11;:15;;;;;;:24;;2900:6;;2882:24;:::i;:::-;:70;2879:270;;;-1:-1:-1;;;;;3062:23:11;;;;;;:19;:23;;;;;;;;;3015:11;:15;;;;;;;448:2;;3015:24;;3033:6;;3015:24;:::i;2017:2194::-;3168:34;3176:2;3179:16;;3196:5;3168:7;:34::i;:::-;3165:1046;;;-1:-1:-1;;;;;3221:15:11;;;;;;:11;:15;;;;;;330:1;-1:-1:-1;3218:381:11;;3312:6;3292:17;;:26;;;;:::i;3218:381::-;-1:-1:-1;;;;;3390:15:11;;;;;;:11;:15;;;;;;330:1;;3390:25;;3409:6;;3390:25;:::i;:::-;:43;3387:212;;;-1:-1:-1;;;;;3491:15:11;;;;;;:11;:15;;;;;;330:1;;3491:25;;3510:6;;3491:25;:::i;3165:1046::-;3618:36;3626:2;3629:18;;3648:5;3618:7;:36::i;:::-;3615:596;;;3691:17;;3678:9;:30;;3670:85;;;;-1:-1:-1;;;3670:85:11;;;;;;;:::i;3615:596::-;3775:34;3783:2;3786:16;;3803:5;3775:7;:34::i;:::-;3772:439;;;3862:6;3846:13;;:22;;;;:::i;3772:439::-;3936:36;3944:2;3947:18;;3966:5;3936:7;:36::i;:::-;3933:278;;;4027:6;4009:15;;:24;;;;:::i;3933:278::-;4145:6;4133:9;;:18;;;;:::i;:::-;4120:9;:31;;4112:87;;;;-1:-1:-1;;;4112:87:11;;;;;;;:::i;:::-;4225:24;4239:2;4242:6;4225:13;:24::i;209:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1864:205:3:-;1936:7;-1:-1:-1;;;;;1963:19:3;;1955:74;;;;-1:-1:-1;;;1955:74:3;;13995:2:14;1955:74:3;;;13977:21:14;14034:2;14014:18;;;14007:30;14073:34;14053:18;;;14046:62;-1:-1:-1;;;14124:18:14;;;14117:40;14174:19;;1955:74:3;13793:406:14;1955:74:3;-1:-1:-1;;;;;;2046:16:3;;;;;:9;:16;;;;;;;1864:205::o;1661:101:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;4502:108:11:-:0;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;4578:24:11::1;4592:2;4595:6;4578:13;:24::i;2585:102:3:-:0;2641:13;2673:7;2666:14;;;;;:::i;5761:134:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5847:18:11::1;:40:::0;5761:134::o;4218:153:3:-;4312:52;719:10:1;4345:8:3;4355;4312:18;:52::i;5272:143:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5347:60:11::1;5373:9;5385:21;5347:17;:60::i;:::-;5272:143:::0;:::o;5302:320:3:-;5471:41;719:10:1;5504:7:3;5471:18;:41::i;:::-;5463:103;;;;-1:-1:-1;;;5463:103:3;;;;;;;:::i;:::-;5576:39;5590:4;5596:2;5600:7;5609:5;5576:13;:39::i;:::-;5302:320;;;;:::o;2753:329::-;7159:4;7182:16;;;:7;:16;;;;;;2826:13;;-1:-1:-1;;;;;7182:16:3;2851:76;;;;-1:-1:-1;;;2851:76:3;;16724:2:14;2851:76:3;;;16706:21:14;16763:2;16743:18;;;16736:30;16802:34;16782:18;;;16775:62;-1:-1:-1;;;16853:18:14;;;16846:45;16908:19;;2851:76:3;16522:411:14;2851:76:3;2938:21;2962:10;:8;:10::i;:::-;2938:34;;3013:1;2995:7;2989:21;:25;:86;;;;;;;;;;;;;;;;;3041:7;3050:18;:7;:16;:18::i;:::-;3024:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2989:86;2982:93;2753:329;-1:-1:-1;;;2753:329:3:o;6037:134:11:-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6123:18:11::1;:40:::0;6037:134::o;5903:126::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;5985:16:11::1;:36:::0;5903:126::o;6179:364::-;1101:6:12;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;6345:16:11::1;:34:::0;;;;6394:18:::1;:39:::0;;;;6448:16:::1;:34:::0;6497:18:::1;:38:::0;6179:364::o;1911:198:12:-;1101:6;;-1:-1:-1;;;;;1101:6:12;719:10:1;1241:23:12;1233:68;;;;-1:-1:-1;;;1233:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:12;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:12;;9626:2:14;1991:73:12::1;::::0;::::1;9608:21:14::0;9665:2;9645:18;;;9638:30;9704:34;9684:18;;;9677:62;-1:-1:-1;;;9755:18:14;;;9748:36;9801:19;;1991:73:12::1;9424:402:14::0;1991:73:12::1;2074:28;2093:8;2074:18;:28::i;1175:320:0:-:0;-1:-1:-1;;;;;1465:19:0;;:23;;;1175:320::o;1505:300:3:-;1607:4;-1:-1:-1;;;;;;1642:40:3;;-1:-1:-1;;;1642:40:3;;:104;;-1:-1:-1;;;;;;;1698:48:3;;-1:-1:-1;;;1698:48:3;1642:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:2;;;1762:36:3;829:155:2;11103:171:3;11177:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11177:29:3;-1:-1:-1;;;;;11177:29:3;;;;;;;;:24;;11230:23;11177:24;11230:14;:23::i;:::-;-1:-1:-1;;;;;11221:46:3;;;;;;;;;;;11103:171;;:::o;7377:344::-;7470:4;7182:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7182:16:3;7486:73;;;;-1:-1:-1;;;7486:73:3;;13157:2:14;7486:73:3;;;13139:21:14;13196:2;13176:18;;;13169:30;13235:34;13215:18;;;13208:62;-1:-1:-1;;;13286:18:14;;;13279:42;13338:19;;7486:73:3;12955:408:14;7486:73:3;7569:13;7585:23;7600:7;7585:14;:23::i;:::-;7569:39;;7637:5;-1:-1:-1;;;;;7626:16:3;:7;-1:-1:-1;;;;;7626:16:3;;:51;;;;7670:7;-1:-1:-1;;;;;7646:31:3;:20;7658:7;7646:11;:20::i;:::-;-1:-1:-1;;;;;7646:31:3;;7626:51;:87;;;-1:-1:-1;;;;;;4557:25:3;;;4534:4;4557:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7681:32;7618:96;7377:344;-1:-1:-1;;;;7377:344:3:o;10387:605::-;10541:4;-1:-1:-1;;;;;10514:31:3;:23;10529:7;10514:14;:23::i;:::-;-1:-1:-1;;;;;10514:31:3;;10506:81;;;;-1:-1:-1;;;10506:81:3;;10033:2:14;10506:81:3;;;10015:21:14;10072:2;10052:18;;;10045:30;10111:34;10091:18;;;10084:62;-1:-1:-1;;;10162:18:14;;;10155:35;10207:19;;10506:81:3;9831:401:14;10506:81:3;-1:-1:-1;;;;;10605:16:3;;10597:65;;;;-1:-1:-1;;;10597:65:3;;10796:2:14;10597:65:3;;;10778:21:14;10835:2;10815:18;;;10808:30;10874:34;10854:18;;;10847:62;-1:-1:-1;;;10925:18:14;;;10918:34;10969:19;;10597:65:3;10594:400:14;10597:65:3;10673:39;10694:4;10700:2;10704:7;10673:20;:39::i;:::-;10774:29;10791:1;10795:7;10774:8;:29::i;:::-;-1:-1:-1;;;;;10814:15:3;;;;;;:9;:15;;;;;:20;;10833:1;;10814:15;:20;;10833:1;;10814:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10844:13:3;;;;;;:9;:13;;;;;:18;;10861:1;;10844:13;:18;;10861:1;;10844:18;:::i;:::-;;;;-1:-1:-1;;10872:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10872:21:3;-1:-1:-1;;;;;10872:21:3;;;;;;;;;10909:27;;10872:16;;10909:27;;;;;;;3542:331;3472:401;;:::o;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;-1:-1:-1;;;2493:73:0;;12799:2:14;2493:73:0;;;12781:21:14;12838:2;12818:18;;;12811:30;12877:31;12857:18;;;12850:59;12926:18;;2493:73:0;12597:353:14;2493:73:0;2578:12;2596:9;-1:-1:-1;;;;;2596:14:0;2618:6;2596:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;-1:-1:-1;;;2639:78:0;;12372:2:14;2639:78:0;;;12354:21:14;12411:2;12391:18;;;12384:30;12450:34;12430:18;;;12423:62;12521:28;12501:18;;;12494:56;12567:19;;2639:78:0;12170:422:14;4271:223:11;4410:20;;-1:-1:-1;;6180:2:14;6176:15;;;6172:53;4410:20:11;;;6160:66:14;4364:4:11;;;;6242:12:14;;4410:20:11;;;;;;;;;;;;4400:31;;;;;;4386:45;;4449:37;4468:5;4475:4;4481;4449:18;:37::i;:::-;4442:44;4271:223;-1:-1:-1;;;;;4271:223:11:o;4618:401::-;276:4;4709:6;4695:13;1701:10:4;:17;;1614:111;4695:13:11;:20;;;;:::i;:::-;:36;;4687:87;;;;-1:-1:-1;;;4687:87:11;;11964:2:14;4687:87:11;;;11946:21:14;12003:2;11983:18;;;11976:30;12042:34;12022:18;;;12015:62;-1:-1:-1;;;12093:18:14;;;12086:37;12140:19;;4687:87:11;11762:403:14;4687:87:11;4793:5;;4785:34;;-1:-1:-1;;;;;4793:5:11;;;;4809:9;4785:34;;;;;4793:5;4785:34;4793:5;4785:34;4809:9;4793:5;4785:34;;;;;;;;;;;;;;;;;;;;;4830:15;4848:13;1701:10:4;:17;;1614:111;4848:13:11;4830:31;-1:-1:-1;4887:1:11;4872:140;4895:6;4890:1;:11;4872:140;;4922:9;;;;:::i;:::-;-1:-1:-1;;;;;4946:15:11;;;;;;:11;:15;;;;;:18;;4922:9;;-1:-1:-1;4963:1:11;;-1:-1:-1;4946:15:11;:18;;4963:1;;4946:18;:::i;:::-;;;;-1:-1:-1;4979:21:11;;-1:-1:-1;4989:2:11;4992:7;4979:9;:21::i;:::-;4903:3;;;;:::i;:::-;;;;4872:140;;2263:187:12;2355:6;;;-1:-1:-1;;;;;2371:17:12;;;-1:-1:-1;;;;;;2371:17:12;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;11409:307:3:-;11559:8;-1:-1:-1;;;;;11550:17:3;:5;-1:-1:-1;;;;;11550:17:3;;;11542:55;;;;-1:-1:-1;;;11542:55:3;;11201:2:14;11542:55:3;;;11183:21:14;11240:2;11220:18;;;11213:30;11279:27;11259:18;;;11252:55;11324:18;;11542:55:3;10999:349:14;11542:55:3;-1:-1:-1;;;;;11607:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11607:46:3;;;;;;;;;;11668:41;;7791::14;;;11668::3;;7764:18:14;11668:41:3;;;;;;;11409:307;;;:::o;6484:::-;6635:28;6645:4;6651:2;6655:7;6635:9;:28::i;:::-;6681:48;6704:4;6710:2;6714:7;6723:5;6681:22;:48::i;:::-;6673:111;;;;-1:-1:-1;;;6673:111:3;;;;;;;:::i;5423:100:11:-;5475:13;5508:7;5501:14;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;2623:572:4;-1:-1:-1;;;;;2822:18:4;;2818:183;;2856:40;2888:7;4004:10;:17;;3977:24;;;;:15;:24;;;;;:44;;;4031:24;;;;;;;;;;;;3901:161;2856:40;2818:183;;;2925:2;-1:-1:-1;;;;;2917:10:4;:4;-1:-1:-1;;;;;2917:10:4;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3014:16:4;;3010:179;;3046:45;3083:7;3046:36;:45::i;3010:179::-;3118:4;-1:-1:-1;;;;;3112:10:4;:2;-1:-1:-1;;;;;3112:10:4;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;862:184:10:-;983:4;1035;1006:25;1019:5;1026:4;1006:12;:25::i;:::-;:33;;862:184;-1:-1:-1;;;;862:184:10:o;8051:108:3:-;8126:26;8136:2;8140:7;8126:26;;;;;;;;;;;;:9;:26::i;12269:778::-;12419:4;-1:-1:-1;;;;;12439:13:3;;1465:19:0;:23;12435:606:3;;12474:72;;-1:-1:-1;;;12474:72:3;;-1:-1:-1;;;;;12474:36:3;;;;;:72;;719:10:1;;12525:4:3;;12531:7;;12540:5;;12474:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12474:72:3;;;;;;;;-1:-1:-1;;12474:72:3;;;;;;;;;;;;:::i;:::-;;;12470:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12713:13:3;;12709:266;;12755:60;;-1:-1:-1;;;12755:60:3;;;;;;;:::i;12709:266::-;12927:6;12921:13;12912:6;12908:2;12904:15;12897:38;12470:519;-1:-1:-1;;;;;;12596:51:3;-1:-1:-1;;;12596:51:3;;-1:-1:-1;12589:58:3;;12435:606;-1:-1:-1;13026:4:3;12269:778;;;;;;:::o;4679:970:4:-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;5002:18;5023:26;;;:17;:26;;;;;;4941:51;;-1:-1:-1;5153:28:4;;;5149:323;;-1:-1:-1;;;;;5219:18:4;;5197:19;5219:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5268:30;;;;;;:44;;;5384:30;;:17;:30;;;;;:43;;;5149:323;-1:-1:-1;5565:26:4;;;;:17;:26;;;;;;;;5558:33;;;-1:-1:-1;;;;;5608:18:4;;;;;:12;:18;;;;;:34;;;;;;;5601:41;4679:970::o;5937:1061::-;6211:10;:17;6186:22;;6211:21;;6231:1;;6211:21;:::i;:::-;6242:18;6263:24;;;:15;:24;;;;;;6631:10;:26;;6186:46;;-1:-1:-1;6263:24:4;;6186:46;;6631:26;;;;;;:::i;:::-;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6772:28;;;:15;:28;;;;;;;:41;;;6941:24;;;;;6934:31;6975:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6008:990;;;5937:1061;:::o;3489:217::-;3573:14;3590:20;3607:2;3590:16;:20::i;:::-;-1:-1:-1;;;;;3620:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3664:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3489:217:4:o;1398:662:10:-;1481:7;1523:4;1481:7;1537:488;1561:5;:12;1557:1;:16;1537:488;;;1594:20;1617:5;1623:1;1617:8;;;;;;;;:::i;:::-;;;;;;;1594:31;;1659:12;1643;:28;1639:376;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1769:57;;1639:376;;;2134:13;2182:15;;;2217:4;2210:15;;;2263:4;2247:21;;1943:57;;1639:376;-1:-1:-1;1575:3:10;;;;:::i;:::-;;;;1537:488;;;-1:-1:-1;2041:12:10;1398:662;-1:-1:-1;;;1398:662:10:o;8380:311:3:-;8505:18;8511:2;8515:7;8505:5;:18::i;:::-;8554:54;8585:1;8589:2;8593:7;8602:5;8554:22;:54::i;:::-;8533:151;;;;-1:-1:-1;;;8533:151:3;;;;;;;:::i;9013:427::-;-1:-1:-1;;;;;9092:16:3;;9084:61;;;;-1:-1:-1;;;9084:61:3;;14816:2:14;9084:61:3;;;14798:21:14;;;14835:18;;;14828:30;14894:34;14874:18;;;14867:62;14946:18;;9084:61:3;14614:356:14;9084:61:3;7159:4;7182:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7182:16:3;:30;9155:58;;;;-1:-1:-1;;;9155:58:3;;10439:2:14;9155:58:3;;;10421:21:14;10478:2;10458:18;;;10451:30;10517;10497:18;;;10490:58;10565:18;;9155:58:3;10237:352:14;9155:58:3;9224:45;9253:1;9257:2;9261:7;9224:20;:45::i;:::-;-1:-1:-1;;;;;9280:13:3;;;;;;:9;:13;;;;;:18;;9297:1;;9280:13;:18;;9297:1;;9280:18;:::i;:::-;;;;-1:-1:-1;;9308:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9308:21:3;-1:-1:-1;;;;;9308:21:3;;;;;;;;9345:33;;9308:16;;;9345:33;;9308:16;;9345:33;5598:13:11::1;5531:88:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:14;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:14;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:14;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:14;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:14:o;2674:1099::-;2776:6;2784;2792;2845:2;2833:9;2824:7;2820:23;2816:32;2813:52;;;2861:1;2858;2851:12;2813:52;2884:29;2903:9;2884:29;:::i;:::-;2874:39;;2932:2;2981;2970:9;2966:18;2953:32;2943:42;;3036:2;3025:9;3021:18;3008:32;3059:18;3100:2;3092:6;3089:14;3086:34;;;3116:1;3113;3106:12;3086:34;3154:6;3143:9;3139:22;3129:32;;3199:7;3192:4;3188:2;3184:13;3180:27;3170:55;;3221:1;3218;3211:12;3170:55;3257:2;3244:16;3279:2;3275;3272:10;3269:36;;;3285:18;;:::i;:::-;3331:2;3328:1;3324:10;3314:20;;3354:28;3378:2;3374;3370:11;3354:28;:::i;:::-;3416:15;;;3447:12;;;;3479:11;;;3509;;;3505:20;;3502:33;-1:-1:-1;3499:53:14;;;3548:1;3545;3538:12;3499:53;3570:1;3561:10;;3580:163;3594:2;3591:1;3588:9;3580:163;;;3651:17;;3639:30;;3612:1;3605:9;;;;;3689:12;;;;3721;;3580:163;;;3584:3;3762:5;3752:15;;;;;;;;2674:1099;;;;;:::o;3778:180::-;3837:6;3890:2;3878:9;3869:7;3865:23;3861:32;3858:52;;;3906:1;3903;3896:12;3858:52;-1:-1:-1;3929:23:14;;3778:180;-1:-1:-1;3778:180:14:o;3963:385::-;4049:6;4057;4065;4073;4126:3;4114:9;4105:7;4101:23;4097:33;4094:53;;;4143:1;4140;4133:12;4094:53;-1:-1:-1;;4166:23:14;;;4236:2;4221:18;;4208:32;;-1:-1:-1;4287:2:14;4272:18;;4259:32;;4338:2;4323:18;4310:32;;-1:-1:-1;3963:385:14;-1:-1:-1;3963:385:14:o;4353:245::-;4411:6;4464:2;4452:9;4443:7;4439:23;4435:32;4432:52;;;4480:1;4477;4470:12;4432:52;4519:9;4506:23;4538:30;4562:5;4538:30;:::i;4603:249::-;4672:6;4725:2;4713:9;4704:7;4700:23;4696:32;4693:52;;;4741:1;4738;4731:12;4693:52;4773:9;4767:16;4792:30;4816:5;4792:30;:::i;4857:267::-;4927:6;4980:2;4968:9;4959:7;4955:23;4951:32;4948:52;;;4996:1;4993;4986:12;4948:52;5035:9;5022:23;5074:1;5067:5;5064:12;5054:40;;5090:1;5087;5080:12;5129:450;5198:6;5251:2;5239:9;5230:7;5226:23;5222:32;5219:52;;;5267:1;5264;5257:12;5219:52;5307:9;5294:23;5340:18;5332:6;5329:30;5326:50;;;5372:1;5369;5362:12;5326:50;5395:22;;5448:4;5440:13;;5436:27;-1:-1:-1;5426:55:14;;5477:1;5474;5467:12;5426:55;5500:73;5565:7;5560:2;5547:16;5542:2;5538;5534:11;5500:73;:::i;5769:257::-;5810:3;5848:5;5842:12;5875:6;5870:3;5863:19;5891:63;5947:6;5940:4;5935:3;5931:14;5924:4;5917:5;5913:16;5891:63;:::i;:::-;6008:2;5987:15;-1:-1:-1;;5983:29:14;5974:39;;;;6015:4;5970:50;;5769:257;-1:-1:-1;;5769:257:14:o;6265:470::-;6444:3;6482:6;6476:13;6498:53;6544:6;6539:3;6532:4;6524:6;6520:17;6498:53;:::i;:::-;6614:13;;6573:16;;;;6636:57;6614:13;6573:16;6670:4;6658:17;;6636:57;:::i;:::-;6709:20;;6265:470;-1:-1:-1;;;;6265:470:14:o;7158:488::-;-1:-1:-1;;;;;7427:15:14;;;7409:34;;7479:15;;7474:2;7459:18;;7452:43;7526:2;7511:18;;7504:34;;;7574:3;7569:2;7554:18;;7547:31;;;7352:4;;7595:45;;7620:19;;7612:6;7595:45;:::i;:::-;7587:53;7158:488;-1:-1:-1;;;;;;7158:488:14:o;8025:339::-;8168:2;8153:18;;8201:1;8190:13;;8180:144;;8246:10;8241:3;8237:20;8234:1;8227:31;8281:4;8278:1;8271:15;8309:4;8306:1;8299:15;8180:144;8333:25;;;8025:339;:::o;8369:219::-;8518:2;8507:9;8500:21;8481:4;8538:44;8578:2;8567:9;8563:18;8555:6;8538:44;:::i;9005:414::-;9207:2;9189:21;;;9246:2;9226:18;;;9219:30;9285:34;9280:2;9265:18;;9258:62;-1:-1:-1;;;9351:2:14;9336:18;;9329:48;9409:3;9394:19;;9005:414::o;15749:407::-;15951:2;15933:21;;;15990:2;15970:18;;;15963:30;16029:34;16024:2;16009:18;;16002:62;-1:-1:-1;;;16095:2:14;16080:18;;16073:41;16146:3;16131:19;;15749:407::o;16161:356::-;16363:2;16345:21;;;16382:18;;;16375:30;16441:34;16436:2;16421:18;;16414:62;16508:2;16493:18;;16161:356::o;17340:413::-;17542:2;17524:21;;;17581:2;17561:18;;;17554:30;17620:34;17615:2;17600:18;;17593:62;-1:-1:-1;;;17686:2:14;17671:18;;17664:47;17743:3;17728:19;;17340:413::o;18353:275::-;18424:2;18418:9;18489:2;18470:13;;-1:-1:-1;;18466:27:14;18454:40;;18524:18;18509:34;;18545:22;;;18506:62;18503:88;;;18571:18;;:::i;:::-;18607:2;18600:22;18353:275;;-1:-1:-1;18353:275:14:o;18633:128::-;18673:3;18704:1;18700:6;18697:1;18694:13;18691:39;;;18710:18;;:::i;:::-;-1:-1:-1;18746:9:14;;18633:128::o;18766:120::-;18806:1;18832;18822:35;;18837:18;;:::i;:::-;-1:-1:-1;18871:9:14;;18766:120::o;18891:168::-;18931:7;18997:1;18993;18989:6;18985:14;18982:1;18979:21;18974:1;18967:9;18960:17;18956:45;18953:71;;;19004:18;;:::i;:::-;-1:-1:-1;19044:9:14;;18891:168::o;19064:125::-;19104:4;19132:1;19129;19126:8;19123:34;;;19137:18;;:::i;:::-;-1:-1:-1;19174:9:14;;19064:125::o;19194:258::-;19266:1;19276:113;19290:6;19287:1;19284:13;19276:113;;;19366:11;;;19360:18;19347:11;;;19340:39;19312:2;19305:10;19276:113;;;19407:6;19404:1;19401:13;19398:48;;;-1:-1:-1;;19442:1:14;19424:16;;19417:27;19194:258::o;19457:380::-;19536:1;19532:12;;;;19579;;;19600:61;;19654:4;19646:6;19642:17;19632:27;;19600:61;19707:2;19699:6;19696:14;19676:18;19673:38;19670:161;;;19753:10;19748:3;19744:20;19741:1;19734:31;19788:4;19785:1;19778:15;19816:4;19813:1;19806:15;19670:161;;19457:380;;;:::o;19842:135::-;19881:3;-1:-1:-1;;19902:17:14;;19899:43;;;19922:18;;:::i;:::-;-1:-1:-1;19969:1:14;19958:13;;19842:135::o;19982:112::-;20014:1;20040;20030:35;;20045:18;;:::i;:::-;-1:-1:-1;20079:9:14;;19982:112::o;20099:127::-;20160:10;20155:3;20151:20;20148:1;20141:31;20191:4;20188:1;20181:15;20215:4;20212:1;20205:15;20231:127;20292:10;20287:3;20283:20;20280:1;20273:31;20323:4;20320:1;20313:15;20347:4;20344:1;20337:15;20363:127;20424:10;20419:3;20415:20;20412:1;20405:31;20455:4;20452:1;20445:15;20479:4;20476:1;20469:15;20495:127;20556:10;20551:3;20547:20;20544:1;20537:31;20587:4;20584:1;20577:15;20611:4;20608:1;20601:15;20627:127;20688:10;20683:3;20679:20;20676:1;20669:31;20719:4;20716:1;20709:15;20743:4;20740:1;20733:15;20759:127;20820:10;20815:3;20811:20;20808:1;20801:31;20851:4;20848:1;20841:15;20875:4;20872:1;20865:15;20891:131;-1:-1:-1;;;;;;20965:32:14;;20955:43;;20945:71;;21012:1;21009;21002:12
Swarm Source
ipfs://d79f3bf4387e048f43c91db8e0e2a1720e60176004cbf5fb56e9b2d82acf2f15
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.