Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Source Code
Overview
Max Total Supply
12 Dogetp
Holders
5
Transfers
-
0
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
DOGETRIBEPUP
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-10-22
*/
/**
*Submitted for verification at Etherscan.io on 2021-10-20
*/
/**
*Submitted for verification at Etherscan.io on 2021-10-20
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
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);
}
}
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);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private 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);
}
}
}
}
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);
}
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);
}
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;
}
}
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;
}
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
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);
}
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;
}
}
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 () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), 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.
*/
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
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;
string public _baseURI;
/**
* @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 base = baseURI();
return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
}
/**
* @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 {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//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 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(to).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 {}
}
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
pragma solidity ^0.8.0;
contract DOGETRIBEPUP is ERC721Enumerable, Ownable
{
using SafeMath for uint256;
using Address for address;
using Strings for uint256;
uint public maxSupply =10000;
uint public maxQuantity =10;
uint public maxPreSaleQuantity =5;
uint256 public price = 0.069 ether;
uint256 public preSalePrice = 0.0552 ether;
bool public isPaused = true;
bool public isPreSalePaused = true;
uint public reserve = 1000;
uint public preSaleSupply=5000;
uint private tokenId=1;
constructor(string memory baseURI) ERC721("Doge Tribe Pup", "Dogetp") {
setBaseURI(baseURI);
}
function setBaseURI(string memory baseURI) public onlyOwner {
_baseURI = baseURI;
}
function setPrice(uint256 _newPrice) public onlyOwner() {
price = _newPrice;
}
function setPreSalePrice(uint256 _newPrice) public onlyOwner() {
preSalePrice = _newPrice;
}
function setMaxxQtPerTx(uint256 _quantity) public onlyOwner {
maxQuantity=_quantity;
}
function setReserveTokens(uint256 _quantity) public onlyOwner {
reserve=_quantity;
}
function setMaxSupply(uint256 _quantity) public onlyOwner {
maxSupply=_quantity;
}
function setPreSaleSupply(uint256 _quantity) public onlyOwner {
preSaleSupply=_quantity;
}
function flipPauseStatus() public onlyOwner {
isPaused = !isPaused;
}
function flipPreSalePauseStatus() public onlyOwner {
isPreSalePaused = !isPreSalePaused;
}
function getPrice(uint256 _quantity) public view returns (uint256) {
return _quantity*price ;
}
function getPreSalePrice(uint256 _quantity) public view returns (uint256) {
return _quantity*preSalePrice ;
}
function reserveTokens(uint quantity) public onlyOwner {
require(quantity <= reserve, "The quantity exceeds the reserve.");
reserve -= quantity;
for (uint i = 0; i < quantity; i++) {
_safeMint(msg.sender, totalsupply());
tokenId++;
}
}
function preSaleMint(uint quantity) public payable{
require(isPreSalePaused == false, "Sale is not active at the moment");
require(quantity>0,"quantity less than one");
require(quantity <= maxPreSaleQuantity,"Chosen Amount exceeds MaxQuantity");
require(preSaleSupply>=quantity,"Quantity is greater than remaining Supply");
require(preSalePrice.mul(quantity) == msg.value, "Sent ether value is incorrect");
for (uint256 i; i < quantity; i++) {
_safeMint(msg.sender, totalsupply());
tokenId++;
}
preSaleSupply-=quantity;
}
function mint(uint chosenAmount) public payable {
require(isPaused == false, "Sale is not active at the moment");
require(totalSupply()+chosenAmount<=maxSupply,"Quantity must be lesser then MaxSupply");
require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
require(chosenAmount <= maxQuantity,"Chosen Amount exceeds MaxQuantity");
require(price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");
for (uint i = 0; i < chosenAmount; i++) {
_safeMint(msg.sender, totalsupply());
tokenId++;
}
}
function tokensOfOwner(address _owner) public view returns (uint256[] memory)
{
uint256 count = balanceOf(_owner);
uint256[] memory result = new uint256[](count);
for (uint256 index = 0; index < count; index++) {
result[index] = tokenOfOwnerByIndex(_owner, index);
}
return result;
}
function withdraw() public onlyOwner {
uint balance = address(this).balance;
payable(msg.sender).transfer(balance);
}
function totalsupply() private view returns (uint)
{
return tokenId;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"flipPauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSalePauseStatus","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":"uint256","name":"_quantity","type":"uint256"}],"name":"getPreSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreSaleQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setMaxxQtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setPreSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"setReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052612710600c55600a600d556005600e5566f5232269808000600f5566c41c1b879a00006010556011805461ffff19166101011790556103e860125561138860135560016014553480156200005757600080fd5b5060405162002be438038062002be48339810160408190526200007a9162000291565b604080518082018252600e81526d0446f6765205472696265205075760941b6020808301918252835180850190945260068452650446f676574760d41b908401528151919291620000ce91600091620001d5565b508051620000e4906001906020840190620001d5565b5050506000620000f96200015960201b60201c565b600b80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000152816200015d565b50620003aa565b3390565b600b546001600160a01b03163314620001bc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d1906006906020840190620001d5565b5050565b828054620001e3906200036d565b90600052602060002090601f01602090048101928262000207576000855562000252565b82601f106200022257805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025257825182559160200191906001019062000235565b506200026092915062000264565b5090565b5b8082111562000260576000815560010162000265565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620002a557600080fd5b82516001600160401b0380821115620002bd57600080fd5b818501915085601f830112620002d257600080fd5b815181811115620002e757620002e76200027b565b604051601f8201601f19908116603f011681019083821181831017156200031257620003126200027b565b8160405282815288868487010111156200032b57600080fd5b600093505b828410156200034f578484018601518185018701529285019262000330565b82841115620003615760008684830101525b98975050505050505050565b600181811c908216806200038257607f821691505b60208210811415620003a457634e487b7160e01b600052602260045260246000fd5b50919050565b61282a80620003ba6000396000f3fe6080604052600436106102675760003560e01c80638462151c11610144578063b88d4fde116100b6578063e640cf7d1161007a578063e640cf7d146106e8578063e7572230146106fe578063e757c17d1461071e578063e985e9c514610734578063f2fde38b1461077d578063fa62884c1461079d57600080fd5b8063b88d4fde1461065c578063c87b56dd1461067c578063cd3293de1461069c578063d031370b146106b2578063d5abeb01146106d257600080fd5b80639e21dabb116101085780639e21dabb146105b9578063a035b1fe146105d9578063a0712d68146105ef578063a22cb46514610602578063b015cf9814610622578063b187bd261461064257600080fd5b80638462151c146105195780638da5cb5b1461054657806391b7f5ed1461056457806395d89b41146105845780639d38fd211461059957600080fd5b80634f6ccce7116101dd5780636db6f08f116101a15780636db6f08f1461047b5780636f8b44b01461049157806370a08231146104b1578063743976a0146104d15780637835c635146104e65780637d7eee42146104f957600080fd5b80634f6ccce7146103e657806355f804b3146104065780636352211e1461042657806367f8ccb8146104465780636a44e1731461045b57600080fd5b806323b872dd1161022f57806323b872dd1461033c5780632e055bcc1461035c5780632e280e32146103725780632f745c59146103915780633ccfd60b146103b157806342842e0e146103c657600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046121ec565b6107b2565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107dd565b6040516102989190612261565b3480156102cf57600080fd5b506102e36102de366004612274565b61086f565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046122a9565b610909565b005b34801561032957600080fd5b506009545b604051908152602001610298565b34801561034857600080fd5b5061031b6103573660046122d3565b610a1f565b34801561036857600080fd5b5061032e60135481565b34801561037e57600080fd5b5060115461028c90610100900460ff1681565b34801561039d57600080fd5b5061032e6103ac3660046122a9565b610a50565b3480156103bd57600080fd5b5061031b610ae6565b3480156103d257600080fd5b5061031b6103e13660046122d3565b610b43565b3480156103f257600080fd5b5061032e610401366004612274565b610b5e565b34801561041257600080fd5b5061031b61042136600461239b565b610bf1565b34801561043257600080fd5b506102e3610441366004612274565b610c2e565b34801561045257600080fd5b5061031b610ca5565b34801561046757600080fd5b5061031b610476366004612274565b610cec565b34801561048757600080fd5b5061032e600e5481565b34801561049d57600080fd5b5061031b6104ac366004612274565b610d1b565b3480156104bd57600080fd5b5061032e6104cc3660046123e4565b610d4a565b3480156104dd57600080fd5b506102b6610dd1565b61031b6104f4366004612274565b610e5f565b34801561050557600080fd5b5061031b610514366004612274565b611042565b34801561052557600080fd5b506105396105343660046123e4565b611071565b60405161029891906123ff565b34801561055257600080fd5b50600b546001600160a01b03166102e3565b34801561057057600080fd5b5061031b61057f366004612274565b611113565b34801561059057600080fd5b506102b6611142565b3480156105a557600080fd5b5061031b6105b4366004612274565b611151565b3480156105c557600080fd5b5061032e6105d4366004612274565b611180565b3480156105e557600080fd5b5061032e600f5481565b61031b6105fd366004612274565b611190565b34801561060e57600080fd5b5061031b61061d366004612443565b611381565b34801561062e57600080fd5b5061031b61063d366004612274565b611446565b34801561064e57600080fd5b5060115461028c9060ff1681565b34801561066857600080fd5b5061031b61067736600461247f565b611475565b34801561068857600080fd5b506102b6610697366004612274565b6114ad565b3480156106a857600080fd5b5061032e60125481565b3480156106be57600080fd5b5061031b6106cd366004612274565b611588565b3480156106de57600080fd5b5061032e600c5481565b3480156106f457600080fd5b5061032e600d5481565b34801561070a57600080fd5b5061032e610719366004612274565b611666565b34801561072a57600080fd5b5061032e60105481565b34801561074057600080fd5b5061028c61074f3660046124fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078957600080fd5b5061031b6107983660046123e4565b611676565b3480156107a957600080fd5b5061031b611711565b60006001600160e01b0319821663780e9d6360e01b14806107d757506107d78261174f565b92915050565b6060600080546107ec9061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546108189061252e565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061091482610c2e565b9050806001600160a01b0316836001600160a01b031614156109825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108e4565b336001600160a01b038216148061099e575061099e813361074f565b610a105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108e4565b610a1a838361179f565b505050565b610a29338261180d565b610a455760405162461bcd60e51b81526004016108e490612569565b610a1a838383611904565b6000610a5b83610d4a565b8210610abd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108e4565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610b105760405162461bcd60e51b81526004016108e4906125ba565b6040514790339082156108fc029083906000818181858888f19350505050158015610b3f573d6000803e3d6000fd5b5050565b610a1a83838360405180602001604052806000815250611475565b6000610b6960095490565b8210610bcc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108e4565b60098281548110610bdf57610bdf6125ef565b90600052602060002001549050919050565b600b546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016108e4906125ba565b8051610b3f90600690602084019061213d565b6000818152600260205260408120546001600160a01b0316806107d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108e4565b600b546001600160a01b03163314610ccf5760405162461bcd60e51b81526004016108e4906125ba565b6011805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314610d165760405162461bcd60e51b81526004016108e4906125ba565b601255565b600b546001600160a01b03163314610d455760405162461bcd60e51b81526004016108e4906125ba565b600c55565b60006001600160a01b038216610db55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108e4565b506001600160a01b031660009081526003602052604090205490565b60068054610dde9061252e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a9061252e565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505081565b601154610100900460ff1615610eb75760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016108e4565b60008111610f005760405162461bcd60e51b81526020600482015260166024820152757175616e74697479206c657373207468616e206f6e6560501b60448201526064016108e4565b600e54811115610f225760405162461bcd60e51b81526004016108e490612605565b806013541015610f865760405162461bcd60e51b815260206004820152602960248201527f5175616e746974792069732067726561746572207468616e2072656d61696e696044820152686e6720537570706c7960b81b60648201526084016108e4565b6010543490610f959083611aaf565b14610fe25760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108e4565b60005b8181101561102757610fff33610ffa60145490565b611abb565b6014805490600061100f8361265c565b9190505550808061101f9061265c565b915050610fe5565b50806013600082825461103a9190612677565b909155505050565b600b546001600160a01b0316331461106c5760405162461bcd60e51b81526004016108e4906125ba565b601055565b6060600061107e83610d4a565b905060008167ffffffffffffffff81111561109b5761109b61230f565b6040519080825280602002602001820160405280156110c4578160200160208202803683370190505b50905060005b8281101561110b576110dc8582610a50565b8282815181106110ee576110ee6125ef565b6020908102919091010152806111038161265c565b9150506110ca565b509392505050565b600b546001600160a01b0316331461113d5760405162461bcd60e51b81526004016108e4906125ba565b600f55565b6060600180546107ec9061252e565b600b546001600160a01b0316331461117b5760405162461bcd60e51b81526004016108e4906125ba565b600d55565b6000601054826107d7919061268e565b60115460ff16156111e35760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016108e4565b600c54816111f060095490565b6111fa91906126ad565b11156112575760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b60648201526084016108e4565b600081116112c35760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016108e4565b600d548111156112e55760405162461bcd60e51b81526004016108e490612605565b600f5434906112f49083611aaf565b146113415760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108e4565b60005b81811015610b3f5761135933610ffa60145490565b601480549060006113698361265c565b919050555080806113799061265c565b915050611344565b6001600160a01b0382163314156113da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108e4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b031633146114705760405162461bcd60e51b81526004016108e4906125ba565b601355565b61147f338361180d565b61149b5760405162461bcd60e51b81526004016108e490612569565b6114a784848484611ad5565b50505050565b6000818152600260205260409020546060906001600160a01b031661152c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e4565b6000611536611b08565b905060008151116115565760405180602001604052806000815250611581565b8061156084611b17565b6040516020016115719291906126c5565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146115b25760405162461bcd60e51b81526004016108e4906125ba565b60125481111561160e5760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b60648201526084016108e4565b80601260008282546116209190612677565b90915550600090505b81811015610b3f5761163e33610ffa60145490565b6014805490600061164e8361265c565b9190505550808061165e9061265c565b915050611629565b6000600f54826107d7919061268e565b600b546001600160a01b031633146116a05760405162461bcd60e51b81526004016108e4906125ba565b6001600160a01b0381166117055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e4565b61170e81611c15565b50565b600b546001600160a01b0316331461173b5760405162461bcd60e51b81526004016108e4906125ba565b6011805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061178057506001600160e01b03198216635b5e139f60e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316146107d7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117d482610c2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108e4565b600061189183610c2e565b9050806001600160a01b0316846001600160a01b031614806118cc5750836001600160a01b03166118c18461086f565b6001600160a01b0316145b806118fc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661191782610c2e565b6001600160a01b03161461197f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108e4565b6001600160a01b0382166119e15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108e4565b6119ec838383611c67565b6119f760008261179f565b6001600160a01b0383166000908152600360205260408120805460019290611a20908490612677565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a4e9084906126ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611581828461268e565b610b3f828260405180602001604052806000815250611d1f565b611ae0848484611904565b611aec84848484611d52565b6114a75760405162461bcd60e51b81526004016108e4906126f4565b6060600680546107ec9061252e565b606081611b3b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b655780611b4f8161265c565b9150611b5e9050600a8361275c565b9150611b3f565b60008167ffffffffffffffff811115611b8057611b8061230f565b6040519080825280601f01601f191660200182016040528015611baa576020820181803683370190505b5090505b84156118fc57611bbf600183612677565b9150611bcc600a86612770565b611bd79060306126ad565b60f81b818381518110611bec57611bec6125ef565b60200101906001600160f81b031916908160001a905350611c0e600a8661275c565b9450611bae565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611cc257611cbd81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611ce5565b816001600160a01b0316836001600160a01b031614611ce557611ce58382611e5f565b6001600160a01b038216611cfc57610a1a81611efc565b826001600160a01b0316826001600160a01b031614610a1a57610a1a8282611fab565b611d298383611fef565b611d366000848484611d52565b610a1a5760405162461bcd60e51b81526004016108e4906126f4565b60006001600160a01b0384163b15611e5457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d96903390899088908890600401612784565b602060405180830381600087803b158015611db057600080fd5b505af1925050508015611de0575060408051601f3d908101601f19168201909252611ddd918101906127c1565b60015b611e3a573d808015611e0e576040519150601f19603f3d011682016040523d82523d6000602084013e611e13565b606091505b508051611e325760405162461bcd60e51b81526004016108e4906126f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118fc565b506001949350505050565b60006001611e6c84610d4a565b611e769190612677565b600083815260086020526040902054909150808214611ec9576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611f0e90600190612677565b6000838152600a602052604081205460098054939450909284908110611f3657611f366125ef565b906000526020600020015490508060098381548110611f5757611f576125ef565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611f8f57611f8f6127de565b6001900381819060005260206000200160009055905550505050565b6000611fb683610d4a565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166120455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108e4565b6000818152600260205260409020546001600160a01b0316156120aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108e4565b6120b660008383611c67565b6001600160a01b03821660009081526003602052604081208054600192906120df9084906126ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121499061252e565b90600052602060002090601f01602090048101928261216b57600085556121b1565b82601f1061218457805160ff19168380011785556121b1565b828001600101855582156121b1579182015b828111156121b1578251825591602001919060010190612196565b506121bd9291506121c1565b5090565b5b808211156121bd57600081556001016121c2565b6001600160e01b03198116811461170e57600080fd5b6000602082840312156121fe57600080fd5b8135611581816121d6565b60005b8381101561222457818101518382015260200161220c565b838111156114a75750506000910152565b6000815180845261224d816020860160208601612209565b601f01601f19169290920160200192915050565b6020815260006115816020830184612235565b60006020828403121561228657600080fd5b5035919050565b80356001600160a01b03811681146122a457600080fd5b919050565b600080604083850312156122bc57600080fd5b6122c58361228d565b946020939093013593505050565b6000806000606084860312156122e857600080fd5b6122f18461228d565b92506122ff6020850161228d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123405761234061230f565b604051601f8501601f19908116603f011681019082821181831017156123685761236861230f565b8160405280935085815286868601111561238157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123ad57600080fd5b813567ffffffffffffffff8111156123c457600080fd5b8201601f810184136123d557600080fd5b6118fc84823560208401612325565b6000602082840312156123f657600080fd5b6115818261228d565b6020808252825182820181905260009190848201906040850190845b818110156124375783518352928401929184019160010161241b565b50909695505050505050565b6000806040838503121561245657600080fd5b61245f8361228d565b91506020830135801515811461247457600080fd5b809150509250929050565b6000806000806080858703121561249557600080fd5b61249e8561228d565b93506124ac6020860161228d565b925060408501359150606085013567ffffffffffffffff8111156124cf57600080fd5b8501601f810187136124e057600080fd5b6124ef87823560208401612325565b91505092959194509250565b6000806040838503121561250e57600080fd5b6125178361228d565b91506125256020840161228d565b90509250929050565b600181811c9082168061254257607f821691505b6020821081141561256357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561267057612670612646565b5060010190565b60008282101561268957612689612646565b500390565b60008160001904831182151516156126a8576126a8612646565b500290565b600082198211156126c0576126c0612646565b500190565b600083516126d7818460208801612209565b8351908301906126eb818360208801612209565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261276b5761276b612746565b500490565b60008261277f5761277f612746565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b790830184612235565b9695505050505050565b6000602082840312156127d357600080fd5b8151611581816121d6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b1743ee4e7188a087072373ec68509dd05c985e49ea9aa189a55103cd960dc1564736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c80638462151c11610144578063b88d4fde116100b6578063e640cf7d1161007a578063e640cf7d146106e8578063e7572230146106fe578063e757c17d1461071e578063e985e9c514610734578063f2fde38b1461077d578063fa62884c1461079d57600080fd5b8063b88d4fde1461065c578063c87b56dd1461067c578063cd3293de1461069c578063d031370b146106b2578063d5abeb01146106d257600080fd5b80639e21dabb116101085780639e21dabb146105b9578063a035b1fe146105d9578063a0712d68146105ef578063a22cb46514610602578063b015cf9814610622578063b187bd261461064257600080fd5b80638462151c146105195780638da5cb5b1461054657806391b7f5ed1461056457806395d89b41146105845780639d38fd211461059957600080fd5b80634f6ccce7116101dd5780636db6f08f116101a15780636db6f08f1461047b5780636f8b44b01461049157806370a08231146104b1578063743976a0146104d15780637835c635146104e65780637d7eee42146104f957600080fd5b80634f6ccce7146103e657806355f804b3146104065780636352211e1461042657806367f8ccb8146104465780636a44e1731461045b57600080fd5b806323b872dd1161022f57806323b872dd1461033c5780632e055bcc1461035c5780632e280e32146103725780632f745c59146103915780633ccfd60b146103b157806342842e0e146103c657600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c6102873660046121ec565b6107b2565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107dd565b6040516102989190612261565b3480156102cf57600080fd5b506102e36102de366004612274565b61086f565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b6103163660046122a9565b610909565b005b34801561032957600080fd5b506009545b604051908152602001610298565b34801561034857600080fd5b5061031b6103573660046122d3565b610a1f565b34801561036857600080fd5b5061032e60135481565b34801561037e57600080fd5b5060115461028c90610100900460ff1681565b34801561039d57600080fd5b5061032e6103ac3660046122a9565b610a50565b3480156103bd57600080fd5b5061031b610ae6565b3480156103d257600080fd5b5061031b6103e13660046122d3565b610b43565b3480156103f257600080fd5b5061032e610401366004612274565b610b5e565b34801561041257600080fd5b5061031b61042136600461239b565b610bf1565b34801561043257600080fd5b506102e3610441366004612274565b610c2e565b34801561045257600080fd5b5061031b610ca5565b34801561046757600080fd5b5061031b610476366004612274565b610cec565b34801561048757600080fd5b5061032e600e5481565b34801561049d57600080fd5b5061031b6104ac366004612274565b610d1b565b3480156104bd57600080fd5b5061032e6104cc3660046123e4565b610d4a565b3480156104dd57600080fd5b506102b6610dd1565b61031b6104f4366004612274565b610e5f565b34801561050557600080fd5b5061031b610514366004612274565b611042565b34801561052557600080fd5b506105396105343660046123e4565b611071565b60405161029891906123ff565b34801561055257600080fd5b50600b546001600160a01b03166102e3565b34801561057057600080fd5b5061031b61057f366004612274565b611113565b34801561059057600080fd5b506102b6611142565b3480156105a557600080fd5b5061031b6105b4366004612274565b611151565b3480156105c557600080fd5b5061032e6105d4366004612274565b611180565b3480156105e557600080fd5b5061032e600f5481565b61031b6105fd366004612274565b611190565b34801561060e57600080fd5b5061031b61061d366004612443565b611381565b34801561062e57600080fd5b5061031b61063d366004612274565b611446565b34801561064e57600080fd5b5060115461028c9060ff1681565b34801561066857600080fd5b5061031b61067736600461247f565b611475565b34801561068857600080fd5b506102b6610697366004612274565b6114ad565b3480156106a857600080fd5b5061032e60125481565b3480156106be57600080fd5b5061031b6106cd366004612274565b611588565b3480156106de57600080fd5b5061032e600c5481565b3480156106f457600080fd5b5061032e600d5481565b34801561070a57600080fd5b5061032e610719366004612274565b611666565b34801561072a57600080fd5b5061032e60105481565b34801561074057600080fd5b5061028c61074f3660046124fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078957600080fd5b5061031b6107983660046123e4565b611676565b3480156107a957600080fd5b5061031b611711565b60006001600160e01b0319821663780e9d6360e01b14806107d757506107d78261174f565b92915050565b6060600080546107ec9061252e565b80601f01602080910402602001604051908101604052809291908181526020018280546108189061252e565b80156108655780601f1061083a57610100808354040283529160200191610865565b820191906000526020600020905b81548152906001019060200180831161084857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061091482610c2e565b9050806001600160a01b0316836001600160a01b031614156109825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108e4565b336001600160a01b038216148061099e575061099e813361074f565b610a105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108e4565b610a1a838361179f565b505050565b610a29338261180d565b610a455760405162461bcd60e51b81526004016108e490612569565b610a1a838383611904565b6000610a5b83610d4a565b8210610abd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108e4565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b600b546001600160a01b03163314610b105760405162461bcd60e51b81526004016108e4906125ba565b6040514790339082156108fc029083906000818181858888f19350505050158015610b3f573d6000803e3d6000fd5b5050565b610a1a83838360405180602001604052806000815250611475565b6000610b6960095490565b8210610bcc5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108e4565b60098281548110610bdf57610bdf6125ef565b90600052602060002001549050919050565b600b546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016108e4906125ba565b8051610b3f90600690602084019061213d565b6000818152600260205260408120546001600160a01b0316806107d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108e4565b600b546001600160a01b03163314610ccf5760405162461bcd60e51b81526004016108e4906125ba565b6011805461ff001981166101009182900460ff1615909102179055565b600b546001600160a01b03163314610d165760405162461bcd60e51b81526004016108e4906125ba565b601255565b600b546001600160a01b03163314610d455760405162461bcd60e51b81526004016108e4906125ba565b600c55565b60006001600160a01b038216610db55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108e4565b506001600160a01b031660009081526003602052604090205490565b60068054610dde9061252e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0a9061252e565b8015610e575780601f10610e2c57610100808354040283529160200191610e57565b820191906000526020600020905b815481529060010190602001808311610e3a57829003601f168201915b505050505081565b601154610100900460ff1615610eb75760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016108e4565b60008111610f005760405162461bcd60e51b81526020600482015260166024820152757175616e74697479206c657373207468616e206f6e6560501b60448201526064016108e4565b600e54811115610f225760405162461bcd60e51b81526004016108e490612605565b806013541015610f865760405162461bcd60e51b815260206004820152602960248201527f5175616e746974792069732067726561746572207468616e2072656d61696e696044820152686e6720537570706c7960b81b60648201526084016108e4565b6010543490610f959083611aaf565b14610fe25760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108e4565b60005b8181101561102757610fff33610ffa60145490565b611abb565b6014805490600061100f8361265c565b9190505550808061101f9061265c565b915050610fe5565b50806013600082825461103a9190612677565b909155505050565b600b546001600160a01b0316331461106c5760405162461bcd60e51b81526004016108e4906125ba565b601055565b6060600061107e83610d4a565b905060008167ffffffffffffffff81111561109b5761109b61230f565b6040519080825280602002602001820160405280156110c4578160200160208202803683370190505b50905060005b8281101561110b576110dc8582610a50565b8282815181106110ee576110ee6125ef565b6020908102919091010152806111038161265c565b9150506110ca565b509392505050565b600b546001600160a01b0316331461113d5760405162461bcd60e51b81526004016108e4906125ba565b600f55565b6060600180546107ec9061252e565b600b546001600160a01b0316331461117b5760405162461bcd60e51b81526004016108e4906125ba565b600d55565b6000601054826107d7919061268e565b60115460ff16156111e35760405162461bcd60e51b815260206004820181905260248201527f53616c65206973206e6f742061637469766520617420746865206d6f6d656e7460448201526064016108e4565b600c54816111f060095490565b6111fa91906126ad565b11156112575760405162461bcd60e51b815260206004820152602660248201527f5175616e74697479206d757374206265206c6573736572207468656e204d6178604482015265537570706c7960d01b60648201526084016108e4565b600081116112c35760405162461bcd60e51b815260206004820152603360248201527f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c6573736044820152720207468616e206f7220657175616c20746f203606c1b60648201526084016108e4565b600d548111156112e55760405162461bcd60e51b81526004016108e490612605565b600f5434906112f49083611aaf565b146113415760405162461bcd60e51b815260206004820152601d60248201527f53656e742065746865722076616c756520697320696e636f727265637400000060448201526064016108e4565b60005b81811015610b3f5761135933610ffa60145490565b601480549060006113698361265c565b919050555080806113799061265c565b915050611344565b6001600160a01b0382163314156113da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108e4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b031633146114705760405162461bcd60e51b81526004016108e4906125ba565b601355565b61147f338361180d565b61149b5760405162461bcd60e51b81526004016108e490612569565b6114a784848484611ad5565b50505050565b6000818152600260205260409020546060906001600160a01b031661152c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108e4565b6000611536611b08565b905060008151116115565760405180602001604052806000815250611581565b8061156084611b17565b6040516020016115719291906126c5565b6040516020818303038152906040525b9392505050565b600b546001600160a01b031633146115b25760405162461bcd60e51b81526004016108e4906125ba565b60125481111561160e5760405162461bcd60e51b815260206004820152602160248201527f546865207175616e7469747920657863656564732074686520726573657276656044820152601760f91b60648201526084016108e4565b80601260008282546116209190612677565b90915550600090505b81811015610b3f5761163e33610ffa60145490565b6014805490600061164e8361265c565b9190505550808061165e9061265c565b915050611629565b6000600f54826107d7919061268e565b600b546001600160a01b031633146116a05760405162461bcd60e51b81526004016108e4906125ba565b6001600160a01b0381166117055760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e4565b61170e81611c15565b50565b600b546001600160a01b0316331461173b5760405162461bcd60e51b81526004016108e4906125ba565b6011805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061178057506001600160e01b03198216635b5e139f60e01b145b806107d757506301ffc9a760e01b6001600160e01b03198316146107d7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117d482610c2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108e4565b600061189183610c2e565b9050806001600160a01b0316846001600160a01b031614806118cc5750836001600160a01b03166118c18461086f565b6001600160a01b0316145b806118fc57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661191782610c2e565b6001600160a01b03161461197f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108e4565b6001600160a01b0382166119e15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108e4565b6119ec838383611c67565b6119f760008261179f565b6001600160a01b0383166000908152600360205260408120805460019290611a20908490612677565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a4e9084906126ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611581828461268e565b610b3f828260405180602001604052806000815250611d1f565b611ae0848484611904565b611aec84848484611d52565b6114a75760405162461bcd60e51b81526004016108e4906126f4565b6060600680546107ec9061252e565b606081611b3b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b655780611b4f8161265c565b9150611b5e9050600a8361275c565b9150611b3f565b60008167ffffffffffffffff811115611b8057611b8061230f565b6040519080825280601f01601f191660200182016040528015611baa576020820181803683370190505b5090505b84156118fc57611bbf600183612677565b9150611bcc600a86612770565b611bd79060306126ad565b60f81b818381518110611bec57611bec6125ef565b60200101906001600160f81b031916908160001a905350611c0e600a8661275c565b9450611bae565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316611cc257611cbd81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611ce5565b816001600160a01b0316836001600160a01b031614611ce557611ce58382611e5f565b6001600160a01b038216611cfc57610a1a81611efc565b826001600160a01b0316826001600160a01b031614610a1a57610a1a8282611fab565b611d298383611fef565b611d366000848484611d52565b610a1a5760405162461bcd60e51b81526004016108e4906126f4565b60006001600160a01b0384163b15611e5457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d96903390899088908890600401612784565b602060405180830381600087803b158015611db057600080fd5b505af1925050508015611de0575060408051601f3d908101601f19168201909252611ddd918101906127c1565b60015b611e3a573d808015611e0e576040519150601f19603f3d011682016040523d82523d6000602084013e611e13565b606091505b508051611e325760405162461bcd60e51b81526004016108e4906126f4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118fc565b506001949350505050565b60006001611e6c84610d4a565b611e769190612677565b600083815260086020526040902054909150808214611ec9576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611f0e90600190612677565b6000838152600a602052604081205460098054939450909284908110611f3657611f366125ef565b906000526020600020015490508060098381548110611f5757611f576125ef565b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611f8f57611f8f6127de565b6001900381819060005260206000200160009055905550505050565b6000611fb683610d4a565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166120455760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108e4565b6000818152600260205260409020546001600160a01b0316156120aa5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108e4565b6120b660008383611c67565b6001600160a01b03821660009081526003602052604081208054600192906120df9084906126ad565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546121499061252e565b90600052602060002090601f01602090048101928261216b57600085556121b1565b82601f1061218457805160ff19168380011785556121b1565b828001600101855582156121b1579182015b828111156121b1578251825591602001919060010190612196565b506121bd9291506121c1565b5090565b5b808211156121bd57600081556001016121c2565b6001600160e01b03198116811461170e57600080fd5b6000602082840312156121fe57600080fd5b8135611581816121d6565b60005b8381101561222457818101518382015260200161220c565b838111156114a75750506000910152565b6000815180845261224d816020860160208601612209565b601f01601f19169290920160200192915050565b6020815260006115816020830184612235565b60006020828403121561228657600080fd5b5035919050565b80356001600160a01b03811681146122a457600080fd5b919050565b600080604083850312156122bc57600080fd5b6122c58361228d565b946020939093013593505050565b6000806000606084860312156122e857600080fd5b6122f18461228d565b92506122ff6020850161228d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123405761234061230f565b604051601f8501601f19908116603f011681019082821181831017156123685761236861230f565b8160405280935085815286868601111561238157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123ad57600080fd5b813567ffffffffffffffff8111156123c457600080fd5b8201601f810184136123d557600080fd5b6118fc84823560208401612325565b6000602082840312156123f657600080fd5b6115818261228d565b6020808252825182820181905260009190848201906040850190845b818110156124375783518352928401929184019160010161241b565b50909695505050505050565b6000806040838503121561245657600080fd5b61245f8361228d565b91506020830135801515811461247457600080fd5b809150509250929050565b6000806000806080858703121561249557600080fd5b61249e8561228d565b93506124ac6020860161228d565b925060408501359150606085013567ffffffffffffffff8111156124cf57600080fd5b8501601f810187136124e057600080fd5b6124ef87823560208401612325565b91505092959194509250565b6000806040838503121561250e57600080fd5b6125178361228d565b91506125256020840161228d565b90509250929050565b600181811c9082168061254257607f821691505b6020821081141561256357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f43686f73656e20416d6f756e742065786365656473204d61785175616e7469746040820152607960f81b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561267057612670612646565b5060010190565b60008282101561268957612689612646565b500390565b60008160001904831182151516156126a8576126a8612646565b500290565b600082198211156126c0576126c0612646565b500190565b600083516126d7818460208801612209565b8351908301906126eb818360208801612209565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261276b5761276b612746565b500490565b60008261277f5761277f612746565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b790830184612235565b9695505050505050565b6000602082840312156127d357600080fd5b8151611581816121d6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b1743ee4e7188a087072373ec68509dd05c985e49ea9aa189a55103cd960dc1564736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
49161:4143:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42986:224;;;;;;;;;;-1:-1:-1;42986:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42986:224:0;;;;;;;;30968:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32522:221::-;;;;;;;;;;-1:-1:-1;32522:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32522:221:0;1528:203:1;32045:411:0;;;;;;;;;;-1:-1:-1;32045:411:0;;;;;:::i;:::-;;:::i;:::-;;43626:113;;;;;;;;;;-1:-1:-1;43714:10:0;:17;43626:113;;;2319:25:1;;;2307:2;2292:18;43626:113:0;2173:177:1;33412:339:0;;;;;;;;;;-1:-1:-1;33412:339:0;;;;;:::i;:::-;;:::i;49631:30::-;;;;;;;;;;;;;;;;49557:34;;;;;;;;;;-1:-1:-1;49557:34:0;;;;;;;;;;;43294:256;;;;;;;;;;-1:-1:-1;43294:256:0;;;;;:::i;:::-;;:::i;53061:140::-;;;;;;;;;;;;;:::i;33822:185::-;;;;;;;;;;-1:-1:-1;33822:185:0;;;;;:::i;:::-;;:::i;43816:233::-;;;;;;;;;;-1:-1:-1;43816:233:0;;;;;:::i;:::-;;:::i;49824:97::-;;;;;;;;;;-1:-1:-1;49824:97:0;;;;;:::i;:::-;;:::i;30662:239::-;;;;;;;;;;-1:-1:-1;30662:239:0;;;;;:::i;:::-;;:::i;50653:104::-;;;;;;;;;;;;;:::i;50246:98::-;;;;;;;;;;-1:-1:-1;50246:98:0;;;;;:::i;:::-;;:::i;49391:33::-;;;;;;;;;;;;;;;;50350:96;;;;;;;;;;-1:-1:-1;50350:96:0;;;;;:::i;:::-;;:::i;30392:208::-;;;;;;;;;;-1:-1:-1;30392:208:0;;;;;:::i;:::-;;:::i;29690:22::-;;;;;;;;;;;;;:::i;51357:693::-;;;;;;:::i;:::-;;:::i;50027:106::-;;;;;;;;;;-1:-1:-1;50027:106:0;;;;;:::i;:::-;;:::i;52702:351::-;;;;;;;;;;-1:-1:-1;52702:351:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;27558:87::-;;;;;;;;;;-1:-1:-1;27631:6:0;;-1:-1:-1;;;;;27631:6:0;27558:87;;49929:92;;;;;;;;;;-1:-1:-1;49929:92:0;;;;;:::i;:::-;;:::i;31137:104::-;;;;;;;;;;;;;:::i;50139:100::-;;;;;;;;;;-1:-1:-1;50139:100:0;;;;;:::i;:::-;;:::i;50891:136::-;;;;;;;;;;-1:-1:-1;50891:136:0;;;;;:::i;:::-;;:::i;49431:34::-;;;;;;;;;;;;;;;;52056:631;;;;;;:::i;:::-;;:::i;32815:295::-;;;;;;;;;;-1:-1:-1;32815:295:0;;;;;:::i;:::-;;:::i;50452:104::-;;;;;;;;;;-1:-1:-1;50452:104:0;;;;;:::i;:::-;;:::i;49523:27::-;;;;;;;;;;-1:-1:-1;49523:27:0;;;;;;;;34078:328;;;;;;;;;;-1:-1:-1;34078:328:0;;;;;:::i;:::-;;:::i;31312:324::-;;;;;;;;;;-1:-1:-1;31312:324:0;;;;;:::i;:::-;;:::i;49598:26::-;;;;;;;;;;;;;;;;51034:302;;;;;;;;;;-1:-1:-1;51034:302:0;;;;;:::i;:::-;;:::i;49321:29::-;;;;;;;;;;;;;;;;49357:27;;;;;;;;;;;;;;;;50763:122;;;;;;;;;;-1:-1:-1;50763:122:0;;;;;:::i;:::-;;:::i;49473:42::-;;;;;;;;;;;;;;;;33181:164;;;;;;;;;;-1:-1:-1;33181:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33181:164;28358:192;;;;;;;;;;-1:-1:-1;28358:192:0;;;;;:::i;:::-;;:::i;50564:83::-;;;;;;;;;;;;;:::i;42986:224::-;43088:4;-1:-1:-1;;;;;;43112:50:0;;-1:-1:-1;;;43112:50:0;;:90;;;43166:36;43190:11;43166:23;:36::i;:::-;43105:97;42986:224;-1:-1:-1;;42986:224:0:o;30968:100::-;31022:13;31055:5;31048:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30968:100;:::o;32522:221::-;32598:7;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;32618:73;;;;-1:-1:-1;;;32618:73:0;;6617:2:1;32618:73:0;;;6599:21:1;6656:2;6636:18;;;6629:30;6695:34;6675:18;;;6668:62;-1:-1:-1;;;6746:18:1;;;6739:42;6798:19;;32618:73:0;;;;;;;;;-1:-1:-1;32711:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32711:24:0;;32522:221::o;32045:411::-;32126:13;32142:23;32157:7;32142:14;:23::i;:::-;32126:39;;32190:5;-1:-1:-1;;;;;32184:11:0;:2;-1:-1:-1;;;;;32184:11:0;;;32176:57;;;;-1:-1:-1;;;32176:57:0;;7030:2:1;32176:57:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:31;7200:19;;32176:57:0;6828:397:1;32176:57:0;26389:10;-1:-1:-1;;;;;32268:21:0;;;;:62;;-1:-1:-1;32293:37:0;32310:5;26389:10;33181:164;:::i;32293:37::-;32246:168;;;;-1:-1:-1;;;32246:168:0;;7432:2:1;32246:168:0;;;7414:21:1;7471:2;7451:18;;;7444:30;7510:34;7490:18;;;7483:62;7581:26;7561:18;;;7554:54;7625:19;;32246:168:0;7230:420:1;32246:168:0;32427:21;32436:2;32440:7;32427:8;:21::i;:::-;32115:341;32045:411;;:::o;33412:339::-;33607:41;26389:10;33640:7;33607:18;:41::i;:::-;33599:103;;;;-1:-1:-1;;;33599:103:0;;;;;;;:::i;:::-;33715:28;33725:4;33731:2;33735:7;33715:9;:28::i;43294:256::-;43391:7;43427:23;43444:5;43427:16;:23::i;:::-;43419:5;:31;43411:87;;;;-1:-1:-1;;;43411:87:0;;8275:2:1;43411:87:0;;;8257:21:1;8314:2;8294:18;;;8287:30;8353:34;8333:18;;;8326:62;-1:-1:-1;;;8404:18:1;;;8397:41;8455:19;;43411:87:0;8073:407:1;43411:87:0;-1:-1:-1;;;;;;43516:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43294:256::o;53061:140::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;53156:37:::1;::::0;53124:21:::1;::::0;53164:10:::1;::::0;53156:37;::::1;;;::::0;53124:21;;53109:12:::1;53156:37:::0;53109:12;53156:37;53124:21;53164:10;53156:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53098:103;53061:140::o:0;33822:185::-;33960:39;33977:4;33983:2;33987:7;33960:39;;;;;;;;;;;;:16;:39::i;43816:233::-;43891:7;43927:30;43714:10;:17;;43626:113;43927:30;43919:5;:38;43911:95;;;;-1:-1:-1;;;43911:95:0;;9048:2:1;43911:95:0;;;9030:21:1;9087:2;9067:18;;;9060:30;9126:34;9106:18;;;9099:62;-1:-1:-1;;;9177:18:1;;;9170:42;9229:19;;43911:95:0;8846:408:1;43911:95:0;44024:10;44035:5;44024:17;;;;;;;;:::i;:::-;;;;;;;;;44017:24;;43816:233;;;:::o;49824:97::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;49895:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30662:239::-:0;30734:7;30770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30770:16:0;30805:19;30797:73;;;;-1:-1:-1;;;30797:73:0;;9593:2:1;30797:73:0;;;9575:21:1;9632:2;9612:18;;;9605:30;9671:34;9651:18;;;9644:62;-1:-1:-1;;;9722:18:1;;;9715:39;9771:19;;30797:73:0;9391:405:1;50653:104:0;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50734:15:::1;::::0;;-1:-1:-1;;50715:34:0;::::1;50734:15;::::0;;;::::1;;;50733:16;50715:34:::0;;::::1;;::::0;;50653:104::o;50246:98::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50319:7:::1;:17:::0;50246:98::o;50350:96::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50419:9:::1;:19:::0;50350:96::o;30392:208::-;30464:7;-1:-1:-1;;;;;30492:19:0;;30484:74;;;;-1:-1:-1;;;30484:74:0;;10003:2:1;30484:74:0;;;9985:21:1;10042:2;10022:18;;;10015:30;10081:34;10061:18;;;10054:62;-1:-1:-1;;;10132:18:1;;;10125:40;10182:19;;30484:74:0;9801:406:1;30484:74:0;-1:-1:-1;;;;;;30576:16:0;;;;;:9;:16;;;;;;;30392:208::o;29690:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51357:693::-;51436:15;;;;;;;:24;51428:69;;;;-1:-1:-1;;;51428:69:0;;10414:2:1;51428:69:0;;;10396:21:1;;;10433:18;;;10426:30;10492:34;10472:18;;;10465:62;10544:18;;51428:69:0;10212:356:1;51428:69:0;51525:1;51516:8;:10;51508:44;;;;-1:-1:-1;;;51508:44:0;;10775:2:1;51508:44:0;;;10757:21:1;10814:2;10794:18;;;10787:30;-1:-1:-1;;;10833:18:1;;;10826:52;10895:18;;51508:44:0;10573:346:1;51508:44:0;51583:18;;51571:8;:30;;51563:75;;;;-1:-1:-1;;;51563:75:0;;;;;;;:::i;:::-;51672:8;51657:13;;:23;;51649:76;;;;-1:-1:-1;;;51649:76:0;;11528:2:1;51649:76:0;;;11510:21:1;11567:2;11547:18;;;11540:30;11606:34;11586:18;;;11579:62;-1:-1:-1;;;11657:18:1;;;11650:39;11706:19;;51649:76:0;11326:405:1;51649:76:0;51744:12;;51774:9;;51744:26;;51761:8;51744:16;:26::i;:::-;:39;51736:81;;;;-1:-1:-1;;;51736:81:0;;11938:2:1;51736:81:0;;;11920:21:1;11977:2;11957:18;;;11950:30;12016:31;11996:18;;;11989:59;12065:18;;51736:81:0;11736:353:1;51736:81:0;51848:9;51843:136;51863:8;51859:1;:12;51843:136;;;51893:36;51903:10;51915:13;53286:7;;;53207:94;51915:13;51893:9;:36::i;:::-;51944:7;:9;;;:7;:9;;;:::i;:::-;;;;;;51873:3;;;;;:::i;:::-;;;;51843:136;;;;52023:8;52008:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;51357:693:0:o;50027:106::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50101:12:::1;:24:::0;50027:106::o;52702:351::-;52762:16;52796:13;52812:17;52822:6;52812:9;:17::i;:::-;52796:33;;52840:23;52880:5;52866:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52866:20:0;;52840:46;;52902:13;52897:125;52929:5;52921;:13;52897:125;;;52976:34;52996:6;53004:5;52976:19;:34::i;:::-;52960:6;52967:5;52960:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;52936:7;;;;:::i;:::-;;;;52897:125;;;-1:-1:-1;53039:6:0;52702:351;-1:-1:-1;;;52702:351:0:o;49929:92::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;49996:5:::1;:17:::0;49929:92::o;31137:104::-;31193:13;31226:7;31219:14;;;;;:::i;50139:100::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50210:11:::1;:21:::0;50139:100::o;50891:136::-;50956:7;51005:12;;50995:9;:22;;;;:::i;52056:631::-;52123:8;;;;:17;52115:62;;;;-1:-1:-1;;;52115:62:0;;10414:2:1;52115:62:0;;;10396:21:1;;;10433:18;;;10426:30;10492:34;10472:18;;;10465:62;10544:18;;52115:62:0;10212:356:1;52115:62:0;52224:9;;52210:12;52196:13;43714:10;:17;;43626:113;52196:13;:26;;;;:::i;:::-;:37;;52188:87;;;;-1:-1:-1;;;52188:87:0;;13004:2:1;52188:87:0;;;12986:21:1;13043:2;13023:18;;;13016:30;13082:34;13062:18;;;13055:62;-1:-1:-1;;;13133:18:1;;;13126:36;13179:19;;52188:87:0;12802:402:1;52188:87:0;52309:1;52294:12;:16;52286:80;;;;-1:-1:-1;;;52286:80:0;;13411:2:1;52286:80:0;;;13393:21:1;13450:2;13430:18;;;13423:30;13489:34;13469:18;;;13462:62;-1:-1:-1;;;13540:18:1;;;13533:49;13599:19;;52286:80:0;13209:415:1;52286:80:0;52401:11;;52385:12;:27;;52377:72;;;;-1:-1:-1;;;52377:72:0;;;;;;;:::i;:::-;52468:5;;52495:9;;52468:23;;52478:12;52468:9;:23::i;:::-;:36;52460:78;;;;-1:-1:-1;;;52460:78:0;;11938:2:1;52460:78:0;;;11920:21:1;11977:2;11957:18;;;11950:30;12016:31;11996:18;;;11989:59;12065:18;;52460:78:0;11736:353:1;52460:78:0;52554:6;52549:131;52570:12;52566:1;:16;52549:131;;;52604:36;52614:10;52626:13;53286:7;;;53207:94;52604:36;52655:7;:9;;;:7;:9;;;:::i;:::-;;;;;;52584:3;;;;;:::i;:::-;;;;52549:131;;32815:295;-1:-1:-1;;;;;32918:24:0;;26389:10;32918:24;;32910:62;;;;-1:-1:-1;;;32910:62:0;;13831:2:1;32910:62:0;;;13813:21:1;13870:2;13850:18;;;13843:30;13909:27;13889:18;;;13882:55;13954:18;;32910:62:0;13629:349:1;32910:62:0;26389:10;32985:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32985:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32985:53:0;;;;;;;;;;33054:48;;540:41:1;;;32985:42:0;;26389:10;33054:48;;513:18:1;33054:48:0;;;;;;;32815:295;;:::o;50452:104::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50525:13:::1;:23:::0;50452:104::o;34078:328::-;34253:41;26389:10;34286:7;34253:18;:41::i;:::-;34245:103;;;;-1:-1:-1;;;34245:103:0;;;;;;;:::i;:::-;34359:39;34373:4;34379:2;34383:7;34392:5;34359:13;:39::i;:::-;34078:328;;;;:::o;31312:324::-;35981:4;36005:16;;;:7;:16;;;;;;31385:13;;-1:-1:-1;;;;;36005:16:0;31411:76;;;;-1:-1:-1;;;31411:76:0;;14185:2:1;31411:76:0;;;14167:21:1;14224:2;14204:18;;;14197:30;14263:34;14243:18;;;14236:62;-1:-1:-1;;;14314:18:1;;;14307:45;14369:19;;31411:76:0;13983:411:1;31411:76:0;31500:18;31521:9;:7;:9::i;:::-;31500:30;;31569:1;31554:4;31548:18;:22;:80;;;;;;;;;;;;;;;;;31597:4;31603:18;:7;:16;:18::i;:::-;31580:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31548:80;31541:87;31312:324;-1:-1:-1;;;31312:324:0:o;51034:302::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;51120:7:::1;;51108:8;:19;;51100:65;;;::::0;-1:-1:-1;;;51100:65:0;;15076:2:1;51100:65:0::1;::::0;::::1;15058:21:1::0;15115:2;15095:18;;;15088:30;15154:34;15134:18;;;15127:62;-1:-1:-1;;;15205:18:1;;;15198:31;15246:19;;51100:65:0::1;14874:397:1::0;51100:65:0::1;51187:8;51176:7;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;51211:6:0::1;::::0;-1:-1:-1;51206:123:0::1;51227:8;51223:1;:12;51206:123;;;51257:36;51267:10;51279:13;53286:7:::0;;;53207:94;51257:36:::1;51308:7;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;51237:3;;;;;:::i;:::-;;;;51206:123;;50763:122:::0;50821:7;50870:5;;50860:9;:15;;;;:::i;28358:192::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28447:22:0;::::1;28439:73;;;::::0;-1:-1:-1;;;28439:73:0;;15478:2:1;28439:73:0::1;::::0;::::1;15460:21:1::0;15517:2;15497:18;;;15490:30;15556:34;15536:18;;;15529:62;-1:-1:-1;;;15607:18:1;;;15600:36;15653:19;;28439:73:0::1;15276:402:1::0;28439:73:0::1;28523:19;28533:8;28523:9;:19::i;:::-;28358:192:::0;:::o;50564:83::-;27631:6;;-1:-1:-1;;;;;27631:6:0;26389:10;27778:23;27770:68;;;;-1:-1:-1;;;27770:68:0;;;;;;;:::i;:::-;50631:8:::1;::::0;;-1:-1:-1;;50619:20:0;::::1;50631:8;::::0;;::::1;50630:9;50619:20;::::0;;50564:83::o;30023:305::-;30125:4;-1:-1:-1;;;;;;30162:40:0;;-1:-1:-1;;;30162:40:0;;:105;;-1:-1:-1;;;;;;;30219:48:0;;-1:-1:-1;;;30219:48:0;30162:105;:158;;;-1:-1:-1;;;;;;;;;;19404:40:0;;;30284:36;19295:157;39898:174;39973:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39973:29:0;-1:-1:-1;;;;;39973:29:0;;;;;;;;:24;;40027:23;39973:24;40027:14;:23::i;:::-;-1:-1:-1;;;;;40018:46:0;;;;;;;;;;;39898:174;;:::o;36210:348::-;36303:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;36320:73;;;;-1:-1:-1;;;36320:73:0;;15885:2:1;36320:73:0;;;15867:21:1;15924:2;15904:18;;;15897:30;15963:34;15943:18;;;15936:62;-1:-1:-1;;;16014:18:1;;;16007:42;16066:19;;36320:73:0;15683:408:1;36320:73:0;36404:13;36420:23;36435:7;36420:14;:23::i;:::-;36404:39;;36473:5;-1:-1:-1;;;;;36462:16:0;:7;-1:-1:-1;;;;;36462:16:0;;:51;;;;36506:7;-1:-1:-1;;;;;36482:31:0;:20;36494:7;36482:11;:20::i;:::-;-1:-1:-1;;;;;36482:31:0;;36462:51;:87;;;-1:-1:-1;;;;;;33302:25:0;;;33278:4;33302:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36517:32;36454:96;36210:348;-1:-1:-1;;;;36210:348:0:o;39202:578::-;39361:4;-1:-1:-1;;;;;39334:31:0;:23;39349:7;39334:14;:23::i;:::-;-1:-1:-1;;;;;39334:31:0;;39326:85;;;;-1:-1:-1;;;39326:85:0;;16298:2:1;39326:85:0;;;16280:21:1;16337:2;16317:18;;;16310:30;16376:34;16356:18;;;16349:62;-1:-1:-1;;;16427:18:1;;;16420:39;16476:19;;39326:85:0;16096:405:1;39326:85:0;-1:-1:-1;;;;;39430:16:0;;39422:65;;;;-1:-1:-1;;;39422:65:0;;16708:2:1;39422:65:0;;;16690:21:1;16747:2;16727:18;;;16720:30;16786:34;16766:18;;;16759:62;-1:-1:-1;;;16837:18:1;;;16830:34;16881:19;;39422:65:0;16506:400:1;39422:65:0;39500:39;39521:4;39527:2;39531:7;39500:20;:39::i;:::-;39604:29;39621:1;39625:7;39604:8;:29::i;:::-;-1:-1:-1;;;;;39646:15:0;;;;;;:9;:15;;;;;:20;;39665:1;;39646:15;:20;;39665:1;;39646:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39677:13:0;;;;;;:9;:13;;;;;:18;;39694:1;;39677:13;:18;;39694:1;;39677:18;:::i;:::-;;;;-1:-1:-1;;39706:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39706:21:0;-1:-1:-1;;;;;39706:21:0;;;;;;;;;39745:27;;39706:16;;39745:27;;;;;;;39202:578;;;:::o;3643:98::-;3701:7;3728:5;3732:1;3728;:5;:::i;36900:110::-;36976:26;36986:2;36990:7;36976:26;;;;;;;;;;;;:9;:26::i;35288:315::-;35445:28;35455:4;35461:2;35465:7;35445:9;:28::i;:::-;35492:48;35515:4;35521:2;35525:7;35534:5;35492:22;:48::i;:::-;35484:111;;;;-1:-1:-1;;;35484:111:0;;;;;;;:::i;31884:99::-;31934:13;31967:8;31960:15;;;;;:::i;7323:723::-;7379:13;7600:10;7596:53;;-1:-1:-1;;7627:10:0;;;;;;;;;;;;-1:-1:-1;;;7627:10:0;;;;;7323:723::o;7596:53::-;7674:5;7659:12;7715:78;7722:9;;7715:78;;7748:8;;;;:::i;:::-;;-1:-1:-1;7771:10:0;;-1:-1:-1;7779:2:0;7771:10;;:::i;:::-;;;7715:78;;;7803:19;7835:6;7825:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7825:17:0;;7803:39;;7853:154;7860:10;;7853:154;;7887:11;7897:1;7887:11;;:::i;:::-;;-1:-1:-1;7956:10:0;7964:2;7956:5;:10;:::i;:::-;7943:24;;:2;:24;:::i;:::-;7930:39;;7913:6;7920;7913:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7913:56:0;;;;;;;;-1:-1:-1;7984:11:0;7993:2;7984:11;;:::i;:::-;;;7853:154;;28558:173;28633:6;;;-1:-1:-1;;;;;28650:17:0;;;-1:-1:-1;;;;;;28650:17:0;;;;;;;28683:40;;28633:6;;;28650:17;28633:6;;28683:40;;28614:16;;28683:40;28603:128;28558:173;:::o;44662:589::-;-1:-1:-1;;;;;44868:18:0;;44864:187;;44903:40;44935:7;46078:10;:17;;46051:24;;;;:15;:24;;;;;:44;;;46106:24;;;;;;;;;;;;45974:164;44903:40;44864:187;;;44973:2;-1:-1:-1;;;;;44965:10:0;:4;-1:-1:-1;;;;;44965:10:0;;44961:90;;44992:47;45025:4;45031:7;44992:32;:47::i;:::-;-1:-1:-1;;;;;45065:16:0;;45061:183;;45098:45;45135:7;45098:36;:45::i;45061:183::-;45171:4;-1:-1:-1;;;;;45165:10:0;:2;-1:-1:-1;;;;;45165:10:0;;45161:83;;45192:40;45220:2;45224:7;45192:27;:40::i;37237:321::-;37367:18;37373:2;37377:7;37367:5;:18::i;:::-;37418:54;37449:1;37453:2;37457:7;37466:5;37418:22;:54::i;:::-;37396:154;;;;-1:-1:-1;;;37396:154:0;;;;;;;:::i;40637:803::-;40792:4;-1:-1:-1;;;;;40813:13:0;;10113:20;10161:8;40809:624;;40849:72;;-1:-1:-1;;;40849:72:0;;-1:-1:-1;;;;;40849:36:0;;;;;:72;;26389:10;;40900:4;;40906:7;;40915:5;;40849:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40849:72:0;;;;;;;;-1:-1:-1;;40849:72:0;;;;;;;;;;;;:::i;:::-;;;40845:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41095:13:0;;41091:272;;41138:60;;-1:-1:-1;;;41138:60:0;;;;;;;:::i;41091:272::-;41313:6;41307:13;41298:6;41294:2;41290:15;41283:38;40845:533;-1:-1:-1;;;;;;40972:55:0;-1:-1:-1;;;40972:55:0;;-1:-1:-1;40965:62:0;;40809:624;-1:-1:-1;41417:4:0;40637:803;;;;;;:::o;46765:988::-;47031:22;47081:1;47056:22;47073:4;47056:16;:22::i;:::-;:26;;;;:::i;:::-;47093:18;47114:26;;;:17;:26;;;;;;47031:51;;-1:-1:-1;47247:28:0;;;47243:328;;-1:-1:-1;;;;;47314:18:0;;47292:19;47314:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47365:30;;;;;;:44;;;47482:30;;:17;:30;;;;;:43;;;47243:328;-1:-1:-1;47667:26:0;;;;:17;:26;;;;;;;;47660:33;;;-1:-1:-1;;;;;47711:18:0;;;;;:12;:18;;;;;:34;;;;;;;47704:41;46765:988::o;48048:1079::-;48326:10;:17;48301:22;;48326:21;;48346:1;;48326:21;:::i;:::-;48358:18;48379:24;;;:15;:24;;;;;;48752:10;:26;;48301:46;;-1:-1:-1;48379:24:0;;48301:46;;48752:26;;;;;;:::i;:::-;;;;;;;;;48730:48;;48816:11;48791:10;48802;48791:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48896:28;;;:15;:28;;;;;;;:41;;;49068:24;;;;;49061:31;49103:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;48119:1008;;;48048:1079;:::o;45552:221::-;45637:14;45654:20;45671:2;45654:16;:20::i;:::-;-1:-1:-1;;;;;45685:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45730:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45552:221:0:o;37894:382::-;-1:-1:-1;;;;;37974:16:0;;37966:61;;;;-1:-1:-1;;;37966:61:0;;18786:2:1;37966:61:0;;;18768:21:1;;;18805:18;;;18798:30;18864:34;18844:18;;;18837:62;18916:18;;37966:61:0;18584:356:1;37966:61:0;35981:4;36005:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36005:16:0;:30;38038:58;;;;-1:-1:-1;;;38038:58:0;;19147:2:1;38038:58:0;;;19129:21:1;19186:2;19166:18;;;19159:30;19225;19205:18;;;19198:58;19273:18;;38038:58:0;18945:352:1;38038:58:0;38109:45;38138:1;38142:2;38146:7;38109:20;:45::i;:::-;-1:-1:-1;;;;;38167:13:0;;;;;;:9;:13;;;;;:18;;38184:1;;38167:13;:18;;38184:1;;38167:18;:::i;:::-;;;;-1:-1:-1;;38196:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38196:21:0;-1:-1:-1;;;;;38196:21:0;;;;;;;;38235:33;;38196:16;;;38235:33;;38196:16;;38235:33;37894:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:632::-;4275:2;4327:21;;;4397:13;;4300:18;;;4419:22;;;4246:4;;4275:2;4498:15;;;;4472:2;4457:18;;;4246:4;4541:169;4555:6;4552:1;4549:13;4541:169;;;4616:13;;4604:26;;4685:15;;;;4650:12;;;;4577:1;4570:9;4541:169;;;-1:-1:-1;4727:3:1;;4104:632;-1:-1:-1;;;;;;4104:632:1:o;4741:347::-;4806:6;4814;4867:2;4855:9;4846:7;4842:23;4838:32;4835:52;;;4883:1;4880;4873:12;4835:52;4906:29;4925:9;4906:29;:::i;:::-;4896:39;;4985:2;4974:9;4970:18;4957:32;5032:5;5025:13;5018:21;5011:5;5008:32;4998:60;;5054:1;5051;5044:12;4998:60;5077:5;5067:15;;;4741:347;;;;;:::o;5093:667::-;5188:6;5196;5204;5212;5265:3;5253:9;5244:7;5240:23;5236:33;5233:53;;;5282:1;5279;5272:12;5233:53;5305:29;5324:9;5305:29;:::i;:::-;5295:39;;5353:38;5387:2;5376:9;5372:18;5353:38;:::i;:::-;5343:48;;5438:2;5427:9;5423:18;5410:32;5400:42;;5493:2;5482:9;5478:18;5465:32;5520:18;5512:6;5509:30;5506:50;;;5552:1;5549;5542:12;5506:50;5575:22;;5628:4;5620:13;;5616:27;-1:-1:-1;5606:55:1;;5657:1;5654;5647:12;5606:55;5680:74;5746:7;5741:2;5728:16;5723:2;5719;5715:11;5680:74;:::i;:::-;5670:84;;;5093:667;;;;;;;:::o;5765:260::-;5833:6;5841;5894:2;5882:9;5873:7;5869:23;5865:32;5862:52;;;5910:1;5907;5900:12;5862:52;5933:29;5952:9;5933:29;:::i;:::-;5923:39;;5981:38;6015:2;6004:9;6000:18;5981:38;:::i;:::-;5971:48;;5765:260;;;;;:::o;6030:380::-;6109:1;6105:12;;;;6152;;;6173:61;;6227:4;6219:6;6215:17;6205:27;;6173:61;6280:2;6272:6;6269:14;6249:18;6246:38;6243:161;;;6326:10;6321:3;6317:20;6314:1;6307:31;6361:4;6358:1;6351:15;6389:4;6386:1;6379:15;6243:161;;6030:380;;;:::o;7655:413::-;7857:2;7839:21;;;7896:2;7876:18;;;7869:30;7935:34;7930:2;7915:18;;7908:62;-1:-1:-1;;;8001:2:1;7986:18;;7979:47;8058:3;8043:19;;7655:413::o;8485:356::-;8687:2;8669:21;;;8706:18;;;8699:30;8765:34;8760:2;8745:18;;8738:62;8832:2;8817:18;;8485:356::o;9259:127::-;9320:10;9315:3;9311:20;9308:1;9301:31;9351:4;9348:1;9341:15;9375:4;9372:1;9365:15;10924:397;11126:2;11108:21;;;11165:2;11145:18;;;11138:30;11204:34;11199:2;11184:18;;11177:62;-1:-1:-1;;;11270:2:1;11255:18;;11248:31;11311:3;11296:19;;10924:397::o;12094:127::-;12155:10;12150:3;12146:20;12143:1;12136:31;12186:4;12183:1;12176:15;12210:4;12207:1;12200:15;12226:135;12265:3;-1:-1:-1;;12286:17:1;;12283:43;;;12306:18;;:::i;:::-;-1:-1:-1;12353:1:1;12342:13;;12226:135::o;12366:125::-;12406:4;12434:1;12431;12428:8;12425:34;;;12439:18;;:::i;:::-;-1:-1:-1;12476:9:1;;12366:125::o;12496:168::-;12536:7;12602:1;12598;12594:6;12590:14;12587:1;12584:21;12579:1;12572:9;12565:17;12561:45;12558:71;;;12609:18;;:::i;:::-;-1:-1:-1;12649:9:1;;12496:168::o;12669:128::-;12709:3;12740:1;12736:6;12733:1;12730:13;12727:39;;;12746:18;;:::i;:::-;-1:-1:-1;12782:9:1;;12669:128::o;14399:470::-;14578:3;14616:6;14610:13;14632:53;14678:6;14673:3;14666:4;14658:6;14654:17;14632:53;:::i;:::-;14748:13;;14707:16;;;;14770:57;14748:13;14707:16;14804:4;14792:17;;14770:57;:::i;:::-;14843:20;;14399:470;-1:-1:-1;;;;14399:470:1:o;16911:414::-;17113:2;17095:21;;;17152:2;17132:18;;;17125:30;17191:34;17186:2;17171:18;;17164:62;-1:-1:-1;;;17257:2:1;17242:18;;17235:48;17315:3;17300:19;;16911:414::o;17330:127::-;17391:10;17386:3;17382:20;17379:1;17372:31;17422:4;17419:1;17412:15;17446:4;17443:1;17436:15;17462:120;17502:1;17528;17518:35;;17533:18;;:::i;:::-;-1:-1:-1;17567:9:1;;17462:120::o;17587:112::-;17619:1;17645;17635:35;;17650:18;;:::i;:::-;-1:-1:-1;17684:9:1;;17587:112::o;17704:489::-;-1:-1:-1;;;;;17973:15:1;;;17955:34;;18025:15;;18020:2;18005:18;;17998:43;18072:2;18057:18;;18050:34;;;18120:3;18115:2;18100:18;;18093:31;;;17898:4;;18141:46;;18167:19;;18159:6;18141:46;:::i;:::-;18133:54;17704:489;-1:-1:-1;;;;;;17704:489:1:o;18198:249::-;18267:6;18320:2;18308:9;18299:7;18295:23;18291:32;18288:52;;;18336:1;18333;18326:12;18288:52;18368:9;18362:16;18387:30;18411:5;18387:30;:::i;18452:127::-;18513:10;18508:3;18504:20;18501:1;18494:31;18544:4;18541:1;18534:15;18568:4;18565:1;18558:15
Swarm Source
ipfs://b1743ee4e7188a087072373ec68509dd05c985e49ea9aa189a55103cd960dc15
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.