Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
516 TREATS
Holders
201
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TREATSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DegenDogs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.0 (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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.0 (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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.0 (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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File: contracts/DegenDogs.sol pragma solidity ^0.8.7; contract DegenDogs is ERC721URIStorage, Ownable { event MintDogs(address indexed minter, uint256 startWith, uint256 times); uint256 public totalDogs; uint256 public totalCount = 5555; uint256 public allowedMintedToken = 1500; uint256 public maxBatch = 5; uint256 public price = 0.05 ether; // 1 eth uint256 public whitelistPrice = 0.04 ether; string public baseURI; bool public started; bool public whiteListStart; mapping(address => bool) whiteList; mapping(address => uint256) whiteListMintCount; constructor( string memory name_, string memory symbol_, string memory baseURI_ ) ERC721(name_, symbol_) { baseURI = baseURI_; _mint(owner(), 1 + totalDogs++); } modifier canWhitelistMint(uint256 _times) { require(whiteListStart, "Hang on boys, youll get in soon"); require(whiteList[msg.sender] == true, "Not whitelisted."); require(totalDogs + _times <= allowedMintedToken, "you cannot mint anymore"); require(whiteListMintCount[msg.sender] - _times >= 0, "Over mint limit for address."); require(totalDogs + _times <= totalCount, "Mint amount will exceed total collection amount."); require(_times > 0 && _times <= maxBatch, "mint wrong number"); require(msg.value == _times * whitelistPrice, "Incorrect transaction value."); _; } modifier canMintMain(uint256 _times){ require(started, "not started"); require(_times > 0 && _times <= maxBatch, "mint wrong number"); require(totalDogs + _times <= allowedMintedToken, "you cannot mint anymore"); require(totalDogs + _times <= totalCount, "Mint amount will exceed total collection amount."); require(msg.value == _times * price, "Incorrect transaction value."); _; } function totalSupply() public view virtual returns (uint256) { return totalDogs; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newURI) public onlyOwner { baseURI = _newURI; } function setTotalCount(uint256 _totalCount) public onlyOwner { totalCount = _totalCount; } function setAllowedMintedToken(uint256 _AllowedTokenAmount) public onlyOwner { allowedMintedToken = _AllowedTokenAmount; } function changePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } // maxBatch function setMaxBatch(uint256 _newMaxBatch) public onlyOwner { maxBatch = _newMaxBatch; } function changeWhiteListPrice(uint256 _newPrice) public onlyOwner { whitelistPrice = _newPrice; } function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner { _setTokenURI(_tokenId, _tokenURI); } function setNormalStart(bool _start) public onlyOwner { started = _start; } function setWhiteListStart(bool _start) public onlyOwner { whiteListStart = _start; } function getWhitelistMintAmount(address _addr) public view virtual returns (uint256) { return whiteListMintCount[_addr]; } function publicMint(uint256 _times) public payable canMintMain(_times){ payable(owner()).transfer(msg.value); emit MintDogs(_msgSender(), totalDogs + 1, _times); for (uint256 i = 0; i < _times; i++) { _mint(_msgSender(), 1 + totalDogs++); } } function whitelistMint(uint256 _times) public payable canWhitelistMint(_times) { payable(owner()).transfer(msg.value); whiteListMintCount[_msgSender()] -= _times; emit MintDogs(_msgSender(), totalDogs + 1, _times); for (uint256 i = 0; i < _times; i++) { _mint(_msgSender(), 1 + totalDogs++); } } function adminMintGiveaways(address _addr) public onlyOwner { require( totalDogs + 1 <= totalCount, "Mint amount will exceed total collection amount." ); emit MintDogs(_addr, totalDogs + 1, 1); _mint(_addr, 1 + totalDogs++); } function addToWhitelist(address _addr) public onlyOwner { whiteList[_addr] = true; whiteListMintCount[_addr] = 3; } function addToWhitelistBulk( address[] memory _addr ) public onlyOwner { for (uint256 i = 0; i < _addr.length; i++) { whiteList[_addr[i]] = true; whiteListMintCount[_addr[i]] = 3; } } //Check address is in whiteList function isAddressInWhitelist(address _addr) public view virtual returns (bool) { return whiteList[_addr] == true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintDogs","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"}],"name":"addToWhitelistBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"adminMintGiveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowedMintedToken","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":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changeWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getWhitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"isAddressInWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"_AllowedTokenAmount","type":"uint256"}],"name":"setAllowedMintedToken","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxBatch","type":"uint256"}],"name":"setMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setNormalStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalCount","type":"uint256"}],"name":"setTotalCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setWhiteListStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDogs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"whiteListStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526115b36009556105dc600a556005600b5566b1a2bc2ec50000600c55668e1bc9bf040000600d553480156200003857600080fd5b5060405162002df038038062002df08339810160408190526200005b9162000405565b82518390839062000074906000906020850190620002a8565b5080516200008a906001906020840190620002a8565b505050620000a7620000a16200010660201b60201c565b6200010a565b8051620000bc90600e906020840190620002a8565b50620000fd620000d46007546001600160a01b031690565b60088054906000620000e683620004ee565b90915550620000f790600162000496565b6200015c565b50505062000538565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001b85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b0316156200021f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001af565b6001600160a01b03821660009081526003602052604081208054600192906200024a90849062000496565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620002b690620004b1565b90600052602060002090601f016020900481019282620002da576000855562000325565b82601f10620002f557805160ff191683800117855562000325565b8280016001018555821562000325579182015b828111156200032557825182559160200191906001019062000308565b506200033392915062000337565b5090565b5b8082111562000333576000815560010162000338565b600082601f8301126200036057600080fd5b81516001600160401b03808211156200037d576200037d62000522565b604051601f8301601f19908116603f01168101908282118183101715620003a857620003a862000522565b81604052838152602092508683858801011115620003c557600080fd5b600091505b83821015620003e95785820183015181830184015290820190620003ca565b83821115620003fb5760008385830101525b9695505050505050565b6000806000606084860312156200041b57600080fd5b83516001600160401b03808211156200043357600080fd5b62000441878388016200034e565b945060208601519150808211156200045857600080fd5b62000466878388016200034e565b935060408601519150808211156200047d57600080fd5b506200048c868287016200034e565b9150509250925092565b60008219821115620004ac57620004ac6200050c565b500190565b600181811c90821680620004c657607f821691505b60208210811415620004e857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200050557620005056200050c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6128a880620005486000396000f3fe6080604052600436106102515760003560e01c80636c0360eb116101395780639afdf2f3116100b6578063b88d4fde1161007a578063b88d4fde146106c4578063c87b56dd146106e4578063e43252d714610704578063e985e9c514610724578063f2fde38b1461076d578063fc1a1c361461078d57600080fd5b80639afdf2f314610618578063a035b1fe1461064e578063a22cb46514610664578063a2b40d1914610684578063a81c804e146106a457600080fd5b806388eae705116100fd57806388eae705146105685780638da5cb5b14610587578063917bb57f146105a557806395d89b41146105c55780639a313299146105da57600080fd5b80636c0360eb146104eb57806370a0823114610500578063715018a6146105205780637bd6f0cc14610535578063868ff4a21461055557600080fd5b8063308d6c47116101d257806349274ec11161019657806349274ec11461043557806355f804b31461045557806357df110a146104755780635f4f603d146104955780636352211e146104b557806367765b87146104d557600080fd5b8063308d6c47146103b357806334eafb11146103c95780633c49a8a9146103df5780633e427f90146103ff57806342842e0e1461041557600080fd5b806318160ddd1161021957806318160ddd146103275780631f2698ab1461034657806323b872dd146103605780632db1154414610380578063300b23d81461039357600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063162094c414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612439565b6107a3565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107f5565b60405161028291906125a0565b3480156102b957600080fd5b506102cd6102c83660046124a8565b610887565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612340565b610914565b005b34801561031357600080fd5b506103056103223660046124c1565b610a2a565b34801561033357600080fd5b506008545b604051908152602001610282565b34801561035257600080fd5b50600f546102769060ff1681565b34801561036c57600080fd5b5061030561037b36600461225e565b610a62565b61030561038e3660046124a8565b610a93565b34801561039f57600080fd5b506103056103ae3660046124a8565b610cd3565b3480156103bf57600080fd5b5061033860085481565b3480156103d557600080fd5b5061033860095481565b3480156103eb57600080fd5b506103056103fa366004612210565b610d02565b34801561040b57600080fd5b50610338600a5481565b34801561042157600080fd5b5061030561043036600461225e565b610dc5565b34801561044157600080fd5b506103056104503660046124a8565b610de0565b34801561046157600080fd5b50610305610470366004612473565b610e0f565b34801561048157600080fd5b506103056104903660046124a8565b610e4c565b3480156104a157600080fd5b506103056104b036600461241e565b610e7b565b3480156104c157600080fd5b506102cd6104d03660046124a8565b610ebf565b3480156104e157600080fd5b50610338600b5481565b3480156104f757600080fd5b506102a0610f36565b34801561050c57600080fd5b5061033861051b366004612210565b610fc4565b34801561052c57600080fd5b5061030561104b565b34801561054157600080fd5b506103056105503660046124a8565b611081565b6103056105633660046124a8565b6110b0565b34801561057457600080fd5b50600f5461027690610100900460ff1681565b34801561059357600080fd5b506007546001600160a01b03166102cd565b3480156105b157600080fd5b506103056105c036600461241e565b6113cb565b3480156105d157600080fd5b506102a0611408565b3480156105e657600080fd5b506102766105f5366004612210565b6001600160a01b031660009081526010602052604090205460ff16151560011490565b34801561062457600080fd5b50610338610633366004612210565b6001600160a01b031660009081526011602052604090205490565b34801561065a57600080fd5b50610338600c5481565b34801561067057600080fd5b5061030561067f366004612316565b611417565b34801561069057600080fd5b5061030561069f3660046124a8565b611422565b3480156106b057600080fd5b506103056106bf36600461236a565b611451565b3480156106d057600080fd5b506103056106df36600461229a565b611535565b3480156106f057600080fd5b506102a06106ff3660046124a8565b61156d565b34801561071057600080fd5b5061030561071f366004612210565b6116d7565b34801561073057600080fd5b5061027661073f36600461222b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077957600080fd5b50610305610788366004612210565b611733565b34801561079957600080fd5b50610338600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107d457506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108049061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061279a565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826117cb565b6108f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061091f82610ebf565b9050806001600160a01b0316836001600160a01b0316141561098d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ef565b336001600160a01b03821614806109a957506109a9813361073f565b610a1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ef565b610a2583836117e8565b505050565b6007546001600160a01b03163314610a545760405162461bcd60e51b81526004016108ef90612605565b610a5e8282611856565b5050565b610a6c33826118e1565b610a885760405162461bcd60e51b81526004016108ef9061263a565b610a258383836119c7565b600f54819060ff16610ad55760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b60448201526064016108ef565b600081118015610ae75750600b548111155b610b275760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600a5481600854610b38919061270c565b1115610b805760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b60095481600854610b91919061270c565b1115610baf5760405162461bcd60e51b81526004016108ef9061268b565b600c54610bbc9082612738565b3414610c0a5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c43573d6000803e3d6000fd5b5060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b115393790610c7690600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a2557610cc1335b60088054906000610cad836127d5565b90915550610cbc90600161270c565b611b67565b80610ccb816127d5565b915050610c90565b6007546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016108ef90612605565b600b55565b6007546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016108ef90612605565b600954600854610d3d90600161270c565b1115610d5b5760405162461bcd60e51b81526004016108ef9061268b565b806001600160a01b03167f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539376008546001610d95919061270c565b60408051918252600160208301520160405180910390a260088054610dc2918391906000610cad836127d5565b50565b610a2583838360405180602001604052806000815250611535565b6007546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016108ef90612605565b600a55565b6007546001600160a01b03163314610e395760405162461bcd60e51b81526004016108ef90612605565b8051610a5e90600e9060208401906120d3565b6007546001600160a01b03163314610e765760405162461bcd60e51b81526004016108ef90612605565b600955565b6007546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108ef90612605565b600f80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ef565b600e8054610f439061279a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f9061279a565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b505050505081565b60006001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ef565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146110755760405162461bcd60e51b81526004016108ef90612605565b61107f6000611c9a565b565b6007546001600160a01b031633146110ab5760405162461bcd60e51b81526004016108ef90612605565b600d55565b600f548190610100900460ff166111095760405162461bcd60e51b815260206004820152601f60248201527f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e0060448201526064016108ef565b3360009081526010602052604090205460ff1615156001146111605760405162461bcd60e51b815260206004820152601060248201526f2737ba103bb434ba32b634b9ba32b21760811b60448201526064016108ef565b600a5481600854611171919061270c565b11156111b95760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b336000908152601160205260408120546111d4908390612757565b10156112225760405162461bcd60e51b815260206004820152601c60248201527f4f766572206d696e74206c696d697420666f7220616464726573732e0000000060448201526064016108ef565b60095481600854611233919061270c565b11156112515760405162461bcd60e51b81526004016108ef9061268b565b6000811180156112635750600b548111155b6112a35760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600d546112b09082612738565b34146112fe5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611337573d6000803e3d6000fd5b503360009081526011602052604081208054849290611357908490612757565b909155505060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539379061138e90600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a25576113b933610c9d565b806113c3816127d5565b9150506113a8565b6007546001600160a01b031633146113f55760405162461bcd60e51b81526004016108ef90612605565b600f805460ff1916911515919091179055565b6060600180546108049061279a565b610a5e338383611cec565b6007546001600160a01b0316331461144c5760405162461bcd60e51b81526004016108ef90612605565b600c55565b6007546001600160a01b0316331461147b5760405162461bcd60e51b81526004016108ef90612605565b60005b8151811015610a5e5760016010600084848151811061149f5761149f612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506003601160008484815181106114f6576114f6612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061152d906127d5565b91505061147e565b61153f33836118e1565b61155b5760405162461bcd60e51b81526004016108ef9061263a565b61156784848484611dbb565b50505050565b6060611578826117cb565b6115de5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016108ef565b600082815260066020526040812080546115f79061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546116239061279a565b80156116705780601f1061164557610100808354040283529160200191611670565b820191906000526020600020905b81548152906001019060200180831161165357829003601f168201915b505050505090506000611681611dee565b9050805160001415611694575092915050565b8151156116c65780826040516020016116ae929190612534565b60405160208183030381529060405292505050919050565b6116cf84611dfd565b949350505050565b6007546001600160a01b031633146117015760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b03166000908152601060209081526040808320805460ff191660011790556011909152902060039055565b6007546001600160a01b0316331461175d5760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b0381166117c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ef565b610dc281611c9a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181d82610ebf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61185f826117cb565b6118c25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016108ef565b60008281526006602090815260409091208251610a25928401906120d3565b60006118ec826117cb565b61194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ef565b600061195883610ebf565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b031661198884610887565b6001600160a01b0316145b806116cf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116cf565b826001600160a01b03166119da82610ebf565b6001600160a01b031614611a425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ef565b6001600160a01b038216611aa45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ef565b611aaf6000826117e8565b6001600160a01b0383166000908152600360205260408120805460019290611ad8908490612757565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0690849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611bbd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ef565b611bc6816117cb565b15611c135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ef565b6001600160a01b0382166000908152600360205260408120805460019290611c3c90849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ef565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc68484846119c7565b611dd284848484611ec8565b6115675760405162461bcd60e51b81526004016108ef906125b3565b6060600e80546108049061279a565b6060611e08826117cb565b611e6c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ef565b6000611e76611dee565b90506000815111611e965760405180602001604052806000815250611ec1565b80611ea084611fd5565b604051602001611eb1929190612534565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b15611fca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f0c903390899088908890600401612563565b602060405180830381600087803b158015611f2657600080fd5b505af1925050508015611f56575060408051601f3d908101601f19168201909252611f5391810190612456565b60015b611fb0573d808015611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b508051611fa85760405162461bcd60e51b81526004016108ef906125b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116cf565b506001949350505050565b606081611ff95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612023578061200d816127d5565b915061201c9050600a83612724565b9150611ffd565b60008167ffffffffffffffff81111561203e5761203e612846565b6040519080825280601f01601f191660200182016040528015612068576020820181803683370190505b5090505b84156116cf5761207d600183612757565b915061208a600a866127f0565b61209590603061270c565b60f81b8183815181106120aa576120aa612830565b60200101906001600160f81b031916908160001a9053506120cc600a86612724565b945061206c565b8280546120df9061279a565b90600052602060002090601f0160209004810192826121015760008555612147565b82601f1061211a57805160ff1916838001178555612147565b82800160010185558215612147579182015b8281111561214757825182559160200191906001019061212c565b50612153929150612157565b5090565b5b808211156121535760008155600101612158565b600067ffffffffffffffff83111561218657612186612846565b612199601f8401601f19166020016126db565b90508281528383830111156121ad57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121db57600080fd5b919050565b803580151581146121db57600080fd5b600082601f83011261220157600080fd5b611ec18383356020850161216c565b60006020828403121561222257600080fd5b611ec1826121c4565b6000806040838503121561223e57600080fd5b612247836121c4565b9150612255602084016121c4565b90509250929050565b60008060006060848603121561227357600080fd5b61227c846121c4565b925061228a602085016121c4565b9150604084013590509250925092565b600080600080608085870312156122b057600080fd5b6122b9856121c4565b93506122c7602086016121c4565b925060408501359150606085013567ffffffffffffffff8111156122ea57600080fd5b8501601f810187136122fb57600080fd5b61230a8782356020840161216c565b91505092959194509250565b6000806040838503121561232957600080fd5b612332836121c4565b9150612255602084016121e0565b6000806040838503121561235357600080fd5b61235c836121c4565b946020939093013593505050565b6000602080838503121561237d57600080fd5b823567ffffffffffffffff8082111561239557600080fd5b818501915085601f8301126123a957600080fd5b8135818111156123bb576123bb612846565b8060051b91506123cc8483016126db565b8181528481019084860184860187018a10156123e757600080fd5b600095505b83861015612411576123fd816121c4565b8352600195909501949186019186016123ec565b5098975050505050505050565b60006020828403121561243057600080fd5b611ec1826121e0565b60006020828403121561244b57600080fd5b8135611ec18161285c565b60006020828403121561246857600080fd5b8151611ec18161285c565b60006020828403121561248557600080fd5b813567ffffffffffffffff81111561249c57600080fd5b6116cf848285016121f0565b6000602082840312156124ba57600080fd5b5035919050565b600080604083850312156124d457600080fd5b82359150602083013567ffffffffffffffff8111156124f257600080fd5b6124fe858286016121f0565b9150509250929050565b6000815180845261252081602086016020860161276e565b601f01601f19169290920160200192915050565b6000835161254681846020880161276e565b83519083019061255a81836020880161276e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259690830184612508565b9695505050505050565b602081526000611ec16020830184612508565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60408201526f363632b1ba34b7b71030b6b7bab73a1760811b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561270457612704612846565b604052919050565b6000821982111561271f5761271f612804565b500190565b6000826127335761273361281a565b500490565b600081600019048311821515161561275257612752612804565b500290565b60008282101561276957612769612804565b500390565b60005b83811015612789578181015183820152602001612771565b838111156115675750506000910152565b600181811c908216806127ae57607f821691505b602082108114156127cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e9576127e9612804565b5060010190565b6000826127ff576127ff61281a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc257600080fdfea2646970667358221220b0ebf5513bed54c230b15662c72670d990bfea847590146e05196928661f500664736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009446567656e446f67730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000654524541545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56667565624c7a626f625273584b6e4448584751376a7a5432716764674a696b7662547445344241637868362f00000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c80636c0360eb116101395780639afdf2f3116100b6578063b88d4fde1161007a578063b88d4fde146106c4578063c87b56dd146106e4578063e43252d714610704578063e985e9c514610724578063f2fde38b1461076d578063fc1a1c361461078d57600080fd5b80639afdf2f314610618578063a035b1fe1461064e578063a22cb46514610664578063a2b40d1914610684578063a81c804e146106a457600080fd5b806388eae705116100fd57806388eae705146105685780638da5cb5b14610587578063917bb57f146105a557806395d89b41146105c55780639a313299146105da57600080fd5b80636c0360eb146104eb57806370a0823114610500578063715018a6146105205780637bd6f0cc14610535578063868ff4a21461055557600080fd5b8063308d6c47116101d257806349274ec11161019657806349274ec11461043557806355f804b31461045557806357df110a146104755780635f4f603d146104955780636352211e146104b557806367765b87146104d557600080fd5b8063308d6c47146103b357806334eafb11146103c95780633c49a8a9146103df5780633e427f90146103ff57806342842e0e1461041557600080fd5b806318160ddd1161021957806318160ddd146103275780631f2698ab1461034657806323b872dd146103605780632db1154414610380578063300b23d81461039357600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063162094c414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612439565b6107a3565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107f5565b60405161028291906125a0565b3480156102b957600080fd5b506102cd6102c83660046124a8565b610887565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612340565b610914565b005b34801561031357600080fd5b506103056103223660046124c1565b610a2a565b34801561033357600080fd5b506008545b604051908152602001610282565b34801561035257600080fd5b50600f546102769060ff1681565b34801561036c57600080fd5b5061030561037b36600461225e565b610a62565b61030561038e3660046124a8565b610a93565b34801561039f57600080fd5b506103056103ae3660046124a8565b610cd3565b3480156103bf57600080fd5b5061033860085481565b3480156103d557600080fd5b5061033860095481565b3480156103eb57600080fd5b506103056103fa366004612210565b610d02565b34801561040b57600080fd5b50610338600a5481565b34801561042157600080fd5b5061030561043036600461225e565b610dc5565b34801561044157600080fd5b506103056104503660046124a8565b610de0565b34801561046157600080fd5b50610305610470366004612473565b610e0f565b34801561048157600080fd5b506103056104903660046124a8565b610e4c565b3480156104a157600080fd5b506103056104b036600461241e565b610e7b565b3480156104c157600080fd5b506102cd6104d03660046124a8565b610ebf565b3480156104e157600080fd5b50610338600b5481565b3480156104f757600080fd5b506102a0610f36565b34801561050c57600080fd5b5061033861051b366004612210565b610fc4565b34801561052c57600080fd5b5061030561104b565b34801561054157600080fd5b506103056105503660046124a8565b611081565b6103056105633660046124a8565b6110b0565b34801561057457600080fd5b50600f5461027690610100900460ff1681565b34801561059357600080fd5b506007546001600160a01b03166102cd565b3480156105b157600080fd5b506103056105c036600461241e565b6113cb565b3480156105d157600080fd5b506102a0611408565b3480156105e657600080fd5b506102766105f5366004612210565b6001600160a01b031660009081526010602052604090205460ff16151560011490565b34801561062457600080fd5b50610338610633366004612210565b6001600160a01b031660009081526011602052604090205490565b34801561065a57600080fd5b50610338600c5481565b34801561067057600080fd5b5061030561067f366004612316565b611417565b34801561069057600080fd5b5061030561069f3660046124a8565b611422565b3480156106b057600080fd5b506103056106bf36600461236a565b611451565b3480156106d057600080fd5b506103056106df36600461229a565b611535565b3480156106f057600080fd5b506102a06106ff3660046124a8565b61156d565b34801561071057600080fd5b5061030561071f366004612210565b6116d7565b34801561073057600080fd5b5061027661073f36600461222b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077957600080fd5b50610305610788366004612210565b611733565b34801561079957600080fd5b50610338600d5481565b60006001600160e01b031982166380ac58cd60e01b14806107d457506001600160e01b03198216635b5e139f60e01b145b806107ef57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108049061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546108309061279a565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b6000610892826117cb565b6108f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061091f82610ebf565b9050806001600160a01b0316836001600160a01b0316141561098d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ef565b336001600160a01b03821614806109a957506109a9813361073f565b610a1b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ef565b610a2583836117e8565b505050565b6007546001600160a01b03163314610a545760405162461bcd60e51b81526004016108ef90612605565b610a5e8282611856565b5050565b610a6c33826118e1565b610a885760405162461bcd60e51b81526004016108ef9061263a565b610a258383836119c7565b600f54819060ff16610ad55760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b60448201526064016108ef565b600081118015610ae75750600b548111155b610b275760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600a5481600854610b38919061270c565b1115610b805760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b60095481600854610b91919061270c565b1115610baf5760405162461bcd60e51b81526004016108ef9061268b565b600c54610bbc9082612738565b3414610c0a5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610c43573d6000803e3d6000fd5b5060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b115393790610c7690600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a2557610cc1335b60088054906000610cad836127d5565b90915550610cbc90600161270c565b611b67565b80610ccb816127d5565b915050610c90565b6007546001600160a01b03163314610cfd5760405162461bcd60e51b81526004016108ef90612605565b600b55565b6007546001600160a01b03163314610d2c5760405162461bcd60e51b81526004016108ef90612605565b600954600854610d3d90600161270c565b1115610d5b5760405162461bcd60e51b81526004016108ef9061268b565b806001600160a01b03167f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539376008546001610d95919061270c565b60408051918252600160208301520160405180910390a260088054610dc2918391906000610cad836127d5565b50565b610a2583838360405180602001604052806000815250611535565b6007546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016108ef90612605565b600a55565b6007546001600160a01b03163314610e395760405162461bcd60e51b81526004016108ef90612605565b8051610a5e90600e9060208401906120d3565b6007546001600160a01b03163314610e765760405162461bcd60e51b81526004016108ef90612605565b600955565b6007546001600160a01b03163314610ea55760405162461bcd60e51b81526004016108ef90612605565b600f80549115156101000261ff0019909216919091179055565b6000818152600260205260408120546001600160a01b0316806107ef5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ef565b600e8054610f439061279a565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6f9061279a565b8015610fbc5780601f10610f9157610100808354040283529160200191610fbc565b820191906000526020600020905b815481529060010190602001808311610f9f57829003601f168201915b505050505081565b60006001600160a01b03821661102f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ef565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146110755760405162461bcd60e51b81526004016108ef90612605565b61107f6000611c9a565b565b6007546001600160a01b031633146110ab5760405162461bcd60e51b81526004016108ef90612605565b600d55565b600f548190610100900460ff166111095760405162461bcd60e51b815260206004820152601f60248201527f48616e67206f6e20626f79732c20796f756c6c2067657420696e20736f6f6e0060448201526064016108ef565b3360009081526010602052604090205460ff1615156001146111605760405162461bcd60e51b815260206004820152601060248201526f2737ba103bb434ba32b634b9ba32b21760811b60448201526064016108ef565b600a5481600854611171919061270c565b11156111b95760405162461bcd60e51b8152602060048201526017602482015276796f752063616e6e6f74206d696e7420616e796d6f726560481b60448201526064016108ef565b336000908152601160205260408120546111d4908390612757565b10156112225760405162461bcd60e51b815260206004820152601c60248201527f4f766572206d696e74206c696d697420666f7220616464726573732e0000000060448201526064016108ef565b60095481600854611233919061270c565b11156112515760405162461bcd60e51b81526004016108ef9061268b565b6000811180156112635750600b548111155b6112a35760405162461bcd60e51b815260206004820152601160248201527036b4b73a103bb937b73390373ab6b132b960791b60448201526064016108ef565b600d546112b09082612738565b34146112fe5760405162461bcd60e51b815260206004820152601c60248201527f496e636f7272656374207472616e73616374696f6e2076616c75652e0000000060448201526064016108ef565b6007546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611337573d6000803e3d6000fd5b503360009081526011602052604081208054849290611357908490612757565b909155505060085433907f6347dea908e37b572d7afa6e86e42abd1597e56020d130ff21c3f4a0b11539379061138e90600161270c565b60408051918252602082018690520160405180910390a260005b82811015610a25576113b933610c9d565b806113c3816127d5565b9150506113a8565b6007546001600160a01b031633146113f55760405162461bcd60e51b81526004016108ef90612605565b600f805460ff1916911515919091179055565b6060600180546108049061279a565b610a5e338383611cec565b6007546001600160a01b0316331461144c5760405162461bcd60e51b81526004016108ef90612605565b600c55565b6007546001600160a01b0316331461147b5760405162461bcd60e51b81526004016108ef90612605565b60005b8151811015610a5e5760016010600084848151811061149f5761149f612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506003601160008484815181106114f6576114f6612830565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550808061152d906127d5565b91505061147e565b61153f33836118e1565b61155b5760405162461bcd60e51b81526004016108ef9061263a565b61156784848484611dbb565b50505050565b6060611578826117cb565b6115de5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b60648201526084016108ef565b600082815260066020526040812080546115f79061279a565b80601f01602080910402602001604051908101604052809291908181526020018280546116239061279a565b80156116705780601f1061164557610100808354040283529160200191611670565b820191906000526020600020905b81548152906001019060200180831161165357829003601f168201915b505050505090506000611681611dee565b9050805160001415611694575092915050565b8151156116c65780826040516020016116ae929190612534565b60405160208183030381529060405292505050919050565b6116cf84611dfd565b949350505050565b6007546001600160a01b031633146117015760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b03166000908152601060209081526040808320805460ff191660011790556011909152902060039055565b6007546001600160a01b0316331461175d5760405162461bcd60e51b81526004016108ef90612605565b6001600160a01b0381166117c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ef565b610dc281611c9a565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061181d82610ebf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61185f826117cb565b6118c25760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016108ef565b60008281526006602090815260409091208251610a25928401906120d3565b60006118ec826117cb565b61194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ef565b600061195883610ebf565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b031661198884610887565b6001600160a01b0316145b806116cf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116cf565b826001600160a01b03166119da82610ebf565b6001600160a01b031614611a425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ef565b6001600160a01b038216611aa45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ef565b611aaf6000826117e8565b6001600160a01b0383166000908152600360205260408120805460019290611ad8908490612757565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b0690849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b038216611bbd5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ef565b611bc6816117cb565b15611c135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ef565b6001600160a01b0382166000908152600360205260408120805460019290611c3c90849061270c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611d4e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ef565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611dc68484846119c7565b611dd284848484611ec8565b6115675760405162461bcd60e51b81526004016108ef906125b3565b6060600e80546108049061279a565b6060611e08826117cb565b611e6c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ef565b6000611e76611dee565b90506000815111611e965760405180602001604052806000815250611ec1565b80611ea084611fd5565b604051602001611eb1929190612534565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b15611fca57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f0c903390899088908890600401612563565b602060405180830381600087803b158015611f2657600080fd5b505af1925050508015611f56575060408051601f3d908101601f19168201909252611f5391810190612456565b60015b611fb0573d808015611f84576040519150601f19603f3d011682016040523d82523d6000602084013e611f89565b606091505b508051611fa85760405162461bcd60e51b81526004016108ef906125b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116cf565b506001949350505050565b606081611ff95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612023578061200d816127d5565b915061201c9050600a83612724565b9150611ffd565b60008167ffffffffffffffff81111561203e5761203e612846565b6040519080825280601f01601f191660200182016040528015612068576020820181803683370190505b5090505b84156116cf5761207d600183612757565b915061208a600a866127f0565b61209590603061270c565b60f81b8183815181106120aa576120aa612830565b60200101906001600160f81b031916908160001a9053506120cc600a86612724565b945061206c565b8280546120df9061279a565b90600052602060002090601f0160209004810192826121015760008555612147565b82601f1061211a57805160ff1916838001178555612147565b82800160010185558215612147579182015b8281111561214757825182559160200191906001019061212c565b50612153929150612157565b5090565b5b808211156121535760008155600101612158565b600067ffffffffffffffff83111561218657612186612846565b612199601f8401601f19166020016126db565b90508281528383830111156121ad57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146121db57600080fd5b919050565b803580151581146121db57600080fd5b600082601f83011261220157600080fd5b611ec18383356020850161216c565b60006020828403121561222257600080fd5b611ec1826121c4565b6000806040838503121561223e57600080fd5b612247836121c4565b9150612255602084016121c4565b90509250929050565b60008060006060848603121561227357600080fd5b61227c846121c4565b925061228a602085016121c4565b9150604084013590509250925092565b600080600080608085870312156122b057600080fd5b6122b9856121c4565b93506122c7602086016121c4565b925060408501359150606085013567ffffffffffffffff8111156122ea57600080fd5b8501601f810187136122fb57600080fd5b61230a8782356020840161216c565b91505092959194509250565b6000806040838503121561232957600080fd5b612332836121c4565b9150612255602084016121e0565b6000806040838503121561235357600080fd5b61235c836121c4565b946020939093013593505050565b6000602080838503121561237d57600080fd5b823567ffffffffffffffff8082111561239557600080fd5b818501915085601f8301126123a957600080fd5b8135818111156123bb576123bb612846565b8060051b91506123cc8483016126db565b8181528481019084860184860187018a10156123e757600080fd5b600095505b83861015612411576123fd816121c4565b8352600195909501949186019186016123ec565b5098975050505050505050565b60006020828403121561243057600080fd5b611ec1826121e0565b60006020828403121561244b57600080fd5b8135611ec18161285c565b60006020828403121561246857600080fd5b8151611ec18161285c565b60006020828403121561248557600080fd5b813567ffffffffffffffff81111561249c57600080fd5b6116cf848285016121f0565b6000602082840312156124ba57600080fd5b5035919050565b600080604083850312156124d457600080fd5b82359150602083013567ffffffffffffffff8111156124f257600080fd5b6124fe858286016121f0565b9150509250929050565b6000815180845261252081602086016020860161276e565b601f01601f19169290920160200192915050565b6000835161254681846020880161276e565b83519083019061255a81836020880161276e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061259690830184612508565b9695505050505050565b602081526000611ec16020830184612508565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526030908201527f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60408201526f363632b1ba34b7b71030b6b7bab73a1760811b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561270457612704612846565b604052919050565b6000821982111561271f5761271f612804565b500190565b6000826127335761273361281a565b500490565b600081600019048311821515161561275257612752612804565b500290565b60008282101561276957612769612804565b500390565b60005b83811015612789578181015183820152602001612771565b838111156115675750506000910152565b600181811c908216806127ae57607f821691505b602082108114156127cf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127e9576127e9612804565b5060010190565b6000826127ff576127ff61281a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610dc257600080fdfea2646970667358221220b0ebf5513bed54c230b15662c72670d990bfea847590146e05196928661f500664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009446567656e446f67730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000654524541545300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56667565624c7a626f625273584b6e4448584751376a7a5432716764674a696b7662547445344241637868362f00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): DegenDogs
Arg [1] : symbol_ (string): TREATS
Arg [2] : baseURI_ (string): ipfs://QmVfuebLzbobRsXKnDHXGQ7jzT2qgdgJikvbTtE4BAcxh6/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 446567656e446f67730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 5452454154530000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d56667565624c7a626f625273584b6e4448584751376a7a
Arg [9] : 5432716764674a696b7662547445344241637868362f00000000000000000000
Deployed Bytecode Sourcemap
38287:4957:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23773:305;;;;;;;;;;-1:-1:-1;23773:305:0;;;;;:::i;:::-;;:::i;:::-;;;7139:14:1;;7132:22;7114:41;;7102:2;7087:18;23773:305:0;;;;;;;;24718:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26277:221::-;;;;;;;;;;-1:-1:-1;26277:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6437:32:1;;;6419:51;;6407:2;6392:18;26277:221:0;6273:203:1;25800:411:0;;;;;;;;;;-1:-1:-1;25800:411:0;;;;;:::i;:::-;;:::i;:::-;;41100:156;;;;;;;;;;-1:-1:-1;41100:156:0;;;;;:::i;:::-;;:::i;40181:96::-;;;;;;;;;;-1:-1:-1;40260:9:0;;40181:96;;;17625:25:1;;;17613:2;17598:18;40181:96:0;17479:177:1;38698:19:0;;;;;;;;;;-1:-1:-1;38698:19:0;;;;;;;;27027:339;;;;;;;;;;-1:-1:-1;27027:339:0;;;;;:::i;:::-;;:::i;41645:296::-;;;;;;:::i;:::-;;:::i;40874:102::-;;;;;;;;;;-1:-1:-1;40874:102:0;;;;;:::i;:::-;;:::i;38421:24::-;;;;;;;;;;;;;;;;38452:32;;;;;;;;;;;;;;;;42315:293;;;;;;;;;;-1:-1:-1;42315:293:0;;;;;:::i;:::-;;:::i;38491:40::-;;;;;;;;;;;;;;;;27437:185;;;;;;;;;;-1:-1:-1;27437:185:0;;;;;:::i;:::-;;:::i;40610:136::-;;;;;;;;;;-1:-1:-1;40610:136:0;;;;;:::i;:::-;;:::i;40397:96::-;;;;;;;;;;-1:-1:-1;40397:96:0;;;;;:::i;:::-;;:::i;40499:104::-;;;;;;;;;;-1:-1:-1;40499:104:0;;;;;:::i;:::-;;:::i;41357:99::-;;;;;;;;;;-1:-1:-1;41357:99:0;;;;;:::i;:::-;;:::i;24412:239::-;;;;;;;;;;-1:-1:-1;24412:239:0;;;;;:::i;:::-;;:::i;38538:27::-;;;;;;;;;;;;;;;;38670:21;;;;;;;;;;;;;:::i;24142:208::-;;;;;;;;;;-1:-1:-1;24142:208:0;;;;;:::i;:::-;;:::i;4761:103::-;;;;;;;;;;;;;:::i;40983:111::-;;;;;;;;;;-1:-1:-1;40983:111:0;;;;;:::i;:::-;;:::i;41951:358::-;;;;;;:::i;:::-;;:::i;38724:26::-;;;;;;;;;;-1:-1:-1;38724:26:0;;;;;;;;;;;4110:87;;;;;;;;;;-1:-1:-1;4183:6:0;;-1:-1:-1;;;;;4183:6:0;4110:87;;41262:89;;;;;;;;;;-1:-1:-1;41262:89:0;;;;;:::i;:::-;;:::i;24887:104::-;;;;;;;;;;;;;:::i;43070:171::-;;;;;;;;;;-1:-1:-1;43070:171:0;;;;;:::i;:::-;-1:-1:-1;;;;;43209:16:0;43180:4;43209:16;;;:9;:16;;;;;;;;:24;;:16;:24;;43070:171;41462:177;;;;;;;;;;-1:-1:-1;41462:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;41606:25:0;41574:7;41606:25;;;:18;:25;;;;;;;41462:177;38572:33;;;;;;;;;;;;;;;;26570:155;;;;;;;;;;-1:-1:-1;26570:155:0;;;;;:::i;:::-;;:::i;40758:93::-;;;;;;;;;;-1:-1:-1;40758:93:0;;;;;:::i;:::-;;:::i;42781:246::-;;;;;;;;;;-1:-1:-1;42781:246:0;;;;;:::i;:::-;;:::i;27693:328::-;;;;;;;;;;-1:-1:-1;27693:328:0;;;;;:::i;:::-;;:::i;36724:679::-;;;;;;;;;;-1:-1:-1;36724:679:0;;;;;:::i;:::-;;:::i;42614:161::-;;;;;;;;;;-1:-1:-1;42614:161:0;;;;;:::i;:::-;;:::i;26796:164::-;;;;;;;;;;-1:-1:-1;26796:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26917:25:0;;;26893:4;26917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26796:164;5019:201;;;;;;;;;;-1:-1:-1;5019:201:0;;;;;:::i;:::-;;:::i;38621:42::-;;;;;;;;;;;;;;;;23773:305;23875:4;-1:-1:-1;;;;;;23912:40:0;;-1:-1:-1;;;23912:40:0;;:105;;-1:-1:-1;;;;;;;23969:48:0;;-1:-1:-1;;;23969:48:0;23912:105;:158;;;-1:-1:-1;;;;;;;;;;16651:40:0;;;24034:36;23892:178;23773:305;-1:-1:-1;;23773:305:0:o;24718:100::-;24772:13;24805:5;24798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24718:100;:::o;26277:221::-;26353:7;26381:16;26389:7;26381;:16::i;:::-;26373:73;;;;-1:-1:-1;;;26373:73:0;;13799:2:1;26373:73:0;;;13781:21:1;13838:2;13818:18;;;13811:30;13877:34;13857:18;;;13850:62;-1:-1:-1;;;13928:18:1;;;13921:42;13980:19;;26373:73:0;;;;;;;;;-1:-1:-1;26466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26466:24:0;;26277:221::o;25800:411::-;25881:13;25897:23;25912:7;25897:14;:23::i;:::-;25881:39;;25945:5;-1:-1:-1;;;;;25939:11:0;:2;-1:-1:-1;;;;;25939:11:0;;;25931:57;;;;-1:-1:-1;;;25931:57:0;;15399:2:1;25931:57:0;;;15381:21:1;15438:2;15418:18;;;15411:30;15477:34;15457:18;;;15450:62;-1:-1:-1;;;15528:18:1;;;15521:31;15569:19;;25931:57:0;15197:397:1;25931:57:0;2914:10;-1:-1:-1;;;;;26023:21:0;;;;:62;;-1:-1:-1;26048:37:0;26065:5;2914:10;26796:164;:::i;26048:37::-;26001:168;;;;-1:-1:-1;;;26001:168:0;;11002:2:1;26001:168:0;;;10984:21:1;11041:2;11021:18;;;11014:30;11080:34;11060:18;;;11053:62;11151:26;11131:18;;;11124:54;11195:19;;26001:168:0;10800:420:1;26001:168:0;26182:21;26191:2;26195:7;26182:8;:21::i;:::-;25870:341;25800:411;;:::o;41100:156::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;41215:33:::1;41228:8;41238:9;41215:12;:33::i;:::-;41100:156:::0;;:::o;27027:339::-;27222:41;2914:10;27255:7;27222:18;:41::i;:::-;27214:103;;;;-1:-1:-1;;;27214:103:0;;;;;;;:::i;:::-;27330:28;27340:4;27346:2;27350:7;27330:9;:28::i;41645:296::-;39785:7;;41708:6;;39785:7;;39777:31;;;;-1:-1:-1;;;39777:31:0;;16981:2:1;39777:31:0;;;16963:21:1;17020:2;17000:18;;;16993:30;-1:-1:-1;;;17039:18:1;;;17032:41;17090:18;;39777:31:0;16779:335:1;39777:31:0;39836:1;39827:6;:10;:32;;;;;39851:8;;39841:6;:18;;39827:32;39819:62;;;;-1:-1:-1;;;39819:62:0;;9127:2:1;39819:62:0;;;9109:21:1;9166:2;9146:18;;;9139:30;-1:-1:-1;;;9185:18:1;;;9178:47;9242:18;;39819:62:0;8925:341:1;39819:62:0;39922:18;;39912:6;39900:9;;:18;;;;:::i;:::-;:40;;39892:76;;;;-1:-1:-1;;;39892:76:0;;7592:2:1;39892:76:0;;;7574:21:1;7631:2;7611:18;;;7604:30;-1:-1:-1;;;7650:18:1;;;7643:53;7713:18;;39892:76:0;7390:347:1;39892:76:0;40009:10;;39999:6;39987:9;;:18;;;;:::i;:::-;:32;;39979:93;;;;-1:-1:-1;;;39979:93:0;;;;;;;:::i;:::-;40113:5;;40104:14;;:6;:14;:::i;:::-;40091:9;:27;40083:68;;;;-1:-1:-1;;;40083:68:0;;12663:2:1;40083:68:0;;;12645:21:1;12702:2;12682:18;;;12675:30;12741;12721:18;;;12714:58;12789:18;;40083:68:0;12461:352:1;40083:68:0;4183:6;;41726:36:::1;::::0;-1:-1:-1;;;;;4183:6:0;;;;41752:9:::1;41726:36:::0;::::1;;;::::0;::::1;::::0;;;41752:9;4183:6;41726:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;41801:9:0::1;::::0;2914:10;;41778:45:::1;::::0;41801:13:::1;::::0;41813:1:::1;41801:13;:::i;:::-;41778:45;::::0;;17843:25:1;;;17899:2;17884:18;;17877:34;;;17816:18;41778:45:0::1;;;;;;;41839:9;41834:100;41858:6;41854:1;:10;41834:100;;;41886:36;2914:10:::0;41892:12:::1;41910:9;:11:::0;;;:9:::1;:11;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;41906:15:0::1;::::0;:1:::1;:15;:::i;:::-;41886:5;:36::i;:::-;41866:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41834:100;;40874:102:::0;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;40945:8:::1;:23:::0;40874:102::o;42315:293::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;42425:10:::1;::::0;42408:9:::1;::::0;:13:::1;::::0;42420:1:::1;42408:13;:::i;:::-;:27;;42386:125;;;;-1:-1:-1::0;;;42386:125:0::1;;;;;;;:::i;:::-;42536:5;-1:-1:-1::0;;;;;42527:33:0::1;;42543:9;;42555:1;42543:13;;;;:::i;:::-;42527:33;::::0;;17843:25:1;;;42558:1:0::1;17899:2:1::0;17884:18;;17877:34;17816:18;42527:33:0::1;;;;;;;42588:9;:11:::0;;42571:29:::1;::::0;42577:5;;42588:11;:9:::1;:11;::::0;::::1;:::i;42571:29::-;42315:293:::0;:::o;27437:185::-;27575:39;27592:4;27598:2;27602:7;27575:39;;;;;;;;;;;;:16;:39::i;40610:136::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;40698:18:::1;:40:::0;40610:136::o;40397:96::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;40468:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;40499:104::-:0;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;40571:10:::1;:24:::0;40499:104::o;41357:99::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;41425:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;41425:23:0;;::::1;::::0;;;::::1;::::0;;41357:99::o;24412:239::-;24484:7;24520:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24520:16:0;24555:19;24547:73;;;;-1:-1:-1;;;24547:73:0;;11838:2:1;24547:73:0;;;11820:21:1;11877:2;11857:18;;;11850:30;11916:34;11896:18;;;11889:62;-1:-1:-1;;;11967:18:1;;;11960:39;12016:19;;24547:73:0;11636:405:1;38670:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24142:208::-;24214:7;-1:-1:-1;;;;;24242:19:0;;24234:74;;;;-1:-1:-1;;;24234:74:0;;11427:2:1;24234:74:0;;;11409:21:1;11466:2;11446:18;;;11439:30;11505:34;11485:18;;;11478:62;-1:-1:-1;;;11556:18:1;;;11549:40;11606:19;;24234:74:0;11225:406:1;24234:74:0;-1:-1:-1;;;;;;24326:16:0;;;;;:9;:16;;;;;;;24142:208::o;4761:103::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;4826:30:::1;4853:1;4826:18;:30::i;:::-;4761:103::o:0;40983:111::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;41060:14:::1;:26:::0;40983:111::o;41951:358::-;39137:14;;42022:6;;39137:14;;;;;39129:58;;;;-1:-1:-1;;;39129:58:0;;17321:2:1;39129:58:0;;;17303:21:1;17360:2;17340:18;;;17333:30;17399:33;17379:18;;;17372:61;17450:18;;39129:58:0;17119:355:1;39129:58:0;39216:10;39206:21;;;;:9;:21;;;;;;;;:29;;:21;:29;39198:58;;;;-1:-1:-1;;;39198:58:0;;16219:2:1;39198:58:0;;;16201:21:1;16258:2;16238:18;;;16231:30;-1:-1:-1;;;16277:18:1;;;16270:46;16333:18;;39198:58:0;16017:340:1;39198:58:0;39297:18;;39287:6;39275:9;;:18;;;;:::i;:::-;:40;;39267:76;;;;-1:-1:-1;;;39267:76:0;;7592:2:1;39267:76:0;;;7574:21:1;7631:2;7611:18;;;7604:30;-1:-1:-1;;;7650:18:1;;;7643:53;7713:18;;39267:76:0;7390:347:1;39267:76:0;39381:10;39405:1;39362:30;;;:18;:30;;;;;;:39;;39395:6;;39362:39;:::i;:::-;:44;;39354:85;;;;-1:-1:-1;;;39354:85:0;;10232:2:1;39354:85:0;;;10214:21:1;10271:2;10251:18;;;10244:30;10310;10290:18;;;10283:58;10358:18;;39354:85:0;10030:352:1;39354:85:0;39480:10;;39470:6;39458:9;;:18;;;;:::i;:::-;:32;;39450:93;;;;-1:-1:-1;;;39450:93:0;;;;;;;:::i;:::-;39571:1;39562:6;:10;:32;;;;;39586:8;;39576:6;:18;;39562:32;39554:62;;;;-1:-1:-1;;;39554:62:0;;9127:2:1;39554:62:0;;;9109:21:1;9166:2;9146:18;;;9139:30;-1:-1:-1;;;9185:18:1;;;9178:47;9242:18;;39554:62:0;8925:341:1;39554:62:0;39657:14;;39648:23;;:6;:23;:::i;:::-;39635:9;:36;39627:77;;;;-1:-1:-1;;;39627:77:0;;12663:2:1;39627:77:0;;;12645:21:1;12702:2;12682:18;;;12675:30;12741;12721:18;;;12714:58;12789:18;;39627:77:0;12461:352:1;39627:77:0;4183:6;;42041:36:::1;::::0;-1:-1:-1;;;;;4183:6:0;;;;42067:9:::1;42041:36:::0;::::1;;;::::0;::::1;::::0;;;42067:9;4183:6;42041:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;2914:10:0;42088:32:::1;::::0;;;:18:::1;:32;::::0;;;;:42;;42124:6;;42088:32;:42:::1;::::0;42124:6;;42088:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;42169:9:0::1;::::0;2914:10;;42146:45:::1;::::0;42169:13:::1;::::0;42181:1:::1;42169:13;:::i;:::-;42146:45;::::0;;17843:25:1;;;17899:2;17884:18;;17877:34;;;17816:18;42146:45:0::1;;;;;;;42207:9;42202:100;42226:6;42222:1;:10;42202:100;;;42254:36;2914:10:::0;42260:12:::1;2834:98:::0;42254:36:::1;42234:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42202:100;;41262:89:::0;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;41327:7:::1;:16:::0;;-1:-1:-1;;41327:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41262:89::o;24887:104::-;24943:13;24976:7;24969:14;;;;;:::i;26570:155::-;26665:52;2914:10;26698:8;26708;26665:18;:52::i;40758:93::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;40826:5:::1;:17:::0;40758:93::o;42781:246::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;42882:9:::1;42877:143;42901:5;:12;42897:1;:16;42877:143;;;42957:4;42935:9;:19;42945:5;42951:1;42945:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42935:19:0::1;-1:-1:-1::0;;;;;42935:19:0::1;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;43007:1;42976:18;:28;42995:5;43001:1;42995:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;42976:28:0::1;-1:-1:-1::0;;;;;42976:28:0::1;;;;;;;;;;;;:32;;;;42915:3;;;;;:::i;:::-;;;;42877:143;;27693:328:::0;27868:41;2914:10;27901:7;27868:18;:41::i;:::-;27860:103;;;;-1:-1:-1;;;27860:103:0;;;;;;;:::i;:::-;27974:39;27988:4;27994:2;27998:7;28007:5;27974:13;:39::i;:::-;27693:328;;;;:::o;36724:679::-;36797:13;36831:16;36839:7;36831;:16::i;:::-;36823:78;;;;-1:-1:-1;;;36823:78:0;;13381:2:1;36823:78:0;;;13363:21:1;13420:2;13400:18;;;13393:30;13459:34;13439:18;;;13432:62;-1:-1:-1;;;13510:18:1;;;13503:47;13567:19;;36823:78:0;13179:413:1;36823:78:0;36914:23;36940:19;;;:10;:19;;;;;36914:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36970:18;36991:10;:8;:10::i;:::-;36970:31;;37083:4;37077:18;37099:1;37077:23;37073:72;;;-1:-1:-1;37124:9:0;36724:679;-1:-1:-1;;36724:679:0:o;37073:72::-;37249:23;;:27;37245:108;;37324:4;37330:9;37307:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37293:48;;;;36724:679;;;:::o;37245:108::-;37372:23;37387:7;37372:14;:23::i;:::-;37365:30;36724:679;-1:-1:-1;;;;36724:679:0:o;42614:161::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42704:16:0::1;;::::0;;;:9:::1;:16;::::0;;;;;;;:23;;-1:-1:-1;;42704:23:0::1;42723:4;42704:23;::::0;;42738:18:::1;:25:::0;;;;;42766:1:::1;42738:29:::0;;42614:161::o;5019:201::-;4183:6;;-1:-1:-1;;;;;4183:6:0;2914:10;4330:23;4322:68;;;;-1:-1:-1;;;4322:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5108:22:0;::::1;5100:73;;;::::0;-1:-1:-1;;;5100:73:0;;8363:2:1;5100:73:0::1;::::0;::::1;8345:21:1::0;8402:2;8382:18;;;8375:30;8441:34;8421:18;;;8414:62;-1:-1:-1;;;8492:18:1;;;8485:36;8538:19;;5100:73:0::1;8161:402:1::0;5100:73:0::1;5184:28;5203:8;5184:18;:28::i;29531:127::-:0;29596:4;29620:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29620:16:0;:30;;;29531:127::o;33513:174::-;33588:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33588:29:0;-1:-1:-1;;;;;33588:29:0;;;;;;;;:24;;33642:23;33588:24;33642:14;:23::i;:::-;-1:-1:-1;;;;;33633:46:0;;;;;;;;;;;33513:174;;:::o;37559:217::-;37659:16;37667:7;37659;:16::i;:::-;37651:75;;;;-1:-1:-1;;;37651:75:0;;12248:2:1;37651:75:0;;;12230:21:1;12287:2;12267:18;;;12260:30;12326:34;12306:18;;;12299:62;-1:-1:-1;;;12377:18:1;;;12370:44;12431:19;;37651:75:0;12046:410:1;37651:75:0;37737:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;29825:348::-;29918:4;29943:16;29951:7;29943;:16::i;:::-;29935:73;;;;-1:-1:-1;;;29935:73:0;;10589:2:1;29935:73:0;;;10571:21:1;10628:2;10608:18;;;10601:30;10667:34;10647:18;;;10640:62;-1:-1:-1;;;10718:18:1;;;10711:42;10770:19;;29935:73:0;10387:408:1;29935:73:0;30019:13;30035:23;30050:7;30035:14;:23::i;:::-;30019:39;;30088:5;-1:-1:-1;;;;;30077:16:0;:7;-1:-1:-1;;;;;30077:16:0;;:51;;;;30121:7;-1:-1:-1;;;;;30097:31:0;:20;30109:7;30097:11;:20::i;:::-;-1:-1:-1;;;;;30097:31:0;;30077:51;:87;;;-1:-1:-1;;;;;;26917:25:0;;;26893:4;26917:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30132:32;26796:164;32817:578;32976:4;-1:-1:-1;;;;;32949:31:0;:23;32964:7;32949:14;:23::i;:::-;-1:-1:-1;;;;;32949:31:0;;32941:85;;;;-1:-1:-1;;;32941:85:0;;14573:2:1;32941:85:0;;;14555:21:1;14612:2;14592:18;;;14585:30;14651:34;14631:18;;;14624:62;-1:-1:-1;;;14702:18:1;;;14695:39;14751:19;;32941:85:0;14371:405:1;32941:85:0;-1:-1:-1;;;;;33045:16:0;;33037:65;;;;-1:-1:-1;;;33037:65:0;;9473:2:1;33037:65:0;;;9455:21:1;9512:2;9492:18;;;9485:30;9551:34;9531:18;;;9524:62;-1:-1:-1;;;9602:18:1;;;9595:34;9646:19;;33037:65:0;9271:400:1;33037:65:0;33219:29;33236:1;33240:7;33219:8;:29::i;:::-;-1:-1:-1;;;;;33261:15:0;;;;;;:9;:15;;;;;:20;;33280:1;;33261:15;:20;;33280:1;;33261:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33292:13:0;;;;;;:9;:13;;;;;:18;;33309:1;;33292:13;:18;;33309:1;;33292:18;:::i;:::-;;;;-1:-1:-1;;33321:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33321:21:0;-1:-1:-1;;;;;33321:21:0;;;;;;;;;33360:27;;33321:16;;33360:27;;;;;;;32817:578;;;:::o;31509:382::-;-1:-1:-1;;;;;31589:16:0;;31581:61;;;;-1:-1:-1;;;31581:61:0;;13020:2:1;31581:61:0;;;13002:21:1;;;13039:18;;;13032:30;13098:34;13078:18;;;13071:62;13150:18;;31581:61:0;12818:356:1;31581:61:0;31662:16;31670:7;31662;:16::i;:::-;31661:17;31653:58;;;;-1:-1:-1;;;31653:58:0;;8770:2:1;31653:58:0;;;8752:21:1;8809:2;8789:18;;;8782:30;8848;8828:18;;;8821:58;8896:18;;31653:58:0;8568:352:1;31653:58:0;-1:-1:-1;;;;;31782:13:0;;;;;;:9;:13;;;;;:18;;31799:1;;31782:13;:18;;31799:1;;31782:18;:::i;:::-;;;;-1:-1:-1;;31811:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31811:21:0;-1:-1:-1;;;;;31811:21:0;;;;;;;;31850:33;;31811:16;;;31850:33;;31811:16;;31850:33;31509:382;;:::o;5380:191::-;5473:6;;;-1:-1:-1;;;;;5490:17:0;;;-1:-1:-1;;;;;;5490:17:0;;;;;;;5523:40;;5473:6;;;5490:17;5473:6;;5523:40;;5454:16;;5523:40;5443:128;5380:191;:::o;33829:315::-;33984:8;-1:-1:-1;;;;;33975:17:0;:5;-1:-1:-1;;;;;33975:17:0;;;33967:55;;;;-1:-1:-1;;;33967:55:0;;9878:2:1;33967:55:0;;;9860:21:1;9917:2;9897:18;;;9890:30;9956:27;9936:18;;;9929:55;10001:18;;33967:55:0;9676:349:1;33967:55:0;-1:-1:-1;;;;;34033:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34033:46:0;;;;;;;;;;34095:41;;7114::1;;;34095::0;;7087:18:1;34095:41:0;;;;;;;33829:315;;;:::o;28903:::-;29060:28;29070:4;29076:2;29080:7;29060:9;:28::i;:::-;29107:48;29130:4;29136:2;29140:7;29149:5;29107:22;:48::i;:::-;29099:111;;;;-1:-1:-1;;;29099:111:0;;;;;;;:::i;40283:108::-;40343:13;40376:7;40369:14;;;;;:::i;25062:334::-;25135:13;25169:16;25177:7;25169;:16::i;:::-;25161:76;;;;-1:-1:-1;;;25161:76:0;;14983:2:1;25161:76:0;;;14965:21:1;15022:2;15002:18;;;14995:30;15061:34;15041:18;;;15034:62;-1:-1:-1;;;15112:18:1;;;15105:45;15167:19;;25161:76:0;14781:411:1;25161:76:0;25250:21;25274:10;:8;:10::i;:::-;25250:34;;25326:1;25308:7;25302:21;:25;:86;;;;;;;;;;;;;;;;;25354:7;25363:18;:7;:16;:18::i;:::-;25337:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25302:86;25295:93;25062:334;-1:-1:-1;;;25062:334:0:o;34709:799::-;34864:4;-1:-1:-1;;;;;34885:13:0;;6721:20;6769:8;34881:620;;34921:72;;-1:-1:-1;;;34921:72:0;;-1:-1:-1;;;;;34921:36:0;;;;;:72;;2914:10;;34972:4;;34978:7;;34987:5;;34921:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34921:72:0;;;;;;;;-1:-1:-1;;34921:72:0;;;;;;;;;;;;:::i;:::-;;;34917:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35163:13:0;;35159:272;;35206:60;;-1:-1:-1;;;35206:60:0;;;;;;;:::i;35159:272::-;35381:6;35375:13;35366:6;35362:2;35358:15;35351:38;34917:529;-1:-1:-1;;;;;;35044:51:0;-1:-1:-1;;;35044:51:0;;-1:-1:-1;35037:58:0;;34881:620;-1:-1:-1;35485:4:0;34709:799;;;;;;:::o;396:723::-;452:13;673:10;669:53;;-1:-1:-1;;700:10:0;;;;;;;;;;;;-1:-1:-1;;;700:10:0;;;;;396:723::o;669:53::-;747:5;732:12;788:78;795:9;;788:78;;821:8;;;;:::i;:::-;;-1:-1:-1;844:10:0;;-1:-1:-1;852:2:0;844:10;;:::i;:::-;;;788:78;;;876:19;908:6;898:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;898:17:0;;876:39;;926:154;933:10;;926:154;;960:11;970:1;960:11;;:::i;:::-;;-1:-1:-1;1029:10:0;1037:2;1029:5;:10;:::i;:::-;1016:24;;:2;:24;:::i;:::-;1003:39;;986:6;993;986:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;986:56:0;;;;;;;;-1:-1:-1;1057:11:0;1066:2;1057:11;;:::i;:::-;;;926:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;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:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:221;811:5;864:3;857:4;849:6;845:17;841:27;831:55;;882:1;879;872:12;831:55;904:79;979:3;970:6;957:20;950:4;942:6;938:17;904:79;:::i;994:186::-;1053:6;1106:2;1094:9;1085:7;1081:23;1077:32;1074:52;;;1122:1;1119;1112:12;1074:52;1145:29;1164:9;1145:29;:::i;1185:260::-;1253:6;1261;1314:2;1302:9;1293:7;1289:23;1285:32;1282:52;;;1330:1;1327;1320:12;1282:52;1353:29;1372:9;1353:29;:::i;:::-;1343:39;;1401:38;1435:2;1424:9;1420:18;1401:38;:::i;:::-;1391:48;;1185:260;;;;;:::o;1450:328::-;1527:6;1535;1543;1596:2;1584:9;1575:7;1571:23;1567:32;1564:52;;;1612:1;1609;1602:12;1564:52;1635:29;1654:9;1635:29;:::i;:::-;1625:39;;1683:38;1717:2;1706:9;1702:18;1683:38;:::i;:::-;1673:48;;1768:2;1757:9;1753:18;1740:32;1730:42;;1450:328;;;;;:::o;1783:666::-;1878:6;1886;1894;1902;1955:3;1943:9;1934:7;1930:23;1926:33;1923:53;;;1972:1;1969;1962:12;1923:53;1995:29;2014:9;1995:29;:::i;:::-;1985:39;;2043:38;2077:2;2066:9;2062:18;2043:38;:::i;:::-;2033:48;;2128:2;2117:9;2113:18;2100:32;2090:42;;2183:2;2172:9;2168:18;2155:32;2210:18;2202:6;2199:30;2196:50;;;2242:1;2239;2232:12;2196:50;2265:22;;2318:4;2310:13;;2306:27;-1:-1:-1;2296:55:1;;2347:1;2344;2337:12;2296:55;2370:73;2435:7;2430:2;2417:16;2412:2;2408;2404:11;2370:73;:::i;:::-;2360:83;;;1783:666;;;;;;;:::o;2454:254::-;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;;2667:35;2698:2;2687:9;2683:18;2667:35;:::i;2713:254::-;2781:6;2789;2842:2;2830:9;2821:7;2817:23;2813:32;2810:52;;;2858:1;2855;2848:12;2810:52;2881:29;2900:9;2881:29;:::i;:::-;2871:39;2957:2;2942:18;;;;2929:32;;-1:-1:-1;;;2713:254:1:o;2972:963::-;3056:6;3087:2;3130;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3186:9;3173:23;3215:18;3256:2;3248:6;3245:14;3242:34;;;3272:1;3269;3262:12;3242:34;3310:6;3299:9;3295:22;3285:32;;3355:7;3348:4;3344:2;3340:13;3336:27;3326:55;;3377:1;3374;3367:12;3326:55;3413:2;3400:16;3435:2;3431;3428:10;3425:36;;;3441:18;;:::i;:::-;3487:2;3484:1;3480:10;3470:20;;3510:28;3534:2;3530;3526:11;3510:28;:::i;:::-;3572:15;;;3603:12;;;;3635:11;;;3665;;;3661:20;;3658:33;-1:-1:-1;3655:53:1;;;3704:1;3701;3694:12;3655:53;3726:1;3717:10;;3736:169;3750:2;3747:1;3744:9;3736:169;;;3807:23;3826:3;3807:23;:::i;:::-;3795:36;;3768:1;3761:9;;;;;3851:12;;;;3883;;3736:169;;;-1:-1:-1;3924:5:1;2972:963;-1:-1:-1;;;;;;;;2972:963:1:o;3940:180::-;3996:6;4049:2;4037:9;4028:7;4024:23;4020:32;4017:52;;;4065:1;4062;4055:12;4017:52;4088:26;4104:9;4088:26;:::i;4125:245::-;4183:6;4236:2;4224:9;4215:7;4211:23;4207:32;4204:52;;;4252:1;4249;4242:12;4204:52;4291:9;4278:23;4310:30;4334:5;4310:30;:::i;4375:249::-;4444:6;4497:2;4485:9;4476:7;4472:23;4468:32;4465:52;;;4513:1;4510;4503:12;4465:52;4545:9;4539:16;4564:30;4588:5;4564:30;:::i;4629:322::-;4698:6;4751:2;4739:9;4730:7;4726:23;4722:32;4719:52;;;4767:1;4764;4757:12;4719:52;4807:9;4794:23;4840:18;4832:6;4829:30;4826:50;;;4872:1;4869;4862:12;4826:50;4895;4937:7;4928:6;4917:9;4913:22;4895:50;:::i;4956:180::-;5015:6;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;-1:-1:-1;5107:23:1;;4956:180;-1:-1:-1;4956:180:1:o;5141:390::-;5219:6;5227;5280:2;5268:9;5259:7;5255:23;5251:32;5248:52;;;5296:1;5293;5286:12;5248:52;5332:9;5319:23;5309:33;;5393:2;5382:9;5378:18;5365:32;5420:18;5412:6;5409:30;5406:50;;;5452:1;5449;5442:12;5406:50;5475;5517:7;5508:6;5497:9;5493:22;5475:50;:::i;:::-;5465:60;;;5141:390;;;;;:::o;5536:257::-;5577:3;5615:5;5609:12;5642:6;5637:3;5630:19;5658:63;5714:6;5707:4;5702:3;5698:14;5691:4;5684:5;5680:16;5658:63;:::i;:::-;5775:2;5754:15;-1:-1:-1;;5750:29:1;5741:39;;;;5782:4;5737:50;;5536:257;-1:-1:-1;;5536:257:1:o;5798:470::-;5977:3;6015:6;6009:13;6031:53;6077:6;6072:3;6065:4;6057:6;6053:17;6031:53;:::i;:::-;6147:13;;6106:16;;;;6169:57;6147:13;6106:16;6203:4;6191:17;;6169:57;:::i;:::-;6242:20;;5798:470;-1:-1:-1;;;;5798:470:1:o;6481:488::-;-1:-1:-1;;;;;6750:15:1;;;6732:34;;6802:15;;6797:2;6782:18;;6775:43;6849:2;6834:18;;6827:34;;;6897:3;6892:2;6877:18;;6870:31;;;6675:4;;6918:45;;6943:19;;6935:6;6918:45;:::i;:::-;6910:53;6481:488;-1:-1:-1;;;;;;6481:488:1:o;7166:219::-;7315:2;7304:9;7297:21;7278:4;7335:44;7375:2;7364:9;7360:18;7352:6;7335:44;:::i;7742:414::-;7944:2;7926:21;;;7983:2;7963:18;;;7956:30;8022:34;8017:2;8002:18;;7995:62;-1:-1:-1;;;8088:2:1;8073:18;;8066:48;8146:3;8131:19;;7742:414::o;14010:356::-;14212:2;14194:21;;;14231:18;;;14224:30;14290:34;14285:2;14270:18;;14263:62;14357:2;14342:18;;14010:356::o;15599:413::-;15801:2;15783:21;;;15840:2;15820:18;;;15813:30;15879:34;15874:2;15859:18;;15852:62;-1:-1:-1;;;15945:2:1;15930:18;;15923:47;16002:3;15987:19;;15599:413::o;16362:412::-;16564:2;16546:21;;;16603:2;16583:18;;;16576:30;16642:34;16637:2;16622:18;;16615:62;-1:-1:-1;;;16708:2:1;16693:18;;16686:46;16764:3;16749:19;;16362:412::o;18175:275::-;18246:2;18240:9;18311:2;18292:13;;-1:-1:-1;;18288:27:1;18276:40;;18346:18;18331:34;;18367:22;;;18328:62;18325:88;;;18393:18;;:::i;:::-;18429:2;18422:22;18175:275;;-1:-1:-1;18175:275:1:o;18455:128::-;18495:3;18526:1;18522:6;18519:1;18516:13;18513:39;;;18532:18;;:::i;:::-;-1:-1:-1;18568:9:1;;18455:128::o;18588:120::-;18628:1;18654;18644:35;;18659:18;;:::i;:::-;-1:-1:-1;18693:9:1;;18588:120::o;18713:168::-;18753:7;18819:1;18815;18811:6;18807:14;18804:1;18801:21;18796:1;18789:9;18782:17;18778:45;18775:71;;;18826:18;;:::i;:::-;-1:-1:-1;18866:9:1;;18713:168::o;18886:125::-;18926:4;18954:1;18951;18948:8;18945:34;;;18959:18;;:::i;:::-;-1:-1:-1;18996:9:1;;18886:125::o;19016:258::-;19088:1;19098:113;19112:6;19109:1;19106:13;19098:113;;;19188:11;;;19182:18;19169:11;;;19162:39;19134:2;19127:10;19098:113;;;19229:6;19226:1;19223:13;19220:48;;;-1:-1:-1;;19264:1:1;19246:16;;19239:27;19016:258::o;19279:380::-;19358:1;19354:12;;;;19401;;;19422:61;;19476:4;19468:6;19464:17;19454:27;;19422:61;19529:2;19521:6;19518:14;19498:18;19495:38;19492:161;;;19575:10;19570:3;19566:20;19563:1;19556:31;19610:4;19607:1;19600:15;19638:4;19635:1;19628:15;19492:161;;19279:380;;;:::o;19664:135::-;19703:3;-1:-1:-1;;19724:17:1;;19721:43;;;19744:18;;:::i;:::-;-1:-1:-1;19791:1:1;19780:13;;19664:135::o;19804:112::-;19836:1;19862;19852:35;;19867:18;;:::i;:::-;-1:-1:-1;19901:9:1;;19804:112::o;19921:127::-;19982:10;19977:3;19973:20;19970:1;19963:31;20013:4;20010:1;20003:15;20037:4;20034:1;20027:15;20053:127;20114:10;20109:3;20105:20;20102:1;20095:31;20145:4;20142:1;20135:15;20169:4;20166:1;20159:15;20185:127;20246:10;20241:3;20237:20;20234:1;20227:31;20277:4;20274:1;20267:15;20301:4;20298:1;20291:15;20317:127;20378:10;20373:3;20369:20;20366:1;20359:31;20409:4;20406:1;20399:15;20433:4;20430:1;20423:15;20449:131;-1:-1:-1;;;;;;20523:32:1;;20513:43;;20503:71;;20570:1;20567;20560:12
Swarm Source
ipfs://b0ebf5513bed54c230b15662c72670d990bfea847590146e05196928661f5006
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.