ERC-721
NFT
Overview
Max Total Supply
2,721 PT
Holders
560
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 PTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixelTigers
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // @@@//,@@ @@ // @@@.*@//,@ @@@@@@@@@@@@@@ @@,/@ // @@@.**@@//,@@,,,/////%%%%%%%%%%##@@((((/@ // @@@.****@//////////////////////////,@@@/@ // @@@@.****@//////////////////%%%%%%%////,@ // @@@(((@@@@...*((((//////////////////////////////@ // @....@@@@@@(((((((((//////.....////%%%/////%/////@ // @@***....@(((((%%%((((**********..%%%/////%%.**.@ // @*******%%((%%%((((((@@,,@@@@@***((((////(@,,@ // @@@@@@@@@.*****%%%((%%%((((((@ @@@@@@**((//////@@ @@ // @@...********%%%%((%%%%(((((@ @@@@@@..//////////,,@.....@ // @*********%%%%(((((%%((((((@@@@@///@//////////////@*@@ // @@@*****%%%%%(((((((((((//////////////@@********@@ // @.******%%%%((((((((@@(((//////.........@@@@@@..@@ // @@.**********%%%%(((@@(@@(((((((*@ @@.......@.....@@ // @@((@*****%%%(((((((@@@@@**@,,@@.....*@*@@*.@ // @(((((((@@**********************@@@@@@@@*....@@ // @%%%%((((((((@*@@@(**@@@***********...........**@ // @%%%%%%((((((((((((**...**********@************@@@ // @(%%%%%%%%%%((((((**.*..........******@@@@@@@@@(//%@ // @@((((((((((%%%%%%####.................********..%%%%@ // @(((((((((((((((((**...#####..................###./////@ // @%(((((((((((((((@@**.**..................**.......@/////@@ // @%%%%%%((((((((((@********....**.............*.......@@//%%%@ // @(((((((((((((((@*****.....*.................*.......@@%%////@ pragma solidity ^0.8.0; import "./PixelTigersERC721.sol"; contract PixelTigers is PixelTigers721 { modifier onlyOwnerToken(uint256 tokenId) { require(msg.sender == ownerOf(tokenId), "Do not own this tiger"); _; } uint256 constant public BREED_PRICE = 1000 ether; mapping (address => uint256) public numberOfLegendaries; mapping (address => uint256) public numberOfUniques; mapping (uint256 => bool) public isLegendary; mapping (uint256 => bool) public isUnique; constructor(string memory baseURI) PixelTigers721(baseURI) {} function breed(uint256 tiger1, uint256 tiger2) external onlyOwnerToken(tiger1) onlyOwnerToken(tiger2) { uint256 supply = totalSupply(); require(supply < totalMaxSupply,"No more babies can be bred"); require(tiger1 < totalAmtGenesis && tiger2 < totalAmtGenesis,"Babies can't be bred"); require(tiger1 != tiger2,"Use different parents"); require(breedActive,"breeding not active"); uint256 random = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp, msg.sender))); uint256 tokenId = random%8888 + totalAmtGenesis; while (_exists(tokenId)) { if (tokenId == 13331) { tokenId = 4443; tokenId++; } else { tokenId++; } } Pixel.burn(msg.sender, BREED_PRICE); babyCount++; _safeMint(msg.sender, tokenId); ownsThisToken[tokenId] = msg.sender; } function transferFrom(address from, address to, uint256 tokenId) public override { if (tokenId < totalAmtGenesis) { Pixel.rewardSystemUpdate(from, to); ownerGenesisCount[from]--; ownerGenesisCount[to]++; } if (isLegendary[tokenId] == true) { numberOfLegendaries[from]--; numberOfLegendaries[to]++; } if (isUnique[tokenId] == true){ numberOfUniques[from]--; numberOfUniques[to]++; } ERC721.transferFrom(from, to, tokenId); ownsThisToken[tokenId] = to; } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override { if (tokenId < totalAmtGenesis) { Pixel.rewardSystemUpdate(from, to); ownerGenesisCount[from]--; ownerGenesisCount[to]++; } if (isLegendary[tokenId] == true) { numberOfLegendaries[from]--; numberOfLegendaries[to]++; } if (isUnique[tokenId] == true){ numberOfUniques[from]--; numberOfUniques[to]++; } ERC721.safeTransferFrom(from, to, tokenId, data); ownsThisToken[tokenId] = to; } function setLegendaryList(uint256[] calldata tokenList) external onlyOwner { for(uint256 i; i < tokenList.length; i++){ numberOfLegendaries[ownerOf(tokenList[i])]++; isLegendary[tokenList[i]] = true; } } function setUniqueList(uint256[] calldata tokenList) external onlyOwner { for(uint256 i; i < tokenList.length; i++){ numberOfUniques[ownerOf(tokenList[i])]++; isUnique[tokenList[i]] = true; } } function tokenIdsOfOwner(address owner) external view returns(uint256[] memory) { uint256 ownertokenCount = balanceOf(owner); uint256[] memory tokensId = new uint256[](ownertokenCount); for(uint256 i; i < ownertokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function tokenGenesisOfOwner(address owner) external view returns(uint256[] memory) { uint256 ownertokenCount = ownerGenesisCount[owner]; uint256[] memory tokensId = new uint256[](ownertokenCount); for(uint256 i; i < ownertokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual returns(uint256 tokenId){ require(index < balanceOf(owner)); uint count; for(uint i; i< totalMaxSupply; i++){ if(owner == ownsThisToken[i]){ if(count == index) return i; else count++; } } } function addPresale(address[] calldata presaleAddresses, uint256 amount) external onlyOwner { for(uint256 i; i < presaleAddresses.length; i++){ presaleWhitelist[presaleAddresses[i]] = amount; } } function addReserved(address[] calldata reservedAddresses, uint256 amount) external onlyOwner { for(uint256 i; i < reservedAddresses.length; i++){ reservedList[reservedAddresses[i]] = amount; amtReserved = amtReserved + amount; } } function removeReserved(address[] calldata reservedAddresses, uint256 amount) external onlyOwner { for(uint256 i; i < reservedAddresses.length; i++){ reservedList[reservedAddresses[i]] = reservedList[reservedAddresses[i]] - amount; amtReserved = amtReserved - amount; } } function togglePresale() public onlyOwner { presaleActive = !presaleActive; } function togglePublicSale() public onlyOwner { publicSaleActive = !publicSaleActive; } function toggleReserveSale() public onlyOwner { reserveActive = !reserveActive; } function toggleBreed() public onlyOwner { breedActive = !breedActive; } }
// SPDX-License-Identifier: MIT // ____ ___ ______ ///\ _`\ __ /\_ \ /\__ _\ __ //\ \ \L\ \/\_\ __ _ __ \//\ \ \/_/\ \/ /\_\ __ __ _ __ ____ // \ \ ,__/\/\ \ /\ \/'\ /'__`\ \ \ \ \ \ \ \/\ \ /'_ `\ /'__`\ /\`'__\ /',__\ // \ \ \/ \ \ \ \/> </ /\ __/ \_\ \_ \ \ \ \ \ \ /\ \L\ \ /\ __/ \ \ \/ /\__, `\ // \ \_\ \ \_\ /\_/\_\\ \____\ /\____\ \ \_\ \ \_\\ \____ \ \ \____\ \ \_\ \/\____/ // \/_/ \/_/ \//\/_/ \/____/ \/____/ \/_/ \/_/ \/___L\ \ \/____/ \/_/ \/___/ // /\____/ // \_/__/ pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; interface iPixelERC20 { function burn(address _from, uint256 _amount) external; function rewardSystemUpdate(address _from, address _to) external; function timeStamp(address user) external; } contract PixelTigers721 is ERC721, Ownable { using SafeMath for uint256; using Address for address; string private baseTokenURI; uint256 public totalMaxSupply = 13332; uint256 public totalAmtGenesis = 4444; uint256 public babyCount = 0; uint256 public price = 0.069 ether; uint256 public constant MAX_PER_MINT = 2; uint256 public amtReserved; uint256 internal currentSupply; bool public presaleActive = false; bool public publicSaleActive = false; bool public reserveActive = false; bool public breedActive = false; mapping (address => uint256) public presaleWhitelist; mapping (address => uint256) public reservedList; mapping (address => uint256) public ownerGenesisCount; mapping (uint256 => address) internal ownsThisToken; iPixelERC20 public Pixel; constructor(string memory baseURI) ERC721("PixelTigers", "PT") { setBaseURI(baseURI); } function presaleMint(uint256 _count) public payable { uint256 supply = currentSupply; uint256 reserved = presaleWhitelist[msg.sender]; require(presaleActive,"Presale not active"); require(reserved > 0,"Not whitelisted"); require(_count <= reserved,"Can't mint more than reserved"); require(supply.add(_count) <= totalAmtGenesis - amtReserved,"Supply exceeded"); require(price.mul(_count) == msg.value,"Value sent not correct"); presaleWhitelist[msg.sender] = reserved - _count; currentSupply += _count; Pixel.timeStamp(msg.sender); for(uint256 i; i < _count; i++){ _safeMint(msg.sender, supply + i); ownerGenesisCount[msg.sender]++; ownsThisToken[supply+i] = msg.sender; } } function mint(uint256 _count) public payable { uint256 supply = currentSupply; require(publicSaleActive,"Mint not active"); require(_count > 0 && _count <= MAX_PER_MINT,"Invalid purchase amount"); require(supply.add(_count) <= totalAmtGenesis - amtReserved,"Supply exceeded"); require(price.mul(_count) == msg.value, "Value sent not correct"); require(msg.sender == tx.origin); currentSupply += _count; Pixel.timeStamp(msg.sender); for(uint256 i; i < _count; i++) { _safeMint(msg.sender, supply + i); ownerGenesisCount[msg.sender]++; ownsThisToken[supply+i] = msg.sender; } } function reserveMint(uint256 _count) public payable { uint256 supply = currentSupply; uint256 _reserved = reservedList[msg.sender]; require(reserveActive,"Mint not active"); require(_reserved > 0,"Not on reserved list"); require(_count <= _reserved,"Can't mint more than reserved"); require(supply.add(_count) <= totalAmtGenesis); reservedList[msg.sender] = _reserved - _count; currentSupply += _count; Pixel.timeStamp(msg.sender); for(uint256 i; i < _count; i++){ _safeMint(msg.sender, supply + i); ownerGenesisCount[msg.sender]++; ownsThisToken[supply+i] = msg.sender; } } function settokenERC20(address tokenERC20Address) external onlyOwner { Pixel = iPixelERC20(tokenERC20Address); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function totalSupply() public view returns (uint) { return currentSupply + babyCount; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) 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 { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) 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 generally not needed starting with Solidity 0.8, since 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; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 2000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"BREED_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Pixel","outputs":[{"internalType":"contract iPixelERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"reservedAddresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amtReserved","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":[],"name":"babyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tiger1","type":"uint256"},{"internalType":"uint256","name":"tiger2","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"breedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"uint256"}],"name":"isLegendary","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isUnique","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberOfLegendaries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberOfUniques","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ownerGenesisCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"reservedAddresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"removeReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reservedList","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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenList","type":"uint256[]"}],"name":"setLegendaryList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenList","type":"uint256[]"}],"name":"setUniqueList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenERC20Address","type":"address"}],"name":"settokenERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBreed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReserveSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokenGenesisOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokenIdsOfOwner","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":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAmtGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMaxSupply","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
608060405261341460085561115c6009556000600a5566f5232269808000600b55600e805463ffffffff191690553480156200003a57600080fd5b50604051620040e6380380620040e68339810160408190526200005d9162000265565b604080518082018252600b81526a506978656c54696765727360a81b602080830191825283518085019094526002845261141560f21b908401528151849391620000ab9160009190620001bf565b508051620000c1906001906020840190620001bf565b505050620000de620000d8620000f160201b60201c565b620000f5565b620000e98162000147565b50506200038e565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bb906007906020840190620001bf565b5050565b828054620001cd906200033b565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b6000602080838503121562000278578182fd5b82516001600160401b03808211156200028f578384fd5b818501915085601f830112620002a3578384fd5b815181811115620002b857620002b862000378565b604051601f8201601f19908116603f01168101908382118183101715620002e357620002e362000378565b816040528281528886848701011115620002fb578687fd5b8693505b828410156200031e5784840186015181850187015292850192620002ff565b828411156200032f57868684830101525b98975050505050505050565b600181811c908216806200035057607f821691505b602082108114156200037257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613d48806200039e6000396000f3fe6080604052600436106103605760003560e01c80638df07842116101c6578063bf424e7e116100f7578063d9ecad7b11610095578063e985e9c51161006f578063e985e9c514610991578063eb8835ab146109da578063ed32581014610a07578063f2fde38b14610a3457600080fd5b8063d9ecad7b1461093c578063e222c7f91461095c578063e6e5e1fc1461097157600080fd5b8063c87b56dd116100d1578063c87b56dd146108d3578063c884f0bb146108f3578063c9b298f114610913578063d58ee9611461092657600080fd5b8063bf424e7e14610866578063c39128c114610883578063c5a991f8146108a357600080fd5b8063a0712d6811610164578063b88d4fde1161013e578063b88d4fde146107e7578063b8cbcc8414610807578063bbd7173914610827578063bc8893b41461084757600080fd5b8063a0712d6814610794578063a22cb465146107a7578063b5b55000146107c757600080fd5b806399aa5d97116101a057806399aa5d971461071b5780639e59e5981461073b578063a035b1fe14610768578063a0617ad01461077e57600080fd5b80638df07842146106c65780638e83555e146106e657806395d89b411461070657600080fd5b806334ebb3a0116102a0578063539cb1e71161023e5780636683072611610218578063668307261461065257806370a0823114610673578063715018a6146106935780638da5cb5b146106a857600080fd5b8063539cb1e7146105fc57806355f804b3146106125780636352211e1461063257600080fd5b806342842e0e1161027a57806342842e0e1461057f57806345cac7391461059f57806350e12a8d146105b557806353135ca0146105e257600080fd5b806334ebb3a0146105285780633ccfd60b1461053d5780633edf2dbd1461055257600080fd5b806309d42b301161030d57806323b872dd116102e757806323b872dd146104a657806329ca6ad7146104c65780632f745c59146104f3578063343937431461051357600080fd5b806309d42b301461045b5780631342ff4c1461047e57806318160ddd1461049157600080fd5b80630750d2fb1161033e5780630750d2fb146103d3578063081812fc14610403578063095ea7b31461043b57600080fd5b806301ffc9a714610365578063034d77941461039a57806306fdde03146103b1575b600080fd5b34801561037157600080fd5b506103856103803660046139ee565b610a54565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103af610b39565b005b3480156103bd57600080fd5b506103c6610bd3565b6040516103919190613b80565b3480156103df57600080fd5b506103856103ee366004613a6c565b60176020526000908152604090205460ff1681565b34801561040f57600080fd5b5061042361041e366004613a6c565b610c65565b6040516001600160a01b039091168152602001610391565b34801561044757600080fd5b506103af61045636600461393b565b610d0b565b34801561046757600080fd5b50610470600281565b604051908152602001610391565b6103af61048c366004613a6c565b610e3d565b34801561049d57600080fd5b50610470611085565b3480156104b257600080fd5b506103af6104c136600461384d565b61109c565b3480156104d257600080fd5b506104706104e1366004613801565b60146020526000908152604090205481565b3480156104ff57600080fd5b5061047061050e36600461393b565b611291565b34801561051f57600080fd5b506103af611310565b34801561053457600080fd5b506103af61137e565b34801561054957600080fd5b506103af611414565b34801561055e57600080fd5b5061047061056d366004613801565b60156020526000908152604090205481565b34801561058b57600080fd5b506103af61059a36600461384d565b6114a1565b3480156105ab57600080fd5b50610470600c5481565b3480156105c157600080fd5b506104706105d0366004613801565b60106020526000908152604090205481565b3480156105ee57600080fd5b50600e546103859060ff1681565b34801561060857600080fd5b50610470600a5481565b34801561061e57600080fd5b506103af61062d366004613a26565b6114bc565b34801561063e57600080fd5b5061042361064d366004613a6c565b611529565b34801561065e57600080fd5b50600e54610385906301000000900460ff1681565b34801561067f57600080fd5b5061047061068e366004613801565b6115b4565b34801561069f57600080fd5b506103af61164e565b3480156106b457600080fd5b506006546001600160a01b0316610423565b3480156106d257600080fd5b506103af6106e13660046139ae565b6116b4565b3480156106f257600080fd5b506103af610701366004613964565b6117dd565b34801561071257600080fd5b506103c661191d565b34801561072757600080fd5b50601354610423906001600160a01b031681565b34801561074757600080fd5b5061075b610756366004613801565b61192c565b6040516103919190613b3c565b34801561077457600080fd5b50610470600b5481565b34801561078a57600080fd5b5061047060085481565b6103af6107a2366004613a6c565b6119ea565b3480156107b357600080fd5b506103af6107c2366004613901565b611c6e565b3480156107d357600080fd5b5061075b6107e2366004613801565b611c79565b3480156107f357600080fd5b506103af610802366004613888565b611d3a565b34801561081357600080fd5b506103af610822366004613964565b611f31565b34801561083357600080fd5b50600e546103859062010000900460ff1681565b34801561085357600080fd5b50600e5461038590610100900460ff1681565b34801561087257600080fd5b50610470683635c9adc5dea0000081565b34801561088f57600080fd5b506103af61089e3660046139ae565b611ffc565b3480156108af57600080fd5b506103856108be366004613a6c565b60166020526000908152604090205460ff1681565b3480156108df57600080fd5b506103c66108ee366004613a6c565b612119565b3480156108ff57600080fd5b506103af61090e366004613964565b612202565b6103af610921366004613a6c565b6122de565b34801561093257600080fd5b5061047060095481565b34801561094857600080fd5b506103af610957366004613a84565b6125c1565b34801561096857600080fd5b506103af612993565b34801561097d57600080fd5b506103af61098c366004613801565b612a27565b34801561099d57600080fd5b506103856109ac36600461381b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e657600080fd5b506104706109f5366004613801565b600f6020526000908152604090205481565b348015610a1357600080fd5b50610470610a22366004613801565b60116020526000908152604090205481565b348015610a4057600080fd5b506103af610a4f366004613801565b612aa3565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ae757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b3357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6006546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff8116620100009182900460ff1615909102179055565b606060008054610be290613c38565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0e90613c38565b8015610c5b5780601f10610c3057610100808354040283529160200191610c5b565b820191906000526020600020905b815481529060010190602001808311610c3e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b8f565b506000908152600460205260409020546001600160a01b031690565b6000610d1682611529565b9050806001600160a01b0316836001600160a01b03161415610da05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b8f565b336001600160a01b0382161480610dbc5750610dbc81336109ac565b610e2e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b8f565b610e388383612b85565b505050565b600d5433600090815260106020526040902054600e5462010000900460ff16610ea85760405162461bcd60e51b815260206004820152600f60248201527f4d696e74206e6f742061637469766500000000000000000000000000000000006044820152606401610b8f565b60008111610ef85760405162461bcd60e51b815260206004820152601460248201527f4e6f74206f6e207265736572766564206c6973740000000000000000000000006044820152606401610b8f565b80831115610f485760405162461bcd60e51b815260206004820152601d60248201527f43616e2774206d696e74206d6f7265207468616e2072657365727665640000006044820152606401610b8f565b600954610f558385612bf3565b1115610f6057600080fd5b610f6a8382613bde565b33600090815260106020526040812091909155600d8054859290610f8f908490613b93565b9091555050601354604051630d45414160e21b81523360048201526001600160a01b0390911690633515050490602401600060405180830381600087803b158015610fd957600080fd5b505af1158015610fed573d6000803e3d6000fd5b5050505060005b8381101561107f5761100f3361100a8386613b93565b612bff565b33600090815260116020526040812080549161102a83613c73565b909155503390506012600061103f8487613b93565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b03929092169190911790558061107781613c73565b915050610ff4565b50505050565b6000600a54600d546110979190613b93565b905090565b600954811015611179576013546040517f5a3295950000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152848116602483015290911690635a32959590604401600060405180830381600087803b15801561110e57600080fd5b505af1158015611122573d6000803e3d6000fd5b505050506001600160a01b038316600090815260116020526040812080549161114a83613c21565b90915550506001600160a01b038216600090815260116020526040812080549161117383613c73565b91905055505b60008181526016602052604090205460ff161515600114156111e8576001600160a01b03831660009081526014602052604081208054916111b983613c21565b90915550506001600160a01b03821660009081526014602052604081208054916111e283613c73565b91905055505b60008181526017602052604090205460ff16151560011415611257576001600160a01b038316600090815260156020526040812080549161122883613c21565b90915550506001600160a01b038216600090815260156020526040812080549161125183613c73565b91905055505b611262838383612c19565b600090815260126020526040902080546001600160a01b0319166001600160a01b039290921691909117905550565b600061129c836115b4565b82106112a757600080fd5b6000805b600854811015611308576000818152601260205260409020546001600160a01b03868116911614156112f657838214156112e8579150610b339050565b816112f281613c73565b9250505b8061130081613c73565b9150506112ab565b505092915050565b6006546001600160a01b0316331461136a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b600e805460ff19811660ff90911615179055565b6006546001600160a01b031633146113d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff811663010000009182900460ff1615909102179055565b6006546001600160a01b0316331461146e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b6040514790339082156108fc029083906000818181858888f1935050505015801561149d573d6000803e3d6000fd5b5050565b610e3883838360405180602001604052806000815250611d3a565b6006546001600160a01b031633146115165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b805161149d90600790602084019061368c565b6000818152600260205260408120546001600160a01b031680610b335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b8f565b60006001600160a01b0382166116325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b8f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146116a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b6116b26000612ca0565b565b6006546001600160a01b0316331461170e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b81811015610e38576015600061174c85858581811061174057634e487b7160e01b600052603260045260246000fd5b90506020020135611529565b6001600160a01b031681526020810191909152604001600090812080549161177383613c73565b919050555060016017600085858581811061179e57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117d590613c73565b915050611711565b6006546001600160a01b031633146118375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b8281101561107f57816010600086868581811061186757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061187c9190613801565b6001600160a01b03166001600160a01b03168152602001908152602001600020546118a79190613bde565b601060008686858181106118cb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906118e09190613801565b6001600160a01b03168152602081019190915260400160002055600c54611908908390613bde565b600c558061191581613c73565b91505061183a565b606060018054610be290613c38565b60606000611939836115b4565b905060008167ffffffffffffffff81111561196457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561198d578160200160208202803683370190505b50905060005b828110156119e2576119a58582611291565b8282815181106119c557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806119da81613c73565b915050611993565b509392505050565b600d54600e54610100900460ff16611a445760405162461bcd60e51b815260206004820152600f60248201527f4d696e74206e6f742061637469766500000000000000000000000000000000006044820152606401610b8f565b600082118015611a55575060028211155b611aa15760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420707572636861736520616d6f756e740000000000000000006044820152606401610b8f565b600c54600954611ab19190613bde565b611abb8284612bf3565b1115611b095760405162461bcd60e51b815260206004820152600f60248201527f537570706c7920657863656564656400000000000000000000000000000000006044820152606401610b8f565b600b543490611b189084612cf2565b14611b655760405162461bcd60e51b815260206004820152601660248201527f56616c75652073656e74206e6f7420636f7272656374000000000000000000006044820152606401610b8f565b333214611b7157600080fd5b81600d6000828254611b839190613b93565b9091555050601354604051630d45414160e21b81523360048201526001600160a01b0390911690633515050490602401600060405180830381600087803b158015611bcd57600080fd5b505af1158015611be1573d6000803e3d6000fd5b5050505060005b82811015610e3857611bfe3361100a8385613b93565b336000908152601160205260408120805491611c1983613c73565b9091555033905060126000611c2e8486613b93565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905580611c6681613c73565b915050611be8565b61149d338383612cfe565b6001600160a01b0381166000908152601160205260408120546060918167ffffffffffffffff811115611cbc57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611ce5578160200160208202803683370190505b50905060005b828110156119e257611cfd8582611291565b828281518110611d1d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611d3281613c73565b915050611ceb565b600954821015611e17576013546040517f5a3295950000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015290911690635a32959590604401600060405180830381600087803b158015611dac57600080fd5b505af1158015611dc0573d6000803e3d6000fd5b505050506001600160a01b0384166000908152601160205260408120805491611de883613c21565b90915550506001600160a01b0383166000908152601160205260408120805491611e1183613c73565b91905055505b60008281526016602052604090205460ff16151560011415611e86576001600160a01b0384166000908152601460205260408120805491611e5783613c21565b90915550506001600160a01b0383166000908152601460205260408120805491611e8083613c73565b91905055505b60008281526017602052604090205460ff16151560011415611ef5576001600160a01b0384166000908152601560205260408120805491611ec683613c21565b90915550506001600160a01b0383166000908152601560205260408120805491611eef83613c73565b91905055505b611f0184848484612dcd565b50600090815260126020526040902080546001600160a01b0319166001600160a01b039290921691909117905550565b6006546001600160a01b03163314611f8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b8281101561107f5781600f6000868685818110611fbb57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611fd09190613801565b6001600160a01b0316815260208101919091526040016000205580611ff481613c73565b915050611f8e565b6006546001600160a01b031633146120565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b81811015610e38576014600061208885858581811061174057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03168152602081019190915260400160009081208054916120af83613c73565b91905055506001601660008585858181106120da57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061211190613c73565b915050612059565b6000818152600260205260409020546060906001600160a01b03166121a65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b8f565b60006121b0612e55565b905060008151116121d057604051806020016040528060008152506121fb565b806121da84612e64565b6040516020016121eb929190613ad1565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461225c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b8281101561107f57816010600086868581811061228c57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906122a19190613801565b6001600160a01b03168152602081019190915260400160002055600c546122c9908390613b93565b600c55806122d681613c73565b91505061225f565b600d54336000908152600f6020526040902054600e5460ff166123435760405162461bcd60e51b815260206004820152601260248201527f50726573616c65206e6f742061637469766500000000000000000000000000006044820152606401610b8f565b600081116123935760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610b8f565b808311156123e35760405162461bcd60e51b815260206004820152601d60248201527f43616e2774206d696e74206d6f7265207468616e2072657365727665640000006044820152606401610b8f565b600c546009546123f39190613bde565b6123fd8385612bf3565b111561244b5760405162461bcd60e51b815260206004820152600f60248201527f537570706c7920657863656564656400000000000000000000000000000000006044820152606401610b8f565b600b54349061245a9085612cf2565b146124a75760405162461bcd60e51b815260206004820152601660248201527f56616c75652073656e74206e6f7420636f7272656374000000000000000000006044820152606401610b8f565b6124b18382613bde565b336000908152600f6020526040812091909155600d80548592906124d6908490613b93565b9091555050601354604051630d45414160e21b81523360048201526001600160a01b0390911690633515050490602401600060405180830381600087803b15801561252057600080fd5b505af1158015612534573d6000803e3d6000fd5b5050505060005b8381101561107f576125513361100a8386613b93565b33600090815260116020526040812080549161256c83613c73565b90915550339050601260006125818487613b93565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055806125b981613c73565b91505061253b565b816125cb81611529565b6001600160a01b0316336001600160a01b03161461262b5760405162461bcd60e51b815260206004820152601560248201527f446f206e6f74206f776e207468697320746967657200000000000000000000006044820152606401610b8f565b8161263581611529565b6001600160a01b0316336001600160a01b0316146126955760405162461bcd60e51b815260206004820152601560248201527f446f206e6f74206f776e207468697320746967657200000000000000000000006044820152606401610b8f565b600061269f611085565b905060085481106126f25760405162461bcd60e51b815260206004820152601a60248201527f4e6f206d6f7265206261626965732063616e20626520627265640000000000006044820152606401610b8f565b60095485108015612704575060095484105b6127505760405162461bcd60e51b815260206004820152601460248201527f4261626965732063616e277420626520627265640000000000000000000000006044820152606401610b8f565b838514156127a05760405162461bcd60e51b815260206004820152601560248201527f55736520646966666572656e7420706172656e747300000000000000000000006044820152606401610b8f565b600e546301000000900460ff166127f95760405162461bcd60e51b815260206004820152601360248201527f6272656564696e67206e6f7420616374697665000000000000000000000000006044820152606401610b8f565b600044423360405160200161284693929190928352602083019190915260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016604082015260540190565b6040516020818303038152906040528051906020012060001c905060006009546122b8836128749190613c8e565b61287e9190613b93565b90505b6000818152600260205260409020546001600160a01b0316156128c8578061341314156128be575061115b806128b681613c73565b915050612881565b806128b681613c73565b6013546040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152683635c9adc5dea0000060248201526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561293557600080fd5b505af1158015612949573d6000803e3d6000fd5b5050600a805492509050600061295e83613c73565b919050555061296d3382612bff565b600090815260126020526040902080546001600160a01b03191633179055505050505050565b6006546001600160a01b031633146129ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6006546001600160a01b03163314612a815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314612afd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b6001600160a01b038116612b795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b8f565b612b8281612ca0565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612bba82611529565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121fb8284613b93565b61149d828260405180602001604052806000815250612fba565b612c233382613043565b612c955760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b8f565b610e38838383613147565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006121fb8284613bbf565b816001600160a01b0316836001600160a01b03161415612d605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b8f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612dd73383613043565b612e495760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b8f565b61107f84848484613314565b606060078054610be290613c38565b606081612ea457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ece5780612eb881613c73565b9150612ec79050600a83613bab565b9150612ea8565b60008167ffffffffffffffff811115612ef757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f21576020820181803683370190505b5090505b8415612fb257612f36600183613bde565b9150612f43600a86613c8e565b612f4e906030613b93565b60f81b818381518110612f7157634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fab600a86613bab565b9450612f25565b949350505050565b612fc4838361339d565b612fd160008484846134df565b610e385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b8f565b6000818152600260205260408120546001600160a01b03166130cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b8f565b60006130d883611529565b9050806001600160a01b0316846001600160a01b031614806131135750836001600160a01b031661310884610c65565b6001600160a01b0316145b80612fb257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612fb2565b826001600160a01b031661315a82611529565b6001600160a01b0316146131d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b8f565b6001600160a01b0382166132515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b8f565b61325c600082612b85565b6001600160a01b0383166000908152600360205260408120805460019290613285908490613bde565b90915550506001600160a01b03821660009081526003602052604081208054600192906132b3908490613b93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61331f848484613147565b61332b848484846134df565b61107f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b8f565b6001600160a01b0382166133f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b8f565b6000818152600260205260409020546001600160a01b0316156134585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b8f565b6001600160a01b0382166000908152600360205260408120805460019290613481908490613b93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15613681576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061353c903390899088908890600401613b00565b602060405180830381600087803b15801561355657600080fd5b505af1925050508015613586575060408051601f3d908101601f1916820190925261358391810190613a0a565b60015b613636573d8080156135b4576040519150601f19603f3d011682016040523d82523d6000602084013e6135b9565b606091505b50805161362e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b8f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612fb2565b506001949350505050565b82805461369890613c38565b90600052602060002090601f0160209004810192826136ba5760008555613700565b82601f106136d357805160ff1916838001178555613700565b82800160010185558215613700579182015b828111156137005782518255916020019190600101906136e5565b5061370c929150613710565b5090565b5b8082111561370c5760008155600101613711565b600067ffffffffffffffff8084111561374057613740613cce565b604051601f8501601f19908116603f0116810190828211818310171561376857613768613cce565b8160405280935085815286868601111561378157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146137b257600080fd5b919050565b60008083601f8401126137c8578081fd5b50813567ffffffffffffffff8111156137df578182fd5b6020830191508360208260051b85010111156137fa57600080fd5b9250929050565b600060208284031215613812578081fd5b6121fb8261379b565b6000806040838503121561382d578081fd5b6138368361379b565b91506138446020840161379b565b90509250929050565b600080600060608486031215613861578081fd5b61386a8461379b565b92506138786020850161379b565b9150604084013590509250925092565b6000806000806080858703121561389d578081fd5b6138a68561379b565b93506138b46020860161379b565b925060408501359150606085013567ffffffffffffffff8111156138d6578182fd5b8501601f810187136138e6578182fd5b6138f587823560208401613725565b91505092959194509250565b60008060408385031215613913578182fd5b61391c8361379b565b915060208301358015158114613930578182fd5b809150509250929050565b6000806040838503121561394d578182fd5b6139568361379b565b946020939093013593505050565b600080600060408486031215613978578283fd5b833567ffffffffffffffff81111561398e578384fd5b61399a868287016137b7565b909790965060209590950135949350505050565b600080602083850312156139c0578182fd5b823567ffffffffffffffff8111156139d6578283fd5b6139e2858286016137b7565b90969095509350505050565b6000602082840312156139ff578081fd5b81356121fb81613ce4565b600060208284031215613a1b578081fd5b81516121fb81613ce4565b600060208284031215613a37578081fd5b813567ffffffffffffffff811115613a4d578182fd5b8201601f81018413613a5d578182fd5b612fb284823560208401613725565b600060208284031215613a7d578081fd5b5035919050565b60008060408385031215613a96578182fd5b50508035926020909101359150565b60008151808452613abd816020860160208601613bf5565b601f01601f19169290920160200192915050565b60008351613ae3818460208801613bf5565b835190830190613af7818360208801613bf5565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b326080830184613aa5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613b7457835183529284019291840191600101613b58565b50909695505050505050565b6020815260006121fb6020830184613aa5565b60008219821115613ba657613ba6613ca2565b500190565b600082613bba57613bba613cb8565b500490565b6000816000190483118215151615613bd957613bd9613ca2565b500290565b600082821015613bf057613bf0613ca2565b500390565b60005b83811015613c10578181015183820152602001613bf8565b8381111561107f5750506000910152565b600081613c3057613c30613ca2565b506000190190565b600181811c90821680613c4c57607f821691505b60208210811415613c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c8757613c87613ca2565b5060010190565b600082613c9d57613c9d613cb8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612b8257600080fdfea264697066735822122097ad11c94cc86d978cb24322948af62ced4fde1a937e716b2feea9629fecafdf64736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f706978656c7469676572732e6d7970696e6174612e636c6f75642f697066732f516d6539555168617a46545548654879706b4a415655353163454c643457476f50324b7059723432364643345a632f000000000000000000
Deployed Bytecode
0x6080604052600436106103605760003560e01c80638df07842116101c6578063bf424e7e116100f7578063d9ecad7b11610095578063e985e9c51161006f578063e985e9c514610991578063eb8835ab146109da578063ed32581014610a07578063f2fde38b14610a3457600080fd5b8063d9ecad7b1461093c578063e222c7f91461095c578063e6e5e1fc1461097157600080fd5b8063c87b56dd116100d1578063c87b56dd146108d3578063c884f0bb146108f3578063c9b298f114610913578063d58ee9611461092657600080fd5b8063bf424e7e14610866578063c39128c114610883578063c5a991f8146108a357600080fd5b8063a0712d6811610164578063b88d4fde1161013e578063b88d4fde146107e7578063b8cbcc8414610807578063bbd7173914610827578063bc8893b41461084757600080fd5b8063a0712d6814610794578063a22cb465146107a7578063b5b55000146107c757600080fd5b806399aa5d97116101a057806399aa5d971461071b5780639e59e5981461073b578063a035b1fe14610768578063a0617ad01461077e57600080fd5b80638df07842146106c65780638e83555e146106e657806395d89b411461070657600080fd5b806334ebb3a0116102a0578063539cb1e71161023e5780636683072611610218578063668307261461065257806370a0823114610673578063715018a6146106935780638da5cb5b146106a857600080fd5b8063539cb1e7146105fc57806355f804b3146106125780636352211e1461063257600080fd5b806342842e0e1161027a57806342842e0e1461057f57806345cac7391461059f57806350e12a8d146105b557806353135ca0146105e257600080fd5b806334ebb3a0146105285780633ccfd60b1461053d5780633edf2dbd1461055257600080fd5b806309d42b301161030d57806323b872dd116102e757806323b872dd146104a657806329ca6ad7146104c65780632f745c59146104f3578063343937431461051357600080fd5b806309d42b301461045b5780631342ff4c1461047e57806318160ddd1461049157600080fd5b80630750d2fb1161033e5780630750d2fb146103d3578063081812fc14610403578063095ea7b31461043b57600080fd5b806301ffc9a714610365578063034d77941461039a57806306fdde03146103b1575b600080fd5b34801561037157600080fd5b506103856103803660046139ee565b610a54565b60405190151581526020015b60405180910390f35b3480156103a657600080fd5b506103af610b39565b005b3480156103bd57600080fd5b506103c6610bd3565b6040516103919190613b80565b3480156103df57600080fd5b506103856103ee366004613a6c565b60176020526000908152604090205460ff1681565b34801561040f57600080fd5b5061042361041e366004613a6c565b610c65565b6040516001600160a01b039091168152602001610391565b34801561044757600080fd5b506103af61045636600461393b565b610d0b565b34801561046757600080fd5b50610470600281565b604051908152602001610391565b6103af61048c366004613a6c565b610e3d565b34801561049d57600080fd5b50610470611085565b3480156104b257600080fd5b506103af6104c136600461384d565b61109c565b3480156104d257600080fd5b506104706104e1366004613801565b60146020526000908152604090205481565b3480156104ff57600080fd5b5061047061050e36600461393b565b611291565b34801561051f57600080fd5b506103af611310565b34801561053457600080fd5b506103af61137e565b34801561054957600080fd5b506103af611414565b34801561055e57600080fd5b5061047061056d366004613801565b60156020526000908152604090205481565b34801561058b57600080fd5b506103af61059a36600461384d565b6114a1565b3480156105ab57600080fd5b50610470600c5481565b3480156105c157600080fd5b506104706105d0366004613801565b60106020526000908152604090205481565b3480156105ee57600080fd5b50600e546103859060ff1681565b34801561060857600080fd5b50610470600a5481565b34801561061e57600080fd5b506103af61062d366004613a26565b6114bc565b34801561063e57600080fd5b5061042361064d366004613a6c565b611529565b34801561065e57600080fd5b50600e54610385906301000000900460ff1681565b34801561067f57600080fd5b5061047061068e366004613801565b6115b4565b34801561069f57600080fd5b506103af61164e565b3480156106b457600080fd5b506006546001600160a01b0316610423565b3480156106d257600080fd5b506103af6106e13660046139ae565b6116b4565b3480156106f257600080fd5b506103af610701366004613964565b6117dd565b34801561071257600080fd5b506103c661191d565b34801561072757600080fd5b50601354610423906001600160a01b031681565b34801561074757600080fd5b5061075b610756366004613801565b61192c565b6040516103919190613b3c565b34801561077457600080fd5b50610470600b5481565b34801561078a57600080fd5b5061047060085481565b6103af6107a2366004613a6c565b6119ea565b3480156107b357600080fd5b506103af6107c2366004613901565b611c6e565b3480156107d357600080fd5b5061075b6107e2366004613801565b611c79565b3480156107f357600080fd5b506103af610802366004613888565b611d3a565b34801561081357600080fd5b506103af610822366004613964565b611f31565b34801561083357600080fd5b50600e546103859062010000900460ff1681565b34801561085357600080fd5b50600e5461038590610100900460ff1681565b34801561087257600080fd5b50610470683635c9adc5dea0000081565b34801561088f57600080fd5b506103af61089e3660046139ae565b611ffc565b3480156108af57600080fd5b506103856108be366004613a6c565b60166020526000908152604090205460ff1681565b3480156108df57600080fd5b506103c66108ee366004613a6c565b612119565b3480156108ff57600080fd5b506103af61090e366004613964565b612202565b6103af610921366004613a6c565b6122de565b34801561093257600080fd5b5061047060095481565b34801561094857600080fd5b506103af610957366004613a84565b6125c1565b34801561096857600080fd5b506103af612993565b34801561097d57600080fd5b506103af61098c366004613801565b612a27565b34801561099d57600080fd5b506103856109ac36600461381b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109e657600080fd5b506104706109f5366004613801565b600f6020526000908152604090205481565b348015610a1357600080fd5b50610470610a22366004613801565b60116020526000908152604090205481565b348015610a4057600080fd5b506103af610a4f366004613801565b612aa3565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480610ae757507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610b3357507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6006546001600160a01b03163314610b985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff8116620100009182900460ff1615909102179055565b606060008054610be290613c38565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0e90613c38565b8015610c5b5780601f10610c3057610100808354040283529160200191610c5b565b820191906000526020600020905b815481529060010190602001808311610c3e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b8f565b506000908152600460205260409020546001600160a01b031690565b6000610d1682611529565b9050806001600160a01b0316836001600160a01b03161415610da05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610b8f565b336001600160a01b0382161480610dbc5750610dbc81336109ac565b610e2e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b8f565b610e388383612b85565b505050565b600d5433600090815260106020526040902054600e5462010000900460ff16610ea85760405162461bcd60e51b815260206004820152600f60248201527f4d696e74206e6f742061637469766500000000000000000000000000000000006044820152606401610b8f565b60008111610ef85760405162461bcd60e51b815260206004820152601460248201527f4e6f74206f6e207265736572766564206c6973740000000000000000000000006044820152606401610b8f565b80831115610f485760405162461bcd60e51b815260206004820152601d60248201527f43616e2774206d696e74206d6f7265207468616e2072657365727665640000006044820152606401610b8f565b600954610f558385612bf3565b1115610f6057600080fd5b610f6a8382613bde565b33600090815260106020526040812091909155600d8054859290610f8f908490613b93565b9091555050601354604051630d45414160e21b81523360048201526001600160a01b0390911690633515050490602401600060405180830381600087803b158015610fd957600080fd5b505af1158015610fed573d6000803e3d6000fd5b5050505060005b8381101561107f5761100f3361100a8386613b93565b612bff565b33600090815260116020526040812080549161102a83613c73565b909155503390506012600061103f8487613b93565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b03929092169190911790558061107781613c73565b915050610ff4565b50505050565b6000600a54600d546110979190613b93565b905090565b600954811015611179576013546040517f5a3295950000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152848116602483015290911690635a32959590604401600060405180830381600087803b15801561110e57600080fd5b505af1158015611122573d6000803e3d6000fd5b505050506001600160a01b038316600090815260116020526040812080549161114a83613c21565b90915550506001600160a01b038216600090815260116020526040812080549161117383613c73565b91905055505b60008181526016602052604090205460ff161515600114156111e8576001600160a01b03831660009081526014602052604081208054916111b983613c21565b90915550506001600160a01b03821660009081526014602052604081208054916111e283613c73565b91905055505b60008181526017602052604090205460ff16151560011415611257576001600160a01b038316600090815260156020526040812080549161122883613c21565b90915550506001600160a01b038216600090815260156020526040812080549161125183613c73565b91905055505b611262838383612c19565b600090815260126020526040902080546001600160a01b0319166001600160a01b039290921691909117905550565b600061129c836115b4565b82106112a757600080fd5b6000805b600854811015611308576000818152601260205260409020546001600160a01b03868116911614156112f657838214156112e8579150610b339050565b816112f281613c73565b9250505b8061130081613c73565b9150506112ab565b505092915050565b6006546001600160a01b0316331461136a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b600e805460ff19811660ff90911615179055565b6006546001600160a01b031633146113d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff811663010000009182900460ff1615909102179055565b6006546001600160a01b0316331461146e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b6040514790339082156108fc029083906000818181858888f1935050505015801561149d573d6000803e3d6000fd5b5050565b610e3883838360405180602001604052806000815250611d3a565b6006546001600160a01b031633146115165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b805161149d90600790602084019061368c565b6000818152600260205260408120546001600160a01b031680610b335760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610b8f565b60006001600160a01b0382166116325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610b8f565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146116a85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b6116b26000612ca0565b565b6006546001600160a01b0316331461170e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b81811015610e38576015600061174c85858581811061174057634e487b7160e01b600052603260045260246000fd5b90506020020135611529565b6001600160a01b031681526020810191909152604001600090812080549161177383613c73565b919050555060016017600085858581811061179e57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117d590613c73565b915050611711565b6006546001600160a01b031633146118375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b8281101561107f57816010600086868581811061186757634e487b7160e01b600052603260045260246000fd5b905060200201602081019061187c9190613801565b6001600160a01b03166001600160a01b03168152602001908152602001600020546118a79190613bde565b601060008686858181106118cb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906118e09190613801565b6001600160a01b03168152602081019190915260400160002055600c54611908908390613bde565b600c558061191581613c73565b91505061183a565b606060018054610be290613c38565b60606000611939836115b4565b905060008167ffffffffffffffff81111561196457634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561198d578160200160208202803683370190505b50905060005b828110156119e2576119a58582611291565b8282815181106119c557634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806119da81613c73565b915050611993565b509392505050565b600d54600e54610100900460ff16611a445760405162461bcd60e51b815260206004820152600f60248201527f4d696e74206e6f742061637469766500000000000000000000000000000000006044820152606401610b8f565b600082118015611a55575060028211155b611aa15760405162461bcd60e51b815260206004820152601760248201527f496e76616c696420707572636861736520616d6f756e740000000000000000006044820152606401610b8f565b600c54600954611ab19190613bde565b611abb8284612bf3565b1115611b095760405162461bcd60e51b815260206004820152600f60248201527f537570706c7920657863656564656400000000000000000000000000000000006044820152606401610b8f565b600b543490611b189084612cf2565b14611b655760405162461bcd60e51b815260206004820152601660248201527f56616c75652073656e74206e6f7420636f7272656374000000000000000000006044820152606401610b8f565b333214611b7157600080fd5b81600d6000828254611b839190613b93565b9091555050601354604051630d45414160e21b81523360048201526001600160a01b0390911690633515050490602401600060405180830381600087803b158015611bcd57600080fd5b505af1158015611be1573d6000803e3d6000fd5b5050505060005b82811015610e3857611bfe3361100a8385613b93565b336000908152601160205260408120805491611c1983613c73565b9091555033905060126000611c2e8486613b93565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905580611c6681613c73565b915050611be8565b61149d338383612cfe565b6001600160a01b0381166000908152601160205260408120546060918167ffffffffffffffff811115611cbc57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611ce5578160200160208202803683370190505b50905060005b828110156119e257611cfd8582611291565b828281518110611d1d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280611d3281613c73565b915050611ceb565b600954821015611e17576013546040517f5a3295950000000000000000000000000000000000000000000000000000000081526001600160a01b038681166004830152858116602483015290911690635a32959590604401600060405180830381600087803b158015611dac57600080fd5b505af1158015611dc0573d6000803e3d6000fd5b505050506001600160a01b0384166000908152601160205260408120805491611de883613c21565b90915550506001600160a01b0383166000908152601160205260408120805491611e1183613c73565b91905055505b60008281526016602052604090205460ff16151560011415611e86576001600160a01b0384166000908152601460205260408120805491611e5783613c21565b90915550506001600160a01b0383166000908152601460205260408120805491611e8083613c73565b91905055505b60008281526017602052604090205460ff16151560011415611ef5576001600160a01b0384166000908152601560205260408120805491611ec683613c21565b90915550506001600160a01b0383166000908152601560205260408120805491611eef83613c73565b91905055505b611f0184848484612dcd565b50600090815260126020526040902080546001600160a01b0319166001600160a01b039290921691909117905550565b6006546001600160a01b03163314611f8b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b8281101561107f5781600f6000868685818110611fbb57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611fd09190613801565b6001600160a01b0316815260208101919091526040016000205580611ff481613c73565b915050611f8e565b6006546001600160a01b031633146120565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b81811015610e38576014600061208885858581811061174057634e487b7160e01b600052603260045260246000fd5b6001600160a01b03168152602081019190915260400160009081208054916120af83613c73565b91905055506001601660008585858181106120da57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550808061211190613c73565b915050612059565b6000818152600260205260409020546060906001600160a01b03166121a65760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610b8f565b60006121b0612e55565b905060008151116121d057604051806020016040528060008152506121fb565b806121da84612e64565b6040516020016121eb929190613ad1565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461225c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b60005b8281101561107f57816010600086868581811061228c57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906122a19190613801565b6001600160a01b03168152602081019190915260400160002055600c546122c9908390613b93565b600c55806122d681613c73565b91505061225f565b600d54336000908152600f6020526040902054600e5460ff166123435760405162461bcd60e51b815260206004820152601260248201527f50726573616c65206e6f742061637469766500000000000000000000000000006044820152606401610b8f565b600081116123935760405162461bcd60e51b815260206004820152600f60248201527f4e6f742077686974656c697374656400000000000000000000000000000000006044820152606401610b8f565b808311156123e35760405162461bcd60e51b815260206004820152601d60248201527f43616e2774206d696e74206d6f7265207468616e2072657365727665640000006044820152606401610b8f565b600c546009546123f39190613bde565b6123fd8385612bf3565b111561244b5760405162461bcd60e51b815260206004820152600f60248201527f537570706c7920657863656564656400000000000000000000000000000000006044820152606401610b8f565b600b54349061245a9085612cf2565b146124a75760405162461bcd60e51b815260206004820152601660248201527f56616c75652073656e74206e6f7420636f7272656374000000000000000000006044820152606401610b8f565b6124b18382613bde565b336000908152600f6020526040812091909155600d80548592906124d6908490613b93565b9091555050601354604051630d45414160e21b81523360048201526001600160a01b0390911690633515050490602401600060405180830381600087803b15801561252057600080fd5b505af1158015612534573d6000803e3d6000fd5b5050505060005b8381101561107f576125513361100a8386613b93565b33600090815260116020526040812080549161256c83613c73565b90915550339050601260006125818487613b93565b8152602081019190915260400160002080546001600160a01b0319166001600160a01b0392909216919091179055806125b981613c73565b91505061253b565b816125cb81611529565b6001600160a01b0316336001600160a01b03161461262b5760405162461bcd60e51b815260206004820152601560248201527f446f206e6f74206f776e207468697320746967657200000000000000000000006044820152606401610b8f565b8161263581611529565b6001600160a01b0316336001600160a01b0316146126955760405162461bcd60e51b815260206004820152601560248201527f446f206e6f74206f776e207468697320746967657200000000000000000000006044820152606401610b8f565b600061269f611085565b905060085481106126f25760405162461bcd60e51b815260206004820152601a60248201527f4e6f206d6f7265206261626965732063616e20626520627265640000000000006044820152606401610b8f565b60095485108015612704575060095484105b6127505760405162461bcd60e51b815260206004820152601460248201527f4261626965732063616e277420626520627265640000000000000000000000006044820152606401610b8f565b838514156127a05760405162461bcd60e51b815260206004820152601560248201527f55736520646966666572656e7420706172656e747300000000000000000000006044820152606401610b8f565b600e546301000000900460ff166127f95760405162461bcd60e51b815260206004820152601360248201527f6272656564696e67206e6f7420616374697665000000000000000000000000006044820152606401610b8f565b600044423360405160200161284693929190928352602083019190915260601b7fffffffffffffffffffffffffffffffffffffffff00000000000000000000000016604082015260540190565b6040516020818303038152906040528051906020012060001c905060006009546122b8836128749190613c8e565b61287e9190613b93565b90505b6000818152600260205260409020546001600160a01b0316156128c8578061341314156128be575061115b806128b681613c73565b915050612881565b806128b681613c73565b6013546040517f9dc29fac000000000000000000000000000000000000000000000000000000008152336004820152683635c9adc5dea0000060248201526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561293557600080fd5b505af1158015612949573d6000803e3d6000fd5b5050600a805492509050600061295e83613c73565b919050555061296d3382612bff565b600090815260126020526040902080546001600160a01b03191633179055505050505050565b6006546001600160a01b031633146129ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b600e80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff81166101009182900460ff1615909102179055565b6006546001600160a01b03163314612a815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314612afd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b8f565b6001600160a01b038116612b795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b8f565b612b8281612ca0565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612bba82611529565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121fb8284613b93565b61149d828260405180602001604052806000815250612fba565b612c233382613043565b612c955760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b8f565b610e38838383613147565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006121fb8284613bbf565b816001600160a01b0316836001600160a01b03161415612d605760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b8f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612dd73383613043565b612e495760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610b8f565b61107f84848484613314565b606060078054610be290613c38565b606081612ea457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612ece5780612eb881613c73565b9150612ec79050600a83613bab565b9150612ea8565b60008167ffffffffffffffff811115612ef757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f21576020820181803683370190505b5090505b8415612fb257612f36600183613bde565b9150612f43600a86613c8e565b612f4e906030613b93565b60f81b818381518110612f7157634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612fab600a86613bab565b9450612f25565b949350505050565b612fc4838361339d565b612fd160008484846134df565b610e385760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b8f565b6000818152600260205260408120546001600160a01b03166130cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610b8f565b60006130d883611529565b9050806001600160a01b0316846001600160a01b031614806131135750836001600160a01b031661310884610c65565b6001600160a01b0316145b80612fb257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16612fb2565b826001600160a01b031661315a82611529565b6001600160a01b0316146131d65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610b8f565b6001600160a01b0382166132515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b8f565b61325c600082612b85565b6001600160a01b0383166000908152600360205260408120805460019290613285908490613bde565b90915550506001600160a01b03821660009081526003602052604081208054600192906132b3908490613b93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61331f848484613147565b61332b848484846134df565b61107f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b8f565b6001600160a01b0382166133f35760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b8f565b6000818152600260205260409020546001600160a01b0316156134585760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b8f565b6001600160a01b0382166000908152600360205260408120805460019290613481908490613b93565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15613681576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061353c903390899088908890600401613b00565b602060405180830381600087803b15801561355657600080fd5b505af1925050508015613586575060408051601f3d908101601f1916820190925261358391810190613a0a565b60015b613636573d8080156135b4576040519150601f19603f3d011682016040523d82523d6000602084013e6135b9565b606091505b50805161362e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610b8f565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612fb2565b506001949350505050565b82805461369890613c38565b90600052602060002090601f0160209004810192826136ba5760008555613700565b82601f106136d357805160ff1916838001178555613700565b82800160010185558215613700579182015b828111156137005782518255916020019190600101906136e5565b5061370c929150613710565b5090565b5b8082111561370c5760008155600101613711565b600067ffffffffffffffff8084111561374057613740613cce565b604051601f8501601f19908116603f0116810190828211818310171561376857613768613cce565b8160405280935085815286868601111561378157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146137b257600080fd5b919050565b60008083601f8401126137c8578081fd5b50813567ffffffffffffffff8111156137df578182fd5b6020830191508360208260051b85010111156137fa57600080fd5b9250929050565b600060208284031215613812578081fd5b6121fb8261379b565b6000806040838503121561382d578081fd5b6138368361379b565b91506138446020840161379b565b90509250929050565b600080600060608486031215613861578081fd5b61386a8461379b565b92506138786020850161379b565b9150604084013590509250925092565b6000806000806080858703121561389d578081fd5b6138a68561379b565b93506138b46020860161379b565b925060408501359150606085013567ffffffffffffffff8111156138d6578182fd5b8501601f810187136138e6578182fd5b6138f587823560208401613725565b91505092959194509250565b60008060408385031215613913578182fd5b61391c8361379b565b915060208301358015158114613930578182fd5b809150509250929050565b6000806040838503121561394d578182fd5b6139568361379b565b946020939093013593505050565b600080600060408486031215613978578283fd5b833567ffffffffffffffff81111561398e578384fd5b61399a868287016137b7565b909790965060209590950135949350505050565b600080602083850312156139c0578182fd5b823567ffffffffffffffff8111156139d6578283fd5b6139e2858286016137b7565b90969095509350505050565b6000602082840312156139ff578081fd5b81356121fb81613ce4565b600060208284031215613a1b578081fd5b81516121fb81613ce4565b600060208284031215613a37578081fd5b813567ffffffffffffffff811115613a4d578182fd5b8201601f81018413613a5d578182fd5b612fb284823560208401613725565b600060208284031215613a7d578081fd5b5035919050565b60008060408385031215613a96578182fd5b50508035926020909101359150565b60008151808452613abd816020860160208601613bf5565b601f01601f19169290920160200192915050565b60008351613ae3818460208801613bf5565b835190830190613af7818360208801613bf5565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b326080830184613aa5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613b7457835183529284019291840191600101613b58565b50909695505050505050565b6020815260006121fb6020830184613aa5565b60008219821115613ba657613ba6613ca2565b500190565b600082613bba57613bba613cb8565b500490565b6000816000190483118215151615613bd957613bd9613ca2565b500290565b600082821015613bf057613bf0613ca2565b500390565b60005b83811015613c10578181015183820152602001613bf8565b8381111561107f5750506000910152565b600081613c3057613c30613ca2565b506000190190565b600181811c90821680613c4c57607f821691505b60208210811415613c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613c8757613c87613ca2565b5060010190565b600082613c9d57613c9d613cb8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612b8257600080fdfea264697066735822122097ad11c94cc86d978cb24322948af62ced4fde1a937e716b2feea9629fecafdf64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f706978656c7469676572732e6d7970696e6174612e636c6f75642f697066732f516d6539555168617a46545548654879706b4a415655353163454c643457476f50324b7059723432364643345a632f000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://pixeltigers.mypinata.cloud/ipfs/Qme9UQhazFTUHeHypkJAVU51cELd4WGoP2KpYr426FC4Zc/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [2] : 68747470733a2f2f706978656c7469676572732e6d7970696e6174612e636c6f
Arg [3] : 75642f697066732f516d6539555168617a46545548654879706b4a4156553531
Arg [4] : 63454c643457476f50324b7059723432364643345a632f000000000000000000
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.