ERC-721
Source Code
Overview
Max Total Supply
100 DHZ
Holders
79
Transfers
-
0
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
DeadHandzGenesis
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-11-05
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: contracts/Main.sol
pragma solidity ^0.8.0;
/// @title Dead Handz Smart Contract for the Genesis collection
/// @author Aric Kuter
/// @dev All function calls are currently implemented without events to save on gas
contract DeadHandzGenesis is ERC721Enumerable, Ownable {
using Strings for uint256;
/// ============ Mutable storage ============
/// @notice URI for revealed metadata
string public baseURI;
/// @notice URI for hidden metadata
string public hiddenURI;
/// @notice Extension for metadata files
string public baseExtension = ".json";
/// @notice Mint cost per NFT
uint256 public COST = 0.09 ether;
/// @notice Max supply of NFTs
uint256 public MAX_SUPPLY = 100;
/// @notice Max NFTs to mint per address
uint256 public MAX_MINT_PER_ADDRESS = 1;
/// @notice Pause or Resume minting
bool public paused = true;
/// @notice Reveal metadata
bool public revealed = false;
/// @notice Whitelist map of addresses to true/false
mapping(address => bool) public whitelisted;
/// @notice Map address to minted amount
mapping(address => uint256) public addressMintedBalance;
/// ============ Constructor ============
/// @param _name name of NFT
/// @param _symbol symbol of NFT
/// @param _initBaseURI URI for revealed metadata in format: ipfs://HASH/
/// @param _initHiddenURI URI for hidden metadata in format: ipfs://HASH/
/// @param _whitelist Map of addresses to true/false in format: ["address", "address01"]
/// @param _OWNER_MINT_AMOUNT Number of NFTs to mint to the owners address
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI,
string memory _initHiddenURI,
address[] memory _whitelist,
uint256 _OWNER_MINT_AMOUNT
) ERC721(_name, _symbol) {
baseURI = _initBaseURI;
hiddenURI = _initHiddenURI;
/// @notice Populate the whitelist
for (uint256 i = 0; i < _whitelist.length; i++) {
whitelisted[_whitelist[i]] = true;
}
/// @notice mint to owners address
reserveTokens(owner(), _OWNER_MINT_AMOUNT);
}
/// @return Returns the baseURI
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
/// @notice Mint NFTs to senders address
/// @param _mintAmount Number of NFTs to mint
function mint(uint256 _mintAmount) external payable {
/// @notice Check the mint is active or the sender is whitelisted
require(!paused || whitelisted[msg.sender], "Minting paused");
require(_mintAmount > 0, "Min amount");
uint256 supply = totalSupply();
require(
supply + _mintAmount <= MAX_SUPPLY,
"Supply limit reached"
);
require(
addressMintedBalance[msg.sender] + _mintAmount <= MAX_MINT_PER_ADDRESS,"Mint limit reached"
);
require(msg.value == COST * _mintAmount, "Incorrect ETH");
/// @notice Safely mint the NFTs
addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;
for (uint256 i = 1; i <= _mintAmount; i++) {
_safeMint(msg.sender, supply + i);
}
}
/// @notice Reserved mint function for owner only
/// @param _to Address to send tokens to
/// @param _mintAmount Number of NFTs to mint
function reserveTokens(address _to, uint256 _mintAmount) public onlyOwner {
uint256 supply = totalSupply();
/// @notice Safely mint the NFTs
addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;
for (uint256 i = 1; i <= _mintAmount; i++) {
_safeMint(_to, supply + i);
}
}
/// @return Returns a conststructed string in the format: //ipfs/HASH/[tokenId].json
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for NonExistent Token."
);
if (!revealed) {
return hiddenURI;
}
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
tokenId.toString(),
baseExtension
)
)
: "";
}
/// @notice Reveal metadata
function reveal() external onlyOwner {
revealed = true;
}
/// @notice Update COST
/// @param _newCost New cost per NFT in ether
function setCost(uint256 _newCost) external onlyOwner {
COST = _newCost;
}
/// @notice Set the URI of the hidden metadata
/// @param _hiddenURI URI for hidden metadata NOTE: This URI must be the link to the exact file in format: ipfs//HASH/
function setHiddenURI(string memory _hiddenURI) external onlyOwner {
hiddenURI = _hiddenURI;
}
/// @notice Set URI of the metadata
/// @param _newBaseURI URI for revealed metadata
function setBaseURI(string memory _newBaseURI) external onlyOwner {
baseURI = _newBaseURI;
}
/// @notice Set the base extension for the metadata
/// @param _newBaseExtension Base extension value
function setBaseExtension(string memory _newBaseExtension)
external
onlyOwner
{
baseExtension = _newBaseExtension;
}
/// @notice Set the paused value
/// @param _state paused true or false
function pause(bool _state) external onlyOwner {
paused = _state;
}
/// @notice Add user to whitelist
/// @param _user Address of the user
function whitelistUser(address _user) external onlyOwner {
whitelisted[_user] = true;
}
/// @notice Remove user from whitelist
/// @param _user Address of the user
function removeWhitelistedUser(address _user) external onlyOwner {
whitelisted[_user] = false;
}
/// @notice Withdraw proceeds from contract address to owners address
function withdraw() external {
require(payable(owner()).send(address(this).balance));
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initHiddenURI","type":"string"},{"internalType":"address[]","name":"_whitelist","type":"address[]"},{"internalType":"uint256","name":"_OWNER_MINT_AMOUNT","type":"uint256"}],"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_ADDRESS","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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistedUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600d919062000940565b5067013fbe85edc90000600e556064600f55600160108190556011805461ffff191690911790553480156200005c57600080fd5b50604051620033b4380380620033b48339810160408190526200007f9162000b69565b8551869086906200009890600090602085019062000940565b508051620000ae90600190602084019062000940565b505050620000cb620000c56200019160201b60201c565b62000195565b8351620000e090600b90602087019062000940565b508251620000f690600c90602086019062000940565b5060005b825181101562000166576001601260008584815181106200011f576200011f62000c52565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806200015d8162000c7e565b915050620000fa565b50620001856200017e600a546001600160a01b031690565b82620001e7565b50505050505062000dad565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60006200025360085490565b336000908152601360205260409020549091506200027390839062000c9c565b3360009081526013602052604090205560015b828111620002ba57620002a5846200029f838562000c9c565b620002c0565b80620002b18162000c7e565b91505062000286565b50505050565b620002e2828260405180602001604052806000815250620002e660201b60201c565b5050565b620002f283836200035e565b620003016000848484620004b4565b620003595760405162461bcd60e51b815260206004820152603260248201526000805160206200339483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200023e565b505050565b6001600160a01b038216620003b65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200023e565b6000818152600260205260409020546001600160a01b0316156200041d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200023e565b6200042b600083836200061d565b6001600160a01b03821660009081526003602052604081208054600192906200045690849062000c9c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004d5846001600160a01b0316620006f960201b620014d91760201c565b156200061157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200050f90339089908890889060040162000cb7565b602060405180830381600087803b1580156200052a57600080fd5b505af19250505080156200055d575060408051601f3d908101601f191682019092526200055a9181019062000d0d565b60015b620005f6573d8080156200058e576040519150601f19603f3d011682016040523d82523d6000602084013e62000593565b606091505b508051620005ee5760405162461bcd60e51b815260206004820152603260248201526000805160206200339483398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200023e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000615565b5060015b949350505050565b620006358383836200035960201b620009de1760201c565b6001600160a01b03831662000693576200068d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006b9565b816001600160a01b0316836001600160a01b031614620006b957620006b98382620006ff565b6001600160a01b038216620006d3576200035981620007ac565b826001600160a01b0316826001600160a01b031614620003595762000359828262000866565b3b151590565b600060016200071984620008b760201b62000d4e1760201c565b62000725919062000d40565b60008381526007602052604090205490915080821462000779576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007c09060019062000d40565b60008381526009602052604081205460088054939450909284908110620007eb57620007eb62000c52565b9060005260206000200154905080600883815481106200080f576200080f62000c52565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200084a576200084a62000d5a565b6001900381819060005260206000200160009055905550505050565b60006200087e83620008b760201b62000d4e1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200023e565b506001600160a01b031660009081526003602052604090205490565b8280546200094e9062000d70565b90600052602060002090601f016020900481019282620009725760008555620009bd565b82601f106200098d57805160ff1916838001178555620009bd565b82800160010185558215620009bd579182015b82811115620009bd578251825591602001919060010190620009a0565b50620009cb929150620009cf565b5090565b5b80821115620009cb5760008155600101620009d0565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171562000a275762000a27620009e6565b604052919050565b60005b8381101562000a4c57818101518382015260200162000a32565b83811115620002ba5750506000910152565b600082601f83011262000a7057600080fd5b81516001600160401b0381111562000a8c5762000a8c620009e6565b62000aa1601f8201601f1916602001620009fc565b81815284602083860101111562000ab757600080fd5b6200061582602083016020870162000a2f565b600082601f83011262000adc57600080fd5b815160206001600160401b0382111562000afa5762000afa620009e6565b8160051b62000b0b828201620009fc565b928352848101820192828101908785111562000b2657600080fd5b83870192505b8483101562000b5e5782516001600160a01b038116811462000b4e5760008081fd5b8252918301919083019062000b2c565b979650505050505050565b60008060008060008060c0878903121562000b8357600080fd5b86516001600160401b038082111562000b9b57600080fd5b62000ba98a838b0162000a5e565b9750602089015191508082111562000bc057600080fd5b62000bce8a838b0162000a5e565b9650604089015191508082111562000be557600080fd5b62000bf38a838b0162000a5e565b9550606089015191508082111562000c0a57600080fd5b62000c188a838b0162000a5e565b9450608089015191508082111562000c2f57600080fd5b5062000c3e89828a0162000aca565b92505060a087015190509295509295509295565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000c955762000c9562000c68565b5060010190565b6000821982111562000cb25762000cb262000c68565b500190565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000cf68160a085016020870162000a2f565b601f01601f19169190910160a00195945050505050565b60006020828403121562000d2057600080fd5b81516001600160e01b03198116811462000d3957600080fd5b9392505050565b60008282101562000d555762000d5562000c68565b500390565b634e487b7160e01b600052603160045260246000fd5b600181811c9082168062000d8557607f821691505b6020821081141562000da757634e487b7160e01b600052602260045260246000fd5b50919050565b6125d78062000dbd6000396000f3fe60806040526004361061023b5760003560e01c80636c0360eb1161012e578063b7b1b8e9116100ab578063c87b56dd1161006f578063c87b56dd1461065c578063d936547e1461067c578063da3ef23f146106ac578063e985e9c5146106cc578063f2fde38b1461071557600080fd5b8063b7b1b8e9146105d1578063b88d4fde146105f1578063bbaac02f14610611578063bf8fbbd214610631578063c66828621461064757600080fd5b80638da5cb5b116100f25780638da5cb5b1461055657806395d89b4114610574578063a0712d6814610589578063a22cb4651461059c578063a475b5dd146105bc57600080fd5b80636c0360eb146104d757806370a08231146104ec578063715018a61461050c57806378cf19e9146105215780638cc54e7f1461054157600080fd5b80633acd6cb2116101bc5780634f6ccce7116101805780634f6ccce71461043e578063518302271461045e57806355f804b31461047d5780635c975abb1461049d5780636352211e146104b757600080fd5b80633acd6cb2146103b35780633ccfd60b146103c957806342842e0e146103de57806344a0d68a146103fe5780634a4c560d1461041e57600080fd5b806318160ddd1161020357806318160ddd1461031157806318cae2691461033057806323b872dd1461035d5780632f745c591461037d57806332cb6b0c1461039d57600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f70565b610735565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004611fa2565b610760565b005b3480156102a357600080fd5b506102ac6107a6565b60405161026c9190612015565b3480156102c557600080fd5b506102d96102d4366004612028565b610838565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612058565b6108cd565b34801561031d57600080fd5b506008545b60405190815260200161026c565b34801561033c57600080fd5b5061032261034b366004612082565b60136020526000908152604090205481565b34801561036957600080fd5b5061029561037836600461209d565b6109e3565b34801561038957600080fd5b50610322610398366004612058565b610a14565b3480156103a957600080fd5b50610322600f5481565b3480156103bf57600080fd5b5061032260105481565b3480156103d557600080fd5b50610295610aaa565b3480156103ea57600080fd5b506102956103f936600461209d565b610add565b34801561040a57600080fd5b50610295610419366004612028565b610af8565b34801561042a57600080fd5b50610295610439366004612082565b610b27565b34801561044a57600080fd5b50610322610459366004612028565b610b75565b34801561046a57600080fd5b5060115461026090610100900460ff1681565b34801561048957600080fd5b50610295610498366004612165565b610c08565b3480156104a957600080fd5b506011546102609060ff1681565b3480156104c357600080fd5b506102d96104d2366004612028565b610c49565b3480156104e357600080fd5b506102ac610cc0565b3480156104f857600080fd5b50610322610507366004612082565b610d4e565b34801561051857600080fd5b50610295610dd5565b34801561052d57600080fd5b5061029561053c366004612058565b610e09565b34801561054d57600080fd5b506102ac610ea1565b34801561056257600080fd5b50600a546001600160a01b03166102d9565b34801561058057600080fd5b506102ac610eae565b610295610597366004612028565b610ebd565b3480156105a857600080fd5b506102956105b73660046121ae565b6110ba565b3480156105c857600080fd5b5061029561117f565b3480156105dd57600080fd5b506102956105ec366004612082565b6111ba565b3480156105fd57600080fd5b5061029561060c3660046121e1565b611205565b34801561061d57600080fd5b5061029561062c366004612165565b611237565b34801561063d57600080fd5b50610322600e5481565b34801561065357600080fd5b506102ac611274565b34801561066857600080fd5b506102ac610677366004612028565b611281565b34801561068857600080fd5b50610260610697366004612082565b60126020526000908152604090205460ff1681565b3480156106b857600080fd5b506102956106c7366004612165565b611401565b3480156106d857600080fd5b506102606106e736600461225d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072157600080fd5b50610295610730366004612082565b61143e565b60006001600160e01b0319821663780e9d6360e01b148061075a575061075a826114df565b92915050565b600a546001600160a01b031633146107935760405162461bcd60e51b815260040161078a90612287565b60405180910390fd5b6011805460ff1916911515919091179055565b6060600080546107b5906122bc565b80601f01602080910402602001604051908101604052809291908181526020018280546107e1906122bc565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078a565b506000908152600460205260409020546001600160a01b031690565b60006108d882610c49565b9050806001600160a01b0316836001600160a01b031614156109465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161078a565b336001600160a01b0382161480610962575061096281336106e7565b6109d45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161078a565b6109de838361152f565b505050565b6109ed338261159d565b610a095760405162461bcd60e51b815260040161078a906122f7565b6109de838383611694565b6000610a1f83610d4e565b8210610a815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161078a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610adb57600080fd5b565b6109de83838360405180602001604052806000815250611205565b600a546001600160a01b03163314610b225760405162461bcd60e51b815260040161078a90612287565b600e55565b600a546001600160a01b03163314610b515760405162461bcd60e51b815260040161078a90612287565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6000610b8060085490565b8210610be35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161078a565b60088281548110610bf657610bf6612348565b90600052602060002001549050919050565b600a546001600160a01b03163314610c325760405162461bcd60e51b815260040161078a90612287565b8051610c4590600b906020840190611ec1565b5050565b6000818152600260205260408120546001600160a01b03168061075a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161078a565b600b8054610ccd906122bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf9906122bc565b8015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b505050505081565b60006001600160a01b038216610db95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161078a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dff5760405162461bcd60e51b815260040161078a90612287565b610adb600061183f565b600a546001600160a01b03163314610e335760405162461bcd60e51b815260040161078a90612287565b6000610e3e60085490565b33600090815260136020526040902054909150610e5c908390612374565b3360009081526013602052604090205560015b828111610e9b57610e8984610e848385612374565b611891565b80610e938161238c565b915050610e6f565b50505050565b600c8054610ccd906122bc565b6060600180546107b5906122bc565b60115460ff161580610ede57503360009081526012602052604090205460ff165b610f1b5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b604482015260640161078a565b60008111610f585760405162461bcd60e51b815260206004820152600a602482015269135a5b88185b5bdd5b9d60b21b604482015260640161078a565b6000610f6360085490565b600f54909150610f738383612374565b1115610fb85760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e481b1a5b5a5d081c995858da195960621b604482015260640161078a565b60105433600090815260136020526040902054610fd6908490612374565b11156110195760405162461bcd60e51b8152602060048201526012602482015271135a5b9d081b1a5b5a5d081c995858da195960721b604482015260640161078a565b81600e5461102791906123a7565b34146110655760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b604482015260640161078a565b33600090815260136020526040902054611080908390612374565b3360009081526013602052604090205560015b8281116109de576110a833610e848385612374565b806110b28161238c565b915050611093565b6001600160a01b0382163314156111135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161078a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111a95760405162461bcd60e51b815260040161078a90612287565b6011805461ff001916610100179055565b600a546001600160a01b031633146111e45760405162461bcd60e51b815260040161078a90612287565b6001600160a01b03166000908152601260205260409020805460ff19169055565b61120f338361159d565b61122b5760405162461bcd60e51b815260040161078a906122f7565b610e9b848484846118ab565b600a546001600160a01b031633146112615760405162461bcd60e51b815260040161078a90612287565b8051610c4590600c906020840190611ec1565b600d8054610ccd906122bc565b6000818152600260205260409020546060906001600160a01b03166113015760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72204e6f60448201526f3722bc34b9ba32b73a102a37b5b2b71760811b606482015260840161078a565b601154610100900460ff166113a257600c805461131d906122bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611349906122bc565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b50505050509050919050565b60006113ac6118de565b905060008151116113cc57604051806020016040528060008152506113fa565b806113d6846118ed565b600d6040516020016113ea939291906123c6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461142b5760405162461bcd60e51b815260040161078a90612287565b8051610c4590600d906020840190611ec1565b600a546001600160a01b031633146114685760405162461bcd60e51b815260040161078a90612287565b6001600160a01b0381166114cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b6114d68161183f565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061151057506001600160e01b03198216635b5e139f60e01b145b8061075a57506301ffc9a760e01b6001600160e01b031983161461075a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061156482610c49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078a565b600061162183610c49565b9050806001600160a01b0316846001600160a01b0316148061165c5750836001600160a01b031661165184610838565b6001600160a01b0316145b8061168c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116a782610c49565b6001600160a01b03161461170f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161078a565b6001600160a01b0382166117715760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161078a565b61177c8383836119eb565b61178760008261152f565b6001600160a01b03831660009081526003602052604081208054600192906117b090849061248a565b90915550506001600160a01b03821660009081526003602052604081208054600192906117de908490612374565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c45828260405180602001604052806000815250611aa3565b6118b6848484611694565b6118c284848484611ad6565b610e9b5760405162461bcd60e51b815260040161078a906124a1565b6060600b80546107b5906122bc565b6060816119115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561193b57806119258161238c565b91506119349050600a83612509565b9150611915565b60008167ffffffffffffffff811115611956576119566120d9565b6040519080825280601f01601f191660200182016040528015611980576020820181803683370190505b5090505b841561168c5761199560018361248a565b91506119a2600a8661251d565b6119ad906030612374565b60f81b8183815181106119c2576119c2612348565b60200101906001600160f81b031916908160001a9053506119e4600a86612509565b9450611984565b6001600160a01b038316611a4657611a4181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a69565b816001600160a01b0316836001600160a01b031614611a6957611a698382611be3565b6001600160a01b038216611a80576109de81611c80565b826001600160a01b0316826001600160a01b0316146109de576109de8282611d2f565b611aad8383611d73565b611aba6000848484611ad6565b6109de5760405162461bcd60e51b815260040161078a906124a1565b60006001600160a01b0384163b15611bd857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b1a903390899088908890600401612531565b602060405180830381600087803b158015611b3457600080fd5b505af1925050508015611b64575060408051601f3d908101601f19168201909252611b619181019061256e565b60015b611bbe573d808015611b92576040519150601f19603f3d011682016040523d82523d6000602084013e611b97565b606091505b508051611bb65760405162461bcd60e51b815260040161078a906124a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061168c565b506001949350505050565b60006001611bf084610d4e565b611bfa919061248a565b600083815260076020526040902054909150808214611c4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c929060019061248a565b60008381526009602052604081205460088054939450909284908110611cba57611cba612348565b906000526020600020015490508060088381548110611cdb57611cdb612348565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d1357611d1361258b565b6001900381819060005260206000200160009055905550505050565b6000611d3a83610d4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611dc95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161078a565b6000818152600260205260409020546001600160a01b031615611e2e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161078a565b611e3a600083836119eb565b6001600160a01b0382166000908152600360205260408120805460019290611e63908490612374565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ecd906122bc565b90600052602060002090601f016020900481019282611eef5760008555611f35565b82601f10611f0857805160ff1916838001178555611f35565b82800160010185558215611f35579182015b82811115611f35578251825591602001919060010190611f1a565b50611f41929150611f45565b5090565b5b80821115611f415760008155600101611f46565b6001600160e01b0319811681146114d657600080fd5b600060208284031215611f8257600080fd5b81356113fa81611f5a565b80358015158114611f9d57600080fd5b919050565b600060208284031215611fb457600080fd5b6113fa82611f8d565b60005b83811015611fd8578181015183820152602001611fc0565b83811115610e9b5750506000910152565b60008151808452612001816020860160208601611fbd565b601f01601f19169290920160200192915050565b6020815260006113fa6020830184611fe9565b60006020828403121561203a57600080fd5b5035919050565b80356001600160a01b0381168114611f9d57600080fd5b6000806040838503121561206b57600080fd5b61207483612041565b946020939093013593505050565b60006020828403121561209457600080fd5b6113fa82612041565b6000806000606084860312156120b257600080fd5b6120bb84612041565b92506120c960208501612041565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561210a5761210a6120d9565b604051601f8501601f19908116603f01168101908282118183101715612132576121326120d9565b8160405280935085815286868601111561214b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561217757600080fd5b813567ffffffffffffffff81111561218e57600080fd5b8201601f8101841361219f57600080fd5b61168c848235602084016120ef565b600080604083850312156121c157600080fd5b6121ca83612041565b91506121d860208401611f8d565b90509250929050565b600080600080608085870312156121f757600080fd5b61220085612041565b935061220e60208601612041565b925060408501359150606085013567ffffffffffffffff81111561223157600080fd5b8501601f8101871361224257600080fd5b612251878235602084016120ef565b91505092959194509250565b6000806040838503121561227057600080fd5b61227983612041565b91506121d860208401612041565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122d057607f821691505b602082108114156122f157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156123875761238761235e565b500190565b60006000198214156123a0576123a061235e565b5060010190565b60008160001904831182151516156123c1576123c161235e565b500290565b6000845160206123d98285838a01611fbd565b8551918401916123ec8184848a01611fbd565b8554920191600090600181811c908083168061240957607f831692505b85831081141561242757634e487b7160e01b85526022600452602485fd5b80801561243b576001811461244c57612479565b60ff19851688528388019550612479565b60008b81526020902060005b858110156124715781548a820152908401908801612458565b505083880195505b50939b9a5050505050505050505050565b60008282101561249c5761249c61235e565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612518576125186124f3565b500490565b60008261252c5761252c6124f3565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256490830184611fe9565b9695505050505050565b60006020828403121561258057600080fd5b81516113fa81611f5a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220dec4a31d69b2c98cc6e89c6e3173e186e4b445d20923a97ad343a91b6b05d2ae64736f6c634300080900334552433732313a207472616e7366657220746f206e6f6e20455243373231526500000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000012446561642048616e647a2047656e657369730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344485a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040697066733a2f2f516d6532424d72596653464e674367513371396957356354576e5235504144415978796941514368586f327769762f446561645f48616e645f0000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d656d3647597a536e6a427577327475513269536a6b345469656d336946424b6472414152366d4c485572525a2f4d7973746572795f48616e642e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000059000000000000000000000000c5f62ed23fb755d2b89c2372bf21ee711e4db3b4000000000000000000000000a8cc51b7e0c6ff1016d8d73fe943057a39406504000000000000000000000000a71061dab2228346d89cccc11bda8629ce8982510000000000000000000000005d3b0fd99d34ba2960ba5db059beead404244c070000000000000000000000000c8b308d3ded370337197e268ac3633a4743daef00000000000000000000000023e56392e605fe5d2edde803be5070ba27a6cae3000000000000000000000000c02f8963af9b45987a8a2a72443a9d9f845ff00d000000000000000000000000c57cb30e06ba711c3b2c31109248fd799f7d00d5000000000000000000000000a5343d151fc822ff8e7ff5db0930e994356b037200000000000000000000000086cfe5b9d71a61eb489fb323d8b839d89983fb370000000000000000000000000e815ca87dbe52a4c4322c29c768255a44320005000000000000000000000000af37070cbd1f09c9f23eb1ad4fa993e2a770db200000000000000000000000009b8753ac5a975708a654d16f7a1c1fc9a7b988280000000000000000000000009b26f0f8a259873922d57169c542306dc078782a000000000000000000000000bdcf5b4fb7a0c0e5dacfce993dd4d7b3b092015a000000000000000000000000e0c187417e74ff74c03732c4c732c2490a2734f500000000000000000000000092703b5dd699b39662a5831f532d02213c6fa758000000000000000000000000fab2d12d31c55783d34a160fdfe166e85181eb46000000000000000000000000bdf7ecd3938bc86373d15709fe09dcf9bb677ca700000000000000000000000097d03b829abbeefb64a4fc2c498d849856a9505b000000000000000000000000082104caf46b50ee2886a45765ce85e525fcedd000000000000000000000000000823404d9fbbf8572a4d1bd5c75c9dfb3f765640000000000000000000000001b76ea5c3afce9ef223d8ef08ddb5a90f001f42e000000000000000000000000721716ddad0b6702643ea13e60d7caea3c3d54d5000000000000000000000000a1b6e81f4204715b9f31ba509134937e87d04c97000000000000000000000000259e666ff608c01bfd2bd7308328a0e5457340650000000000000000000000006d8b744aa0f933f9379180e4a773eca4063cb81e000000000000000000000000d9ca44bdba571d14d9993cde55d19214c88dfa38000000000000000000000000aafbc6387188b2a67755be732f8dd0eaaf7853ec000000000000000000000000ffc979bf6ed9785c57a262296fe57ee666f66b0100000000000000000000000036a516f406414583888b5c7c773388ff4655aaff0000000000000000000000000316d058079080f2d5ecd9dd36b759f2757ed3710000000000000000000000002b27a40e78aae02f13ea730f2e49f28db97c01ad000000000000000000000000dc3594961c5f49200ca76851960e57928046eccb000000000000000000000000ffb3e5ba2759c172d909f26d65094433a77f1b27000000000000000000000000433fffb55dd15da9111b46629e89b3180ef5c0cc000000000000000000000000e2bc8c494da7b1bbc891221d5ff8baac07266c4a00000000000000000000000038d26d3e39ee70d0705ab6e2286d7b9d6815dcb60000000000000000000000003b4aef47cbaca166ca4113449162d120b62aceb2000000000000000000000000f7a37facbc1b8bd2db97f1d7f4cf528969a24963000000000000000000000000e0bc68cd092d6d42a591b58d52294f8512ba703b000000000000000000000000f258009ff8aea568d6633ecf8b5f43713cd151d90000000000000000000000006f3548d3655091428d771e7e4c590d170fdac14d0000000000000000000000006fb9a82b00ccbe0e0cf06984d902cbeb946a44ca00000000000000000000000060f448d0d67e14569baafe939b69130cebcdd146000000000000000000000000b2bab56b13eb822a49259e3ebe4fdfaa28b316e300000000000000000000000093cbd431e54b8da613bfd7636fe4d878fa309756000000000000000000000000513e8473fc9658c50ea01d4a0d358458b15932c5000000000000000000000000f807ae2eff3327eb25d216df32c53c5e83a3ee2d000000000000000000000000fa8438221a92bc58c89dd1946fef40d4a5f9ebd20000000000000000000000006e28aaa9e0324c53537032ae04470457378c0bb80000000000000000000000007902dc17644cb68fc421d3889e77bdd8125fddb00000000000000000000000007307c48cef7e0268b8de1478040f85013b2ccf95000000000000000000000000f728f4977b68a5a6fb4f7d51052651f952816239000000000000000000000000b31f23afc3ef0cc70c8c58bbf48e28ab1cb01db9000000000000000000000000fb57704b698c3bfe42728968f75efdea249f35ec00000000000000000000000038cac44d9c77220c758cd7e4783352a9c350d5800000000000000000000000000fa73033544d4176076b2daac5d695eca9cc14bf000000000000000000000000d8d32cadd2851d7fcb299ac679f4750ea23e9028000000000000000000000000dad0a3bee4255561d7ee3bd75106c041368698a600000000000000000000000097e7738e4bdd2049c536aec24825e3565379688d0000000000000000000000001b3fe9546194739e58d887b7032cab872b681203000000000000000000000000bb5e4ac78427d10d6a3c63eedb45a3e76f301c0800000000000000000000000075129d0216239d96a5f64f2b08786040506c8f39000000000000000000000000f7a37facbc1b8bd2db97f1d7f4cf528969a24963000000000000000000000000a587b66d893df4042680fbe7b42c65eabf30e88a0000000000000000000000002db2053e75bcd9e448e171086935a263e0f8d32e0000000000000000000000000e815ca87dbe52a4c4322c29c768255a4432000500000000000000000000000048327499e4d71ed983dc7e024dded4ebb19bdb280000000000000000000000002363bef09bd8c872228f8a8d42b7b205e8ad4ac6000000000000000000000000348a83814fdbd9441d36badb40bc1557ae24d012000000000000000000000000e1c5fd5cbe3ba9fb3e418b1b2c7241f05e794b8e00000000000000000000000098fc12e79c22ccaa0cbe71d4646cc37b4ac60dab0000000000000000000000000599dbcffb08260d26a8ff5c1f2141f8b410e447000000000000000000000000b6703552b8b523c362f71b51fe057df729a1c603000000000000000000000000059727b971dacef275db6eca4bb813b767876d47000000000000000000000000b424bcb353488798ea0c291b1817713bf8e8f52f000000000000000000000000c441e1c36ac0ee4279f88b830e658d6ad663a7f5000000000000000000000000f570c9ad22c188dde5285504fc4a5b66bb68783f00000000000000000000000011a3a86751eb5ad168619a7d41005ed5b58c2251000000000000000000000000896d723154eca634e5dd8a5d3ee76a4f1e9be22e0000000000000000000000005f0f2933c264f13a07d0402f03b753d578d9815e000000000000000000000000bcbc98a12b9ab8e959625234751477cb9a6726d90000000000000000000000007ef9286571ff561db6be5b7cc56667a382c9309e000000000000000000000000af8935a9a165649119ca2ffece6ee7763b0a4be80000000000000000000000003f890eb7508b64684d3add007e6147657d2b54f9000000000000000000000000a082476d2782633571461ba7f299141fef942f6d000000000000000000000000914032ae326a419e9b237287c8b8769c843b153800000000000000000000000046e53999ad88a078040cf9978579e6ae8d0d2d25
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636c0360eb1161012e578063b7b1b8e9116100ab578063c87b56dd1161006f578063c87b56dd1461065c578063d936547e1461067c578063da3ef23f146106ac578063e985e9c5146106cc578063f2fde38b1461071557600080fd5b8063b7b1b8e9146105d1578063b88d4fde146105f1578063bbaac02f14610611578063bf8fbbd214610631578063c66828621461064757600080fd5b80638da5cb5b116100f25780638da5cb5b1461055657806395d89b4114610574578063a0712d6814610589578063a22cb4651461059c578063a475b5dd146105bc57600080fd5b80636c0360eb146104d757806370a08231146104ec578063715018a61461050c57806378cf19e9146105215780638cc54e7f1461054157600080fd5b80633acd6cb2116101bc5780634f6ccce7116101805780634f6ccce71461043e578063518302271461045e57806355f804b31461047d5780635c975abb1461049d5780636352211e146104b757600080fd5b80633acd6cb2146103b35780633ccfd60b146103c957806342842e0e146103de57806344a0d68a146103fe5780634a4c560d1461041e57600080fd5b806318160ddd1161020357806318160ddd1461031157806318cae2691461033057806323b872dd1461035d5780632f745c591461037d57806332cb6b0c1461039d57600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f70565b610735565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004611fa2565b610760565b005b3480156102a357600080fd5b506102ac6107a6565b60405161026c9190612015565b3480156102c557600080fd5b506102d96102d4366004612028565b610838565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612058565b6108cd565b34801561031d57600080fd5b506008545b60405190815260200161026c565b34801561033c57600080fd5b5061032261034b366004612082565b60136020526000908152604090205481565b34801561036957600080fd5b5061029561037836600461209d565b6109e3565b34801561038957600080fd5b50610322610398366004612058565b610a14565b3480156103a957600080fd5b50610322600f5481565b3480156103bf57600080fd5b5061032260105481565b3480156103d557600080fd5b50610295610aaa565b3480156103ea57600080fd5b506102956103f936600461209d565b610add565b34801561040a57600080fd5b50610295610419366004612028565b610af8565b34801561042a57600080fd5b50610295610439366004612082565b610b27565b34801561044a57600080fd5b50610322610459366004612028565b610b75565b34801561046a57600080fd5b5060115461026090610100900460ff1681565b34801561048957600080fd5b50610295610498366004612165565b610c08565b3480156104a957600080fd5b506011546102609060ff1681565b3480156104c357600080fd5b506102d96104d2366004612028565b610c49565b3480156104e357600080fd5b506102ac610cc0565b3480156104f857600080fd5b50610322610507366004612082565b610d4e565b34801561051857600080fd5b50610295610dd5565b34801561052d57600080fd5b5061029561053c366004612058565b610e09565b34801561054d57600080fd5b506102ac610ea1565b34801561056257600080fd5b50600a546001600160a01b03166102d9565b34801561058057600080fd5b506102ac610eae565b610295610597366004612028565b610ebd565b3480156105a857600080fd5b506102956105b73660046121ae565b6110ba565b3480156105c857600080fd5b5061029561117f565b3480156105dd57600080fd5b506102956105ec366004612082565b6111ba565b3480156105fd57600080fd5b5061029561060c3660046121e1565b611205565b34801561061d57600080fd5b5061029561062c366004612165565b611237565b34801561063d57600080fd5b50610322600e5481565b34801561065357600080fd5b506102ac611274565b34801561066857600080fd5b506102ac610677366004612028565b611281565b34801561068857600080fd5b50610260610697366004612082565b60126020526000908152604090205460ff1681565b3480156106b857600080fd5b506102956106c7366004612165565b611401565b3480156106d857600080fd5b506102606106e736600461225d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072157600080fd5b50610295610730366004612082565b61143e565b60006001600160e01b0319821663780e9d6360e01b148061075a575061075a826114df565b92915050565b600a546001600160a01b031633146107935760405162461bcd60e51b815260040161078a90612287565b60405180910390fd5b6011805460ff1916911515919091179055565b6060600080546107b5906122bc565b80601f01602080910402602001604051908101604052809291908181526020018280546107e1906122bc565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078a565b506000908152600460205260409020546001600160a01b031690565b60006108d882610c49565b9050806001600160a01b0316836001600160a01b031614156109465760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161078a565b336001600160a01b0382161480610962575061096281336106e7565b6109d45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161078a565b6109de838361152f565b505050565b6109ed338261159d565b610a095760405162461bcd60e51b815260040161078a906122f7565b6109de838383611694565b6000610a1f83610d4e565b8210610a815760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161078a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610adb57600080fd5b565b6109de83838360405180602001604052806000815250611205565b600a546001600160a01b03163314610b225760405162461bcd60e51b815260040161078a90612287565b600e55565b600a546001600160a01b03163314610b515760405162461bcd60e51b815260040161078a90612287565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6000610b8060085490565b8210610be35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161078a565b60088281548110610bf657610bf6612348565b90600052602060002001549050919050565b600a546001600160a01b03163314610c325760405162461bcd60e51b815260040161078a90612287565b8051610c4590600b906020840190611ec1565b5050565b6000818152600260205260408120546001600160a01b03168061075a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161078a565b600b8054610ccd906122bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf9906122bc565b8015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b505050505081565b60006001600160a01b038216610db95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161078a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dff5760405162461bcd60e51b815260040161078a90612287565b610adb600061183f565b600a546001600160a01b03163314610e335760405162461bcd60e51b815260040161078a90612287565b6000610e3e60085490565b33600090815260136020526040902054909150610e5c908390612374565b3360009081526013602052604090205560015b828111610e9b57610e8984610e848385612374565b611891565b80610e938161238c565b915050610e6f565b50505050565b600c8054610ccd906122bc565b6060600180546107b5906122bc565b60115460ff161580610ede57503360009081526012602052604090205460ff165b610f1b5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b604482015260640161078a565b60008111610f585760405162461bcd60e51b815260206004820152600a602482015269135a5b88185b5bdd5b9d60b21b604482015260640161078a565b6000610f6360085490565b600f54909150610f738383612374565b1115610fb85760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e481b1a5b5a5d081c995858da195960621b604482015260640161078a565b60105433600090815260136020526040902054610fd6908490612374565b11156110195760405162461bcd60e51b8152602060048201526012602482015271135a5b9d081b1a5b5a5d081c995858da195960721b604482015260640161078a565b81600e5461102791906123a7565b34146110655760405162461bcd60e51b815260206004820152600d60248201526c092dcc6dee4e4cac6e8408aa89609b1b604482015260640161078a565b33600090815260136020526040902054611080908390612374565b3360009081526013602052604090205560015b8281116109de576110a833610e848385612374565b806110b28161238c565b915050611093565b6001600160a01b0382163314156111135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161078a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111a95760405162461bcd60e51b815260040161078a90612287565b6011805461ff001916610100179055565b600a546001600160a01b031633146111e45760405162461bcd60e51b815260040161078a90612287565b6001600160a01b03166000908152601260205260409020805460ff19169055565b61120f338361159d565b61122b5760405162461bcd60e51b815260040161078a906122f7565b610e9b848484846118ab565b600a546001600160a01b031633146112615760405162461bcd60e51b815260040161078a90612287565b8051610c4590600c906020840190611ec1565b600d8054610ccd906122bc565b6000818152600260205260409020546060906001600160a01b03166113015760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72204e6f60448201526f3722bc34b9ba32b73a102a37b5b2b71760811b606482015260840161078a565b601154610100900460ff166113a257600c805461131d906122bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611349906122bc565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b50505050509050919050565b60006113ac6118de565b905060008151116113cc57604051806020016040528060008152506113fa565b806113d6846118ed565b600d6040516020016113ea939291906123c6565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461142b5760405162461bcd60e51b815260040161078a90612287565b8051610c4590600d906020840190611ec1565b600a546001600160a01b031633146114685760405162461bcd60e51b815260040161078a90612287565b6001600160a01b0381166114cd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b6114d68161183f565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061151057506001600160e01b03198216635b5e139f60e01b145b8061075a57506301ffc9a760e01b6001600160e01b031983161461075a565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061156482610c49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161078a565b600061162183610c49565b9050806001600160a01b0316846001600160a01b0316148061165c5750836001600160a01b031661165184610838565b6001600160a01b0316145b8061168c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116a782610c49565b6001600160a01b03161461170f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161078a565b6001600160a01b0382166117715760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161078a565b61177c8383836119eb565b61178760008261152f565b6001600160a01b03831660009081526003602052604081208054600192906117b090849061248a565b90915550506001600160a01b03821660009081526003602052604081208054600192906117de908490612374565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c45828260405180602001604052806000815250611aa3565b6118b6848484611694565b6118c284848484611ad6565b610e9b5760405162461bcd60e51b815260040161078a906124a1565b6060600b80546107b5906122bc565b6060816119115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561193b57806119258161238c565b91506119349050600a83612509565b9150611915565b60008167ffffffffffffffff811115611956576119566120d9565b6040519080825280601f01601f191660200182016040528015611980576020820181803683370190505b5090505b841561168c5761199560018361248a565b91506119a2600a8661251d565b6119ad906030612374565b60f81b8183815181106119c2576119c2612348565b60200101906001600160f81b031916908160001a9053506119e4600a86612509565b9450611984565b6001600160a01b038316611a4657611a4181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a69565b816001600160a01b0316836001600160a01b031614611a6957611a698382611be3565b6001600160a01b038216611a80576109de81611c80565b826001600160a01b0316826001600160a01b0316146109de576109de8282611d2f565b611aad8383611d73565b611aba6000848484611ad6565b6109de5760405162461bcd60e51b815260040161078a906124a1565b60006001600160a01b0384163b15611bd857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b1a903390899088908890600401612531565b602060405180830381600087803b158015611b3457600080fd5b505af1925050508015611b64575060408051601f3d908101601f19168201909252611b619181019061256e565b60015b611bbe573d808015611b92576040519150601f19603f3d011682016040523d82523d6000602084013e611b97565b606091505b508051611bb65760405162461bcd60e51b815260040161078a906124a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061168c565b506001949350505050565b60006001611bf084610d4e565b611bfa919061248a565b600083815260076020526040902054909150808214611c4d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c929060019061248a565b60008381526009602052604081205460088054939450909284908110611cba57611cba612348565b906000526020600020015490508060088381548110611cdb57611cdb612348565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d1357611d1361258b565b6001900381819060005260206000200160009055905550505050565b6000611d3a83610d4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611dc95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161078a565b6000818152600260205260409020546001600160a01b031615611e2e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161078a565b611e3a600083836119eb565b6001600160a01b0382166000908152600360205260408120805460019290611e63908490612374565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ecd906122bc565b90600052602060002090601f016020900481019282611eef5760008555611f35565b82601f10611f0857805160ff1916838001178555611f35565b82800160010185558215611f35579182015b82811115611f35578251825591602001919060010190611f1a565b50611f41929150611f45565b5090565b5b80821115611f415760008155600101611f46565b6001600160e01b0319811681146114d657600080fd5b600060208284031215611f8257600080fd5b81356113fa81611f5a565b80358015158114611f9d57600080fd5b919050565b600060208284031215611fb457600080fd5b6113fa82611f8d565b60005b83811015611fd8578181015183820152602001611fc0565b83811115610e9b5750506000910152565b60008151808452612001816020860160208601611fbd565b601f01601f19169290920160200192915050565b6020815260006113fa6020830184611fe9565b60006020828403121561203a57600080fd5b5035919050565b80356001600160a01b0381168114611f9d57600080fd5b6000806040838503121561206b57600080fd5b61207483612041565b946020939093013593505050565b60006020828403121561209457600080fd5b6113fa82612041565b6000806000606084860312156120b257600080fd5b6120bb84612041565b92506120c960208501612041565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561210a5761210a6120d9565b604051601f8501601f19908116603f01168101908282118183101715612132576121326120d9565b8160405280935085815286868601111561214b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561217757600080fd5b813567ffffffffffffffff81111561218e57600080fd5b8201601f8101841361219f57600080fd5b61168c848235602084016120ef565b600080604083850312156121c157600080fd5b6121ca83612041565b91506121d860208401611f8d565b90509250929050565b600080600080608085870312156121f757600080fd5b61220085612041565b935061220e60208601612041565b925060408501359150606085013567ffffffffffffffff81111561223157600080fd5b8501601f8101871361224257600080fd5b612251878235602084016120ef565b91505092959194509250565b6000806040838503121561227057600080fd5b61227983612041565b91506121d860208401612041565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122d057607f821691505b602082108114156122f157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156123875761238761235e565b500190565b60006000198214156123a0576123a061235e565b5060010190565b60008160001904831182151516156123c1576123c161235e565b500290565b6000845160206123d98285838a01611fbd565b8551918401916123ec8184848a01611fbd565b8554920191600090600181811c908083168061240957607f831692505b85831081141561242757634e487b7160e01b85526022600452602485fd5b80801561243b576001811461244c57612479565b60ff19851688528388019550612479565b60008b81526020902060005b858110156124715781548a820152908401908801612458565b505083880195505b50939b9a5050505050505050505050565b60008282101561249c5761249c61235e565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612518576125186124f3565b500490565b60008261252c5761252c6124f3565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256490830184611fe9565b9695505050505050565b60006020828403121561258057600080fd5b81516113fa81611f5a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220dec4a31d69b2c98cc6e89c6e3173e186e4b445d20923a97ad343a91b6b05d2ae64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000022000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000012446561642048616e647a2047656e657369730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000344485a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040697066733a2f2f516d6532424d72596653464e674367513371396957356354576e5235504144415978796941514368586f327769762f446561645f48616e645f0000000000000000000000000000000000000000000000000000000000000047697066733a2f2f516d656d3647597a536e6a427577327475513269536a6b345469656d336946424b6472414152366d4c485572525a2f4d7973746572795f48616e642e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000059000000000000000000000000c5f62ed23fb755d2b89c2372bf21ee711e4db3b4000000000000000000000000a8cc51b7e0c6ff1016d8d73fe943057a39406504000000000000000000000000a71061dab2228346d89cccc11bda8629ce8982510000000000000000000000005d3b0fd99d34ba2960ba5db059beead404244c070000000000000000000000000c8b308d3ded370337197e268ac3633a4743daef00000000000000000000000023e56392e605fe5d2edde803be5070ba27a6cae3000000000000000000000000c02f8963af9b45987a8a2a72443a9d9f845ff00d000000000000000000000000c57cb30e06ba711c3b2c31109248fd799f7d00d5000000000000000000000000a5343d151fc822ff8e7ff5db0930e994356b037200000000000000000000000086cfe5b9d71a61eb489fb323d8b839d89983fb370000000000000000000000000e815ca87dbe52a4c4322c29c768255a44320005000000000000000000000000af37070cbd1f09c9f23eb1ad4fa993e2a770db200000000000000000000000009b8753ac5a975708a654d16f7a1c1fc9a7b988280000000000000000000000009b26f0f8a259873922d57169c542306dc078782a000000000000000000000000bdcf5b4fb7a0c0e5dacfce993dd4d7b3b092015a000000000000000000000000e0c187417e74ff74c03732c4c732c2490a2734f500000000000000000000000092703b5dd699b39662a5831f532d02213c6fa758000000000000000000000000fab2d12d31c55783d34a160fdfe166e85181eb46000000000000000000000000bdf7ecd3938bc86373d15709fe09dcf9bb677ca700000000000000000000000097d03b829abbeefb64a4fc2c498d849856a9505b000000000000000000000000082104caf46b50ee2886a45765ce85e525fcedd000000000000000000000000000823404d9fbbf8572a4d1bd5c75c9dfb3f765640000000000000000000000001b76ea5c3afce9ef223d8ef08ddb5a90f001f42e000000000000000000000000721716ddad0b6702643ea13e60d7caea3c3d54d5000000000000000000000000a1b6e81f4204715b9f31ba509134937e87d04c97000000000000000000000000259e666ff608c01bfd2bd7308328a0e5457340650000000000000000000000006d8b744aa0f933f9379180e4a773eca4063cb81e000000000000000000000000d9ca44bdba571d14d9993cde55d19214c88dfa38000000000000000000000000aafbc6387188b2a67755be732f8dd0eaaf7853ec000000000000000000000000ffc979bf6ed9785c57a262296fe57ee666f66b0100000000000000000000000036a516f406414583888b5c7c773388ff4655aaff0000000000000000000000000316d058079080f2d5ecd9dd36b759f2757ed3710000000000000000000000002b27a40e78aae02f13ea730f2e49f28db97c01ad000000000000000000000000dc3594961c5f49200ca76851960e57928046eccb000000000000000000000000ffb3e5ba2759c172d909f26d65094433a77f1b27000000000000000000000000433fffb55dd15da9111b46629e89b3180ef5c0cc000000000000000000000000e2bc8c494da7b1bbc891221d5ff8baac07266c4a00000000000000000000000038d26d3e39ee70d0705ab6e2286d7b9d6815dcb60000000000000000000000003b4aef47cbaca166ca4113449162d120b62aceb2000000000000000000000000f7a37facbc1b8bd2db97f1d7f4cf528969a24963000000000000000000000000e0bc68cd092d6d42a591b58d52294f8512ba703b000000000000000000000000f258009ff8aea568d6633ecf8b5f43713cd151d90000000000000000000000006f3548d3655091428d771e7e4c590d170fdac14d0000000000000000000000006fb9a82b00ccbe0e0cf06984d902cbeb946a44ca00000000000000000000000060f448d0d67e14569baafe939b69130cebcdd146000000000000000000000000b2bab56b13eb822a49259e3ebe4fdfaa28b316e300000000000000000000000093cbd431e54b8da613bfd7636fe4d878fa309756000000000000000000000000513e8473fc9658c50ea01d4a0d358458b15932c5000000000000000000000000f807ae2eff3327eb25d216df32c53c5e83a3ee2d000000000000000000000000fa8438221a92bc58c89dd1946fef40d4a5f9ebd20000000000000000000000006e28aaa9e0324c53537032ae04470457378c0bb80000000000000000000000007902dc17644cb68fc421d3889e77bdd8125fddb00000000000000000000000007307c48cef7e0268b8de1478040f85013b2ccf95000000000000000000000000f728f4977b68a5a6fb4f7d51052651f952816239000000000000000000000000b31f23afc3ef0cc70c8c58bbf48e28ab1cb01db9000000000000000000000000fb57704b698c3bfe42728968f75efdea249f35ec00000000000000000000000038cac44d9c77220c758cd7e4783352a9c350d5800000000000000000000000000fa73033544d4176076b2daac5d695eca9cc14bf000000000000000000000000d8d32cadd2851d7fcb299ac679f4750ea23e9028000000000000000000000000dad0a3bee4255561d7ee3bd75106c041368698a600000000000000000000000097e7738e4bdd2049c536aec24825e3565379688d0000000000000000000000001b3fe9546194739e58d887b7032cab872b681203000000000000000000000000bb5e4ac78427d10d6a3c63eedb45a3e76f301c0800000000000000000000000075129d0216239d96a5f64f2b08786040506c8f39000000000000000000000000f7a37facbc1b8bd2db97f1d7f4cf528969a24963000000000000000000000000a587b66d893df4042680fbe7b42c65eabf30e88a0000000000000000000000002db2053e75bcd9e448e171086935a263e0f8d32e0000000000000000000000000e815ca87dbe52a4c4322c29c768255a4432000500000000000000000000000048327499e4d71ed983dc7e024dded4ebb19bdb280000000000000000000000002363bef09bd8c872228f8a8d42b7b205e8ad4ac6000000000000000000000000348a83814fdbd9441d36badb40bc1557ae24d012000000000000000000000000e1c5fd5cbe3ba9fb3e418b1b2c7241f05e794b8e00000000000000000000000098fc12e79c22ccaa0cbe71d4646cc37b4ac60dab0000000000000000000000000599dbcffb08260d26a8ff5c1f2141f8b410e447000000000000000000000000b6703552b8b523c362f71b51fe057df729a1c603000000000000000000000000059727b971dacef275db6eca4bb813b767876d47000000000000000000000000b424bcb353488798ea0c291b1817713bf8e8f52f000000000000000000000000c441e1c36ac0ee4279f88b830e658d6ad663a7f5000000000000000000000000f570c9ad22c188dde5285504fc4a5b66bb68783f00000000000000000000000011a3a86751eb5ad168619a7d41005ed5b58c2251000000000000000000000000896d723154eca634e5dd8a5d3ee76a4f1e9be22e0000000000000000000000005f0f2933c264f13a07d0402f03b753d578d9815e000000000000000000000000bcbc98a12b9ab8e959625234751477cb9a6726d90000000000000000000000007ef9286571ff561db6be5b7cc56667a382c9309e000000000000000000000000af8935a9a165649119ca2ffece6ee7763b0a4be80000000000000000000000003f890eb7508b64684d3add007e6147657d2b54f9000000000000000000000000a082476d2782633571461ba7f299141fef942f6d000000000000000000000000914032ae326a419e9b237287c8b8769c843b153800000000000000000000000046e53999ad88a078040cf9978579e6ae8d0d2d25
-----Decoded View---------------
Arg [0] : _name (string): Dead Handz Genesis
Arg [1] : _symbol (string): DHZ
Arg [2] : _initBaseURI (string): ipfs://Qme2BMrYfSFNgCgQ3q9iW5cTWnR5PADAYxyiAQChXo2wiv/Dead_Hand_
Arg [3] : _initHiddenURI (string): ipfs://Qmem6GYzSnjBuw2tuQ2iSjk4Tiem3iFBKdrAAR6mLHUrRZ/Mystery_Hand.json
Arg [4] : _whitelist (address[]): 0xc5F62Ed23fb755D2B89c2372bF21eE711E4DB3B4,0xA8cC51B7e0c6ff1016D8D73FE943057A39406504,0xA71061DAB2228346D89cCcC11BDa8629cE898251,0x5d3b0Fd99d34BA2960BA5db059BeEAD404244C07,0x0c8B308D3deD370337197E268aC3633a4743dAEF,0x23E56392e605fE5D2eDDE803Be5070bA27a6Cae3,0xC02f8963aF9B45987A8a2A72443A9d9f845FF00d,0xc57cB30E06Ba711C3B2C31109248FD799F7D00d5,0xA5343d151fC822fF8e7Ff5Db0930E994356b0372,0x86cfe5B9D71a61EB489fB323D8B839D89983fb37,0x0e815ca87DbE52A4C4322c29c768255A44320005,0xAf37070CBD1f09c9F23eb1AD4fA993e2a770dB20,0x9b8753AC5a975708a654d16F7a1C1fC9a7B98828,0x9B26F0F8a259873922d57169C542306DC078782a,0xbdcf5B4Fb7A0c0e5DacfcE993dD4d7b3B092015a,0xE0C187417e74fF74c03732c4C732C2490A2734F5,0x92703B5Dd699b39662a5831F532D02213c6fA758,0xFAB2D12d31c55783d34a160FDFE166E85181eb46,0xbDf7EcD3938bC86373D15709fE09DcF9Bb677ca7,0x97D03B829ABbeeFb64A4Fc2c498D849856A9505b,0x082104CAF46b50Ee2886A45765ce85E525fcEdD0,0x00823404D9FBbf8572a4d1bd5c75C9dfB3F76564,0x1B76eA5c3AFCE9Ef223d8eF08dDb5A90f001F42E,0x721716ddad0B6702643ea13E60D7CAEa3c3D54d5,0xA1B6E81F4204715b9F31BA509134937E87D04C97,0x259E666ff608c01Bfd2BD7308328A0E545734065,0x6D8B744aA0F933f9379180e4a773eCA4063cB81e,0xd9Ca44BDBa571D14D9993CDE55D19214c88dfa38,0xAafBC6387188b2a67755Be732F8DD0eAAf7853Ec,0xFfc979bf6ed9785c57A262296Fe57eE666f66B01,0x36a516F406414583888B5C7C773388fF4655aaff,0x0316d058079080f2D5ecD9dD36b759f2757Ed371,0x2b27A40E78aAE02F13EA730F2e49f28DB97C01Ad,0xdc3594961c5F49200cA76851960e57928046eCcB,0xfFB3e5bA2759c172D909f26d65094433a77F1b27,0x433fFFb55dD15dA9111B46629e89B3180eF5C0Cc,0xe2BC8c494dA7b1bbC891221D5Ff8BAaC07266C4A,0x38D26d3e39ee70d0705aB6E2286d7B9D6815dcB6,0x3b4AeF47cBaCa166Ca4113449162D120b62ACeb2,0xF7A37FaCbc1B8bd2db97f1d7f4CF528969A24963,0xe0bc68Cd092D6d42a591b58D52294F8512BA703B,0xf258009FF8aEA568D6633eCf8B5f43713Cd151D9,0x6f3548D3655091428D771E7E4c590D170FdAc14d,0x6fB9a82B00CcBE0e0CF06984d902cBEB946A44ca,0x60f448D0d67E14569bAAFe939B69130CEBcDd146,0xB2BAb56B13Eb822a49259E3eBE4FdfAa28B316E3,0x93cBd431e54B8da613bFd7636Fe4d878Fa309756,0x513E8473FC9658c50EA01D4a0D358458b15932c5,0xf807aE2Eff3327eB25D216dF32C53C5e83a3ee2d,0xfa8438221A92bC58c89Dd1946feF40D4a5f9Ebd2,0x6e28AAa9e0324C53537032AE04470457378c0bB8,0x7902DC17644cB68fc421D3889e77BdD8125fdDb0,0x7307c48CEf7E0268b8De1478040F85013B2ccF95,0xf728F4977b68A5a6FB4F7D51052651f952816239,0xb31F23aFc3ef0cc70c8c58BBf48E28AB1CB01db9,0xFB57704b698c3Bfe42728968f75efDEa249F35eC,0x38CAc44D9c77220c758CD7e4783352A9c350d580,0x0Fa73033544D4176076b2DaAC5D695ECA9cc14Bf,0xd8D32cadd2851D7FcB299Ac679f4750Ea23E9028,0xDad0a3bEE4255561d7ee3bD75106c041368698a6,0x97e7738e4BDD2049c536aeC24825e3565379688D,0x1B3FE9546194739e58D887b7032cAb872B681203,0xbB5e4Ac78427d10D6a3c63eEdB45A3E76f301c08,0x75129D0216239D96a5F64F2b08786040506c8f39,0xF7A37FaCbc1B8bd2db97f1d7f4CF528969A24963,0xa587b66d893df4042680fbE7b42C65eABF30E88A,0x2dB2053E75Bcd9e448E171086935A263E0f8D32E,0x0e815ca87DbE52A4C4322c29c768255A44320005,0x48327499E4D71ED983DC7E024DdEd4EBB19BDb28,0x2363bEf09Bd8C872228F8A8D42B7b205E8AD4AC6,0x348a83814fDbD9441D36BADb40bC1557aE24d012,0xE1c5FD5cBE3Ba9fB3E418B1B2C7241F05E794b8e,0x98FC12e79c22CCaA0CBE71d4646cC37b4AC60dab,0x0599dbcFFb08260D26a8Ff5c1F2141f8b410E447,0xB6703552B8b523C362f71B51Fe057DF729A1C603,0x059727B971dacef275Db6EcA4BB813B767876d47,0xb424bCb353488798eA0c291B1817713BF8e8f52F,0xc441E1c36aC0eE4279f88b830e658D6ad663a7f5,0xf570C9ad22C188DDE5285504Fc4a5b66Bb68783f,0x11A3A86751eB5Ad168619a7d41005ED5b58C2251,0x896d723154eca634E5DD8A5D3EE76A4F1E9bE22E,0x5f0f2933C264F13A07d0402f03b753d578d9815e,0xBCBc98a12B9ab8e959625234751477cb9A6726d9,0x7eF9286571Ff561DB6be5b7cc56667a382C9309E,0xaf8935a9a165649119Ca2FFeCe6Ee7763B0A4bE8,0x3F890eb7508b64684D3add007E6147657D2b54f9,0xa082476d2782633571461BA7F299141fEf942F6d,0x914032ae326A419e9B237287C8B8769c843b1538,0x46E53999aD88A078040CF9978579e6ae8d0D2D25
Arg [5] : _OWNER_MINT_AMOUNT (uint256): 20
-----Encoded View---------------
107 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [7] : 446561642048616e647a2047656e657369730000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 44485a0000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [11] : 697066733a2f2f516d6532424d72596653464e67436751337139695735635457
Arg [12] : 6e5235504144415978796941514368586f327769762f446561645f48616e645f
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000047
Arg [14] : 697066733a2f2f516d656d3647597a536e6a427577327475513269536a6b3454
Arg [15] : 69656d336946424b6472414152366d4c485572525a2f4d7973746572795f4861
Arg [16] : 6e642e6a736f6e00000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [18] : 000000000000000000000000c5f62ed23fb755d2b89c2372bf21ee711e4db3b4
Arg [19] : 000000000000000000000000a8cc51b7e0c6ff1016d8d73fe943057a39406504
Arg [20] : 000000000000000000000000a71061dab2228346d89cccc11bda8629ce898251
Arg [21] : 0000000000000000000000005d3b0fd99d34ba2960ba5db059beead404244c07
Arg [22] : 0000000000000000000000000c8b308d3ded370337197e268ac3633a4743daef
Arg [23] : 00000000000000000000000023e56392e605fe5d2edde803be5070ba27a6cae3
Arg [24] : 000000000000000000000000c02f8963af9b45987a8a2a72443a9d9f845ff00d
Arg [25] : 000000000000000000000000c57cb30e06ba711c3b2c31109248fd799f7d00d5
Arg [26] : 000000000000000000000000a5343d151fc822ff8e7ff5db0930e994356b0372
Arg [27] : 00000000000000000000000086cfe5b9d71a61eb489fb323d8b839d89983fb37
Arg [28] : 0000000000000000000000000e815ca87dbe52a4c4322c29c768255a44320005
Arg [29] : 000000000000000000000000af37070cbd1f09c9f23eb1ad4fa993e2a770db20
Arg [30] : 0000000000000000000000009b8753ac5a975708a654d16f7a1c1fc9a7b98828
Arg [31] : 0000000000000000000000009b26f0f8a259873922d57169c542306dc078782a
Arg [32] : 000000000000000000000000bdcf5b4fb7a0c0e5dacfce993dd4d7b3b092015a
Arg [33] : 000000000000000000000000e0c187417e74ff74c03732c4c732c2490a2734f5
Arg [34] : 00000000000000000000000092703b5dd699b39662a5831f532d02213c6fa758
Arg [35] : 000000000000000000000000fab2d12d31c55783d34a160fdfe166e85181eb46
Arg [36] : 000000000000000000000000bdf7ecd3938bc86373d15709fe09dcf9bb677ca7
Arg [37] : 00000000000000000000000097d03b829abbeefb64a4fc2c498d849856a9505b
Arg [38] : 000000000000000000000000082104caf46b50ee2886a45765ce85e525fcedd0
Arg [39] : 00000000000000000000000000823404d9fbbf8572a4d1bd5c75c9dfb3f76564
Arg [40] : 0000000000000000000000001b76ea5c3afce9ef223d8ef08ddb5a90f001f42e
Arg [41] : 000000000000000000000000721716ddad0b6702643ea13e60d7caea3c3d54d5
Arg [42] : 000000000000000000000000a1b6e81f4204715b9f31ba509134937e87d04c97
Arg [43] : 000000000000000000000000259e666ff608c01bfd2bd7308328a0e545734065
Arg [44] : 0000000000000000000000006d8b744aa0f933f9379180e4a773eca4063cb81e
Arg [45] : 000000000000000000000000d9ca44bdba571d14d9993cde55d19214c88dfa38
Arg [46] : 000000000000000000000000aafbc6387188b2a67755be732f8dd0eaaf7853ec
Arg [47] : 000000000000000000000000ffc979bf6ed9785c57a262296fe57ee666f66b01
Arg [48] : 00000000000000000000000036a516f406414583888b5c7c773388ff4655aaff
Arg [49] : 0000000000000000000000000316d058079080f2d5ecd9dd36b759f2757ed371
Arg [50] : 0000000000000000000000002b27a40e78aae02f13ea730f2e49f28db97c01ad
Arg [51] : 000000000000000000000000dc3594961c5f49200ca76851960e57928046eccb
Arg [52] : 000000000000000000000000ffb3e5ba2759c172d909f26d65094433a77f1b27
Arg [53] : 000000000000000000000000433fffb55dd15da9111b46629e89b3180ef5c0cc
Arg [54] : 000000000000000000000000e2bc8c494da7b1bbc891221d5ff8baac07266c4a
Arg [55] : 00000000000000000000000038d26d3e39ee70d0705ab6e2286d7b9d6815dcb6
Arg [56] : 0000000000000000000000003b4aef47cbaca166ca4113449162d120b62aceb2
Arg [57] : 000000000000000000000000f7a37facbc1b8bd2db97f1d7f4cf528969a24963
Arg [58] : 000000000000000000000000e0bc68cd092d6d42a591b58d52294f8512ba703b
Arg [59] : 000000000000000000000000f258009ff8aea568d6633ecf8b5f43713cd151d9
Arg [60] : 0000000000000000000000006f3548d3655091428d771e7e4c590d170fdac14d
Arg [61] : 0000000000000000000000006fb9a82b00ccbe0e0cf06984d902cbeb946a44ca
Arg [62] : 00000000000000000000000060f448d0d67e14569baafe939b69130cebcdd146
Arg [63] : 000000000000000000000000b2bab56b13eb822a49259e3ebe4fdfaa28b316e3
Arg [64] : 00000000000000000000000093cbd431e54b8da613bfd7636fe4d878fa309756
Arg [65] : 000000000000000000000000513e8473fc9658c50ea01d4a0d358458b15932c5
Arg [66] : 000000000000000000000000f807ae2eff3327eb25d216df32c53c5e83a3ee2d
Arg [67] : 000000000000000000000000fa8438221a92bc58c89dd1946fef40d4a5f9ebd2
Arg [68] : 0000000000000000000000006e28aaa9e0324c53537032ae04470457378c0bb8
Arg [69] : 0000000000000000000000007902dc17644cb68fc421d3889e77bdd8125fddb0
Arg [70] : 0000000000000000000000007307c48cef7e0268b8de1478040f85013b2ccf95
Arg [71] : 000000000000000000000000f728f4977b68a5a6fb4f7d51052651f952816239
Arg [72] : 000000000000000000000000b31f23afc3ef0cc70c8c58bbf48e28ab1cb01db9
Arg [73] : 000000000000000000000000fb57704b698c3bfe42728968f75efdea249f35ec
Arg [74] : 00000000000000000000000038cac44d9c77220c758cd7e4783352a9c350d580
Arg [75] : 0000000000000000000000000fa73033544d4176076b2daac5d695eca9cc14bf
Arg [76] : 000000000000000000000000d8d32cadd2851d7fcb299ac679f4750ea23e9028
Arg [77] : 000000000000000000000000dad0a3bee4255561d7ee3bd75106c041368698a6
Arg [78] : 00000000000000000000000097e7738e4bdd2049c536aec24825e3565379688d
Arg [79] : 0000000000000000000000001b3fe9546194739e58d887b7032cab872b681203
Arg [80] : 000000000000000000000000bb5e4ac78427d10d6a3c63eedb45a3e76f301c08
Arg [81] : 00000000000000000000000075129d0216239d96a5f64f2b08786040506c8f39
Arg [82] : 000000000000000000000000f7a37facbc1b8bd2db97f1d7f4cf528969a24963
Arg [83] : 000000000000000000000000a587b66d893df4042680fbe7b42c65eabf30e88a
Arg [84] : 0000000000000000000000002db2053e75bcd9e448e171086935a263e0f8d32e
Arg [85] : 0000000000000000000000000e815ca87dbe52a4c4322c29c768255a44320005
Arg [86] : 00000000000000000000000048327499e4d71ed983dc7e024dded4ebb19bdb28
Arg [87] : 0000000000000000000000002363bef09bd8c872228f8a8d42b7b205e8ad4ac6
Arg [88] : 000000000000000000000000348a83814fdbd9441d36badb40bc1557ae24d012
Arg [89] : 000000000000000000000000e1c5fd5cbe3ba9fb3e418b1b2c7241f05e794b8e
Arg [90] : 00000000000000000000000098fc12e79c22ccaa0cbe71d4646cc37b4ac60dab
Arg [91] : 0000000000000000000000000599dbcffb08260d26a8ff5c1f2141f8b410e447
Arg [92] : 000000000000000000000000b6703552b8b523c362f71b51fe057df729a1c603
Arg [93] : 000000000000000000000000059727b971dacef275db6eca4bb813b767876d47
Arg [94] : 000000000000000000000000b424bcb353488798ea0c291b1817713bf8e8f52f
Arg [95] : 000000000000000000000000c441e1c36ac0ee4279f88b830e658d6ad663a7f5
Arg [96] : 000000000000000000000000f570c9ad22c188dde5285504fc4a5b66bb68783f
Arg [97] : 00000000000000000000000011a3a86751eb5ad168619a7d41005ed5b58c2251
Arg [98] : 000000000000000000000000896d723154eca634e5dd8a5d3ee76a4f1e9be22e
Arg [99] : 0000000000000000000000005f0f2933c264f13a07d0402f03b753d578d9815e
Arg [100] : 000000000000000000000000bcbc98a12b9ab8e959625234751477cb9a6726d9
Arg [101] : 0000000000000000000000007ef9286571ff561db6be5b7cc56667a382c9309e
Arg [102] : 000000000000000000000000af8935a9a165649119ca2ffece6ee7763b0a4be8
Arg [103] : 0000000000000000000000003f890eb7508b64684d3add007e6147657d2b54f9
Arg [104] : 000000000000000000000000a082476d2782633571461ba7f299141fef942f6d
Arg [105] : 000000000000000000000000914032ae326a419e9b237287c8b8769c843b1538
Arg [106] : 00000000000000000000000046e53999ad88a078040cf9978579e6ae8d0d2d25
Deployed Bytecode Sourcemap
43306:6349:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36926:224;;;;;;;;;;-1:-1:-1;36926:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36926:224:0;;;;;;;;48993:81;;;;;;;;;;-1:-1:-1;48993:81:0;;;;;:::i;:::-;;:::i;:::-;;24826:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26385:221::-;;;;;;;;;;-1:-1:-1;26385:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;26385:221:0;1878:203:1;25908:411:0;;;;;;;;;;-1:-1:-1;25908:411:0;;;;;:::i;:::-;;:::i;37566:113::-;;;;;;;;;;-1:-1:-1;37654:10:0;:17;37566:113;;;2669:25:1;;;2657:2;2642:18;37566:113:0;2523:177:1;44248:55:0;;;;;;;;;;-1:-1:-1;44248:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;27275:339;;;;;;;;;;-1:-1:-1;27275:339:0;;;;;:::i;:::-;;:::i;37234:256::-;;;;;;;;;;-1:-1:-1;37234:256:0;;;;;:::i;:::-;;:::i;43811:31::-;;;;;;;;;;;;;;;;43895:39;;;;;;;;;;;;;;;;49551:101;;;;;;;;;;;;;:::i;27685:185::-;;;;;;;;;;-1:-1:-1;27685:185:0;;;;;:::i;:::-;;:::i;48041:88::-;;;;;;;;;;-1:-1:-1;48041:88:0;;;;;:::i;:::-;;:::i;49163:101::-;;;;;;;;;;-1:-1:-1;49163:101:0;;;;;:::i;:::-;;:::i;37756:233::-;;;;;;;;;;-1:-1:-1;37756:233:0;;;;;:::i;:::-;;:::i;44053:28::-;;;;;;;;;;-1:-1:-1;44053:28:0;;;;;;;;;;;48524:106;;;;;;;;;;-1:-1:-1;48524:106:0;;;;;:::i;:::-;;:::i;43988:25::-;;;;;;;;;;-1:-1:-1;43988:25:0;;;;;;;;24520:239;;;;;;;;;;-1:-1:-1;24520:239:0;;;;;:::i;:::-;;:::i;43506:21::-;;;;;;;;;;;;;:::i;24250:208::-;;;;;;;;;;-1:-1:-1;24250:208:0;;;;;:::i;:::-;;:::i;4579:94::-;;;;;;;;;;;;;:::i;46667:363::-;;;;;;;;;;-1:-1:-1;46667:363:0;;;;;:::i;:::-;;:::i;43575:23::-;;;;;;;;;;;;;:::i;3928:87::-;;;;;;;;;;-1:-1:-1;4001:6:0;;-1:-1:-1;;;;;4001:6:0;3928:87;;24995:104;;;;;;;;;;;;;:::i;45639:864::-;;;;;;:::i;:::-;;:::i;26678:295::-;;;;;;;;;;-1:-1:-1;26678:295:0;;;;;:::i;:::-;;:::i;47882:71::-;;;;;;;;;;;;;:::i;49358:110::-;;;;;;;;;;-1:-1:-1;49358:110:0;;;;;:::i;:::-;;:::i;27941:328::-;;;;;;;;;;-1:-1:-1;27941:328:0;;;;;:::i;:::-;;:::i;48313:108::-;;;;;;;;;;-1:-1:-1;48313:108:0;;;;;:::i;:::-;;:::i;43736:32::-;;;;;;;;;;;;;;;;43651:37;;;;;;;;;;;;;:::i;47128:713::-;;;;;;;;;;-1:-1:-1;47128:713:0;;;;;:::i;:::-;;:::i;44152:43::-;;;;;;;;;;-1:-1:-1;44152:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48750:153;;;;;;;;;;-1:-1:-1;48750:153:0;;;;;:::i;:::-;;:::i;27044:164::-;;;;;;;;;;-1:-1:-1;27044:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27165:25:0;;;27141:4;27165:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27044:164;4828:192;;;;;;;;;;-1:-1:-1;4828:192:0;;;;;:::i;:::-;;:::i;36926:224::-;37028:4;-1:-1:-1;;;;;;37052:50:0;;-1:-1:-1;;;37052:50:0;;:90;;;37106:36;37130:11;37106:23;:36::i;:::-;37045:97;36926:224;-1:-1:-1;;36926:224:0:o;48993:81::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;;;;;;;;;49051:6:::1;:15:::0;;-1:-1:-1;;49051:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48993:81::o;24826:100::-;24880:13;24913:5;24906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24826:100;:::o;26385:221::-;26461:7;29868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29868:16:0;26481:73;;;;-1:-1:-1;;;26481:73:0;;6598:2:1;26481:73:0;;;6580:21:1;6637:2;6617:18;;;6610:30;6676:34;6656:18;;;6649:62;-1:-1:-1;;;6727:18:1;;;6720:42;6779:19;;26481:73:0;6396:408:1;26481:73:0;-1:-1:-1;26574:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26574:24:0;;26385:221::o;25908:411::-;25989:13;26005:23;26020:7;26005:14;:23::i;:::-;25989:39;;26053:5;-1:-1:-1;;;;;26047:11:0;:2;-1:-1:-1;;;;;26047:11:0;;;26039:57;;;;-1:-1:-1;;;26039:57:0;;7011:2:1;26039:57:0;;;6993:21:1;7050:2;7030:18;;;7023:30;7089:34;7069:18;;;7062:62;-1:-1:-1;;;7140:18:1;;;7133:31;7181:19;;26039:57:0;6809:397:1;26039:57:0;2802:10;-1:-1:-1;;;;;26131:21:0;;;;:62;;-1:-1:-1;26156:37:0;26173:5;2802:10;27044:164;:::i;26156:37::-;26109:168;;;;-1:-1:-1;;;26109:168:0;;7413:2:1;26109:168:0;;;7395:21:1;7452:2;7432:18;;;7425:30;7491:34;7471:18;;;7464:62;7562:26;7542:18;;;7535:54;7606:19;;26109:168:0;7211:420:1;26109:168:0;26290:21;26299:2;26303:7;26290:8;:21::i;:::-;25978:341;25908:411;;:::o;27275:339::-;27470:41;2802:10;27503:7;27470:18;:41::i;:::-;27462:103;;;;-1:-1:-1;;;27462:103:0;;;;;;;:::i;:::-;27578:28;27588:4;27594:2;27598:7;27578:9;:28::i;37234:256::-;37331:7;37367:23;37384:5;37367:16;:23::i;:::-;37359:5;:31;37351:87;;;;-1:-1:-1;;;37351:87:0;;8256:2:1;37351:87:0;;;8238:21:1;8295:2;8275:18;;;8268:30;8334:34;8314:18;;;8307:62;-1:-1:-1;;;8385:18:1;;;8378:41;8436:19;;37351:87:0;8054:407:1;37351:87:0;-1:-1:-1;;;;;;37456:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37234:256::o;49551:101::-;4001:6;;49599:44;;-1:-1:-1;;;;;4001:6:0;;;;49621:21;49599:44;;;;;;;;;49621:21;4001:6;49599:44;;;;;;;49591:53;;;;;;49551:101::o;27685:185::-;27823:39;27840:4;27846:2;27850:7;27823:39;;;;;;;;;;;;:16;:39::i;48041:88::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;48106:4:::1;:15:::0;48041:88::o;49163:101::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49231:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;49231:25:0::1;49252:4;49231:25;::::0;;49163:101::o;37756:233::-;37831:7;37867:30;37654:10;:17;;37566:113;37867:30;37859:5;:38;37851:95;;;;-1:-1:-1;;;37851:95:0;;8668:2:1;37851:95:0;;;8650:21:1;8707:2;8687:18;;;8680:30;8746:34;8726:18;;;8719:62;-1:-1:-1;;;8797:18:1;;;8790:42;8849:19;;37851:95:0;8466:408:1;37851:95:0;37964:10;37975:5;37964:17;;;;;;;;:::i;:::-;;;;;;;;;37957:24;;37756:233;;;:::o;48524:106::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;48601:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48524:106:::0;:::o;24520:239::-;24592:7;24628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24628:16:0;24663:19;24655:73;;;;-1:-1:-1;;;24655:73:0;;9213:2:1;24655:73:0;;;9195:21:1;9252:2;9232:18;;;9225:30;9291:34;9271:18;;;9264:62;-1:-1:-1;;;9342:18:1;;;9335:39;9391:19;;24655:73:0;9011:405:1;43506:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24250:208::-;24322:7;-1:-1:-1;;;;;24350:19:0;;24342:74;;;;-1:-1:-1;;;24342:74:0;;9623:2:1;24342:74:0;;;9605:21:1;9662:2;9642:18;;;9635:30;9701:34;9681:18;;;9674:62;-1:-1:-1;;;9752:18:1;;;9745:40;9802:19;;24342:74:0;9421:406:1;24342:74:0;-1:-1:-1;;;;;;24434:16:0;;;;;:9;:16;;;;;;;24250:208::o;4579:94::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;4644:21:::1;4662:1;4644:9;:21::i;46667:363::-:0;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;46752:14:::1;46769:13;37654:10:::0;:17;;37566:113;46769:13:::1;46891:10;46870:32;::::0;;;:20:::1;:32;::::0;;;;;46752:30;;-1:-1:-1;46870:46:0::1;::::0;46905:11;;46870:46:::1;:::i;:::-;46856:10;46835:32;::::0;;;:20:::1;:32;::::0;;;;:81;46944:1:::1;46927:96;46952:11;46947:1;:16;46927:96;;46985:26;46995:3:::0;47000:10:::1;47009:1:::0;47000:6;:10:::1;:::i;:::-;46985:9;:26::i;:::-;46965:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46927:96;;;;46741:289;46667:363:::0;;:::o;43575:23::-;;;;;;;:::i;24995:104::-;25051:13;25084:7;25077:14;;;;;:::i;45639:864::-;45786:6;;;;45785:7;;:34;;-1:-1:-1;45808:10:0;45796:23;;;;:11;:23;;;;;;;;45785:34;45777:61;;;;-1:-1:-1;;;45777:61:0;;10439:2:1;45777:61:0;;;10421:21:1;10478:2;10458:18;;;10451:30;-1:-1:-1;;;10497:18:1;;;10490:44;10551:18;;45777:61:0;10237:338:1;45777:61:0;45871:1;45857:11;:15;45849:38;;;;-1:-1:-1;;;45849:38:0;;10782:2:1;45849:38:0;;;10764:21:1;10821:2;10801:18;;;10794:30;-1:-1:-1;;;10840:18:1;;;10833:40;10890:18;;45849:38:0;10580:334:1;45849:38:0;45898:14;45915:13;37654:10;:17;;37566:113;45915:13;45985:10;;45898:30;;-1:-1:-1;45961:20:0;45970:11;45898:30;45961:20;:::i;:::-;:34;;45939:104;;;;-1:-1:-1;;;45939:104:0;;11121:2:1;45939:104:0;;;11103:21:1;11160:2;11140:18;;;11133:30;-1:-1:-1;;;11179:18:1;;;11172:50;11239:18;;45939:104:0;10919:344:1;45939:104:0;46126:20;;46097:10;46076:32;;;;:20;:32;;;;;;:46;;46111:11;;46076:46;:::i;:::-;:70;;46054:124;;;;-1:-1:-1;;;46054:124:0;;11470:2:1;46054:124:0;;;11452:21:1;11509:2;11489:18;;;11482:30;-1:-1:-1;;;11528:18:1;;;11521:48;11586:18;;46054:124:0;11268:342:1;46054:124:0;46217:11;46210:4;;:18;;;;:::i;:::-;46197:9;:31;46189:57;;;;-1:-1:-1;;;46189:57:0;;11990:2:1;46189:57:0;;;11972:21:1;12029:2;12009:18;;;12002:30;-1:-1:-1;;;12048:18:1;;;12041:43;12101:18;;46189:57:0;11788:337:1;46189:57:0;46357:10;46336:32;;;;:20;:32;;;;;;:46;;46371:11;;46336:46;:::i;:::-;46322:10;46301:32;;;;:20;:32;;;;;:81;46410:1;46393:103;46418:11;46413:1;:16;46393:103;;46451:33;46461:10;46473;46482:1;46473:6;:10;:::i;46451:33::-;46431:3;;;;:::i;:::-;;;;46393:103;;26678:295;-1:-1:-1;;;;;26781:24:0;;2802:10;26781:24;;26773:62;;;;-1:-1:-1;;;26773:62:0;;12332:2:1;26773:62:0;;;12314:21:1;12371:2;12351:18;;;12344:30;12410:27;12390:18;;;12383:55;12455:18;;26773:62:0;12130:349:1;26773:62:0;2802:10;26848:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26848:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26848:53:0;;;;;;;;;;26917:48;;540:41:1;;;26848:42:0;;2802:10;26917:48;;513:18:1;26917:48:0;;;;;;;26678:295;;:::o;47882:71::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;47930:8:::1;:15:::0;;-1:-1:-1;;47930:15:0::1;;;::::0;;47882:71::o;49358:110::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49434:18:0::1;49455:5;49434:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;49434:26:0::1;::::0;;49358:110::o;27941:328::-;28116:41;2802:10;28149:7;28116:18;:41::i;:::-;28108:103;;;;-1:-1:-1;;;28108:103:0;;;;;;;:::i;:::-;28222:39;28236:4;28242:2;28246:7;28255:5;28222:13;:39::i;48313:108::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;48391:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;43651:37::-:0;;;;;;;:::i;47128:713::-;29844:4;29868:16;;;:7;:16;;;;;;47246:13;;-1:-1:-1;;;;;29868:16:0;47277:114;;;;-1:-1:-1;;;47277:114:0;;12686:2:1;47277:114:0;;;12668:21:1;12725:2;12705:18;;;12698:30;12764:34;12744:18;;;12737:62;-1:-1:-1;;;12815:18:1;;;12808:46;12871:19;;47277:114:0;12484:412:1;47277:114:0;47409:8;;;;;;;47404:58;;47441:9;47434:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47128:713;;;:::o;47404:58::-;47474:28;47505:10;:8;:10::i;:::-;47474:41;;47577:1;47552:14;47546:28;:32;:287;;;;;;;;;;;;;;;;;47670:14;47711:18;:7;:16;:18::i;:::-;47756:13;47627:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47546:287;47526:307;47128:713;-1:-1:-1;;;47128:713:0:o;48750:153::-;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;48862:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;4828:192::-:0;4001:6;;-1:-1:-1;;;;;4001:6:0;2802:10;4148:23;4140:68;;;;-1:-1:-1;;;4140:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4917:22:0;::::1;4909:73;;;::::0;-1:-1:-1;;;4909:73:0;;14761:2:1;4909:73:0::1;::::0;::::1;14743:21:1::0;14800:2;14780:18;;;14773:30;14839:34;14819:18;;;14812:62;-1:-1:-1;;;14890:18:1;;;14883:36;14936:19;;4909:73:0::1;14559:402:1::0;4909:73:0::1;4993:19;5003:8;4993:9;:19::i;:::-;4828:192:::0;:::o;5970:387::-;6293:20;6341:8;;;5970:387::o;23881:305::-;23983:4;-1:-1:-1;;;;;;24020:40:0;;-1:-1:-1;;;24020:40:0;;:105;;-1:-1:-1;;;;;;;24077:48:0;;-1:-1:-1;;;24077:48:0;24020:105;:158;;;-1:-1:-1;;;;;;;;;;16005:40:0;;;24142:36;15896:157;33761:174;33836:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33836:29:0;-1:-1:-1;;;;;33836:29:0;;;;;;;;:24;;33890:23;33836:24;33890:14;:23::i;:::-;-1:-1:-1;;;;;33881:46:0;;;;;;;;;;;33761:174;;:::o;30073:348::-;30166:4;29868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29868:16:0;30183:73;;;;-1:-1:-1;;;30183:73:0;;15168:2:1;30183:73:0;;;15150:21:1;15207:2;15187:18;;;15180:30;15246:34;15226:18;;;15219:62;-1:-1:-1;;;15297:18:1;;;15290:42;15349:19;;30183:73:0;14966:408:1;30183:73:0;30267:13;30283:23;30298:7;30283:14;:23::i;:::-;30267:39;;30336:5;-1:-1:-1;;;;;30325:16:0;:7;-1:-1:-1;;;;;30325:16:0;;:51;;;;30369:7;-1:-1:-1;;;;;30345:31:0;:20;30357:7;30345:11;:20::i;:::-;-1:-1:-1;;;;;30345:31:0;;30325:51;:87;;;-1:-1:-1;;;;;;27165:25:0;;;27141:4;27165:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30380:32;30317:96;30073:348;-1:-1:-1;;;;30073:348:0:o;33065:578::-;33224:4;-1:-1:-1;;;;;33197:31:0;:23;33212:7;33197:14;:23::i;:::-;-1:-1:-1;;;;;33197:31:0;;33189:85;;;;-1:-1:-1;;;33189:85:0;;15581:2:1;33189:85:0;;;15563:21:1;15620:2;15600:18;;;15593:30;15659:34;15639:18;;;15632:62;-1:-1:-1;;;15710:18:1;;;15703:39;15759:19;;33189:85:0;15379:405:1;33189:85:0;-1:-1:-1;;;;;33293:16:0;;33285:65;;;;-1:-1:-1;;;33285:65:0;;15991:2:1;33285:65:0;;;15973:21:1;16030:2;16010:18;;;16003:30;16069:34;16049:18;;;16042:62;-1:-1:-1;;;16120:18:1;;;16113:34;16164:19;;33285:65:0;15789:400:1;33285:65:0;33363:39;33384:4;33390:2;33394:7;33363:20;:39::i;:::-;33467:29;33484:1;33488:7;33467:8;:29::i;:::-;-1:-1:-1;;;;;33509:15:0;;;;;;:9;:15;;;;;:20;;33528:1;;33509:15;:20;;33528:1;;33509:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33540:13:0;;;;;;:9;:13;;;;;:18;;33557:1;;33540:13;:18;;33557:1;;33540:18;:::i;:::-;;;;-1:-1:-1;;33569:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33569:21:0;-1:-1:-1;;;;;33569:21:0;;;;;;;;;33608:27;;33569:16;;33608:27;;;;;;;33065:578;;;:::o;5028:173::-;5103:6;;;-1:-1:-1;;;;;5120:17:0;;;-1:-1:-1;;;;;;5120:17:0;;;;;;;5153:40;;5103:6;;;5120:17;5103:6;;5153:40;;5084:16;;5153:40;5073:128;5028:173;:::o;30763:110::-;30839:26;30849:2;30853:7;30839:26;;;;;;;;;;;;:9;:26::i;29151:315::-;29308:28;29318:4;29324:2;29328:7;29308:9;:28::i;:::-;29355:48;29378:4;29384:2;29388:7;29397:5;29355:22;:48::i;:::-;29347:111;;;;-1:-1:-1;;;29347:111:0;;;;;;;:::i;45426:108::-;45486:13;45519:7;45512:14;;;;;:::i;342:723::-;398:13;619:10;615:53;;-1:-1:-1;;646:10:0;;;;;;;;;;;;-1:-1:-1;;;646:10:0;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:0;;-1:-1:-1;798:2:0;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:0;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:0;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:0;;;;;;;;-1:-1:-1;1003:11:0;1012:2;1003:11;;:::i;:::-;;;872:154;;38602:589;-1:-1:-1;;;;;38808:18:0;;38804:187;;38843:40;38875:7;40018:10;:17;;39991:24;;;;:15;:24;;;;;:44;;;40046:24;;;;;;;;;;;;39914:164;38843:40;38804:187;;;38913:2;-1:-1:-1;;;;;38905:10:0;:4;-1:-1:-1;;;;;38905:10:0;;38901:90;;38932:47;38965:4;38971:7;38932:32;:47::i;:::-;-1:-1:-1;;;;;39005:16:0;;39001:183;;39038:45;39075:7;39038:36;:45::i;39001:183::-;39111:4;-1:-1:-1;;;;;39105:10:0;:2;-1:-1:-1;;;;;39105:10:0;;39101:83;;39132:40;39160:2;39164:7;39132:27;:40::i;31100:321::-;31230:18;31236:2;31240:7;31230:5;:18::i;:::-;31281:54;31312:1;31316:2;31320:7;31329:5;31281:22;:54::i;:::-;31259:154;;;;-1:-1:-1;;;31259:154:0;;;;;;;:::i;34500:799::-;34655:4;-1:-1:-1;;;;;34676:13:0;;6293:20;6341:8;34672:620;;34712:72;;-1:-1:-1;;;34712:72:0;;-1:-1:-1;;;;;34712:36:0;;;;;:72;;2802:10;;34763:4;;34769:7;;34778:5;;34712:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34712:72:0;;;;;;;;-1:-1:-1;;34712:72:0;;;;;;;;;;;;:::i;:::-;;;34708:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34954:13:0;;34950:272;;34997:60;;-1:-1:-1;;;34997:60:0;;;;;;;:::i;34950:272::-;35172:6;35166:13;35157:6;35153:2;35149:15;35142:38;34708:529;-1:-1:-1;;;;;;34835:51:0;-1:-1:-1;;;34835:51:0;;-1:-1:-1;34828:58:0;;34672:620;-1:-1:-1;35276:4:0;34500:799;;;;;;:::o;40705:988::-;40971:22;41021:1;40996:22;41013:4;40996:16;:22::i;:::-;:26;;;;:::i;:::-;41033:18;41054:26;;;:17;:26;;;;;;40971:51;;-1:-1:-1;41187:28:0;;;41183:328;;-1:-1:-1;;;;;41254:18:0;;41232:19;41254:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41305:30;;;;;;:44;;;41422:30;;:17;:30;;;;;:43;;;41183:328;-1:-1:-1;41607:26:0;;;;:17;:26;;;;;;;;41600:33;;;-1:-1:-1;;;;;41651:18:0;;;;;:12;:18;;;;;:34;;;;;;;41644:41;40705:988::o;41988:1079::-;42266:10;:17;42241:22;;42266:21;;42286:1;;42266:21;:::i;:::-;42298:18;42319:24;;;:15;:24;;;;;;42692:10;:26;;42241:46;;-1:-1:-1;42319:24:0;;42241:46;;42692:26;;;;;;:::i;:::-;;;;;;;;;42670:48;;42756:11;42731:10;42742;42731:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42836:28;;;:15;:28;;;;;;;:41;;;43008:24;;;;;43001:31;43043:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42059:1008;;;41988:1079;:::o;39492:221::-;39577:14;39594:20;39611:2;39594:16;:20::i;:::-;-1:-1:-1;;;;;39625:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39670:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39492:221:0:o;31757:382::-;-1:-1:-1;;;;;31837:16:0;;31829:61;;;;-1:-1:-1;;;31829:61:0;;18199:2:1;31829:61:0;;;18181:21:1;;;18218:18;;;18211:30;18277:34;18257:18;;;18250:62;18329:18;;31829:61:0;17997:356:1;31829:61:0;29844:4;29868:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29868:16:0;:30;31901:58;;;;-1:-1:-1;;;31901:58:0;;18560:2:1;31901:58:0;;;18542:21:1;18599:2;18579:18;;;18572:30;18638;18618:18;;;18611:58;18686:18;;31901:58:0;18358:352:1;31901:58:0;31972:45;32001:1;32005:2;32009:7;31972:20;:45::i;:::-;-1:-1:-1;;;;;32030:13:0;;;;;;:9;:13;;;;;:18;;32047:1;;32030:13;:18;;32047:1;;32030:18;:::i;:::-;;;;-1:-1:-1;;32059:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32059:21:0;-1:-1:-1;;;;;32059:21:0;;;;;;;;32098:33;;32059:16;;;32098:33;;32059:16;;32098:33;31757:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:186::-;2764:6;2817:2;2805:9;2796:7;2792:23;2788:32;2785:52;;;2833:1;2830;2823:12;2785:52;2856:29;2875:9;2856:29;:::i;2896:328::-;2973:6;2981;2989;3042:2;3030:9;3021:7;3017:23;3013:32;3010:52;;;3058:1;3055;3048:12;3010:52;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3214:2;3203:9;3199:18;3186:32;3176:42;;2896:328;;;;;:::o;3229:127::-;3290:10;3285:3;3281:20;3278:1;3271:31;3321:4;3318:1;3311:15;3345:4;3342:1;3335:15;3361:632;3426:5;3456:18;3497:2;3489:6;3486:14;3483:40;;;3503:18;;:::i;:::-;3578:2;3572:9;3546:2;3632:15;;-1:-1:-1;;3628:24:1;;;3654:2;3624:33;3620:42;3608:55;;;3678:18;;;3698:22;;;3675:46;3672:72;;;3724:18;;:::i;:::-;3764:10;3760:2;3753:22;3793:6;3784:15;;3823:6;3815;3808:22;3863:3;3854:6;3849:3;3845:16;3842:25;3839:45;;;3880:1;3877;3870:12;3839:45;3930:6;3925:3;3918:4;3910:6;3906:17;3893:44;3985:1;3978:4;3969:6;3961;3957:19;3953:30;3946:41;;;;3361:632;;;;;:::o;3998:451::-;4067:6;4120:2;4108:9;4099:7;4095:23;4091:32;4088:52;;;4136:1;4133;4126:12;4088:52;4176:9;4163:23;4209:18;4201:6;4198:30;4195:50;;;4241:1;4238;4231:12;4195:50;4264:22;;4317:4;4309:13;;4305:27;-1:-1:-1;4295:55:1;;4346:1;4343;4336:12;4295:55;4369:74;4435:7;4430:2;4417:16;4412:2;4408;4404:11;4369:74;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:356::-;5852:2;5834:21;;;5871:18;;;5864:30;5930:34;5925:2;5910:18;;5903:62;5997:2;5982:18;;5650:356::o;6011:380::-;6090:1;6086:12;;;;6133;;;6154:61;;6208:4;6200:6;6196:17;6186:27;;6154:61;6261:2;6253:6;6250:14;6230:18;6227:38;6224:161;;;6307:10;6302:3;6298:20;6295:1;6288:31;6342:4;6339:1;6332:15;6370:4;6367:1;6360:15;6224:161;;6011:380;;;:::o;7636:413::-;7838:2;7820:21;;;7877:2;7857:18;;;7850:30;7916:34;7911:2;7896:18;;7889:62;-1:-1:-1;;;7982:2:1;7967:18;;7960:47;8039:3;8024:19;;7636:413::o;8879:127::-;8940:10;8935:3;8931:20;8928:1;8921:31;8971:4;8968:1;8961:15;8995:4;8992:1;8985:15;9832:127;9893:10;9888:3;9884:20;9881:1;9874:31;9924:4;9921:1;9914:15;9948:4;9945:1;9938:15;9964:128;10004:3;10035:1;10031:6;10028:1;10025:13;10022:39;;;10041:18;;:::i;:::-;-1:-1:-1;10077:9:1;;9964:128::o;10097:135::-;10136:3;-1:-1:-1;;10157:17:1;;10154:43;;;10177:18;;:::i;:::-;-1:-1:-1;10224:1:1;10213:13;;10097:135::o;11615:168::-;11655:7;11721:1;11717;11713:6;11709:14;11706:1;11703:21;11698:1;11691:9;11684:17;11680:45;11677:71;;;11728:18;;:::i;:::-;-1:-1:-1;11768:9:1;;11615:168::o;13027:1527::-;13251:3;13289:6;13283:13;13315:4;13328:51;13372:6;13367:3;13362:2;13354:6;13350:15;13328:51;:::i;:::-;13442:13;;13401:16;;;;13464:55;13442:13;13401:16;13486:15;;;13464:55;:::i;:::-;13608:13;;13541:20;;;13581:1;;13668;13690:18;;;;13743;;;;13770:93;;13848:4;13838:8;13834:19;13822:31;;13770:93;13911:2;13901:8;13898:16;13878:18;13875:40;13872:167;;;-1:-1:-1;;;13938:33:1;;13994:4;13991:1;13984:15;14024:4;13945:3;14012:17;13872:167;14055:18;14082:110;;;;14206:1;14201:328;;;;14048:481;;14082:110;-1:-1:-1;;14117:24:1;;14103:39;;14162:20;;;;-1:-1:-1;14082:110:1;;14201:328;12974:1;12967:14;;;13011:4;12998:18;;14296:1;14310:169;14324:8;14321:1;14318:15;14310:169;;;14406:14;;14391:13;;;14384:37;14449:16;;;;14341:10;;14310:169;;;14314:3;;14510:8;14503:5;14499:20;14492:27;;14048:481;-1:-1:-1;14545:3:1;;13027:1527;-1:-1:-1;;;;;;;;;;;13027:1527:1:o;16194:125::-;16234:4;16262:1;16259;16256:8;16253:34;;;16267:18;;:::i;:::-;-1:-1:-1;16304:9:1;;16194:125::o;16324:414::-;16526:2;16508:21;;;16565:2;16545:18;;;16538:30;16604:34;16599:2;16584:18;;16577:62;-1:-1:-1;;;16670:2:1;16655:18;;16648:48;16728:3;16713:19;;16324:414::o;16743:127::-;16804:10;16799:3;16795:20;16792:1;16785:31;16835:4;16832:1;16825:15;16859:4;16856:1;16849:15;16875:120;16915:1;16941;16931:35;;16946:18;;:::i;:::-;-1:-1:-1;16980:9:1;;16875:120::o;17000:112::-;17032:1;17058;17048:35;;17063:18;;:::i;:::-;-1:-1:-1;17097:9:1;;17000:112::o;17117:489::-;-1:-1:-1;;;;;17386:15:1;;;17368:34;;17438:15;;17433:2;17418:18;;17411:43;17485:2;17470:18;;17463:34;;;17533:3;17528:2;17513:18;;17506:31;;;17311:4;;17554:46;;17580:19;;17572:6;17554:46;:::i;:::-;17546:54;17117:489;-1:-1:-1;;;;;;17117:489:1:o;17611:249::-;17680:6;17733:2;17721:9;17712:7;17708:23;17704:32;17701:52;;;17749:1;17746;17739:12;17701:52;17781:9;17775:16;17800:30;17824:5;17800:30;:::i;17865:127::-;17926:10;17921:3;17917:20;17914:1;17907:31;17957:4;17954:1;17947:15;17981:4;17978:1;17971:15
Swarm Source
ipfs://dec4a31d69b2c98cc6e89c6e3173e186e4b445d20923a97ad343a91b6b05d2ae
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.