ERC-721
Source Code
NFT
Overview
Max Total Supply
15,000 PIXLP
Holders
2,853
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 PIXLPLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
PixlPets
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-02-04
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
//
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
/**
* @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);
}
//
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.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;
}
//
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
/**
* @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);
}
//
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.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);
}
//
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
* @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;
}
}
//
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
/**
* @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);
}
}
//
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.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;
}
}
//
library AddressGasOptimized {
function isContract(address account) internal view returns (bool) {
uint size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
}
//
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using AddressGasOptimized for address;
using Strings for uint256;
string private _name;
string private _symbol;
// Mapping from token ID to owner address
address[] internal _owners;
mapping(uint256 => address) private _tokenApprovals;
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 (uint)
{
require(owner != address(0), "ERC721: balance query for the zero address");
uint count;
for( uint i; i < _owners.length; ++i ){
if( owner == _owners[i] )
++count;
}
return count;
}
/**
* @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 {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return tokenId < _owners.length && _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);
_owners.push(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);
_owners[tokenId] = address(0);
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);
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
//
// OpenZeppelin Contracts v4.4.1 (access/Ownable.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);
}
}
//
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
return computedHash;
}
}
//
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
//
/**
* ______ __ __ __ __ ______ ______ ______ ______
* /\ == \ /\ \ /\_\_\_\ /\ \ /\ == \ /\ ___\ /\__ _\ /\ ___\
* \ \ _-/ \ \ \ \/_/\_\/_ \ \ \____ \ \ _-/ \ \ __\ \/_/\ \/ \ \___ \
* \ \_\ \ \_\ /\_\/\_\ \ \_____\ \ \_\ \ \_____\ \ \_\ \/\_____\
* \/_/ \/_/ \/_/\/_/ \/_____/ \/_/ \/_____/ \/_/ \/_____/
*/
contract PixlPets is ERC721, Ownable, ReentrancyGuard {
bool public IS_PUBLIC_SALE_ACTIVE = false;
uint256 public constant FREE_MINT_MAPPING_ID = 0;
uint256 public constant PRESALE_MAPPING_ID = 1;
uint256 public constant PUBLIC_MAPPING_ID = 2;
uint256 public constant MAX_PER_FREE_MINT = 1;
uint256 public MAX_PER_PS_SPOT = 2;
uint256 public MAX_PER_PUBLIC_MINT = 10;
uint256 public PRESALE_MINT_PRICE = 0.088 ether;
uint256 public PUBLIC_MINT_PRICE = 0.12 ether;
uint256 public MAX_SUPPLY = 15000;
uint256 public PHASE_ID = 1;
bytes32 public presaleMerkleRoot;
bytes32 public freeMintMerkleRoot;
string public baseURI;
/**
* @dev Allow for multiple "phases" of mints to take place on a single contract,
* keeping track of wallet supply limits for each phase.
*/
mapping(uint => mapping(uint => mapping(address => uint))) public phaseToMappingIdToSupplyMap;
modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
require(
price * numberOfTokens == msg.value,
"Incorrect ETH value sent"
);
_;
}
modifier hasAvailableSupply(uint256 potentialNewBalance, uint256 limit) {
require(potentialNewBalance <= limit,
"Exceeds allocated supply for this user via attempted mint function.");
_;
}
modifier isValidMerkleProof(bytes32 root, bytes32[] calldata proof) {
require(_verify(msg.sender, root, proof), "Sender not in MerkleTree");
_;
}
constructor(string memory _baseURI) ERC721("Pixl Pets", "PIXLP") {
baseURI = _baseURI;
address purgatory = 0x0000000000000000000000000000000000000000;
_owners.push(purgatory); // Offest to create gas optimized 1-indexed id space
}
/******** Read-only Functions *********/
function totalSupply() external view virtual returns (uint256) {
return _owners.length - 1;
}
function tokenURI(uint256 _tokenId) external view override returns (string memory) {
require(_exists(_tokenId), "Token does not exist.");
return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
}
/**
* @dev Use in front end to render counts for user's Mint UI in single SC call,
* drastically reducing load on Infura for pageLoads:
* (numFreeMintsRemaining, numPresaleMintsRemaining, numPublicMintsRemaining,
* totalMinted, totalRemainingSupply)
*/
function getMintProgress(address userWallet, bytes32[] calldata freeMintProof, bytes32[] calldata presaleProof)
external
view
returns (uint, uint, uint, uint, uint)
{
uint totalMinted = _owners.length - 1;
uint freeMintsRemaining = 0;
uint psMintsRemaining = 0;
uint publicMintsRemaining = MAX_PER_PUBLIC_MINT
- phaseToMappingIdToSupplyMap[PHASE_ID][PUBLIC_MAPPING_ID][userWallet];
if (_verify(userWallet, freeMintMerkleRoot, freeMintProof)) {
freeMintsRemaining += (MAX_PER_FREE_MINT
- phaseToMappingIdToSupplyMap[PHASE_ID][FREE_MINT_MAPPING_ID][userWallet]);
}
if (_verify(userWallet, presaleMerkleRoot, presaleProof)) {
psMintsRemaining += (MAX_PER_PS_SPOT
- phaseToMappingIdToSupplyMap[PHASE_ID][PRESALE_MAPPING_ID][userWallet]);
}
return (
freeMintsRemaining,
psMintsRemaining,
publicMintsRemaining,
totalMinted,
MAX_SUPPLY - totalMinted
);
}
/******** Minting Functions *********/
/**
* @dev Combine full free claim and presale in single transaction to save ~30k wei gas.
* @notice Congratulations!!! You're saving some gas by combining your free claim and WL mint txns!
*/
function omegaMint(bytes32[] calldata freeMintProof, bytes32[] calldata presaleProof)
external
payable
isCorrectPayment(PRESALE_MINT_PRICE, MAX_PER_PS_SPOT)
hasAvailableSupply(
phaseToMappingIdToSupplyMap[PHASE_ID][FREE_MINT_MAPPING_ID][msg.sender] + MAX_PER_FREE_MINT,
MAX_PER_FREE_MINT)
hasAvailableSupply(
phaseToMappingIdToSupplyMap[PHASE_ID][PRESALE_MAPPING_ID][msg.sender] + MAX_PER_PS_SPOT,
MAX_PER_PS_SPOT)
isValidMerkleProof(presaleMerkleRoot, presaleProof)
isValidMerkleProof(freeMintMerkleRoot, freeMintProof)
nonReentrant
{
uint256 totalSupplySaveFunctionGas = _owners.length - 1;
require(
totalSupplySaveFunctionGas + MAX_PER_PS_SPOT + MAX_PER_FREE_MINT <= MAX_SUPPLY,
"Exceeds max supply, collection is sold out!"
);
phaseToMappingIdToSupplyMap[PHASE_ID][FREE_MINT_MAPPING_ID][msg.sender] += MAX_PER_FREE_MINT;
phaseToMappingIdToSupplyMap[PHASE_ID][PRESALE_MAPPING_ID][msg.sender] += MAX_PER_PS_SPOT;
for(uint i; i < MAX_PER_FREE_MINT + MAX_PER_PS_SPOT; i++) {
_mint(msg.sender, totalSupplySaveFunctionGas + i + 1);
}
}
/**
* @dev Check MerkleTree to see if able to claim, then GIMME THAT PIXL PET!!!
* @notice Congratulations lucky Founder's Pass holder or giveaway winner: you've earned a free PIXL Pet!
*/
function claimFreeMint(bytes32[] calldata proof)
external
hasAvailableSupply(
phaseToMappingIdToSupplyMap[PHASE_ID][FREE_MINT_MAPPING_ID][msg.sender] + 1,
MAX_PER_FREE_MINT)
isValidMerkleProof(freeMintMerkleRoot, proof)
nonReentrant
{
uint256 totalSupplySaveFunctionGas = _owners.length - 1;
require(
totalSupplySaveFunctionGas + 1 <= MAX_SUPPLY,
"Exceeds max supply, should've claimed sooner :/"
);
phaseToMappingIdToSupplyMap[PHASE_ID][FREE_MINT_MAPPING_ID][msg.sender] += 1;
_mint(msg.sender, totalSupplySaveFunctionGas + 1);
}
/**
* @dev Check preset MerkleRoot for inclusion of wallet in Presale set before minting up to .
* @notice Congratulations lucky Founder's Pass holder or giveaway winner: you've earned PIXL Pet Presale spots!
*/
function presaleMint(uint256 amount, bytes32[] calldata proof)
external
payable
isCorrectPayment(PRESALE_MINT_PRICE, amount)
hasAvailableSupply(
phaseToMappingIdToSupplyMap[PHASE_ID][PRESALE_MAPPING_ID][msg.sender] + amount,
MAX_PER_PS_SPOT)
isValidMerkleProof(presaleMerkleRoot, proof)
nonReentrant
{
uint256 totalSupplySaveFunctionGas = _owners.length - 1;
require(totalSupplySaveFunctionGas + amount <= MAX_SUPPLY, "Exceeds Max supply, Pixl Pets are sold out!");
phaseToMappingIdToSupplyMap[PHASE_ID][PRESALE_MAPPING_ID][msg.sender] += amount;
for(uint i; i < amount; i++) {
_mint(msg.sender, totalSupplySaveFunctionGas + i + 1);
}
}
function publicMint(uint256 amount)
external
payable
isCorrectPayment(PUBLIC_MINT_PRICE, amount)
hasAvailableSupply(
phaseToMappingIdToSupplyMap[PHASE_ID][PUBLIC_MAPPING_ID][msg.sender] + amount,
MAX_PER_PUBLIC_MINT)
nonReentrant
{
uint256 totalSupplySaveFunctionGas = _owners.length - 1;
require(IS_PUBLIC_SALE_ACTIVE, 'Public sale is inactive! pls stop');
require(totalSupplySaveFunctionGas + amount <= MAX_SUPPLY, "Exceeds max supply, Pixl Pets are sold out!");
phaseToMappingIdToSupplyMap[PHASE_ID][PUBLIC_MAPPING_ID][msg.sender] += amount;
for(uint i; i < amount; i++) {
_mint(msg.sender, totalSupplySaveFunctionGas + i + 1);
}
}
function burn(uint256 tokenId) external {
require(_isApprovedOrOwner(msg.sender, tokenId), "Not approved to burn.");
_burn(tokenId);
}
/*********** ADMIN FUNCTIONS ************/
function adminMint(uint256 amount, address _to)
external
onlyOwner
{
uint256 totalSupplySaveFunctionGas = _owners.length - 1;
require(totalSupplySaveFunctionGas + amount <= MAX_SUPPLY, "Exceeds max supply.");
for(uint i; i < amount; i++) {
_mint(_to, totalSupplySaveFunctionGas + i + 1);
}
}
/** @dev Will enable presale mints! */
function setPresaleMerkleRoot(bytes32 _presaleMerkleRoot) external onlyOwner {
presaleMerkleRoot = _presaleMerkleRoot;
}
/** @dev Will enable claimable free mints! */
function setFreeMintMerkleRoot(bytes32 _freeMintMerkleRoot) external onlyOwner {
freeMintMerkleRoot = _freeMintMerkleRoot;
}
function setBaseURI(string memory _baseURI) external onlyOwner {
baseURI = _baseURI;
}
function updateMaxSupply(uint256 _MAX_SUPPLY) external onlyOwner {
MAX_SUPPLY = _MAX_SUPPLY;
}
function toggleIsPublicSaleActive() external onlyOwner {
IS_PUBLIC_SALE_ACTIVE = !IS_PUBLIC_SALE_ACTIVE;
}
function updateMaxPresaleSupply(uint256 _MAX_PER_PS_SPOT) external onlyOwner {
MAX_PER_PS_SPOT = _MAX_PER_PS_SPOT;
}
function updateMaxPublicSupply(uint256 _MAX_PER_PUBLIC_MINT) external onlyOwner {
MAX_PER_PUBLIC_MINT = _MAX_PER_PUBLIC_MINT;
}
/** @dev Value in wei (ether_value * (10 ** 18)) aka add 18 zeroes */
function updatePresaleMintPrice(uint256 _PRESALE_MINT_PRICE) external onlyOwner {
PRESALE_MINT_PRICE = _PRESALE_MINT_PRICE;
}
/** @dev Value in wei (ether_value * (10 ** 18)) aka add 18 zeroes */
function updatePublicMintPrice(uint256 _PUBLIC_MINT_PRICE) external onlyOwner {
PUBLIC_MINT_PRICE = _PUBLIC_MINT_PRICE;
}
/** @dev Effectively reset wallet supply mappings by allocating a new spot in memory */
function incrementPhaseVersion()
external
onlyOwner
{
PHASE_ID += 1;
}
/** @dev Revert to a previous wallet supply mapping */
function decrementPhaseVersion()
external
onlyOwner
{
PHASE_ID -= 1;
}
function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_)
external
onlyOwner
{
for (uint256 i = 0; i < _tokenIds.length; i++) {
safeTransferFrom(_from, _to, _tokenIds[i], data_);
}
}
function withdrawETH() external onlyOwner {
(bool success, ) = (msg.sender).call{value: address(this).balance}("");
require(success, "Failed to send ETH.");
}
/********** PRIVATE FUNCTIONS *********/
function _mint(address to, uint256 tokenId) internal virtual override {
_owners.push(to);
emit Transfer(address(0), to, tokenId);
}
/** @dev Turn msg.sender into a string, hash it, and check if its valid within merkle root + proof */
function _verify(
address _buyerAddress,
bytes32 _merkleRoot,
bytes32[] memory _proof) internal pure returns (bool) {
return _merkleRoot != 0
&& MerkleProof.verify(_proof, _merkleRoot, keccak256(abi.encodePacked(_buyerAddress)));
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_MAPPING_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_PUBLIC_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_PS_SPOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PHASE_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MAPPING_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MAPPING_ID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decrementPhaseVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"userWallet","type":"address"},{"internalType":"bytes32[]","name":"freeMintProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"presaleProof","type":"bytes32[]"}],"name":"getMintProgress","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incrementPhaseVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"freeMintProof","type":"bytes32[]"},{"internalType":"bytes32[]","name":"presaleProof","type":"bytes32[]"}],"name":"omegaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"phaseToMappingIdToSupplyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freeMintMerkleRoot","type":"bytes32"}],"name":"setFreeMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleMerkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","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":"toggleIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_PS_SPOT","type":"uint256"}],"name":"updateMaxPresaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PER_PUBLIC_MINT","type":"uint256"}],"name":"updateMaxPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_SUPPLY","type":"uint256"}],"name":"updateMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PRESALE_MINT_PRICE","type":"uint256"}],"name":"updatePresaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_PUBLIC_MINT_PRICE","type":"uint256"}],"name":"updatePublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526000600760006101000a81548160ff0219169083151502179055506002600855600a600955670138a388a43c0000600a556701aa535d3d0c0000600b55613a98600c556001600d553480156200005957600080fd5b506040516200613c3803806200613c83398181016040528101906200007f9190620003c9565b6040518060400160405280600981526020017f5069786c205065747300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5049584c500000000000000000000000000000000000000000000000000000008152508160009080519060200190620001039291906200029b565b5080600190805190602001906200011c9291906200029b565b5050506200013f62000133620001cd60201b60201c565b620001d560201b60201c565b600160068190555080601090805190602001906200015f9291906200029b565b5060006002819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200059e565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a990620004af565b90600052602060002090601f016020900481019282620002cd576000855562000319565b82601f10620002e857805160ff191683800117855562000319565b8280016001018555821562000319579182015b8281111562000318578251825591602001919060010190620002fb565b5b5090506200032891906200032c565b5090565b5b80821115620003475760008160009055506001016200032d565b5090565b6000620003626200035c8462000443565b6200041a565b9050828152602081018484840111156200038157620003806200057e565b5b6200038e84828562000479565b509392505050565b600082601f830112620003ae57620003ad62000579565b5b8151620003c08482602086016200034b565b91505092915050565b600060208284031215620003e257620003e162000588565b5b600082015167ffffffffffffffff81111562000403576200040262000583565b5b620004118482850162000396565b91505092915050565b60006200042662000439565b9050620004348282620004e5565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046157620004606200054a565b5b6200046c826200058d565b9050602081019050919050565b60005b83811015620004995780820151818401526020810190506200047c565b83811115620004a9576000848401525b50505050565b60006002820490506001821680620004c857607f821691505b60208210811415620004df57620004de6200051b565b5b50919050565b620004f0826200058d565b810181811067ffffffffffffffff821117156200051257620005116200054a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b615b8e80620005ae6000396000f3fe6080604052600436106102fe5760003560e01c806368963df011610190578063cfb3bad4116100dc578063e086e5ec11610095578063e985e9c51161006f578063e985e9c514610af3578063efce24b914610b30578063f103b43314610b4c578063f2fde38b14610b75576102fe565b8063e086e5ec14610a95578063e3e1e8ef14610aac578063e94d75f314610ac8576102fe565b8063cfb3bad4146109ad578063d3241089146109d6578063db3cdbc5146109ed578063dcdcf35814610a18578063dde44b8914610a41578063df1107e614610a6a576102fe565b8063715018a611610149578063a22cb46511610123578063a22cb465146108f3578063a5e47bbc1461091c578063b88d4fde14610947578063c87b56dd14610970576102fe565b8063715018a6146108865780638da5cb5b1461089d57806395d89b41146108c8576102fe565b806368963df01461075c5780636bde2627146107875780636c0360eb146107b25780636c944c74146107dd5780636efc59b81461080857806370a0823114610849576102fe565b806328d7b2761161024f57806342966c681161020857806355f804b3116101e257806355f804b3146106a25780635a4fee30146106cb5780636352211e146106f45780636791de7d14610731576102fe565b806342966c68146106255780634846a44d1461064e5780634cfbc9c314610665576102fe565b806328d7b276146105385780632a234e57146105615780632db115441461058c57806332cb6b0c146105a857806335776ade146105d357806342842e0e146105fc576102fe565b80630dc28efe116102bc57806318160ddd1161029657806318160ddd1461048e57806322212e2b146104b957806323b872dd146104e457806327598f2c1461050d576102fe565b80630dc28efe146104115780631290237a1461043a5780631593037414610465576102fe565b8062a762301461030357806301e49e311461031a57806301ffc9a71461034357806306fdde0314610380578063081812fc146103ab578063095ea7b3146103e8575b600080fd5b34801561030f57600080fd5b50610318610b9e565b005b34801561032657600080fd5b50610341600480360381019061033c91906143a5565b610c36565b005b34801561034f57600080fd5b5061036a60048036038101906103659190614302565b610cbc565b6040516103779190614ae9565b60405180910390f35b34801561038c57600080fd5b50610395610d9e565b6040516103a29190614b1f565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906143a5565b610e30565b6040516103df9190614a82565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906141c7565b610eb5565b005b34801561041d57600080fd5b50610438600480360381019061043391906143d2565b610fcd565b005b34801561044657600080fd5b5061044f6110f4565b60405161045c9190614e81565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906143a5565b6110fa565b005b34801561049a57600080fd5b506104a3611180565b6040516104b09190614e81565b60405180910390f35b3480156104c557600080fd5b506104ce611199565b6040516104db9190614b04565b60405180910390f35b3480156104f057600080fd5b5061050b6004803603810190610506919061401c565b61119f565b005b34801561051957600080fd5b506105226111ff565b60405161052f9190614e81565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a91906142d5565b611204565b005b34801561056d57600080fd5b5061057661128a565b6040516105839190614e81565b60405180910390f35b6105a660048036038101906105a191906143a5565b611290565b005b3480156105b457600080fd5b506105bd611565565b6040516105ca9190614e81565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906143a5565b61156b565b005b34801561060857600080fd5b50610623600480360381019061061e919061401c565b6115f1565b005b34801561063157600080fd5b5061064c600480360381019061064791906143a5565b611611565b005b34801561065a57600080fd5b50610663611666565b005b34801561067157600080fd5b5061068c60048036038101906106879190614472565b6116fe565b6040516106999190614e81565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c4919061435c565b611730565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190613f7d565b6117c6565b005b34801561070057600080fd5b5061071b600480360381019061071691906143a5565b61188e565b6040516107289190614a82565b60405180910390f35b34801561073d57600080fd5b5061074661194b565b6040516107539190614e81565b60405180910390f35b34801561076857600080fd5b50610771611950565b60405161077e9190614b04565b60405180910390f35b34801561079357600080fd5b5061079c611956565b6040516107a99190614e81565b60405180910390f35b3480156107be57600080fd5b506107c761195c565b6040516107d49190614b1f565b60405180910390f35b3480156107e957600080fd5b506107f26119ea565b6040516107ff9190614e81565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a91906140f2565b6119ef565b604051610840959493929190614e9c565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190613f10565b611c56565b60405161087d9190614e81565b60405180910390f35b34801561089257600080fd5b5061089b611d72565b005b3480156108a957600080fd5b506108b2611dfa565b6040516108bf9190614a82565b60405180910390f35b3480156108d457600080fd5b506108dd611e24565b6040516108ea9190614b1f565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190614187565b611eb6565b005b34801561092857600080fd5b50610931612037565b60405161093e9190614e81565b60405180910390f35b34801561095357600080fd5b5061096e6004803603810190610969919061406f565b61203d565b005b34801561097c57600080fd5b50610997600480360381019061099291906143a5565b61209f565b6040516109a49190614b1f565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614207565b61211b565b005b3480156109e257600080fd5b506109eb6123b8565b005b3480156109f957600080fd5b50610a02612460565b604051610a0f9190614e81565b60405180910390f35b348015610a2457600080fd5b50610a3f6004803603810190610a3a91906143a5565b612465565b005b348015610a4d57600080fd5b50610a686004803603810190610a6391906142d5565b6124eb565b005b348015610a7657600080fd5b50610a7f612571565b604051610a8c9190614e81565b60405180910390f35b348015610aa157600080fd5b50610aaa612577565b005b610ac66004803603810190610ac19190614412565b6126a2565b005b348015610ad457600080fd5b50610add6129bd565b604051610aea9190614ae9565b60405180910390f35b348015610aff57600080fd5b50610b1a6004803603810190610b159190613f3d565b6129d0565b604051610b279190614ae9565b60405180910390f35b610b4a6004803603810190610b459190614254565b612a64565b005b348015610b5857600080fd5b50610b736004803603810190610b6e91906143a5565b612f67565b005b348015610b8157600080fd5b50610b9c6004803603810190610b979190613f10565b612fed565b005b610ba66130e5565b73ffffffffffffffffffffffffffffffffffffffff16610bc4611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190614d61565b60405180910390fd5b6001600d6000828254610c2d9190615005565b92505081905550565b610c3e6130e5565b73ffffffffffffffffffffffffffffffffffffffff16610c5c611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614d61565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d975750610d96826130ed565b5b9050919050565b606060008054610dad906151da565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd9906151da565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b5050505050905090565b6000610e3b82613157565b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190614d21565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec08261188e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890614e01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f506130e5565b73ffffffffffffffffffffffffffffffffffffffff161480610f7f5750610f7e81610f796130e5565b6129d0565b5b610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590614c61565b60405180910390fd5b610fc883836131df565b505050565b610fd56130e5565b73ffffffffffffffffffffffffffffffffffffffff16610ff3611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090614d61565b60405180910390fd5b6000600160028054905061105d91906150e6565b9050600c54838261106e9190615005565b11156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690614dc1565b60405180910390fd5b60005b838110156110ee576110db83600183856110cc9190615005565b6110d69190615005565b613298565b80806110e69061523d565b9150506110b2565b50505050565b600d5481565b6111026130e5565b73ffffffffffffffffffffffffffffffffffffffff16611120611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614d61565b60405180910390fd5b8060098190555050565b6000600160028054905061119491906150e6565b905090565b600e5481565b6111b06111aa6130e5565b8261335b565b6111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690614e21565b60405180910390fd5b6111fa838383613439565b505050565b600181565b61120c6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661122a611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790614d61565b60405180910390fd5b80600e8190555050565b600a5481565b600b54813481836112a1919061508c565b146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614e41565b60405180910390fd5b8260116000600d54815260200190815260200160002060006002815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113519190615005565b60095480821115611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90614cc1565b60405180910390fd5b600260065414156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614e61565b60405180910390fd5b6002600681905550600060016002805490506113f991906150e6565b9050600760009054906101000a900460ff1661144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190614c01565b60405180910390fd5b600c5486826114599190615005565b111561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614ba1565b60405180910390fd5b8560116000600d54815260200190815260200160002060006002815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e9190615005565b9250508190555060005b868110156115545761154133600183856115329190615005565b61153c9190615005565b613298565b808061154c9061523d565b915050611518565b505060016006819055505050505050565b600c5481565b6115736130e5565b73ffffffffffffffffffffffffffffffffffffffff16611591611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90614d61565b60405180910390fd5b80600a8190555050565b61160c8383836040518060200160405280600081525061203d565b505050565b61161b338261335b565b61165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614de1565b60405180910390fd5b611663816135f2565b50565b61166e6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661168c611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990614d61565b60405180910390fd5b6001600d60008282546116f591906150e6565b92505081905550565b601160205282600052604060002060205281600052604060002060205280600052604060002060009250925050505481565b6117386130e5565b73ffffffffffffffffffffffffffffffffffffffff16611756611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390614d61565b60405180910390fd5b80601090805190602001906117c2929190613c1b565b5050565b6117ce6130e5565b73ffffffffffffffffffffffffffffffffffffffff166117ec611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990614d61565b60405180910390fd5b60005b825181101561188757611874858585848151811061186657611865615372565b5b60200260200101518561203d565b808061187f9061523d565b915050611845565b5050505050565b600080600283815481106118a5576118a4615372565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990614ca1565b60405180910390fd5b80915050919050565b600181565b600f5481565b600b5481565b60108054611969906151da565b80601f0160208091040260200160405190810160405280929190818152602001828054611995906151da565b80156119e25780601f106119b7576101008083540402835291602001916119e2565b820191906000526020600020905b8154815290600101906020018083116119c557829003601f168201915b505050505081565b600081565b6000806000806000806001600280549050611a0a91906150e6565b9050600080600060116000600d54815260200190815260200160002060006002815260200190815260200160002060008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600954611a8391906150e6565b9050611ad38e600f548f8f80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b15611b565760116000600d548152602001908152602001600020600080815260200190815260200160002060008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611b4891906150e6565b83611b539190615005565b92505b611ba48e600e548d8d80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b15611c295760116000600d54815260200190815260200160002060006001815260200190815260200160002060008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600854611c1b91906150e6565b82611c269190615005565b91505b8282828687600c54611c3b91906150e6565b98509850985098509850505050509550955095509550959050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90614c81565b60405180910390fd5b6000805b600280549050811015611d685760028181548110611cec57611ceb615372565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d575781611d549061523d565b91505b80611d619061523d565b9050611ccb565b5080915050919050565b611d7a6130e5565b73ffffffffffffffffffffffffffffffffffffffff16611d98611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590614d61565b60405180910390fd5b611df8600061371f565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e33906151da565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5f906151da565b8015611eac5780601f10611e8157610100808354040283529160200191611eac565b820191906000526020600020905b815481529060010190602001808311611e8f57829003601f168201915b5050505050905090565b611ebe6130e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614be1565b60405180910390fd5b8060046000611f396130e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe66130e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202b9190614ae9565b60405180910390a35050565b60095481565b61204e6120486130e5565b8361335b565b61208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490614e21565b60405180910390fd5b612099848484846137e5565b50505050565b60606120aa82613157565b6120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e090614d01565b60405180910390fd5b60106120f483613841565b604051602001612105929190614a49565b6040516020818303038152906040529050919050565b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b9190615005565b6001808211156121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790614cc1565b60405180910390fd5b600f5484846122213384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790614d41565b60405180910390fd5b600260065414156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614e61565b60405180910390fd5b6002600681905550600060016002805490506122c291906150e6565b9050600c546001826122d49190615005565b1115612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c90614c41565b60405180910390fd5b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123899190615005565b925050819055506123a6336001836123a19190615005565b613298565b50600160068190555050505050505050565b6123c06130e5565b73ffffffffffffffffffffffffffffffffffffffff166123de611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614d61565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600281565b61246d6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661248b611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d890614d61565b60405180910390fd5b8060088190555050565b6124f36130e5565b73ffffffffffffffffffffffffffffffffffffffff16612511611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e90614d61565b60405180910390fd5b80600f8190555050565b60085481565b61257f6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661259d611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90614d61565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161261990614a6d565b60006040518083038185875af1925050503d8060008114612656576040519150601f19603f3d011682016040523d82523d6000602084013e61265b565b606091505b505090508061269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690614ce1565b60405180910390fd5b50565b600a54833481836126b3919061508c565b146126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90614e41565b60405180910390fd5b8460116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127639190615005565b600854808211156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614cc1565b60405180910390fd5b600e5486866127fa3384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283090614d41565b60405180910390fd5b6002600654141561287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614e61565b60405180910390fd5b60026006819055506000600160028054905061289b91906150e6565b9050600c548b826128ac9190615005565b11156128ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e490614b41565b60405180910390fd5b8a60116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129619190615005565b9250508190555060005b8b8110156129a75761299433600183856129859190615005565b61298f9190615005565b613298565b808061299f9061523d565b91505061296b565b5050600160068190555050505050505050505050565b600760009054906101000a900460ff1681565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a54600854348183612a77919061508c565b14612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90614e41565b60405180910390fd5b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b279190615005565b600180821115612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6390614cc1565b60405180910390fd5b60085460116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bde9190615005565b60085480821115612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90614cc1565b60405180910390fd5b600e548888612c753384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab90614d41565b60405180910390fd5b600f548d8d612d053384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90614d41565b60405180910390fd5b60026006541415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190614e61565b60405180910390fd5b600260068190555060006001600280549050612da691906150e6565b9050600c54600160085483612dbb9190615005565b612dc59190615005565b1115612e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfd90614da1565b60405180910390fd5b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e7a9190615005565b9250508190555060085460116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef79190615005565b9250508190555060005b6008546001612f109190615005565b811015612f4b57612f383360018385612f299190615005565b612f339190615005565b613298565b8080612f439061523d565b915050612f01565b5050600160068190555050505050505050505050505050505050565b612f6f6130e5565b73ffffffffffffffffffffffffffffffffffffffff16612f8d611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda90614d61565b60405180910390fd5b80600c8190555050565b612ff56130e5565b73ffffffffffffffffffffffffffffffffffffffff16613013611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614613069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306090614d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156130d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d090614b81565b60405180910390fd5b6130e28161371f565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600280549050821080156131d85750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061319457613193615372565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166132528361188e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061336682613157565b6133a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339c90614c21565b60405180910390fd5b60006133b08361188e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061341f57508373ffffffffffffffffffffffffffffffffffffffff1661340784610e30565b73ffffffffffffffffffffffffffffffffffffffff16145b80613430575061342f81856129d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166134598261188e565b73ffffffffffffffffffffffffffffffffffffffff16146134af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a690614d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561351f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351690614bc1565b60405180910390fd5b61352a8383836139a2565b6135356000826131df565b816002828154811061354a57613549615372565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006135fd8261188e565b905061360b816000846139a2565b6136166000836131df565b60006002838154811061362c5761362b615372565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060001b831415801561371657506137158284866040516020016136fa9190614a02565b604051602081830303815290604052805190602001206139a7565b5b90509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137f0848484613439565b6137fc848484846139be565b61383b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383290614b61565b60405180910390fd5b50505050565b60606000821415613889576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061399d565b600082905060005b600082146138bb5780806138a49061523d565b915050600a826138b4919061505b565b9150613891565b60008167ffffffffffffffff8111156138d7576138d66153a1565b5b6040519080825280601f01601f1916602001820160405280156139095781602001600182028036833780820191505090505b5090505b600085146139965760018261392291906150e6565b9150600a8561393191906152b4565b603061393d9190615005565b60f81b81838151811061395357613952615372565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561398f919061505b565b945061390d565b8093505050505b919050565b505050565b6000826139b48584613b55565b1490509392505050565b60006139df8473ffffffffffffffffffffffffffffffffffffffff16613c08565b15613b48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a086130e5565b8786866040518563ffffffff1660e01b8152600401613a2a9493929190614a9d565b602060405180830381600087803b158015613a4457600080fd5b505af1925050508015613a7557506040513d601f19601f82011682018060405250810190613a72919061432f565b60015b613af8573d8060008114613aa5576040519150601f19603f3d011682016040523d82523d6000602084013e613aaa565b606091505b50600081511415613af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae790614b61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b4d565b600190505b949350505050565b60008082905060005b8451811015613bfd576000858281518110613b7c57613b7b615372565b5b60200260200101519050808311613bbd578281604051602001613ba0929190614a1d565b604051602081830303815290604052805190602001209250613be9565b8083604051602001613bd0929190614a1d565b6040516020818303038152906040528051906020012092505b508080613bf59061523d565b915050613b5e565b508091505092915050565b600080823b905060008111915050919050565b828054613c27906151da565b90600052602060002090601f016020900481019282613c495760008555613c90565b82601f10613c6257805160ff1916838001178555613c90565b82800160010185558215613c90579182015b82811115613c8f578251825591602001919060010190613c74565b5b509050613c9d9190613ca1565b5090565b5b80821115613cba576000816000905550600101613ca2565b5090565b6000613cd1613ccc84614f14565b614eef565b90508083825260208201905082856020860282011115613cf457613cf36153da565b5b60005b85811015613d245781613d0a8882613efb565b845260208401935060208301925050600181019050613cf7565b5050509392505050565b6000613d41613d3c84614f40565b614eef565b905082815260208101848484011115613d5d57613d5c6153df565b5b613d68848285615198565b509392505050565b6000613d83613d7e84614f71565b614eef565b905082815260208101848484011115613d9f57613d9e6153df565b5b613daa848285615198565b509392505050565b600081359050613dc181615ae5565b92915050565b60008083601f840112613ddd57613ddc6153d5565b5b8235905067ffffffffffffffff811115613dfa57613df96153d0565b5b602083019150836020820283011115613e1657613e156153da565b5b9250929050565b600082601f830112613e3257613e316153d5565b5b8135613e42848260208601613cbe565b91505092915050565b600081359050613e5a81615afc565b92915050565b600081359050613e6f81615b13565b92915050565b600081359050613e8481615b2a565b92915050565b600081519050613e9981615b2a565b92915050565b600082601f830112613eb457613eb36153d5565b5b8135613ec4848260208601613d2e565b91505092915050565b600082601f830112613ee257613ee16153d5565b5b8135613ef2848260208601613d70565b91505092915050565b600081359050613f0a81615b41565b92915050565b600060208284031215613f2657613f256153e9565b5b6000613f3484828501613db2565b91505092915050565b60008060408385031215613f5457613f536153e9565b5b6000613f6285828601613db2565b9250506020613f7385828601613db2565b9150509250929050565b60008060008060808587031215613f9757613f966153e9565b5b6000613fa587828801613db2565b9450506020613fb687828801613db2565b935050604085013567ffffffffffffffff811115613fd757613fd66153e4565b5b613fe387828801613e1d565b925050606085013567ffffffffffffffff811115614004576140036153e4565b5b61401087828801613e9f565b91505092959194509250565b600080600060608486031215614035576140346153e9565b5b600061404386828701613db2565b935050602061405486828701613db2565b925050604061406586828701613efb565b9150509250925092565b60008060008060808587031215614089576140886153e9565b5b600061409787828801613db2565b94505060206140a887828801613db2565b93505060406140b987828801613efb565b925050606085013567ffffffffffffffff8111156140da576140d96153e4565b5b6140e687828801613e9f565b91505092959194509250565b60008060008060006060868803121561410e5761410d6153e9565b5b600061411c88828901613db2565b955050602086013567ffffffffffffffff81111561413d5761413c6153e4565b5b61414988828901613dc7565b9450945050604086013567ffffffffffffffff81111561416c5761416b6153e4565b5b61417888828901613dc7565b92509250509295509295909350565b6000806040838503121561419e5761419d6153e9565b5b60006141ac85828601613db2565b92505060206141bd85828601613e4b565b9150509250929050565b600080604083850312156141de576141dd6153e9565b5b60006141ec85828601613db2565b92505060206141fd85828601613efb565b9150509250929050565b6000806020838503121561421e5761421d6153e9565b5b600083013567ffffffffffffffff81111561423c5761423b6153e4565b5b61424885828601613dc7565b92509250509250929050565b6000806000806040858703121561426e5761426d6153e9565b5b600085013567ffffffffffffffff81111561428c5761428b6153e4565b5b61429887828801613dc7565b9450945050602085013567ffffffffffffffff8111156142bb576142ba6153e4565b5b6142c787828801613dc7565b925092505092959194509250565b6000602082840312156142eb576142ea6153e9565b5b60006142f984828501613e60565b91505092915050565b600060208284031215614318576143176153e9565b5b600061432684828501613e75565b91505092915050565b600060208284031215614345576143446153e9565b5b600061435384828501613e8a565b91505092915050565b600060208284031215614372576143716153e9565b5b600082013567ffffffffffffffff8111156143905761438f6153e4565b5b61439c84828501613ecd565b91505092915050565b6000602082840312156143bb576143ba6153e9565b5b60006143c984828501613efb565b91505092915050565b600080604083850312156143e9576143e86153e9565b5b60006143f785828601613efb565b925050602061440885828601613db2565b9150509250929050565b60008060006040848603121561442b5761442a6153e9565b5b600061443986828701613efb565b935050602084013567ffffffffffffffff81111561445a576144596153e4565b5b61446686828701613dc7565b92509250509250925092565b60008060006060848603121561448b5761448a6153e9565b5b600061449986828701613efb565b93505060206144aa86828701613efb565b92505060406144bb86828701613db2565b9150509250925092565b6144ce8161511a565b82525050565b6144e56144e08261511a565b615286565b82525050565b6144f48161512c565b82525050565b61450381615138565b82525050565b61451a61451582615138565b615298565b82525050565b600061452b82614fb7565b6145358185614fcd565b93506145458185602086016151a7565b61454e816153ee565b840191505092915050565b600061456482614fc2565b61456e8185614fe9565b935061457e8185602086016151a7565b614587816153ee565b840191505092915050565b600061459d82614fc2565b6145a78185614ffa565b93506145b78185602086016151a7565b80840191505092915050565b600081546145d0816151da565b6145da8186614ffa565b945060018216600081146145f5576001811461460657614639565b60ff19831686528186019350614639565b61460f85614fa2565b60005b8381101561463157815481890152600182019150602081019050614612565b838801955050505b50505092915050565b600061464f602b83614fe9565b915061465a8261540c565b604082019050919050565b6000614672603283614fe9565b915061467d8261545b565b604082019050919050565b6000614695602683614fe9565b91506146a0826154aa565b604082019050919050565b60006146b8602b83614fe9565b91506146c3826154f9565b604082019050919050565b60006146db602483614fe9565b91506146e682615548565b604082019050919050565b60006146fe601983614fe9565b915061470982615597565b602082019050919050565b6000614721602183614fe9565b915061472c826155c0565b604082019050919050565b6000614744602c83614fe9565b915061474f8261560f565b604082019050919050565b6000614767602f83614fe9565b91506147728261565e565b604082019050919050565b600061478a603883614fe9565b9150614795826156ad565b604082019050919050565b60006147ad602a83614fe9565b91506147b8826156fc565b604082019050919050565b60006147d0602983614fe9565b91506147db8261574b565b604082019050919050565b60006147f3604383614fe9565b91506147fe8261579a565b606082019050919050565b6000614816601383614fe9565b91506148218261580f565b602082019050919050565b6000614839601583614fe9565b915061484482615838565b602082019050919050565b600061485c602c83614fe9565b915061486782615861565b604082019050919050565b600061487f601883614fe9565b915061488a826158b0565b602082019050919050565b60006148a2602083614fe9565b91506148ad826158d9565b602082019050919050565b60006148c5602983614fe9565b91506148d082615902565b604082019050919050565b60006148e8602b83614fe9565b91506148f382615951565b604082019050919050565b600061490b601383614fe9565b9150614916826159a0565b602082019050919050565b600061492e601583614fe9565b9150614939826159c9565b602082019050919050565b6000614951602183614fe9565b915061495c826159f2565b604082019050919050565b6000614974600083614fde565b915061497f82615a41565b600082019050919050565b6000614997603183614fe9565b91506149a282615a44565b604082019050919050565b60006149ba601883614fe9565b91506149c582615a93565b602082019050919050565b60006149dd601f83614fe9565b91506149e882615abc565b602082019050919050565b6149fc8161518e565b82525050565b6000614a0e82846144d4565b60148201915081905092915050565b6000614a298285614509565b602082019150614a398284614509565b6020820191508190509392505050565b6000614a5582856145c3565b9150614a618284614592565b91508190509392505050565b6000614a7882614967565b9150819050919050565b6000602082019050614a9760008301846144c5565b92915050565b6000608082019050614ab260008301876144c5565b614abf60208301866144c5565b614acc60408301856149f3565b8181036060830152614ade8184614520565b905095945050505050565b6000602082019050614afe60008301846144eb565b92915050565b6000602082019050614b1960008301846144fa565b92915050565b60006020820190508181036000830152614b398184614559565b905092915050565b60006020820190508181036000830152614b5a81614642565b9050919050565b60006020820190508181036000830152614b7a81614665565b9050919050565b60006020820190508181036000830152614b9a81614688565b9050919050565b60006020820190508181036000830152614bba816146ab565b9050919050565b60006020820190508181036000830152614bda816146ce565b9050919050565b60006020820190508181036000830152614bfa816146f1565b9050919050565b60006020820190508181036000830152614c1a81614714565b9050919050565b60006020820190508181036000830152614c3a81614737565b9050919050565b60006020820190508181036000830152614c5a8161475a565b9050919050565b60006020820190508181036000830152614c7a8161477d565b9050919050565b60006020820190508181036000830152614c9a816147a0565b9050919050565b60006020820190508181036000830152614cba816147c3565b9050919050565b60006020820190508181036000830152614cda816147e6565b9050919050565b60006020820190508181036000830152614cfa81614809565b9050919050565b60006020820190508181036000830152614d1a8161482c565b9050919050565b60006020820190508181036000830152614d3a8161484f565b9050919050565b60006020820190508181036000830152614d5a81614872565b9050919050565b60006020820190508181036000830152614d7a81614895565b9050919050565b60006020820190508181036000830152614d9a816148b8565b9050919050565b60006020820190508181036000830152614dba816148db565b9050919050565b60006020820190508181036000830152614dda816148fe565b9050919050565b60006020820190508181036000830152614dfa81614921565b9050919050565b60006020820190508181036000830152614e1a81614944565b9050919050565b60006020820190508181036000830152614e3a8161498a565b9050919050565b60006020820190508181036000830152614e5a816149ad565b9050919050565b60006020820190508181036000830152614e7a816149d0565b9050919050565b6000602082019050614e9660008301846149f3565b92915050565b600060a082019050614eb160008301886149f3565b614ebe60208301876149f3565b614ecb60408301866149f3565b614ed860608301856149f3565b614ee560808301846149f3565b9695505050505050565b6000614ef9614f0a565b9050614f05828261520c565b919050565b6000604051905090565b600067ffffffffffffffff821115614f2f57614f2e6153a1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f5b57614f5a6153a1565b5b614f64826153ee565b9050602081019050919050565b600067ffffffffffffffff821115614f8c57614f8b6153a1565b5b614f95826153ee565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150108261518e565b915061501b8361518e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150505761504f6152e5565b5b828201905092915050565b60006150668261518e565b91506150718361518e565b92508261508157615080615314565b5b828204905092915050565b60006150978261518e565b91506150a28361518e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150db576150da6152e5565b5b828202905092915050565b60006150f18261518e565b91506150fc8361518e565b92508282101561510f5761510e6152e5565b5b828203905092915050565b60006151258261516e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151c55780820151818401526020810190506151aa565b838111156151d4576000848401525b50505050565b600060028204905060018216806151f257607f821691505b6020821081141561520657615205615343565b5b50919050565b615215826153ee565b810181811067ffffffffffffffff82111715615234576152336153a1565b5b80604052505050565b60006152488261518e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561527b5761527a6152e5565b5b600182019050919050565b6000615291826152a2565b9050919050565b6000819050919050565b60006152ad826153ff565b9050919050565b60006152bf8261518e565b91506152ca8361518e565b9250826152da576152d9615314565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820737570706c792c205069786c205065747320617260008201527f6520736f6c64206f757421000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792c205069786c205065747320617260008201527f6520736f6c64206f757421000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c69632073616c6520697320696e6163746976652120706c732073746f60008201527f7000000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792c2073686f756c6427766520636c60008201527f61696d656420736f6f6e6572203a2f0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4578636565647320616c6c6f636174656420737570706c7920666f722074686960008201527f7320757365722076696120617474656d70746564206d696e742066756e63746960208201527f6f6e2e0000000000000000000000000000000000000000000000000000000000604082015250565b7f4661696c656420746f2073656e64204554482e00000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53656e646572206e6f7420696e204d65726b6c65547265650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792c20636f6c6c656374696f6e206960008201527f7320736f6c64206f757421000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615aee8161511a565b8114615af957600080fd5b50565b615b058161512c565b8114615b1057600080fd5b50565b615b1c81615138565b8114615b2757600080fd5b50565b615b3381615142565b8114615b3e57600080fd5b50565b615b4a8161518e565b8114615b5557600080fd5b5056fea26469706673582212202f254384ccd7c3839284aa00904842b7adb9f54d6a36de86bed9058c1c2dd60764736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d566556475a373877516638574765336e44436632576642474c5a343146425839444a7651614c5a6a626565332f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102fe5760003560e01c806368963df011610190578063cfb3bad4116100dc578063e086e5ec11610095578063e985e9c51161006f578063e985e9c514610af3578063efce24b914610b30578063f103b43314610b4c578063f2fde38b14610b75576102fe565b8063e086e5ec14610a95578063e3e1e8ef14610aac578063e94d75f314610ac8576102fe565b8063cfb3bad4146109ad578063d3241089146109d6578063db3cdbc5146109ed578063dcdcf35814610a18578063dde44b8914610a41578063df1107e614610a6a576102fe565b8063715018a611610149578063a22cb46511610123578063a22cb465146108f3578063a5e47bbc1461091c578063b88d4fde14610947578063c87b56dd14610970576102fe565b8063715018a6146108865780638da5cb5b1461089d57806395d89b41146108c8576102fe565b806368963df01461075c5780636bde2627146107875780636c0360eb146107b25780636c944c74146107dd5780636efc59b81461080857806370a0823114610849576102fe565b806328d7b2761161024f57806342966c681161020857806355f804b3116101e257806355f804b3146106a25780635a4fee30146106cb5780636352211e146106f45780636791de7d14610731576102fe565b806342966c68146106255780634846a44d1461064e5780634cfbc9c314610665576102fe565b806328d7b276146105385780632a234e57146105615780632db115441461058c57806332cb6b0c146105a857806335776ade146105d357806342842e0e146105fc576102fe565b80630dc28efe116102bc57806318160ddd1161029657806318160ddd1461048e57806322212e2b146104b957806323b872dd146104e457806327598f2c1461050d576102fe565b80630dc28efe146104115780631290237a1461043a5780631593037414610465576102fe565b8062a762301461030357806301e49e311461031a57806301ffc9a71461034357806306fdde0314610380578063081812fc146103ab578063095ea7b3146103e8575b600080fd5b34801561030f57600080fd5b50610318610b9e565b005b34801561032657600080fd5b50610341600480360381019061033c91906143a5565b610c36565b005b34801561034f57600080fd5b5061036a60048036038101906103659190614302565b610cbc565b6040516103779190614ae9565b60405180910390f35b34801561038c57600080fd5b50610395610d9e565b6040516103a29190614b1f565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd91906143a5565b610e30565b6040516103df9190614a82565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906141c7565b610eb5565b005b34801561041d57600080fd5b50610438600480360381019061043391906143d2565b610fcd565b005b34801561044657600080fd5b5061044f6110f4565b60405161045c9190614e81565b60405180910390f35b34801561047157600080fd5b5061048c600480360381019061048791906143a5565b6110fa565b005b34801561049a57600080fd5b506104a3611180565b6040516104b09190614e81565b60405180910390f35b3480156104c557600080fd5b506104ce611199565b6040516104db9190614b04565b60405180910390f35b3480156104f057600080fd5b5061050b6004803603810190610506919061401c565b61119f565b005b34801561051957600080fd5b506105226111ff565b60405161052f9190614e81565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a91906142d5565b611204565b005b34801561056d57600080fd5b5061057661128a565b6040516105839190614e81565b60405180910390f35b6105a660048036038101906105a191906143a5565b611290565b005b3480156105b457600080fd5b506105bd611565565b6040516105ca9190614e81565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f591906143a5565b61156b565b005b34801561060857600080fd5b50610623600480360381019061061e919061401c565b6115f1565b005b34801561063157600080fd5b5061064c600480360381019061064791906143a5565b611611565b005b34801561065a57600080fd5b50610663611666565b005b34801561067157600080fd5b5061068c60048036038101906106879190614472565b6116fe565b6040516106999190614e81565b60405180910390f35b3480156106ae57600080fd5b506106c960048036038101906106c4919061435c565b611730565b005b3480156106d757600080fd5b506106f260048036038101906106ed9190613f7d565b6117c6565b005b34801561070057600080fd5b5061071b600480360381019061071691906143a5565b61188e565b6040516107289190614a82565b60405180910390f35b34801561073d57600080fd5b5061074661194b565b6040516107539190614e81565b60405180910390f35b34801561076857600080fd5b50610771611950565b60405161077e9190614b04565b60405180910390f35b34801561079357600080fd5b5061079c611956565b6040516107a99190614e81565b60405180910390f35b3480156107be57600080fd5b506107c761195c565b6040516107d49190614b1f565b60405180910390f35b3480156107e957600080fd5b506107f26119ea565b6040516107ff9190614e81565b60405180910390f35b34801561081457600080fd5b5061082f600480360381019061082a91906140f2565b6119ef565b604051610840959493929190614e9c565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190613f10565b611c56565b60405161087d9190614e81565b60405180910390f35b34801561089257600080fd5b5061089b611d72565b005b3480156108a957600080fd5b506108b2611dfa565b6040516108bf9190614a82565b60405180910390f35b3480156108d457600080fd5b506108dd611e24565b6040516108ea9190614b1f565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190614187565b611eb6565b005b34801561092857600080fd5b50610931612037565b60405161093e9190614e81565b60405180910390f35b34801561095357600080fd5b5061096e6004803603810190610969919061406f565b61203d565b005b34801561097c57600080fd5b50610997600480360381019061099291906143a5565b61209f565b6040516109a49190614b1f565b60405180910390f35b3480156109b957600080fd5b506109d460048036038101906109cf9190614207565b61211b565b005b3480156109e257600080fd5b506109eb6123b8565b005b3480156109f957600080fd5b50610a02612460565b604051610a0f9190614e81565b60405180910390f35b348015610a2457600080fd5b50610a3f6004803603810190610a3a91906143a5565b612465565b005b348015610a4d57600080fd5b50610a686004803603810190610a6391906142d5565b6124eb565b005b348015610a7657600080fd5b50610a7f612571565b604051610a8c9190614e81565b60405180910390f35b348015610aa157600080fd5b50610aaa612577565b005b610ac66004803603810190610ac19190614412565b6126a2565b005b348015610ad457600080fd5b50610add6129bd565b604051610aea9190614ae9565b60405180910390f35b348015610aff57600080fd5b50610b1a6004803603810190610b159190613f3d565b6129d0565b604051610b279190614ae9565b60405180910390f35b610b4a6004803603810190610b459190614254565b612a64565b005b348015610b5857600080fd5b50610b736004803603810190610b6e91906143a5565b612f67565b005b348015610b8157600080fd5b50610b9c6004803603810190610b979190613f10565b612fed565b005b610ba66130e5565b73ffffffffffffffffffffffffffffffffffffffff16610bc4611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1190614d61565b60405180910390fd5b6001600d6000828254610c2d9190615005565b92505081905550565b610c3e6130e5565b73ffffffffffffffffffffffffffffffffffffffff16610c5c611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614d61565b60405180910390fd5b80600b8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d975750610d96826130ed565b5b9050919050565b606060008054610dad906151da565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd9906151da565b8015610e265780601f10610dfb57610100808354040283529160200191610e26565b820191906000526020600020905b815481529060010190602001808311610e0957829003601f168201915b5050505050905090565b6000610e3b82613157565b610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7190614d21565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ec08261188e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890614e01565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f506130e5565b73ffffffffffffffffffffffffffffffffffffffff161480610f7f5750610f7e81610f796130e5565b6129d0565b5b610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590614c61565b60405180910390fd5b610fc883836131df565b505050565b610fd56130e5565b73ffffffffffffffffffffffffffffffffffffffff16610ff3611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090614d61565b60405180910390fd5b6000600160028054905061105d91906150e6565b9050600c54838261106e9190615005565b11156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690614dc1565b60405180910390fd5b60005b838110156110ee576110db83600183856110cc9190615005565b6110d69190615005565b613298565b80806110e69061523d565b9150506110b2565b50505050565b600d5481565b6111026130e5565b73ffffffffffffffffffffffffffffffffffffffff16611120611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90614d61565b60405180910390fd5b8060098190555050565b6000600160028054905061119491906150e6565b905090565b600e5481565b6111b06111aa6130e5565b8261335b565b6111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690614e21565b60405180910390fd5b6111fa838383613439565b505050565b600181565b61120c6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661122a611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127790614d61565b60405180910390fd5b80600e8190555050565b600a5481565b600b54813481836112a1919061508c565b146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614e41565b60405180910390fd5b8260116000600d54815260200190815260200160002060006002815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113519190615005565b60095480821115611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90614cc1565b60405180910390fd5b600260065414156113dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d490614e61565b60405180910390fd5b6002600681905550600060016002805490506113f991906150e6565b9050600760009054906101000a900460ff1661144a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144190614c01565b60405180910390fd5b600c5486826114599190615005565b111561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190614ba1565b60405180910390fd5b8560116000600d54815260200190815260200160002060006002815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150e9190615005565b9250508190555060005b868110156115545761154133600183856115329190615005565b61153c9190615005565b613298565b808061154c9061523d565b915050611518565b505060016006819055505050505050565b600c5481565b6115736130e5565b73ffffffffffffffffffffffffffffffffffffffff16611591611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90614d61565b60405180910390fd5b80600a8190555050565b61160c8383836040518060200160405280600081525061203d565b505050565b61161b338261335b565b61165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190614de1565b60405180910390fd5b611663816135f2565b50565b61166e6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661168c611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990614d61565b60405180910390fd5b6001600d60008282546116f591906150e6565b92505081905550565b601160205282600052604060002060205281600052604060002060205280600052604060002060009250925050505481565b6117386130e5565b73ffffffffffffffffffffffffffffffffffffffff16611756611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390614d61565b60405180910390fd5b80601090805190602001906117c2929190613c1b565b5050565b6117ce6130e5565b73ffffffffffffffffffffffffffffffffffffffff166117ec611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183990614d61565b60405180910390fd5b60005b825181101561188757611874858585848151811061186657611865615372565b5b60200260200101518561203d565b808061187f9061523d565b915050611845565b5050505050565b600080600283815481106118a5576118a4615372565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990614ca1565b60405180910390fd5b80915050919050565b600181565b600f5481565b600b5481565b60108054611969906151da565b80601f0160208091040260200160405190810160405280929190818152602001828054611995906151da565b80156119e25780601f106119b7576101008083540402835291602001916119e2565b820191906000526020600020905b8154815290600101906020018083116119c557829003601f168201915b505050505081565b600081565b6000806000806000806001600280549050611a0a91906150e6565b9050600080600060116000600d54815260200190815260200160002060006002815260200190815260200160002060008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600954611a8391906150e6565b9050611ad38e600f548f8f80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b15611b565760116000600d548152602001908152602001600020600080815260200190815260200160002060008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546001611b4891906150e6565b83611b539190615005565b92505b611ba48e600e548d8d80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b15611c295760116000600d54815260200190815260200160002060006001815260200190815260200160002060008f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600854611c1b91906150e6565b82611c269190615005565b91505b8282828687600c54611c3b91906150e6565b98509850985098509850505050509550955095509550959050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbe90614c81565b60405180910390fd5b6000805b600280549050811015611d685760028181548110611cec57611ceb615372565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d575781611d549061523d565b91505b80611d619061523d565b9050611ccb565b5080915050919050565b611d7a6130e5565b73ffffffffffffffffffffffffffffffffffffffff16611d98611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614611dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de590614d61565b60405180910390fd5b611df8600061371f565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e33906151da565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5f906151da565b8015611eac5780601f10611e8157610100808354040283529160200191611eac565b820191906000526020600020905b815481529060010190602001808311611e8f57829003601f168201915b5050505050905090565b611ebe6130e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390614be1565b60405180910390fd5b8060046000611f396130e5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fe66130e5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161202b9190614ae9565b60405180910390a35050565b60095481565b61204e6120486130e5565b8361335b565b61208d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208490614e21565b60405180910390fd5b612099848484846137e5565b50505050565b60606120aa82613157565b6120e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e090614d01565b60405180910390fd5b60106120f483613841565b604051602001612105929190614a49565b6040516020818303038152906040529050919050565b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b9190615005565b6001808211156121d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c790614cc1565b60405180910390fd5b600f5484846122213384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225790614d41565b60405180910390fd5b600260065414156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614e61565b60405180910390fd5b6002600681905550600060016002805490506122c291906150e6565b9050600c546001826122d49190615005565b1115612315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230c90614c41565b60405180910390fd5b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123899190615005565b925050819055506123a6336001836123a19190615005565b613298565b50600160068190555050505050505050565b6123c06130e5565b73ffffffffffffffffffffffffffffffffffffffff166123de611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614612434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242b90614d61565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600281565b61246d6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661248b611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d890614d61565b60405180910390fd5b8060088190555050565b6124f36130e5565b73ffffffffffffffffffffffffffffffffffffffff16612511611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e90614d61565b60405180910390fd5b80600f8190555050565b60085481565b61257f6130e5565b73ffffffffffffffffffffffffffffffffffffffff1661259d611dfa565b73ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90614d61565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161261990614a6d565b60006040518083038185875af1925050503d8060008114612656576040519150601f19603f3d011682016040523d82523d6000602084013e61265b565b606091505b505090508061269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690614ce1565b60405180910390fd5b50565b600a54833481836126b3919061508c565b146126f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ea90614e41565b60405180910390fd5b8460116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127639190615005565b600854808211156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614cc1565b60405180910390fd5b600e5486866127fa3384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283090614d41565b60405180910390fd5b6002600654141561287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614e61565b60405180910390fd5b60026006819055506000600160028054905061289b91906150e6565b9050600c548b826128ac9190615005565b11156128ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e490614b41565b60405180910390fd5b8a60116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129619190615005565b9250508190555060005b8b8110156129a75761299433600183856129859190615005565b61298f9190615005565b613298565b808061299f9061523d565b91505061296b565b5050600160068190555050505050505050505050565b600760009054906101000a900460ff1681565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a54600854348183612a77919061508c565b14612ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aae90614e41565b60405180910390fd5b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612b279190615005565b600180821115612b6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6390614cc1565b60405180910390fd5b60085460116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612bde9190615005565b60085480821115612c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1b90614cc1565b60405180910390fd5b600e548888612c753384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab90614d41565b60405180910390fd5b600f548d8d612d053384848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506136d4565b612d44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3b90614d41565b60405180910390fd5b60026006541415612d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8190614e61565b60405180910390fd5b600260068190555060006001600280549050612da691906150e6565b9050600c54600160085483612dbb9190615005565b612dc59190615005565b1115612e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfd90614da1565b60405180910390fd5b600160116000600d548152602001908152602001600020600080815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e7a9190615005565b9250508190555060085460116000600d54815260200190815260200160002060006001815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ef79190615005565b9250508190555060005b6008546001612f109190615005565b811015612f4b57612f383360018385612f299190615005565b612f339190615005565b613298565b8080612f439061523d565b915050612f01565b5050600160068190555050505050505050505050505050505050565b612f6f6130e5565b73ffffffffffffffffffffffffffffffffffffffff16612f8d611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda90614d61565b60405180910390fd5b80600c8190555050565b612ff56130e5565b73ffffffffffffffffffffffffffffffffffffffff16613013611dfa565b73ffffffffffffffffffffffffffffffffffffffff1614613069576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306090614d61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156130d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130d090614b81565b60405180910390fd5b6130e28161371f565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000600280549050821080156131d85750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061319457613193615372565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166132528361188e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061336682613157565b6133a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339c90614c21565b60405180910390fd5b60006133b08361188e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061341f57508373ffffffffffffffffffffffffffffffffffffffff1661340784610e30565b73ffffffffffffffffffffffffffffffffffffffff16145b80613430575061342f81856129d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166134598261188e565b73ffffffffffffffffffffffffffffffffffffffff16146134af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a690614d81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561351f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351690614bc1565b60405180910390fd5b61352a8383836139a2565b6135356000826131df565b816002828154811061354a57613549615372565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006135fd8261188e565b905061360b816000846139a2565b6136166000836131df565b60006002838154811061362c5761362b615372565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008060001b831415801561371657506137158284866040516020016136fa9190614a02565b604051602081830303815290604052805190602001206139a7565b5b90509392505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137f0848484613439565b6137fc848484846139be565b61383b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383290614b61565b60405180910390fd5b50505050565b60606000821415613889576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061399d565b600082905060005b600082146138bb5780806138a49061523d565b915050600a826138b4919061505b565b9150613891565b60008167ffffffffffffffff8111156138d7576138d66153a1565b5b6040519080825280601f01601f1916602001820160405280156139095781602001600182028036833780820191505090505b5090505b600085146139965760018261392291906150e6565b9150600a8561393191906152b4565b603061393d9190615005565b60f81b81838151811061395357613952615372565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561398f919061505b565b945061390d565b8093505050505b919050565b505050565b6000826139b48584613b55565b1490509392505050565b60006139df8473ffffffffffffffffffffffffffffffffffffffff16613c08565b15613b48578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613a086130e5565b8786866040518563ffffffff1660e01b8152600401613a2a9493929190614a9d565b602060405180830381600087803b158015613a4457600080fd5b505af1925050508015613a7557506040513d601f19601f82011682018060405250810190613a72919061432f565b60015b613af8573d8060008114613aa5576040519150601f19603f3d011682016040523d82523d6000602084013e613aaa565b606091505b50600081511415613af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae790614b61565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b4d565b600190505b949350505050565b60008082905060005b8451811015613bfd576000858281518110613b7c57613b7b615372565b5b60200260200101519050808311613bbd578281604051602001613ba0929190614a1d565b604051602081830303815290604052805190602001209250613be9565b8083604051602001613bd0929190614a1d565b6040516020818303038152906040528051906020012092505b508080613bf59061523d565b915050613b5e565b508091505092915050565b600080823b905060008111915050919050565b828054613c27906151da565b90600052602060002090601f016020900481019282613c495760008555613c90565b82601f10613c6257805160ff1916838001178555613c90565b82800160010185558215613c90579182015b82811115613c8f578251825591602001919060010190613c74565b5b509050613c9d9190613ca1565b5090565b5b80821115613cba576000816000905550600101613ca2565b5090565b6000613cd1613ccc84614f14565b614eef565b90508083825260208201905082856020860282011115613cf457613cf36153da565b5b60005b85811015613d245781613d0a8882613efb565b845260208401935060208301925050600181019050613cf7565b5050509392505050565b6000613d41613d3c84614f40565b614eef565b905082815260208101848484011115613d5d57613d5c6153df565b5b613d68848285615198565b509392505050565b6000613d83613d7e84614f71565b614eef565b905082815260208101848484011115613d9f57613d9e6153df565b5b613daa848285615198565b509392505050565b600081359050613dc181615ae5565b92915050565b60008083601f840112613ddd57613ddc6153d5565b5b8235905067ffffffffffffffff811115613dfa57613df96153d0565b5b602083019150836020820283011115613e1657613e156153da565b5b9250929050565b600082601f830112613e3257613e316153d5565b5b8135613e42848260208601613cbe565b91505092915050565b600081359050613e5a81615afc565b92915050565b600081359050613e6f81615b13565b92915050565b600081359050613e8481615b2a565b92915050565b600081519050613e9981615b2a565b92915050565b600082601f830112613eb457613eb36153d5565b5b8135613ec4848260208601613d2e565b91505092915050565b600082601f830112613ee257613ee16153d5565b5b8135613ef2848260208601613d70565b91505092915050565b600081359050613f0a81615b41565b92915050565b600060208284031215613f2657613f256153e9565b5b6000613f3484828501613db2565b91505092915050565b60008060408385031215613f5457613f536153e9565b5b6000613f6285828601613db2565b9250506020613f7385828601613db2565b9150509250929050565b60008060008060808587031215613f9757613f966153e9565b5b6000613fa587828801613db2565b9450506020613fb687828801613db2565b935050604085013567ffffffffffffffff811115613fd757613fd66153e4565b5b613fe387828801613e1d565b925050606085013567ffffffffffffffff811115614004576140036153e4565b5b61401087828801613e9f565b91505092959194509250565b600080600060608486031215614035576140346153e9565b5b600061404386828701613db2565b935050602061405486828701613db2565b925050604061406586828701613efb565b9150509250925092565b60008060008060808587031215614089576140886153e9565b5b600061409787828801613db2565b94505060206140a887828801613db2565b93505060406140b987828801613efb565b925050606085013567ffffffffffffffff8111156140da576140d96153e4565b5b6140e687828801613e9f565b91505092959194509250565b60008060008060006060868803121561410e5761410d6153e9565b5b600061411c88828901613db2565b955050602086013567ffffffffffffffff81111561413d5761413c6153e4565b5b61414988828901613dc7565b9450945050604086013567ffffffffffffffff81111561416c5761416b6153e4565b5b61417888828901613dc7565b92509250509295509295909350565b6000806040838503121561419e5761419d6153e9565b5b60006141ac85828601613db2565b92505060206141bd85828601613e4b565b9150509250929050565b600080604083850312156141de576141dd6153e9565b5b60006141ec85828601613db2565b92505060206141fd85828601613efb565b9150509250929050565b6000806020838503121561421e5761421d6153e9565b5b600083013567ffffffffffffffff81111561423c5761423b6153e4565b5b61424885828601613dc7565b92509250509250929050565b6000806000806040858703121561426e5761426d6153e9565b5b600085013567ffffffffffffffff81111561428c5761428b6153e4565b5b61429887828801613dc7565b9450945050602085013567ffffffffffffffff8111156142bb576142ba6153e4565b5b6142c787828801613dc7565b925092505092959194509250565b6000602082840312156142eb576142ea6153e9565b5b60006142f984828501613e60565b91505092915050565b600060208284031215614318576143176153e9565b5b600061432684828501613e75565b91505092915050565b600060208284031215614345576143446153e9565b5b600061435384828501613e8a565b91505092915050565b600060208284031215614372576143716153e9565b5b600082013567ffffffffffffffff8111156143905761438f6153e4565b5b61439c84828501613ecd565b91505092915050565b6000602082840312156143bb576143ba6153e9565b5b60006143c984828501613efb565b91505092915050565b600080604083850312156143e9576143e86153e9565b5b60006143f785828601613efb565b925050602061440885828601613db2565b9150509250929050565b60008060006040848603121561442b5761442a6153e9565b5b600061443986828701613efb565b935050602084013567ffffffffffffffff81111561445a576144596153e4565b5b61446686828701613dc7565b92509250509250925092565b60008060006060848603121561448b5761448a6153e9565b5b600061449986828701613efb565b93505060206144aa86828701613efb565b92505060406144bb86828701613db2565b9150509250925092565b6144ce8161511a565b82525050565b6144e56144e08261511a565b615286565b82525050565b6144f48161512c565b82525050565b61450381615138565b82525050565b61451a61451582615138565b615298565b82525050565b600061452b82614fb7565b6145358185614fcd565b93506145458185602086016151a7565b61454e816153ee565b840191505092915050565b600061456482614fc2565b61456e8185614fe9565b935061457e8185602086016151a7565b614587816153ee565b840191505092915050565b600061459d82614fc2565b6145a78185614ffa565b93506145b78185602086016151a7565b80840191505092915050565b600081546145d0816151da565b6145da8186614ffa565b945060018216600081146145f5576001811461460657614639565b60ff19831686528186019350614639565b61460f85614fa2565b60005b8381101561463157815481890152600182019150602081019050614612565b838801955050505b50505092915050565b600061464f602b83614fe9565b915061465a8261540c565b604082019050919050565b6000614672603283614fe9565b915061467d8261545b565b604082019050919050565b6000614695602683614fe9565b91506146a0826154aa565b604082019050919050565b60006146b8602b83614fe9565b91506146c3826154f9565b604082019050919050565b60006146db602483614fe9565b91506146e682615548565b604082019050919050565b60006146fe601983614fe9565b915061470982615597565b602082019050919050565b6000614721602183614fe9565b915061472c826155c0565b604082019050919050565b6000614744602c83614fe9565b915061474f8261560f565b604082019050919050565b6000614767602f83614fe9565b91506147728261565e565b604082019050919050565b600061478a603883614fe9565b9150614795826156ad565b604082019050919050565b60006147ad602a83614fe9565b91506147b8826156fc565b604082019050919050565b60006147d0602983614fe9565b91506147db8261574b565b604082019050919050565b60006147f3604383614fe9565b91506147fe8261579a565b606082019050919050565b6000614816601383614fe9565b91506148218261580f565b602082019050919050565b6000614839601583614fe9565b915061484482615838565b602082019050919050565b600061485c602c83614fe9565b915061486782615861565b604082019050919050565b600061487f601883614fe9565b915061488a826158b0565b602082019050919050565b60006148a2602083614fe9565b91506148ad826158d9565b602082019050919050565b60006148c5602983614fe9565b91506148d082615902565b604082019050919050565b60006148e8602b83614fe9565b91506148f382615951565b604082019050919050565b600061490b601383614fe9565b9150614916826159a0565b602082019050919050565b600061492e601583614fe9565b9150614939826159c9565b602082019050919050565b6000614951602183614fe9565b915061495c826159f2565b604082019050919050565b6000614974600083614fde565b915061497f82615a41565b600082019050919050565b6000614997603183614fe9565b91506149a282615a44565b604082019050919050565b60006149ba601883614fe9565b91506149c582615a93565b602082019050919050565b60006149dd601f83614fe9565b91506149e882615abc565b602082019050919050565b6149fc8161518e565b82525050565b6000614a0e82846144d4565b60148201915081905092915050565b6000614a298285614509565b602082019150614a398284614509565b6020820191508190509392505050565b6000614a5582856145c3565b9150614a618284614592565b91508190509392505050565b6000614a7882614967565b9150819050919050565b6000602082019050614a9760008301846144c5565b92915050565b6000608082019050614ab260008301876144c5565b614abf60208301866144c5565b614acc60408301856149f3565b8181036060830152614ade8184614520565b905095945050505050565b6000602082019050614afe60008301846144eb565b92915050565b6000602082019050614b1960008301846144fa565b92915050565b60006020820190508181036000830152614b398184614559565b905092915050565b60006020820190508181036000830152614b5a81614642565b9050919050565b60006020820190508181036000830152614b7a81614665565b9050919050565b60006020820190508181036000830152614b9a81614688565b9050919050565b60006020820190508181036000830152614bba816146ab565b9050919050565b60006020820190508181036000830152614bda816146ce565b9050919050565b60006020820190508181036000830152614bfa816146f1565b9050919050565b60006020820190508181036000830152614c1a81614714565b9050919050565b60006020820190508181036000830152614c3a81614737565b9050919050565b60006020820190508181036000830152614c5a8161475a565b9050919050565b60006020820190508181036000830152614c7a8161477d565b9050919050565b60006020820190508181036000830152614c9a816147a0565b9050919050565b60006020820190508181036000830152614cba816147c3565b9050919050565b60006020820190508181036000830152614cda816147e6565b9050919050565b60006020820190508181036000830152614cfa81614809565b9050919050565b60006020820190508181036000830152614d1a8161482c565b9050919050565b60006020820190508181036000830152614d3a8161484f565b9050919050565b60006020820190508181036000830152614d5a81614872565b9050919050565b60006020820190508181036000830152614d7a81614895565b9050919050565b60006020820190508181036000830152614d9a816148b8565b9050919050565b60006020820190508181036000830152614dba816148db565b9050919050565b60006020820190508181036000830152614dda816148fe565b9050919050565b60006020820190508181036000830152614dfa81614921565b9050919050565b60006020820190508181036000830152614e1a81614944565b9050919050565b60006020820190508181036000830152614e3a8161498a565b9050919050565b60006020820190508181036000830152614e5a816149ad565b9050919050565b60006020820190508181036000830152614e7a816149d0565b9050919050565b6000602082019050614e9660008301846149f3565b92915050565b600060a082019050614eb160008301886149f3565b614ebe60208301876149f3565b614ecb60408301866149f3565b614ed860608301856149f3565b614ee560808301846149f3565b9695505050505050565b6000614ef9614f0a565b9050614f05828261520c565b919050565b6000604051905090565b600067ffffffffffffffff821115614f2f57614f2e6153a1565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f5b57614f5a6153a1565b5b614f64826153ee565b9050602081019050919050565b600067ffffffffffffffff821115614f8c57614f8b6153a1565b5b614f95826153ee565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006150108261518e565b915061501b8361518e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150505761504f6152e5565b5b828201905092915050565b60006150668261518e565b91506150718361518e565b92508261508157615080615314565b5b828204905092915050565b60006150978261518e565b91506150a28361518e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150db576150da6152e5565b5b828202905092915050565b60006150f18261518e565b91506150fc8361518e565b92508282101561510f5761510e6152e5565b5b828203905092915050565b60006151258261516e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151c55780820151818401526020810190506151aa565b838111156151d4576000848401525b50505050565b600060028204905060018216806151f257607f821691505b6020821081141561520657615205615343565b5b50919050565b615215826153ee565b810181811067ffffffffffffffff82111715615234576152336153a1565b5b80604052505050565b60006152488261518e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561527b5761527a6152e5565b5b600182019050919050565b6000615291826152a2565b9050919050565b6000819050919050565b60006152ad826153ff565b9050919050565b60006152bf8261518e565b91506152ca8361518e565b9250826152da576152d9615314565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45786365656473204d617820737570706c792c205069786c205065747320617260008201527f6520736f6c64206f757421000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792c205069786c205065747320617260008201527f6520736f6c64206f757421000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5075626c69632073616c6520697320696e6163746976652120706c732073746f60008201527f7000000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792c2073686f756c6427766520636c60008201527f61696d656420736f6f6e6572203a2f0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4578636565647320616c6c6f636174656420737570706c7920666f722074686960008201527f7320757365722076696120617474656d70746564206d696e742066756e63746960208201527f6f6e2e0000000000000000000000000000000000000000000000000000000000604082015250565b7f4661696c656420746f2073656e64204554482e00000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53656e646572206e6f7420696e204d65726b6c65547265650000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792c20636f6c6c656374696f6e206960008201527f7320736f6c64206f757421000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b7f4e6f7420617070726f76656420746f206275726e2e0000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615aee8161511a565b8114615af957600080fd5b50565b615b058161512c565b8114615b1057600080fd5b50565b615b1c81615138565b8114615b2757600080fd5b50565b615b3381615142565b8114615b3e57600080fd5b50565b615b4a8161518e565b8114615b5557600080fd5b5056fea26469706673582212202f254384ccd7c3839284aa00904842b7adb9f54d6a36de86bed9058c1c2dd60764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d566556475a373877516638574765336e44436632576642474c5a343146425839444a7651614c5a6a626565332f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://ipfs.io/ipfs/QmVeVGZ78wQf8WGe3nDCf2WfBGLZ41FBX9DJvQaLZjbee3/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d566556475a37387751
Arg [3] : 6638574765336e44436632576642474c5a343146425839444a7651614c5a6a62
Arg [4] : 6565332f00000000000000000000000000000000000000000000000000000000
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.