ERC-721
Source Code
Overview
Max Total Supply
5,000 PFK
Holders
2,393
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PFKLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
PoserFork
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
contract PoserFork is ERC721, ReentrancyGuard, Ownable {
using Counters for Counters.Counter;
constructor(string memory customBaseURI_) ERC721("Poser Fork", "PFK") {
customBaseURI = customBaseURI_;
}
/** MINTING LIMITS **/
mapping(address => uint256) private mintCountMap;
mapping(address => uint256) private allowedMintCountMap;
uint256 public constant MINT_LIMIT_PER_WALLET = 10;
function allowedMintCount(address minter) public view returns (uint256) {
return MINT_LIMIT_PER_WALLET - mintCountMap[minter];
}
function updateMintCount(address minter, uint256 count) private {
mintCountMap[minter] += count;
}
/** MINTING **/
uint256 public constant MAX_SUPPLY = 5000;
uint256 public constant MAX_MULTIMINT = 10;
Counters.Counter private supplyCounter;
function mint(uint256 count) public nonReentrant {
require(saleIsActive, "Sale not active");
if (allowedMintCount(msg.sender) >= count) {
updateMintCount(msg.sender, count);
} else {
revert("Minting limit exceeded");
}
require(totalSupply() + count - 1 < MAX_SUPPLY, "Exceeds max supply");
require(count <= MAX_MULTIMINT, "Mint at most 10 at a time");
for (uint256 i = 0; i < count; i++) {
_mint(msg.sender, totalSupply());
supplyCounter.increment();
}
}
function totalSupply() public view returns (uint256) {
return supplyCounter.current();
}
/** ACTIVATION **/
bool public saleIsActive = true;
function setSaleIsActive(bool saleIsActive_) external onlyOwner {
saleIsActive = saleIsActive_;
}
/** URI HANDLING **/
string private customBaseURI;
function setBaseURI(string memory customBaseURI_) external onlyOwner {
customBaseURI = customBaseURI_;
}
function _baseURI() internal view virtual override returns (string memory) {
return customBaseURI;
}
function tokenURI(uint256 tokenId) public view override
returns (string memory)
{
return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
}
}
// Contract created with Studio 721 v1.5.0
// https://721.so// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
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.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 {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"customBaseURI_","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":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive_","type":"bool"}],"name":"setSaleIsActive","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600b805460ff191660011790553480156200001e57600080fd5b5060405162001d7338038062001d738339810160408190526200004191620001e2565b604080518082018252600a815269506f73657220466f726b60b01b60208083019182528351808501909452600384526250464b60e81b9084015281519192916200008e9160009162000126565b508051620000a490600190602084019062000126565b5050600160065550620000b733620000d4565b8051620000cc90600c90602084019062000126565b5050620002fb565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013490620002be565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001f657600080fd5b82516001600160401b03808211156200020e57600080fd5b818501915085601f8301126200022357600080fd5b815181811115620002385762000238620001cc565b604051601f8201601f19908116603f01168101908382118183101715620002635762000263620001cc565b8160405282815288868487010111156200027c57600080fd5b600093505b82841015620002a0578484018601518185018701529285019262000281565b82841115620002b25760008684830101525b98975050505050505050565b600181811c90821680620002d357607f821691505b60208210811415620002f557634e487b7160e01b600052602260045260246000fd5b50919050565b611a68806200030b6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b8fc105111610097578063d6c336ed11610071578063d6c336ed146102e0578063e985e9c51461030e578063eb8d24441461034a578063f2fde38b1461035757600080fd5b8063b8fc1051146102e0578063bb660c0a146102e8578063c87b56dd146102fb57600080fd5b8063715018a6146102865780638da5cb5b1461028e57806395d89b411461029f578063a0712d68146102a7578063a22cb465146102ba578063b88d4fde146102cd57600080fd5b806323b872dd1161013057806323b872dd1461021e57806332cb6b0c1461023157806342842e0e1461023a57806355f804b31461024d5780636352211e1461026057806370a082311461027357600080fd5b806301ffc9a71461017857806302c88989146101a057806306fdde03146101b5578063081812fc146101ca578063095ea7b3146101f557806318160ddd14610208575b600080fd5b61018b6101863660046114a2565b61036a565b60405190151581526020015b60405180910390f35b6101b36101ae3660046114d4565b6103bc565b005b6101bd610402565b6040516101979190611547565b6101dd6101d836600461155a565b610494565b6040516001600160a01b039091168152602001610197565b6101b361020336600461158a565b610529565b61021061063f565b604051908152602001610197565b6101b361022c3660046115b4565b61064f565b61021061138881565b6101b36102483660046115b4565b610680565b6101b361025b36600461167c565b61069b565b6101dd61026e36600461155a565b6106dc565b6102106102813660046116c5565b610753565b6101b36107da565b6007546001600160a01b03166101dd565b6101bd610810565b6101b36102b536600461155a565b61081f565b6101b36102c83660046116e0565b610a14565b6101b36102db366004611713565b610ad9565b610210600a81565b6102106102f63660046116c5565b610b11565b6101bd61030936600461155a565b610b35565b61018b61031c36600461178f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b5461018b9060ff1681565b6101b36103653660046116c5565b610b66565b60006001600160e01b031982166380ac58cd60e01b148061039b57506001600160e01b03198216635b5e139f60e01b145b806103b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146103ef5760405162461bcd60e51b81526004016103e6906117b9565b60405180910390fd5b600b805460ff1916911515919091179055565b606060008054610411906117ee565b80601f016020809104026020016040519081016040528092919081815260200182805461043d906117ee565b801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661050d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e6565b506000908152600460205260409020546001600160a01b031690565b6000610534826106dc565b9050806001600160a01b0316836001600160a01b031614156105a25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e6565b336001600160a01b03821614806105be57506105be813361031c565b6106305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103e6565b61063a8383610c01565b505050565b600061064a600a5490565b905090565b6106593382610c6f565b6106755760405162461bcd60e51b81526004016103e690611829565b61063a838383610d66565b61063a83838360405180602001604052806000815250610ad9565b6007546001600160a01b031633146106c55760405162461bcd60e51b81526004016103e6906117b9565b80516106d890600c9060208401906113f3565b5050565b6000818152600260205260408120546001600160a01b0316806103b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e6565b60006001600160a01b0382166107be5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e6565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146108045760405162461bcd60e51b81526004016103e6906117b9565b61080e6000610f06565b565b606060018054610411906117ee565b600260065414156108725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103e6565b6002600655600b5460ff166108bb5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016103e6565b806108c533610b11565b106108d9576108d43382610f58565b61091a565b60405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81b1a5b5a5d08195e18d95959195960521b60448201526064016103e6565b61138860018261092861063f565b6109329190611890565b61093c91906118a8565b1061097e5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016103e6565b600a8111156109cf5760405162461bcd60e51b815260206004820152601960248201527f4d696e74206174206d6f737420313020617420612074696d650000000000000060448201526064016103e6565b60005b81811015610a0b576109eb336109e661063f565b610f89565b6109f9600a80546001019055565b80610a03816118bf565b9150506109d2565b50506001600655565b6001600160a01b038216331415610a6d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ae33383610c6f565b610aff5760405162461bcd60e51b81526004016103e690611829565b610b0b848484846110cb565b50505050565b6001600160a01b0381166000908152600860205260408120546103b690600a6118a8565b6060610b40826110fe565b604051602001610b5091906118da565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610b905760405162461bcd60e51b81526004016103e6906117b9565b6001600160a01b038116610bf55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e6565b610bfe81610f06565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c36826106dc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ce85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e6565b6000610cf3836106dc565b9050806001600160a01b0316846001600160a01b03161480610d2e5750836001600160a01b0316610d2384610494565b6001600160a01b0316145b80610d5e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d79826106dc565b6001600160a01b031614610de15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e6565b6001600160a01b038216610e435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e6565b610e4e600082610c01565b6001600160a01b0383166000908152600360205260408120805460019290610e779084906118a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ea5908490611890565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604081208054839290610f80908490611890565b90915550505050565b6001600160a01b038216610fdf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103e6565b6000818152600260205260409020546001600160a01b0316156110445760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103e6565b6001600160a01b038216600090815260036020526040812080546001929061106d908490611890565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6110d6848484610d66565b6110e2848484846111d9565b610b0b5760405162461bcd60e51b81526004016103e690611903565b6000818152600260205260409020546060906001600160a01b031661117d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e6565b60006111876112e6565b905060008151116111a757604051806020016040528060008152506111d2565b806111b1846112f5565b6040516020016111c2929190611955565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b156112db57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061121d903390899088908890600401611984565b602060405180830381600087803b15801561123757600080fd5b505af1925050508015611267575060408051601f3d908101601f19168201909252611264918101906119c1565b60015b6112c1573d808015611295576040519150601f19603f3d011682016040523d82523d6000602084013e61129a565b606091505b5080516112b95760405162461bcd60e51b81526004016103e690611903565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d5e565b506001949350505050565b6060600c8054610411906117ee565b6060816113195750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611343578061132d816118bf565b915061133c9050600a836119f4565b915061131d565b60008167ffffffffffffffff81111561135e5761135e6115f0565b6040519080825280601f01601f191660200182016040528015611388576020820181803683370190505b5090505b8415610d5e5761139d6001836118a8565b91506113aa600a86611a08565b6113b5906030611890565b60f81b8183815181106113ca576113ca611a1c565b60200101906001600160f81b031916908160001a9053506113ec600a866119f4565b945061138c565b8280546113ff906117ee565b90600052602060002090601f0160209004810192826114215760008555611467565b82601f1061143a57805160ff1916838001178555611467565b82800160010185558215611467579182015b8281111561146757825182559160200191906001019061144c565b50611473929150611477565b5090565b5b808211156114735760008155600101611478565b6001600160e01b031981168114610bfe57600080fd5b6000602082840312156114b457600080fd5b81356111d28161148c565b803580151581146114cf57600080fd5b919050565b6000602082840312156114e657600080fd5b6111d2826114bf565b60005b8381101561150a5781810151838201526020016114f2565b83811115610b0b5750506000910152565b600081518084526115338160208601602086016114ef565b601f01601f19169290920160200192915050565b6020815260006111d2602083018461151b565b60006020828403121561156c57600080fd5b5035919050565b80356001600160a01b03811681146114cf57600080fd5b6000806040838503121561159d57600080fd5b6115a683611573565b946020939093013593505050565b6000806000606084860312156115c957600080fd5b6115d284611573565b92506115e060208501611573565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611621576116216115f0565b604051601f8501601f19908116603f01168101908282118183101715611649576116496115f0565b8160405280935085815286868601111561166257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561168e57600080fd5b813567ffffffffffffffff8111156116a557600080fd5b8201601f810184136116b657600080fd5b610d5e84823560208401611606565b6000602082840312156116d757600080fd5b6111d282611573565b600080604083850312156116f357600080fd5b6116fc83611573565b915061170a602084016114bf565b90509250929050565b6000806000806080858703121561172957600080fd5b61173285611573565b935061174060208601611573565b925060408501359150606085013567ffffffffffffffff81111561176357600080fd5b8501601f8101871361177457600080fd5b61178387823560208401611606565b91505092959194509250565b600080604083850312156117a257600080fd5b6117ab83611573565b915061170a60208401611573565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061180257607f821691505b6020821081141561182357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156118a3576118a361187a565b500190565b6000828210156118ba576118ba61187a565b500390565b60006000198214156118d3576118d361187a565b5060010190565b600082516118ec8184602087016114ef565b64173539b7b760d91b920191825250600501919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516119678184602088016114ef565b83519083019061197b8183602088016114ef565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119b79083018461151b565b9695505050505050565b6000602082840312156119d357600080fd5b81516111d28161148c565b634e487b7160e01b600052601260045260246000fd5b600082611a0357611a036119de565b500490565b600082611a1757611a176119de565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e639c0339016eebce74ab2784906a1c540b8f29fda222328113a2ce53a7c514464736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962337a74753570666265363537376264646c376162796d666a696974626d6561327432736e776f793679727132637964723234612f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063b8fc105111610097578063d6c336ed11610071578063d6c336ed146102e0578063e985e9c51461030e578063eb8d24441461034a578063f2fde38b1461035757600080fd5b8063b8fc1051146102e0578063bb660c0a146102e8578063c87b56dd146102fb57600080fd5b8063715018a6146102865780638da5cb5b1461028e57806395d89b411461029f578063a0712d68146102a7578063a22cb465146102ba578063b88d4fde146102cd57600080fd5b806323b872dd1161013057806323b872dd1461021e57806332cb6b0c1461023157806342842e0e1461023a57806355f804b31461024d5780636352211e1461026057806370a082311461027357600080fd5b806301ffc9a71461017857806302c88989146101a057806306fdde03146101b5578063081812fc146101ca578063095ea7b3146101f557806318160ddd14610208575b600080fd5b61018b6101863660046114a2565b61036a565b60405190151581526020015b60405180910390f35b6101b36101ae3660046114d4565b6103bc565b005b6101bd610402565b6040516101979190611547565b6101dd6101d836600461155a565b610494565b6040516001600160a01b039091168152602001610197565b6101b361020336600461158a565b610529565b61021061063f565b604051908152602001610197565b6101b361022c3660046115b4565b61064f565b61021061138881565b6101b36102483660046115b4565b610680565b6101b361025b36600461167c565b61069b565b6101dd61026e36600461155a565b6106dc565b6102106102813660046116c5565b610753565b6101b36107da565b6007546001600160a01b03166101dd565b6101bd610810565b6101b36102b536600461155a565b61081f565b6101b36102c83660046116e0565b610a14565b6101b36102db366004611713565b610ad9565b610210600a81565b6102106102f63660046116c5565b610b11565b6101bd61030936600461155a565b610b35565b61018b61031c36600461178f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600b5461018b9060ff1681565b6101b36103653660046116c5565b610b66565b60006001600160e01b031982166380ac58cd60e01b148061039b57506001600160e01b03198216635b5e139f60e01b145b806103b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146103ef5760405162461bcd60e51b81526004016103e6906117b9565b60405180910390fd5b600b805460ff1916911515919091179055565b606060008054610411906117ee565b80601f016020809104026020016040519081016040528092919081815260200182805461043d906117ee565b801561048a5780601f1061045f5761010080835404028352916020019161048a565b820191906000526020600020905b81548152906001019060200180831161046d57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661050d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e6565b506000908152600460205260409020546001600160a01b031690565b6000610534826106dc565b9050806001600160a01b0316836001600160a01b031614156105a25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016103e6565b336001600160a01b03821614806105be57506105be813361031c565b6106305760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016103e6565b61063a8383610c01565b505050565b600061064a600a5490565b905090565b6106593382610c6f565b6106755760405162461bcd60e51b81526004016103e690611829565b61063a838383610d66565b61063a83838360405180602001604052806000815250610ad9565b6007546001600160a01b031633146106c55760405162461bcd60e51b81526004016103e6906117b9565b80516106d890600c9060208401906113f3565b5050565b6000818152600260205260408120546001600160a01b0316806103b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016103e6565b60006001600160a01b0382166107be5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016103e6565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b031633146108045760405162461bcd60e51b81526004016103e6906117b9565b61080e6000610f06565b565b606060018054610411906117ee565b600260065414156108725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103e6565b6002600655600b5460ff166108bb5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016103e6565b806108c533610b11565b106108d9576108d43382610f58565b61091a565b60405162461bcd60e51b8152602060048201526016602482015275135a5b9d1a5b99c81b1a5b5a5d08195e18d95959195960521b60448201526064016103e6565b61138860018261092861063f565b6109329190611890565b61093c91906118a8565b1061097e5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016103e6565b600a8111156109cf5760405162461bcd60e51b815260206004820152601960248201527f4d696e74206174206d6f737420313020617420612074696d650000000000000060448201526064016103e6565b60005b81811015610a0b576109eb336109e661063f565b610f89565b6109f9600a80546001019055565b80610a03816118bf565b9150506109d2565b50506001600655565b6001600160a01b038216331415610a6d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016103e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ae33383610c6f565b610aff5760405162461bcd60e51b81526004016103e690611829565b610b0b848484846110cb565b50505050565b6001600160a01b0381166000908152600860205260408120546103b690600a6118a8565b6060610b40826110fe565b604051602001610b5091906118da565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610b905760405162461bcd60e51b81526004016103e6906117b9565b6001600160a01b038116610bf55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103e6565b610bfe81610f06565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c36826106dc565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610ce85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016103e6565b6000610cf3836106dc565b9050806001600160a01b0316846001600160a01b03161480610d2e5750836001600160a01b0316610d2384610494565b6001600160a01b0316145b80610d5e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610d79826106dc565b6001600160a01b031614610de15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016103e6565b6001600160a01b038216610e435760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016103e6565b610e4e600082610c01565b6001600160a01b0383166000908152600360205260408120805460019290610e779084906118a8565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ea5908490611890565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526008602052604081208054839290610f80908490611890565b90915550505050565b6001600160a01b038216610fdf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016103e6565b6000818152600260205260409020546001600160a01b0316156110445760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016103e6565b6001600160a01b038216600090815260036020526040812080546001929061106d908490611890565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6110d6848484610d66565b6110e2848484846111d9565b610b0b5760405162461bcd60e51b81526004016103e690611903565b6000818152600260205260409020546060906001600160a01b031661117d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016103e6565b60006111876112e6565b905060008151116111a757604051806020016040528060008152506111d2565b806111b1846112f5565b6040516020016111c2929190611955565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b156112db57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061121d903390899088908890600401611984565b602060405180830381600087803b15801561123757600080fd5b505af1925050508015611267575060408051601f3d908101601f19168201909252611264918101906119c1565b60015b6112c1573d808015611295576040519150601f19603f3d011682016040523d82523d6000602084013e61129a565b606091505b5080516112b95760405162461bcd60e51b81526004016103e690611903565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d5e565b506001949350505050565b6060600c8054610411906117ee565b6060816113195750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611343578061132d816118bf565b915061133c9050600a836119f4565b915061131d565b60008167ffffffffffffffff81111561135e5761135e6115f0565b6040519080825280601f01601f191660200182016040528015611388576020820181803683370190505b5090505b8415610d5e5761139d6001836118a8565b91506113aa600a86611a08565b6113b5906030611890565b60f81b8183815181106113ca576113ca611a1c565b60200101906001600160f81b031916908160001a9053506113ec600a866119f4565b945061138c565b8280546113ff906117ee565b90600052602060002090601f0160209004810192826114215760008555611467565b82601f1061143a57805160ff1916838001178555611467565b82800160010185558215611467579182015b8281111561146757825182559160200191906001019061144c565b50611473929150611477565b5090565b5b808211156114735760008155600101611478565b6001600160e01b031981168114610bfe57600080fd5b6000602082840312156114b457600080fd5b81356111d28161148c565b803580151581146114cf57600080fd5b919050565b6000602082840312156114e657600080fd5b6111d2826114bf565b60005b8381101561150a5781810151838201526020016114f2565b83811115610b0b5750506000910152565b600081518084526115338160208601602086016114ef565b601f01601f19169290920160200192915050565b6020815260006111d2602083018461151b565b60006020828403121561156c57600080fd5b5035919050565b80356001600160a01b03811681146114cf57600080fd5b6000806040838503121561159d57600080fd5b6115a683611573565b946020939093013593505050565b6000806000606084860312156115c957600080fd5b6115d284611573565b92506115e060208501611573565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611621576116216115f0565b604051601f8501601f19908116603f01168101908282118183101715611649576116496115f0565b8160405280935085815286868601111561166257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561168e57600080fd5b813567ffffffffffffffff8111156116a557600080fd5b8201601f810184136116b657600080fd5b610d5e84823560208401611606565b6000602082840312156116d757600080fd5b6111d282611573565b600080604083850312156116f357600080fd5b6116fc83611573565b915061170a602084016114bf565b90509250929050565b6000806000806080858703121561172957600080fd5b61173285611573565b935061174060208601611573565b925060408501359150606085013567ffffffffffffffff81111561176357600080fd5b8501601f8101871361177457600080fd5b61178387823560208401611606565b91505092959194509250565b600080604083850312156117a257600080fd5b6117ab83611573565b915061170a60208401611573565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061180257607f821691505b6020821081141561182357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156118a3576118a361187a565b500190565b6000828210156118ba576118ba61187a565b500390565b60006000198214156118d3576118d361187a565b5060010190565b600082516118ec8184602087016114ef565b64173539b7b760d91b920191825250600501919050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600083516119678184602088016114ef565b83519083019061197b8183602088016114ef565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906119b79083018461151b565b9695505050505050565b6000602082840312156119d357600080fd5b81516111d28161148c565b634e487b7160e01b600052601260045260246000fd5b600082611a0357611a036119de565b500490565b600082611a1757611a176119de565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220e639c0339016eebce74ab2784906a1c540b8f29fda222328113a2ce53a7c514464736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656962337a74753570666265363537376264646c376162796d666a696974626d6561327432736e776f793679727132637964723234612f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : customBaseURI_ (string): ipfs://bafybeib3ztu5pfbe6577bddl7abymfjiitbmea2t2snwoy6yrq2cydr24a/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f6261667962656962337a74753570666265363537376264646c
Arg [3] : 376162796d666a696974626d6561327432736e776f7936797271326379647232
Arg [4] : 34612f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
286:2038:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1496:300:2;;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;1496:300:2;;;;;;;;1772:103:12;;;;;;:::i;:::-;;:::i;:::-;;2414:98:2;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:13;;;2024:51;;2012:2;1997:18;3925:217:2;1878:203:13;3463:401:2;;;;;;:::i;:::-;;:::i;1616:94:12:-;;;:::i;:::-;;;2669:25:13;;;2657:2;2642:18;1616:94:12;2523:177:13;4789:330:2;;;;;;:::i;:::-;;:::i;959:41:12:-;;996:4;959:41;;5185:179:2;;;;;;:::i;:::-;;:::i;1936:110:12:-;;;;;;:::i;:::-;;:::i;2117:235:2:-;;;;;;:::i;:::-;;:::i;1855:205::-;;;;;;:::i;:::-;;:::i;1605:92:0:-;;;:::i;973:85::-;1045:6;;-1:-1:-1;;;;;1045:6:0;973:85;;2576:102:2;;;:::i;1095:517:12:-;;;;;;:::i;:::-;;:::i;4209:290:2:-;;;;;;:::i;:::-;;:::i;5430:320::-;;;;;;:::i;:::-;;:::i;1005:42:12:-;;1045:2;1005:42;;694:134;;;;;;:::i;:::-;;:::i;2160:162::-;;;;;;:::i;:::-;;:::i;4565::2:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;1736:31:12;;;;;;;;;1846:189:0;;;;;;:::i;:::-;;:::i;1496:300:2:-;1598:4;-1:-1:-1;;;;;;1633:40:2;;-1:-1:-1;;;1633:40:2;;:104;;-1:-1:-1;;;;;;;1689:48:2;;-1:-1:-1;;;1689:48:2;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:10;;;1753:36:2;1614:175;1496:300;-1:-1:-1;;1496:300:2:o;1772:103:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:7;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;;;;;;;;;1842:12:12::1;:28:::0;;-1:-1:-1;;1842:28:12::1;::::0;::::1;;::::0;;;::::1;::::0;;1772:103::o;2414:98:2:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;4020:73;;;;-1:-1:-1;;;4020:73:2;;6598:2:13;4020:73:2;;;6580:21:13;6637:2;6617:18;;;6610:30;6676:34;6656:18;;;6649:62;-1:-1:-1;;;6727:18:13;;;6720:42;6779:19;;4020:73:2;6396:408:13;4020:73:2;-1:-1:-1;4111:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:2;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:2;:2;-1:-1:-1;;;;;3600:11:2;;;3592:57;;;;-1:-1:-1;;;3592:57:2;;7011:2:13;3592:57:2;;;6993:21:13;7050:2;7030:18;;;7023:30;7089:34;7069:18;;;7062:62;-1:-1:-1;;;7140:18:13;;;7133:31;7181:19;;3592:57:2;6809:397:13;3592:57:2;666:10:7;-1:-1:-1;;;;;3681:21:2;;;;:62;;-1:-1:-1;3706:37:2;3723:5;666:10:7;4565:162:2;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:2;;7413:2:13;3660:165:2;;;7395:21:13;7452:2;7432:18;;;7425:30;7491:34;7471:18;;;7464:62;7562:26;7542:18;;;7535:54;7606:19;;3660:165:2;7211:420:13;3660:165:2;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;1616:94:12:-;1660:7;1682:23;:13;864:14:8;;773:112;1682:23:12;1675:30;;1616:94;:::o;4789:330:2:-;4978:41;666:10:7;5011:7:2;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:2;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;5185:179::-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;1936:110:12:-;1045:6:0;;-1:-1:-1;;;;;1045:6:0;666:10:7;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;2011:30:12;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1936:110:::0;:::o;2117:235:2:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:2;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:2;;8256:2:13;2250:73:2;;;8238:21:13;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:13;;;8378:39;8434:19;;2250:73:2;8054:405:13;1855:205:2;1927:7;-1:-1:-1;;;;;1954:19:2;;1946:74;;;;-1:-1:-1;;;1946:74:2;;8666:2:13;1946:74:2;;;8648:21:13;8705:2;8685:18;;;8678:30;8744:34;8724:18;;;8717:62;-1:-1:-1;;;8795:18:13;;;8788:40;8845:19;;1946:74:2;8464:406:13;1946:74:2;-1:-1:-1;;;;;;2037:16:2;;;;;:9;:16;;;;;;;1855:205::o;1605:92:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:7;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2576:102:2:-;2632:13;2664:7;2657:14;;;;;:::i;1095:517:12:-;1680:1:1;2259:7;;:19;;2251:63;;;;-1:-1:-1;;;2251:63:1;;9077:2:13;2251:63:1;;;9059:21:13;9116:2;9096:18;;;9089:30;9155:33;9135:18;;;9128:61;9206:18;;2251:63:1;8875:355:13;2251:63:1;1680:1;2389:7;:18;1158:12:12::1;::::0;::::1;;1150:40;;;::::0;-1:-1:-1;;;1150:40:12;;9437:2:13;1150:40:12::1;::::0;::::1;9419:21:13::0;9476:2;9456:18;;;9449:30;-1:-1:-1;;;9495:18:13;;;9488:45;9550:18;;1150:40:12::1;9235:339:13::0;1150:40:12::1;1233:5;1201:28;1218:10;1201:16;:28::i;:::-;:37;1197:145;;1248:34;1264:10;1276:5;1248:15;:34::i;:::-;1197:145;;;1303:32;::::0;-1:-1:-1;;;1303:32:12;;9781:2:13;1303:32:12::1;::::0;::::1;9763:21:13::0;9820:2;9800:18;;;9793:30;-1:-1:-1;;;9839:18:13;;;9832:52;9901:18;;1303:32:12::1;9579:346:13::0;1197:145:12::1;996:4;1380:1;1372:5;1356:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:25;;;;:::i;:::-;:38;1348:69;;;::::0;-1:-1:-1;;;1348:69:12;;10527:2:13;1348:69:12::1;::::0;::::1;10509:21:13::0;10566:2;10546:18;;;10539:30;-1:-1:-1;;;10585:18:13;;;10578:48;10643:18;;1348:69:12::1;10325:342:13::0;1348:69:12::1;1045:2;1432:5;:22;;1424:60;;;::::0;-1:-1:-1;;;1424:60:12;;10874:2:13;1424:60:12::1;::::0;::::1;10856:21:13::0;10913:2;10893:18;;;10886:30;10952:27;10932:18;;;10925:55;10997:18;;1424:60:12::1;10672:349:13::0;1424:60:12::1;1496:9;1491:117;1515:5;1511:1;:9;1491:117;;;1535:32;1541:10;1553:13;:11;:13::i;:::-;1535:5;:32::i;:::-;1576:25;:13;978:19:8::0;;996:1;978:19;;;891:123;1576:25:12::1;1522:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1491:117;;;-1:-1:-1::0;;1637:1:1;2562:7;:22;1095:517:12:o;4209:290:2:-;-1:-1:-1;;;;;4311:24:2;;666:10:7;4311:24:2;;4303:62;;;;-1:-1:-1;;;4303:62:2;;11368:2:13;4303:62:2;;;11350:21:13;11407:2;11387:18;;;11380:30;11446:27;11426:18;;;11419:55;11491:18;;4303:62:2;11166:349:13;4303:62:2;666:10:7;4376:32:2;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:2;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:2;;;;;;;;;;4444:48;;540:41:13;;;4376:42:2;;666:10:7;4444:48:2;;513:18:13;4444:48:2;;;;;;;4209:290;;:::o;5430:320::-;5599:41;666:10:7;5632:7:2;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:2;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;694:134:12:-;-1:-1:-1;;;;;803:20:12;;757:7;803:20;;;:12;:20;;;;;;779:44;;687:2;779:44;:::i;2160:162::-;2229:13;2283:23;2298:7;2283:14;:23::i;:::-;2266:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;2252:65;;2160:162;;;:::o;1846:189:0:-;1045:6;;-1:-1:-1;;;;;1045:6:0;666:10:7;1185:23:0;1177:68;;;;-1:-1:-1;;;1177:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:0;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:0;;12170:2:13;1926:73:0::1;::::0;::::1;12152:21:13::0;12209:2;12189:18;;;12182:30;12248:34;12228:18;;;12221:62;-1:-1:-1;;;12299:18:13;;;12292:36;12345:19;;1926:73:0::1;11968:402:13::0;1926:73:0::1;2009:19;2019:8;2009:9;:19::i;:::-;1846:189:::0;:::o;11073:171:2:-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:2;-1:-1:-1;;;;;11147:29:2;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:2;;;;;;;;;;;11073:171;;:::o;7505:344::-;7598:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;7614:73;;;;-1:-1:-1;;;7614:73:2;;12577:2:13;7614:73:2;;;12559:21:13;12616:2;12596:18;;;12589:30;12655:34;12635:18;;;12628:62;-1:-1:-1;;;12706:18:13;;;12699:42;12758:19;;7614:73:2;12375:408:13;7614:73:2;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:2;:7;-1:-1:-1;;;;;7754:16:2;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:2;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:2;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:2;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:2:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:2;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:2;;10521:85;;;;-1:-1:-1;;;10521:85:2;;12990:2:13;10521:85:2;;;12972:21:13;13029:2;13009:18;;;13002:30;13068:34;13048:18;;;13041:62;-1:-1:-1;;;13119:18:13;;;13112:39;13168:19;;10521:85:2;12788:405:13;10521:85:2;-1:-1:-1;;;;;10624:16:2;;10616:65;;;;-1:-1:-1;;;10616:65:2;;13400:2:13;10616:65:2;;;13382:21:13;13439:2;13419:18;;;13412:30;13478:34;13458:18;;;13451:62;-1:-1:-1;;;13529:18:13;;;13522:34;13573:19;;10616:65:2;13198:400:13;10616:65:2;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:2;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:2;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:2;-1:-1:-1;;;;;10891:21:2;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;2041:169:0:-;2115:6;;;-1:-1:-1;;;;;2131:17:0;;;-1:-1:-1;;;;;;2131:17:0;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;832:104:12:-;-1:-1:-1;;;;;902:20:12;;;;;;:12;:20;;;;;:29;;926:5;;902:20;:29;;926:5;;902:29;:::i;:::-;;;;-1:-1:-1;;;;832:104:12:o;9141:372:2:-;-1:-1:-1;;;;;9220:16:2;;9212:61;;;;-1:-1:-1;;;9212:61:2;;13805:2:13;9212:61:2;;;13787:21:13;;;13824:18;;;13817:30;13883:34;13863:18;;;13856:62;13935:18;;9212:61:2;13603:356:13;9212:61:2;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:2;:30;9283:58;;;;-1:-1:-1;;;9283:58:2;;14166:2:13;9283:58:2;;;14148:21:13;14205:2;14185:18;;;14178:30;14244;14224:18;;;14217:58;14292:18;;9283:58:2;13964:352:13;9283:58:2;-1:-1:-1;;;;;9408:13:2;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:2;-1:-1:-1;;;;;9436:21:2;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;6612:307::-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:2;;;;;;;:::i;2744:329::-;7287:4;7310:16;;;:7;:16;;;;;;2817:13;;-1:-1:-1;;;;;7310:16:2;2842:76;;;;-1:-1:-1;;;2842:76:2;;14942:2:13;2842:76:2;;;14924:21:13;14981:2;14961:18;;;14954:30;15020:34;15000:18;;;14993:62;-1:-1:-1;;;15071:18:13;;;15064:45;15126:19;;2842:76:2;14740:411:13;2842:76:2;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:86;2973:93;2744:329;-1:-1:-1;;;2744:329:2:o;11797:778::-;11947:4;-1:-1:-1;;;;;11967:13:2;;1034:20:6;1080:8;11963:606:2;;12002:72;;-1:-1:-1;;;12002:72:2;;-1:-1:-1;;;;;12002:36:2;;;;;:72;;666:10:7;;12053:4:2;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:2;;;;;;;;-1:-1:-1;;12002:72:2;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:2;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:2;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:2;-1:-1:-1;;;12124:51:2;;-1:-1:-1;12117:58:2;;11963:606;-1:-1:-1;12554:4:2;11797:778;;;;;;:::o;2050:106:12:-;2110:13;2138;2131:20;;;;;:::i;275:703:9:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:9;;;;;;;;;;;;-1:-1:-1;;;574:10:9;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:9;;-1:-1:-1;720:2:9;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:9;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:9;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:9;;;;;;;;-1:-1:-1;919:11:9;928:2;919:11;;:::i;:::-;;;791:150;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;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:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:13;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:13;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:13:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:13;;1693:180;-1:-1:-1;1693:180:13:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:13;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:13:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:632;3235:5;3265:18;3306:2;3298:6;3295:14;3292:40;;;3312:18;;:::i;:::-;3387:2;3381:9;3355:2;3441:15;;-1:-1:-1;;3437:24:13;;;3463:2;3433:33;3429:42;3417:55;;;3487:18;;;3507:22;;;3484:46;3481:72;;;3533:18;;:::i;:::-;3573:10;3569:2;3562:22;3602:6;3593:15;;3632:6;3624;3617:22;3672:3;3663:6;3658:3;3654:16;3651:25;3648:45;;;3689:1;3686;3679:12;3648:45;3739:6;3734:3;3727:4;3719:6;3715:17;3702:44;3794:1;3787:4;3778:6;3770;3766:19;3762:30;3755:41;;;;3170:632;;;;;:::o;3807:451::-;3876:6;3929:2;3917:9;3908:7;3904:23;3900:32;3897:52;;;3945:1;3942;3935:12;3897:52;3985:9;3972:23;4018:18;4010:6;4007:30;4004:50;;;4050:1;4047;4040:12;4004:50;4073:22;;4126:4;4118:13;;4114:27;-1:-1:-1;4104:55:13;;4155:1;4152;4145:12;4104:55;4178:74;4244:7;4239:2;4226:16;4221:2;4217;4213:11;4178:74;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:13;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:356::-;5852:2;5834:21;;;5871:18;;;5864:30;5930:34;5925:2;5910:18;;5903:62;5997:2;5982:18;;5650:356::o;6011:380::-;6090:1;6086:12;;;;6133;;;6154:61;;6208:4;6200:6;6196:17;6186:27;;6154:61;6261:2;6253:6;6250:14;6230:18;6227:38;6224:161;;;6307:10;6302:3;6298:20;6295:1;6288:31;6342:4;6339:1;6332:15;6370:4;6367:1;6360:15;6224:161;;6011:380;;;:::o;7636:413::-;7838:2;7820:21;;;7877:2;7857:18;;;7850:30;7916:34;7911:2;7896:18;;7889:62;-1:-1:-1;;;7982:2:13;7967:18;;7960:47;8039:3;8024:19;;7636:413::o;9930:127::-;9991:10;9986:3;9982:20;9979:1;9972:31;10022:4;10019:1;10012:15;10046:4;10043:1;10036:15;10062:128;10102:3;10133:1;10129:6;10126:1;10123:13;10120:39;;;10139:18;;:::i;:::-;-1:-1:-1;10175:9:13;;10062:128::o;10195:125::-;10235:4;10263:1;10260;10257:8;10254:34;;;10268:18;;:::i;:::-;-1:-1:-1;10305:9:13;;10195:125::o;11026:135::-;11065:3;-1:-1:-1;;11086:17:13;;11083:43;;;11106:18;;:::i;:::-;-1:-1:-1;11153:1:13;11142:13;;11026:135::o;11520:443::-;11752:3;11790:6;11784:13;11806:53;11852:6;11847:3;11840:4;11832:6;11828:17;11806:53;:::i;:::-;-1:-1:-1;;;11881:16:13;;11906:22;;;-1:-1:-1;11955:1:13;11944:13;;11520:443;-1:-1:-1;11520:443:13:o;14321:414::-;14523:2;14505:21;;;14562:2;14542:18;;;14535:30;14601:34;14596:2;14581:18;;14574:62;-1:-1:-1;;;14667:2:13;14652:18;;14645:48;14725:3;14710:19;;14321:414::o;15156:470::-;15335:3;15373:6;15367:13;15389:53;15435:6;15430:3;15423:4;15415:6;15411:17;15389:53;:::i;:::-;15505:13;;15464:16;;;;15527:57;15505:13;15464:16;15561:4;15549:17;;15527:57;:::i;:::-;15600:20;;15156:470;-1:-1:-1;;;;15156:470:13:o;15631:489::-;-1:-1:-1;;;;;15900:15:13;;;15882:34;;15952:15;;15947:2;15932:18;;15925:43;15999:2;15984:18;;15977:34;;;16047:3;16042:2;16027:18;;16020:31;;;15825:4;;16068:46;;16094:19;;16086:6;16068:46;:::i;:::-;16060:54;15631:489;-1:-1:-1;;;;;;15631:489:13:o;16125:249::-;16194:6;16247:2;16235:9;16226:7;16222:23;16218:32;16215:52;;;16263:1;16260;16253:12;16215:52;16295:9;16289:16;16314:30;16338:5;16314:30;:::i;16379:127::-;16440:10;16435:3;16431:20;16428:1;16421:31;16471:4;16468:1;16461:15;16495:4;16492:1;16485:15;16511:120;16551:1;16577;16567:35;;16582:18;;:::i;:::-;-1:-1:-1;16616:9:13;;16511:120::o;16636:112::-;16668:1;16694;16684:35;;16699:18;;:::i;:::-;-1:-1:-1;16733:9:13;;16636:112::o;16753:127::-;16814:10;16809:3;16805:20;16802:1;16795:31;16845:4;16842:1;16835:15;16869:4;16866:1;16859:15
Swarm Source
ipfs://e639c0339016eebce74ab2784906a1c540b8f29fda222328113a2ce53a7c5144
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.