ERC-721
Source Code
Overview
Max Total Supply
6,207 BUNYUNS
Holders
462
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 BUNYUNSLoading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Bunyuns
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-06-06
*/
// File: contracts/Bunyuns.sol
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (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() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (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
// OpenZeppelin Contracts v4.4.1 (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/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (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: erc721a/contracts/ERC721A.sol
// Creator: Chiru Labs
pragma solidity ^0.8.4;
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @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 override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @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) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
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 override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_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 {
_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 {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is equivalent to _burn(tokenId, false)
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* 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, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
pragma solidity >=0.8.0 <0.9.0;
contract Bunyuns is ERC721A, Ownable, ReentrancyGuard {
using Strings for uint256;
string public _baseTokenURI;
string public hiddenMetadataUri;
uint256 public cost = 0.004 ether;
uint256 public maxSupply = 6666;
uint256 public maxMintAmountPerTx = 20;
bool public paused;
bool public revealed;
constructor(
string memory _hiddenMetadataUri
) ERC721A("Bunyuns", "BUNYUNS") {
setHiddenMetadataUri(_hiddenMetadataUri);
}
function mint(uint256 _mintAmount) public payable nonReentrant {
require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
require(!paused, "The contract is paused!");
require(msg.value >= cost * _mintAmount, "Insufficient funds!");
_safeMint(_msgSender(), _mintAmount);
}
function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
_safeMint(_receiver, _mintAmount);
}
function _startTokenId() internal view virtual override returns (uint256) {
return 1;
}
function setRevealed(bool _state) public onlyOwner {
revealed = _state;
}
function setCost(uint256 _cost) public onlyOwner {
cost = _cost;
}
function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
maxMintAmountPerTx = _maxMintAmountPerTx;
}
function setPaused(bool _state) public onlyOwner {
paused = _state;
}
function withdraw() public onlyOwner nonReentrant {
(bool os, ) = payable(owner()).call{value: address(this).balance}('');
require(os);
}
// METADATA HANDLING
function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
hiddenMetadataUri = _hiddenMetadataUri;
}
function setBaseURI(string calldata baseURI) public onlyOwner {
_baseTokenURI = baseURI;
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
require(_exists(_tokenId), "URI does not exist!");
if (revealed) {
return string(abi.encodePacked(_baseURI(), _tokenId.toString()));
} else {
return hiddenMetadataUri;
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","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":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052660e35fa931a0000600c55611a0a600d556014600e553480156200002757600080fd5b50604051620042773803806200427783398181016040528101906200004d91906200041d565b6040518060400160405280600781526020017f42756e79756e73000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f42554e59554e53000000000000000000000000000000000000000000000000008152508160029080519060200190620000d1929190620002ef565b508060039080519060200190620000ea929190620002ef565b50620000fb6200014360201b60201c565b600081905550505062000123620001176200014c60201b60201c565b6200015460201b60201c565b60016009819055506200013c816200021a60201b60201c565b5062000675565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022a6200014c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000250620002c560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002a9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a09062000495565b60405180910390fd5b80600b9080519060200190620002c1929190620002ef565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002fd906200055d565b90600052602060002090601f0160209004810192826200032157600085556200036d565b82601f106200033c57805160ff19168380011785556200036d565b828001600101855582156200036d579182015b828111156200036c5782518255916020019190600101906200034f565b5b5090506200037c919062000380565b5090565b5b808211156200039b57600081600090555060010162000381565b5090565b6000620003b6620003b084620004e0565b620004b7565b905082815260208101848484011115620003d557620003d46200062c565b5b620003e284828562000527565b509392505050565b600082601f83011262000402576200040162000627565b5b8151620004148482602086016200039f565b91505092915050565b60006020828403121562000436576200043562000636565b5b600082015167ffffffffffffffff81111562000457576200045662000631565b5b6200046584828501620003ea565b91505092915050565b60006200047d60208362000516565b91506200048a826200064c565b602082019050919050565b60006020820190508181036000830152620004b0816200046e565b9050919050565b6000620004c3620004d6565b9050620004d1828262000593565b919050565b6000604051905090565b600067ffffffffffffffff821115620004fe57620004fd620005f8565b5b62000509826200063b565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005475780820151818401526020810190506200052a565b8381111562000557576000848401525b50505050565b600060028204905060018216806200057657607f821691505b602082108114156200058d576200058c620005c9565b5b50919050565b6200059e826200063b565b810181811067ffffffffffffffff82111715620005c057620005bf620005f8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613bf280620006856000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063b071401b116100a0578063d5abeb011161006f578063d5abeb01146106b6578063e0a80853146106e1578063e985e9c51461070a578063efbd73f414610747578063f2fde38b14610770576101ee565b8063b071401b146105fc578063b88d4fde14610625578063c87b56dd1461064e578063cfc86f7b1461068b576101ee565b806395d89b41116100dc57806395d89b4114610561578063a0712d681461058c578063a22cb465146105a8578063a45ba8e7146105d1576101ee565b806370a08231146104b7578063715018a6146104f45780638da5cb5b1461050b57806394354fd014610536576101ee565b80633ccfd60b11610185578063518302271161015457806351830227146103fb57806355f804b3146104265780635c975abb1461044f5780636352211e1461047a576101ee565b80633ccfd60b1461036957806342842e0e1461038057806344a0d68a146103a95780634fdd43cb146103d2576101ee565b806313faede6116101c157806313faede6146102c157806316c38b3c146102ec57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ff8565b610799565b6040516102279190613400565b60405180910390f35b34801561023c57600080fd5b5061024561087b565b604051610252919061341b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130e8565b61090d565b60405161028f9190613399565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f8b565b610989565b005b3480156102cd57600080fd5b506102d6610a94565b6040516102e3919061353d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612fcb565b610a9a565b005b34801561032157600080fd5b5061032a610b33565b604051610337919061353d565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612e75565b610b4a565b005b34801561037557600080fd5b5061037e610b5a565b005b34801561038c57600080fd5b506103a760048036038101906103a29190612e75565b610cac565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906130e8565b610ccc565b005b3480156103de57600080fd5b506103f960048036038101906103f4919061309f565b610d52565b005b34801561040757600080fd5b50610410610de8565b60405161041d9190613400565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613052565b610dfb565b005b34801561045b57600080fd5b50610464610e8d565b6040516104719190613400565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906130e8565b610ea0565b6040516104ae9190613399565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612e08565b610eb6565b6040516104eb919061353d565b60405180910390f35b34801561050057600080fd5b50610509610f86565b005b34801561051757600080fd5b5061052061100e565b60405161052d9190613399565b60405180910390f35b34801561054257600080fd5b5061054b611038565b604051610558919061353d565b60405180910390f35b34801561056d57600080fd5b5061057661103e565b604051610583919061341b565b60405180910390f35b6105a660048036038101906105a191906130e8565b6110d0565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612f4b565b611282565b005b3480156105dd57600080fd5b506105e66113fa565b6040516105f3919061341b565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906130e8565b611488565b005b34801561063157600080fd5b5061064c60048036038101906106479190612ec8565b61150e565b005b34801561065a57600080fd5b50610675600480360381019061067091906130e8565b61158a565b604051610682919061341b565b60405180910390f35b34801561069757600080fd5b506106a06116b4565b6040516106ad919061341b565b60405180910390f35b3480156106c257600080fd5b506106cb611742565b6040516106d8919061353d565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612fcb565b611748565b005b34801561071657600080fd5b50610731600480360381019061072c9190612e35565b6117e1565b60405161073e9190613400565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613115565b611875565b005b34801561077c57600080fd5b5061079760048036038101906107929190612e08565b6118ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108745750610873826119f7565b5b9050919050565b60606002805461088a906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906137f8565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611a61565b61094e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099482610ea0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1b611aaf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a4d5750610a4b81610a46611aaf565b6117e1565b155b15610a84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a8f838383611ab7565b505050565b600c5481565b610aa2611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610ac061100e565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061347d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610b3d611b69565b6001546000540303905090565b610b55838383611b72565b505050565b610b62611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610b8061100e565b73ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd9061347d565b60405180910390fd5b60026009541415610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906134dd565b60405180910390fd5b60026009819055506000610c2e61100e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c5190613384565b60006040518083038185875af1925050503d8060008114610c8e576040519150601f19603f3d011682016040523d82523d6000602084013e610c93565b606091505b5050905080610ca157600080fd5b506001600981905550565b610cc78383836040518060200160405280600081525061150e565b505050565b610cd4611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610cf261100e565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061347d565b60405180910390fd5b80600c8190555050565b610d5a611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610d7861100e565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061347d565b60405180910390fd5b80600b9080519060200190610de4929190612afd565b5050565b600f60019054906101000a900460ff1681565b610e03611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610e2161100e565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e9061347d565b60405180910390fd5b8181600a9190610e88929190612b83565b505050565b600f60009054906101000a900460ff1681565b6000610eab82612028565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f8e611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610fac61100e565b73ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff99061347d565b60405180910390fd5b61100c60006122b7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461104d906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611079906137f8565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b5050505050905090565b60026009541415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906134dd565b60405180910390fd5b60026009819055506000811180156111305750600e548111155b61116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061345d565b60405180910390fd5b600d548161117b610b33565b611185919061362d565b11156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906134bd565b60405180910390fd5b600f60009054906101000a900460ff1615611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061349d565b60405180910390fd5b80600c5461122491906136b4565b341015611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061351d565b60405180910390fd5b611277611271611aaf565b8261237d565b600160098190555050565b61128a611aaf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112fc611aaf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a9611aaf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ee9190613400565b60405180910390a35050565b600b8054611407906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611433906137f8565b80156114805780601f1061145557610100808354040283529160200191611480565b820191906000526020600020905b81548152906001019060200180831161146357829003601f168201915b505050505081565b611490611aaf565b73ffffffffffffffffffffffffffffffffffffffff166114ae61100e565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb9061347d565b60405180910390fd5b80600e8190555050565b611519848484611b72565b6115388373ffffffffffffffffffffffffffffffffffffffff1661239b565b801561154d575061154b848484846123be565b155b15611584576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061159582611a61565b6115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb906134fd565b60405180910390fd5b600f60019054906101000a900460ff1615611621576115f161251e565b6115fa836125b0565b60405160200161160b929190613360565b60405160208183030381529060405290506116af565b600b805461162e906137f8565b80601f016020809104026020016040519081016040528092919081815260200182805461165a906137f8565b80156116a75780601f1061167c576101008083540402835291602001916116a7565b820191906000526020600020905b81548152906001019060200180831161168a57829003601f168201915b505050505090505b919050565b600a80546116c1906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546116ed906137f8565b801561173a5780601f1061170f5761010080835404028352916020019161173a565b820191906000526020600020905b81548152906001019060200180831161171d57829003601f168201915b505050505081565b600d5481565b611750611aaf565b73ffffffffffffffffffffffffffffffffffffffff1661176e61100e565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb9061347d565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61187d611aaf565b73ffffffffffffffffffffffffffffffffffffffff1661189b61100e565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061347d565b60405180910390fd5b6118fb818361237d565b5050565b611907611aaf565b73ffffffffffffffffffffffffffffffffffffffff1661192561100e565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119729061347d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e29061343d565b60405180910390fd5b6119f4816122b7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a6c611b69565b11158015611a7b575060005482105b8015611aa8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b7d82612028565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611be8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c09611aaf565b73ffffffffffffffffffffffffffffffffffffffff161480611c385750611c3785611c32611aaf565b6117e1565b5b80611c7d5750611c46611aaf565b73ffffffffffffffffffffffffffffffffffffffff16611c658461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cb6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d2a8585856001612711565b611d3660008487611ab7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fb6576000548214611fb557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120218585856001612717565b5050505050565b612030612c09565b60008290508061203e611b69565b1115801561204d575060005481105b15612280576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161227e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121625780925050506122b2565b5b60011561227d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122785780925050506122b2565b612163565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61239782826040518060200160405280600081525061271d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e4611aaf565b8786866040518563ffffffff1660e01b815260040161240694939291906133b4565b602060405180830381600087803b15801561242057600080fd5b505af192505050801561245157506040513d601f19601f8201168201806040525081019061244e9190613025565b60015b6124cb573d8060008114612481576040519150601f19603f3d011682016040523d82523d6000602084013e612486565b606091505b506000815114156124c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461252d906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054612559906137f8565b80156125a65780601f1061257b576101008083540402835291602001916125a6565b820191906000526020600020905b81548152906001019060200180831161258957829003601f168201915b5050505050905090565b606060008214156125f8576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270c565b600082905060005b6000821461262a5780806126139061385b565b915050600a826126239190613683565b9150612600565b60008167ffffffffffffffff81111561264657612645613991565b5b6040519080825280601f01601f1916602001820160405280156126785781602001600182028036833780820191505090505b5090505b6000851461270557600182612691919061370e565b9150600a856126a091906138a4565b60306126ac919061362d565b60f81b8183815181106126c2576126c1613962565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126fe9190613683565b945061267c565b8093505050505b919050565b50505050565b50505050565b61272a838383600161272f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561279c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127d7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e46000868387612711565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129ae57506129ad8773ffffffffffffffffffffffffffffffffffffffff1661239b565b5b15612a74575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2360008884806001019550886123be565b612a59576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129b4578260005414612a6f57600080fd5b612ae0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a75575b816000819055505050612af66000868387612717565b5050505050565b828054612b09906137f8565b90600052602060002090601f016020900481019282612b2b5760008555612b72565b82601f10612b4457805160ff1916838001178555612b72565b82800160010185558215612b72579182015b82811115612b71578251825591602001919060010190612b56565b5b509050612b7f9190612c4c565b5090565b828054612b8f906137f8565b90600052602060002090601f016020900481019282612bb15760008555612bf8565b82601f10612bca57803560ff1916838001178555612bf8565b82800160010185558215612bf8579182015b82811115612bf7578235825591602001919060010190612bdc565b5b509050612c059190612c4c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c65576000816000905550600101612c4d565b5090565b6000612c7c612c778461357d565b613558565b905082815260208101848484011115612c9857612c976139cf565b5b612ca38482856137b6565b509392505050565b6000612cbe612cb9846135ae565b613558565b905082815260208101848484011115612cda57612cd96139cf565b5b612ce58482856137b6565b509392505050565b600081359050612cfc81613b60565b92915050565b600081359050612d1181613b77565b92915050565b600081359050612d2681613b8e565b92915050565b600081519050612d3b81613b8e565b92915050565b600082601f830112612d5657612d556139c5565b5b8135612d66848260208601612c69565b91505092915050565b60008083601f840112612d8557612d846139c5565b5b8235905067ffffffffffffffff811115612da257612da16139c0565b5b602083019150836001820283011115612dbe57612dbd6139ca565b5b9250929050565b600082601f830112612dda57612dd96139c5565b5b8135612dea848260208601612cab565b91505092915050565b600081359050612e0281613ba5565b92915050565b600060208284031215612e1e57612e1d6139d9565b5b6000612e2c84828501612ced565b91505092915050565b60008060408385031215612e4c57612e4b6139d9565b5b6000612e5a85828601612ced565b9250506020612e6b85828601612ced565b9150509250929050565b600080600060608486031215612e8e57612e8d6139d9565b5b6000612e9c86828701612ced565b9350506020612ead86828701612ced565b9250506040612ebe86828701612df3565b9150509250925092565b60008060008060808587031215612ee257612ee16139d9565b5b6000612ef087828801612ced565b9450506020612f0187828801612ced565b9350506040612f1287828801612df3565b925050606085013567ffffffffffffffff811115612f3357612f326139d4565b5b612f3f87828801612d41565b91505092959194509250565b60008060408385031215612f6257612f616139d9565b5b6000612f7085828601612ced565b9250506020612f8185828601612d02565b9150509250929050565b60008060408385031215612fa257612fa16139d9565b5b6000612fb085828601612ced565b9250506020612fc185828601612df3565b9150509250929050565b600060208284031215612fe157612fe06139d9565b5b6000612fef84828501612d02565b91505092915050565b60006020828403121561300e5761300d6139d9565b5b600061301c84828501612d17565b91505092915050565b60006020828403121561303b5761303a6139d9565b5b600061304984828501612d2c565b91505092915050565b60008060208385031215613069576130686139d9565b5b600083013567ffffffffffffffff811115613087576130866139d4565b5b61309385828601612d6f565b92509250509250929050565b6000602082840312156130b5576130b46139d9565b5b600082013567ffffffffffffffff8111156130d3576130d26139d4565b5b6130df84828501612dc5565b91505092915050565b6000602082840312156130fe576130fd6139d9565b5b600061310c84828501612df3565b91505092915050565b6000806040838503121561312c5761312b6139d9565b5b600061313a85828601612df3565b925050602061314b85828601612ced565b9150509250929050565b61315e81613742565b82525050565b61316d81613754565b82525050565b600061317e826135df565b61318881856135f5565b93506131988185602086016137c5565b6131a1816139de565b840191505092915050565b60006131b7826135ea565b6131c18185613611565b93506131d18185602086016137c5565b6131da816139de565b840191505092915050565b60006131f0826135ea565b6131fa8185613622565b935061320a8185602086016137c5565b80840191505092915050565b6000613223602683613611565b915061322e826139ef565b604082019050919050565b6000613246601483613611565b915061325182613a3e565b602082019050919050565b6000613269602083613611565b915061327482613a67565b602082019050919050565b600061328c601783613611565b915061329782613a90565b602082019050919050565b60006132af600083613606565b91506132ba82613ab9565b600082019050919050565b60006132d2601483613611565b91506132dd82613abc565b602082019050919050565b60006132f5601f83613611565b915061330082613ae5565b602082019050919050565b6000613318601383613611565b915061332382613b0e565b602082019050919050565b600061333b601383613611565b915061334682613b37565b602082019050919050565b61335a816137ac565b82525050565b600061336c82856131e5565b915061337882846131e5565b91508190509392505050565b600061338f826132a2565b9150819050919050565b60006020820190506133ae6000830184613155565b92915050565b60006080820190506133c96000830187613155565b6133d66020830186613155565b6133e36040830185613351565b81810360608301526133f58184613173565b905095945050505050565b60006020820190506134156000830184613164565b92915050565b6000602082019050818103600083015261343581846131ac565b905092915050565b6000602082019050818103600083015261345681613216565b9050919050565b6000602082019050818103600083015261347681613239565b9050919050565b600060208201905081810360008301526134968161325c565b9050919050565b600060208201905081810360008301526134b68161327f565b9050919050565b600060208201905081810360008301526134d6816132c5565b9050919050565b600060208201905081810360008301526134f6816132e8565b9050919050565b600060208201905081810360008301526135168161330b565b9050919050565b600060208201905081810360008301526135368161332e565b9050919050565b60006020820190506135526000830184613351565b92915050565b6000613562613573565b905061356e828261382a565b919050565b6000604051905090565b600067ffffffffffffffff82111561359857613597613991565b5b6135a1826139de565b9050602081019050919050565b600067ffffffffffffffff8211156135c9576135c8613991565b5b6135d2826139de565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613638826137ac565b9150613643836137ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613678576136776138d5565b5b828201905092915050565b600061368e826137ac565b9150613699836137ac565b9250826136a9576136a8613904565b5b828204905092915050565b60006136bf826137ac565b91506136ca836137ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613703576137026138d5565b5b828202905092915050565b6000613719826137ac565b9150613724836137ac565b925082821015613737576137366138d5565b5b828203905092915050565b600061374d8261378c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137e35780820151818401526020810190506137c8565b838111156137f2576000848401525b50505050565b6000600282049050600182168061381057607f821691505b6020821081141561382457613823613933565b5b50919050565b613833826139de565b810181811067ffffffffffffffff8211171561385257613851613991565b5b80604052505050565b6000613866826137ac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613899576138986138d5565b5b600182019050919050565b60006138af826137ac565b91506138ba836137ac565b9250826138ca576138c9613904565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613b6981613742565b8114613b7457600080fd5b50565b613b8081613754565b8114613b8b57600080fd5b50565b613b9781613760565b8114613ba257600080fd5b50565b613bae816137ac565b8114613bb957600080fd5b5056fea2646970667358221220d296df260d78fbc01203c4f2e04e38afce9b8968395f2c575778f469ce2d3d1464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806370a082311161010d578063b071401b116100a0578063d5abeb011161006f578063d5abeb01146106b6578063e0a80853146106e1578063e985e9c51461070a578063efbd73f414610747578063f2fde38b14610770576101ee565b8063b071401b146105fc578063b88d4fde14610625578063c87b56dd1461064e578063cfc86f7b1461068b576101ee565b806395d89b41116100dc57806395d89b4114610561578063a0712d681461058c578063a22cb465146105a8578063a45ba8e7146105d1576101ee565b806370a08231146104b7578063715018a6146104f45780638da5cb5b1461050b57806394354fd014610536576101ee565b80633ccfd60b11610185578063518302271161015457806351830227146103fb57806355f804b3146104265780635c975abb1461044f5780636352211e1461047a576101ee565b80633ccfd60b1461036957806342842e0e1461038057806344a0d68a146103a95780634fdd43cb146103d2576101ee565b806313faede6116101c157806313faede6146102c157806316c38b3c146102ec57806318160ddd1461031557806323b872dd14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ff8565b610799565b6040516102279190613400565b60405180910390f35b34801561023c57600080fd5b5061024561087b565b604051610252919061341b565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d91906130e8565b61090d565b60405161028f9190613399565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba9190612f8b565b610989565b005b3480156102cd57600080fd5b506102d6610a94565b6040516102e3919061353d565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e9190612fcb565b610a9a565b005b34801561032157600080fd5b5061032a610b33565b604051610337919061353d565b60405180910390f35b34801561034c57600080fd5b5061036760048036038101906103629190612e75565b610b4a565b005b34801561037557600080fd5b5061037e610b5a565b005b34801561038c57600080fd5b506103a760048036038101906103a29190612e75565b610cac565b005b3480156103b557600080fd5b506103d060048036038101906103cb91906130e8565b610ccc565b005b3480156103de57600080fd5b506103f960048036038101906103f4919061309f565b610d52565b005b34801561040757600080fd5b50610410610de8565b60405161041d9190613400565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613052565b610dfb565b005b34801561045b57600080fd5b50610464610e8d565b6040516104719190613400565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c91906130e8565b610ea0565b6040516104ae9190613399565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d99190612e08565b610eb6565b6040516104eb919061353d565b60405180910390f35b34801561050057600080fd5b50610509610f86565b005b34801561051757600080fd5b5061052061100e565b60405161052d9190613399565b60405180910390f35b34801561054257600080fd5b5061054b611038565b604051610558919061353d565b60405180910390f35b34801561056d57600080fd5b5061057661103e565b604051610583919061341b565b60405180910390f35b6105a660048036038101906105a191906130e8565b6110d0565b005b3480156105b457600080fd5b506105cf60048036038101906105ca9190612f4b565b611282565b005b3480156105dd57600080fd5b506105e66113fa565b6040516105f3919061341b565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e91906130e8565b611488565b005b34801561063157600080fd5b5061064c60048036038101906106479190612ec8565b61150e565b005b34801561065a57600080fd5b50610675600480360381019061067091906130e8565b61158a565b604051610682919061341b565b60405180910390f35b34801561069757600080fd5b506106a06116b4565b6040516106ad919061341b565b60405180910390f35b3480156106c257600080fd5b506106cb611742565b6040516106d8919061353d565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190612fcb565b611748565b005b34801561071657600080fd5b50610731600480360381019061072c9190612e35565b6117e1565b60405161073e9190613400565b60405180910390f35b34801561075357600080fd5b5061076e60048036038101906107699190613115565b611875565b005b34801561077c57600080fd5b5061079760048036038101906107929190612e08565b6118ff565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108745750610873826119f7565b5b9050919050565b60606002805461088a906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546108b6906137f8565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611a61565b61094e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099482610ea0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1b611aaf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a4d5750610a4b81610a46611aaf565b6117e1565b155b15610a84576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a8f838383611ab7565b505050565b600c5481565b610aa2611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610ac061100e565b73ffffffffffffffffffffffffffffffffffffffff1614610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d9061347d565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610b3d611b69565b6001546000540303905090565b610b55838383611b72565b505050565b610b62611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610b8061100e565b73ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd9061347d565b60405180910390fd5b60026009541415610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c13906134dd565b60405180910390fd5b60026009819055506000610c2e61100e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c5190613384565b60006040518083038185875af1925050503d8060008114610c8e576040519150601f19603f3d011682016040523d82523d6000602084013e610c93565b606091505b5050905080610ca157600080fd5b506001600981905550565b610cc78383836040518060200160405280600081525061150e565b505050565b610cd4611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610cf261100e565b73ffffffffffffffffffffffffffffffffffffffff1614610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f9061347d565b60405180910390fd5b80600c8190555050565b610d5a611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610d7861100e565b73ffffffffffffffffffffffffffffffffffffffff1614610dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc59061347d565b60405180910390fd5b80600b9080519060200190610de4929190612afd565b5050565b600f60019054906101000a900460ff1681565b610e03611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610e2161100e565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e9061347d565b60405180910390fd5b8181600a9190610e88929190612b83565b505050565b600f60009054906101000a900460ff1681565b6000610eab82612028565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f8e611aaf565b73ffffffffffffffffffffffffffffffffffffffff16610fac61100e565b73ffffffffffffffffffffffffffffffffffffffff1614611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff99061347d565b60405180910390fd5b61100c60006122b7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461104d906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611079906137f8565b80156110c65780601f1061109b576101008083540402835291602001916110c6565b820191906000526020600020905b8154815290600101906020018083116110a957829003601f168201915b5050505050905090565b60026009541415611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906134dd565b60405180910390fd5b60026009819055506000811180156111305750600e548111155b61116f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111669061345d565b60405180910390fd5b600d548161117b610b33565b611185919061362d565b11156111c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bd906134bd565b60405180910390fd5b600f60009054906101000a900460ff1615611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d9061349d565b60405180910390fd5b80600c5461122491906136b4565b341015611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d9061351d565b60405180910390fd5b611277611271611aaf565b8261237d565b600160098190555050565b61128a611aaf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ef576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112fc611aaf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a9611aaf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ee9190613400565b60405180910390a35050565b600b8054611407906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611433906137f8565b80156114805780601f1061145557610100808354040283529160200191611480565b820191906000526020600020905b81548152906001019060200180831161146357829003601f168201915b505050505081565b611490611aaf565b73ffffffffffffffffffffffffffffffffffffffff166114ae61100e565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb9061347d565b60405180910390fd5b80600e8190555050565b611519848484611b72565b6115388373ffffffffffffffffffffffffffffffffffffffff1661239b565b801561154d575061154b848484846123be565b155b15611584576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061159582611a61565b6115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb906134fd565b60405180910390fd5b600f60019054906101000a900460ff1615611621576115f161251e565b6115fa836125b0565b60405160200161160b929190613360565b60405160208183030381529060405290506116af565b600b805461162e906137f8565b80601f016020809104026020016040519081016040528092919081815260200182805461165a906137f8565b80156116a75780601f1061167c576101008083540402835291602001916116a7565b820191906000526020600020905b81548152906001019060200180831161168a57829003601f168201915b505050505090505b919050565b600a80546116c1906137f8565b80601f01602080910402602001604051908101604052809291908181526020018280546116ed906137f8565b801561173a5780601f1061170f5761010080835404028352916020019161173a565b820191906000526020600020905b81548152906001019060200180831161171d57829003601f168201915b505050505081565b600d5481565b611750611aaf565b73ffffffffffffffffffffffffffffffffffffffff1661176e61100e565b73ffffffffffffffffffffffffffffffffffffffff16146117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb9061347d565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61187d611aaf565b73ffffffffffffffffffffffffffffffffffffffff1661189b61100e565b73ffffffffffffffffffffffffffffffffffffffff16146118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e89061347d565b60405180910390fd5b6118fb818361237d565b5050565b611907611aaf565b73ffffffffffffffffffffffffffffffffffffffff1661192561100e565b73ffffffffffffffffffffffffffffffffffffffff161461197b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119729061347d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e29061343d565b60405180910390fd5b6119f4816122b7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a6c611b69565b11158015611a7b575060005482105b8015611aa8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611b7d82612028565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611be8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c09611aaf565b73ffffffffffffffffffffffffffffffffffffffff161480611c385750611c3785611c32611aaf565b6117e1565b5b80611c7d5750611c46611aaf565b73ffffffffffffffffffffffffffffffffffffffff16611c658461090d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611cb6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d1d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d2a8585856001612711565b611d3660008487611ab7565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611fb6576000548214611fb557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120218585856001612717565b5050505050565b612030612c09565b60008290508061203e611b69565b1115801561204d575060005481105b15612280576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161227e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121625780925050506122b2565b5b60011561227d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122785780925050506122b2565b612163565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61239782826040518060200160405280600081525061271d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123e4611aaf565b8786866040518563ffffffff1660e01b815260040161240694939291906133b4565b602060405180830381600087803b15801561242057600080fd5b505af192505050801561245157506040513d601f19601f8201168201806040525081019061244e9190613025565b60015b6124cb573d8060008114612481576040519150601f19603f3d011682016040523d82523d6000602084013e612486565b606091505b506000815114156124c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461252d906137f8565b80601f0160208091040260200160405190810160405280929190818152602001828054612559906137f8565b80156125a65780601f1061257b576101008083540402835291602001916125a6565b820191906000526020600020905b81548152906001019060200180831161258957829003601f168201915b5050505050905090565b606060008214156125f8576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270c565b600082905060005b6000821461262a5780806126139061385b565b915050600a826126239190613683565b9150612600565b60008167ffffffffffffffff81111561264657612645613991565b5b6040519080825280601f01601f1916602001820160405280156126785781602001600182028036833780820191505090505b5090505b6000851461270557600182612691919061370e565b9150600a856126a091906138a4565b60306126ac919061362d565b60f81b8183815181106126c2576126c1613962565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126fe9190613683565b945061267c565b8093505050505b919050565b50505050565b50505050565b61272a838383600161272f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561279c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127d7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e46000868387612711565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129ae57506129ad8773ffffffffffffffffffffffffffffffffffffffff1661239b565b5b15612a74575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a2360008884806001019550886123be565b612a59576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129b4578260005414612a6f57600080fd5b612ae0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a75575b816000819055505050612af66000868387612717565b5050505050565b828054612b09906137f8565b90600052602060002090601f016020900481019282612b2b5760008555612b72565b82601f10612b4457805160ff1916838001178555612b72565b82800160010185558215612b72579182015b82811115612b71578251825591602001919060010190612b56565b5b509050612b7f9190612c4c565b5090565b828054612b8f906137f8565b90600052602060002090601f016020900481019282612bb15760008555612bf8565b82601f10612bca57803560ff1916838001178555612bf8565b82800160010185558215612bf8579182015b82811115612bf7578235825591602001919060010190612bdc565b5b509050612c059190612c4c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c65576000816000905550600101612c4d565b5090565b6000612c7c612c778461357d565b613558565b905082815260208101848484011115612c9857612c976139cf565b5b612ca38482856137b6565b509392505050565b6000612cbe612cb9846135ae565b613558565b905082815260208101848484011115612cda57612cd96139cf565b5b612ce58482856137b6565b509392505050565b600081359050612cfc81613b60565b92915050565b600081359050612d1181613b77565b92915050565b600081359050612d2681613b8e565b92915050565b600081519050612d3b81613b8e565b92915050565b600082601f830112612d5657612d556139c5565b5b8135612d66848260208601612c69565b91505092915050565b60008083601f840112612d8557612d846139c5565b5b8235905067ffffffffffffffff811115612da257612da16139c0565b5b602083019150836001820283011115612dbe57612dbd6139ca565b5b9250929050565b600082601f830112612dda57612dd96139c5565b5b8135612dea848260208601612cab565b91505092915050565b600081359050612e0281613ba5565b92915050565b600060208284031215612e1e57612e1d6139d9565b5b6000612e2c84828501612ced565b91505092915050565b60008060408385031215612e4c57612e4b6139d9565b5b6000612e5a85828601612ced565b9250506020612e6b85828601612ced565b9150509250929050565b600080600060608486031215612e8e57612e8d6139d9565b5b6000612e9c86828701612ced565b9350506020612ead86828701612ced565b9250506040612ebe86828701612df3565b9150509250925092565b60008060008060808587031215612ee257612ee16139d9565b5b6000612ef087828801612ced565b9450506020612f0187828801612ced565b9350506040612f1287828801612df3565b925050606085013567ffffffffffffffff811115612f3357612f326139d4565b5b612f3f87828801612d41565b91505092959194509250565b60008060408385031215612f6257612f616139d9565b5b6000612f7085828601612ced565b9250506020612f8185828601612d02565b9150509250929050565b60008060408385031215612fa257612fa16139d9565b5b6000612fb085828601612ced565b9250506020612fc185828601612df3565b9150509250929050565b600060208284031215612fe157612fe06139d9565b5b6000612fef84828501612d02565b91505092915050565b60006020828403121561300e5761300d6139d9565b5b600061301c84828501612d17565b91505092915050565b60006020828403121561303b5761303a6139d9565b5b600061304984828501612d2c565b91505092915050565b60008060208385031215613069576130686139d9565b5b600083013567ffffffffffffffff811115613087576130866139d4565b5b61309385828601612d6f565b92509250509250929050565b6000602082840312156130b5576130b46139d9565b5b600082013567ffffffffffffffff8111156130d3576130d26139d4565b5b6130df84828501612dc5565b91505092915050565b6000602082840312156130fe576130fd6139d9565b5b600061310c84828501612df3565b91505092915050565b6000806040838503121561312c5761312b6139d9565b5b600061313a85828601612df3565b925050602061314b85828601612ced565b9150509250929050565b61315e81613742565b82525050565b61316d81613754565b82525050565b600061317e826135df565b61318881856135f5565b93506131988185602086016137c5565b6131a1816139de565b840191505092915050565b60006131b7826135ea565b6131c18185613611565b93506131d18185602086016137c5565b6131da816139de565b840191505092915050565b60006131f0826135ea565b6131fa8185613622565b935061320a8185602086016137c5565b80840191505092915050565b6000613223602683613611565b915061322e826139ef565b604082019050919050565b6000613246601483613611565b915061325182613a3e565b602082019050919050565b6000613269602083613611565b915061327482613a67565b602082019050919050565b600061328c601783613611565b915061329782613a90565b602082019050919050565b60006132af600083613606565b91506132ba82613ab9565b600082019050919050565b60006132d2601483613611565b91506132dd82613abc565b602082019050919050565b60006132f5601f83613611565b915061330082613ae5565b602082019050919050565b6000613318601383613611565b915061332382613b0e565b602082019050919050565b600061333b601383613611565b915061334682613b37565b602082019050919050565b61335a816137ac565b82525050565b600061336c82856131e5565b915061337882846131e5565b91508190509392505050565b600061338f826132a2565b9150819050919050565b60006020820190506133ae6000830184613155565b92915050565b60006080820190506133c96000830187613155565b6133d66020830186613155565b6133e36040830185613351565b81810360608301526133f58184613173565b905095945050505050565b60006020820190506134156000830184613164565b92915050565b6000602082019050818103600083015261343581846131ac565b905092915050565b6000602082019050818103600083015261345681613216565b9050919050565b6000602082019050818103600083015261347681613239565b9050919050565b600060208201905081810360008301526134968161325c565b9050919050565b600060208201905081810360008301526134b68161327f565b9050919050565b600060208201905081810360008301526134d6816132c5565b9050919050565b600060208201905081810360008301526134f6816132e8565b9050919050565b600060208201905081810360008301526135168161330b565b9050919050565b600060208201905081810360008301526135368161332e565b9050919050565b60006020820190506135526000830184613351565b92915050565b6000613562613573565b905061356e828261382a565b919050565b6000604051905090565b600067ffffffffffffffff82111561359857613597613991565b5b6135a1826139de565b9050602081019050919050565b600067ffffffffffffffff8211156135c9576135c8613991565b5b6135d2826139de565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613638826137ac565b9150613643836137ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613678576136776138d5565b5b828201905092915050565b600061368e826137ac565b9150613699836137ac565b9250826136a9576136a8613904565b5b828204905092915050565b60006136bf826137ac565b91506136ca836137ac565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613703576137026138d5565b5b828202905092915050565b6000613719826137ac565b9150613724836137ac565b925082821015613737576137366138d5565b5b828203905092915050565b600061374d8261378c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156137e35780820151818401526020810190506137c8565b838111156137f2576000848401525b50505050565b6000600282049050600182168061381057607f821691505b6020821081141561382457613823613933565b5b50919050565b613833826139de565b810181811067ffffffffffffffff8211171561385257613851613991565b5b80604052505050565b6000613866826137ac565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613899576138986138d5565b5b600182019050919050565b60006138af826137ac565b91506138ba836137ac565b9250826138ca576138c9613904565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613b6981613742565b8114613b7457600080fd5b50565b613b8081613754565b8114613b8b57600080fd5b50565b613b9781613760565b8114613ba257600080fd5b50565b613bae816137ac565b8114613bb957600080fd5b5056fea2646970667358221220d296df260d78fbc01203c4f2e04e38afce9b8968395f2c575778f469ce2d3d1464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47558:2389:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29769:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32882:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34385:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33948:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47721:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48997:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29018:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35250:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49081:150;;;;;;;;;;;;;:::i;:::-;;35491:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48779:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49265:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47864:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49404:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47841:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32690:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30138:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7527:103;;;;;;;;;;;;;:::i;:::-;;6876:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47795:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33051:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48041:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34661:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47682:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48860:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35747:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49626:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47650:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47759:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48691:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35019:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48455:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7785:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29769:305;29871:4;29923:25;29908:40;;;:11;:40;;;;:105;;;;29980:33;29965:48;;;:11;:48;;;;29908:105;:158;;;;30030:36;30054:11;30030:23;:36::i;:::-;29908:158;29888:178;;29769:305;;;:::o;32882:100::-;32936:13;32969:5;32962:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32882:100;:::o;34385:204::-;34453:7;34478:16;34486:7;34478;:16::i;:::-;34473:64;;34503:34;;;;;;;;;;;;;;34473:64;34557:15;:24;34573:7;34557:24;;;;;;;;;;;;;;;;;;;;;34550:31;;34385:204;;;:::o;33948:371::-;34021:13;34037:24;34053:7;34037:15;:24::i;:::-;34021:40;;34082:5;34076:11;;:2;:11;;;34072:48;;;34096:24;;;;;;;;;;;;;;34072:48;34153:5;34137:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34163:37;34180:5;34187:12;:10;:12::i;:::-;34163:16;:37::i;:::-;34162:38;34137:63;34133:138;;;34224:35;;;;;;;;;;;;;;34133:138;34283:28;34292:2;34296:7;34305:5;34283:8;:28::i;:::-;34010:309;33948:371;;:::o;47721:33::-;;;;:::o;48997:77::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49062:6:::1;49053;;:15;;;;;;;;;;;;;;;;;;48997:77:::0;:::o;29018:303::-;29062:7;29287:15;:13;:15::i;:::-;29272:12;;29256:13;;:28;:46;29249:53;;29018:303;:::o;35250:170::-;35384:28;35394:4;35400:2;35404:7;35384:9;:28::i;:::-;35250:170;;;:::o;49081:150::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1850:1:::1;2448:7;;:19;;2440:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1850:1;2581:7;:18;;;;49139:7:::2;49160;:5;:7::i;:::-;49152:21;;49181;49152:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49138:69;;;49222:2;49214:11;;;::::0;::::2;;49131:100;1806:1:::1;2760:7;:22;;;;49081:150::o:0;35491:185::-;35629:39;35646:4;35652:2;35656:7;35629:39;;;;;;;;;;;;:16;:39::i;:::-;35491:185;;;:::o;48779:74::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48842:5:::1;48835:4;:12;;;;48779:74:::0;:::o;49265:132::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49373:18:::1;49353:17;:38;;;;;;;;;;;;:::i;:::-;;49265:132:::0;:::o;47864:20::-;;;;;;;;;;;;;:::o;49404:98::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49489:7:::1;;49473:13;:23;;;;;;;:::i;:::-;;49404:98:::0;;:::o;47841:18::-;;;;;;;;;;;;;:::o;32690:125::-;32754:7;32781:21;32794:7;32781:12;:21::i;:::-;:26;;;32774:33;;32690:125;;;:::o;30138:206::-;30202:7;30243:1;30226:19;;:5;:19;;;30222:60;;;30254:28;;;;;;;;;;;;;;30222:60;30308:12;:19;30321:5;30308:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30300:36;;30293:43;;30138:206;;;:::o;7527:103::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7592:30:::1;7619:1;7592:18;:30::i;:::-;7527:103::o:0;6876:87::-;6922:7;6949:6;;;;;;;;;;;6942:13;;6876:87;:::o;47795:38::-;;;;:::o;33051:104::-;33107:13;33140:7;33133:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33051:104;:::o;48041:407::-;1850:1;2448:7;;:19;;2440:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1850:1;2581:7;:18;;;;48133:1:::1;48119:11;:15;:52;;;;;48153:18;;48138:11;:33;;48119:52;48111:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48242:9;;48227:11;48211:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48203:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48292:6;;;;;;;;;;;48291:7;48283:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48361:11;48354:4;;:18;;;;:::i;:::-;48341:9;:31;;48333:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48406:36;48416:12;:10;:12::i;:::-;48430:11;48406:9;:36::i;:::-;1806:1:::0;2760:7;:22;;;;48041:407;:::o;34661:287::-;34772:12;:10;:12::i;:::-;34760:24;;:8;:24;;;34756:54;;;34793:17;;;;;;;;;;;;;;34756:54;34868:8;34823:18;:32;34842:12;:10;:12::i;:::-;34823:32;;;;;;;;;;;;;;;:42;34856:8;34823:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34921:8;34892:48;;34907:12;:10;:12::i;:::-;34892:48;;;34931:8;34892:48;;;;;;:::i;:::-;;;;;;;;34661:287;;:::o;47682:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48860:130::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48965:19:::1;48944:18;:40;;;;48860:130:::0;:::o;35747:369::-;35914:28;35924:4;35930:2;35934:7;35914:9;:28::i;:::-;35957:15;:2;:13;;;:15::i;:::-;:76;;;;;35977:56;36008:4;36014:2;36018:7;36027:5;35977:30;:56::i;:::-;35976:57;35957:76;35953:156;;;36057:40;;;;;;;;;;;;;;35953:156;35747:369;;;;:::o;49626:318::-;49700:13;49732:17;49740:8;49732:7;:17::i;:::-;49724:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;49789:8;;;;;;;;;;;49785:154;;;49843:10;:8;:10::i;:::-;49855:19;:8;:17;:19::i;:::-;49826:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49812:64;;;;49785:154;49912:17;49905:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49626:318;;;;:::o;47650:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47759:31::-;;;;:::o;48691:81::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48760:6:::1;48749:8;;:17;;;;;;;;;;;;;;;;;;48691:81:::0;:::o;35019:164::-;35116:4;35140:18;:25;35159:5;35140:25;;;;;;;;;;;;;;;:35;35166:8;35140:35;;;;;;;;;;;;;;;;;;;;;;;;;35133:42;;35019:164;;;;:::o;48455:127::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48543:33:::1;48553:9;48564:11;48543:9;:33::i;:::-;48455:127:::0;;:::o;7785:201::-;7107:12;:10;:12::i;:::-;7096:23;;:7;:5;:7::i;:::-;:23;;;7088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7894:1:::1;7874:22;;:8;:22;;;;7866:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7950:28;7969:8;7950:18;:28::i;:::-;7785:201:::0;:::o;19660:157::-;19745:4;19784:25;19769:40;;;:11;:40;;;;19762:47;;19660:157;;;:::o;36371:174::-;36428:4;36471:7;36452:15;:13;:15::i;:::-;:26;;:53;;;;;36492:13;;36482:7;:23;36452:53;:85;;;;;36510:11;:20;36522:7;36510:20;;;;;;;;;;;:27;;;;;;;;;;;;36509:28;36452:85;36445:92;;36371:174;;;:::o;5600:98::-;5653:7;5680:10;5673:17;;5600:98;:::o;44528:196::-;44670:2;44643:15;:24;44659:7;44643:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44708:7;44704:2;44688:28;;44697:5;44688:28;;;;;;;;;;;;44528:196;;;:::o;48589:95::-;48654:7;48677:1;48670:8;;48589:95;:::o;39471:2130::-;39586:35;39624:21;39637:7;39624:12;:21::i;:::-;39586:59;;39684:4;39662:26;;:13;:18;;;:26;;;39658:67;;39697:28;;;;;;;;;;;;;;39658:67;39738:22;39780:4;39764:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39801:36;39818:4;39824:12;:10;:12::i;:::-;39801:16;:36::i;:::-;39764:73;:126;;;;39878:12;:10;:12::i;:::-;39854:36;;:20;39866:7;39854:11;:20::i;:::-;:36;;;39764:126;39738:153;;39909:17;39904:66;;39935:35;;;;;;;;;;;;;;39904:66;39999:1;39985:16;;:2;:16;;;39981:52;;;40010:23;;;;;;;;;;;;;;39981:52;40046:43;40068:4;40074:2;40078:7;40087:1;40046:21;:43::i;:::-;40154:35;40171:1;40175:7;40184:4;40154:8;:35::i;:::-;40515:1;40485:12;:18;40498:4;40485:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40559:1;40531:12;:16;40544:2;40531:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40577:31;40611:11;:20;40623:7;40611:20;;;;;;;;;;;40577:54;;40662:2;40646:8;:13;;;:18;;;;;;;;;;;;;;;;;;40712:15;40679:8;:23;;;:49;;;;;;;;;;;;;;;;;;40980:19;41012:1;41002:7;:11;40980:33;;41028:31;41062:11;:24;41074:11;41062:24;;;;;;;;;;;41028:58;;41130:1;41105:27;;:8;:13;;;;;;;;;;;;:27;;;41101:384;;;41315:13;;41300:11;:28;41296:174;;41369:4;41353:8;:13;;;:20;;;;;;;;;;;;;;;;;;41422:13;:28;;;41396:8;:23;;;:54;;;;;;;;;;;;;;;;;;41296:174;41101:384;40460:1036;;;41532:7;41528:2;41513:27;;41522:4;41513:27;;;;;;;;;;;;41551:42;41572:4;41578:2;41582:7;41591:1;41551:20;:42::i;:::-;39575:2026;;39471:2130;;;:::o;31519:1109::-;31581:21;;:::i;:::-;31615:12;31630:7;31615:22;;31698:4;31679:15;:13;:15::i;:::-;:23;;:47;;;;;31713:13;;31706:4;:20;31679:47;31675:886;;;31747:31;31781:11;:17;31793:4;31781:17;;;;;;;;;;;31747:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31822:9;:16;;;31817:729;;31893:1;31867:28;;:9;:14;;;:28;;;31863:101;;31931:9;31924:16;;;;;;31863:101;32266:261;32273:4;32266:261;;;32306:6;;;;;;;;32351:11;:17;32363:4;32351:17;;;;;;;;;;;32339:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32425:1;32399:28;;:9;:14;;;:28;;;32395:109;;32467:9;32460:16;;;;;;32395:109;32266:261;;;31817:729;31728:833;31675:886;32589:31;;;;;;;;;;;;;;31519:1109;;;;:::o;8146:191::-;8220:16;8239:6;;;;;;;;;;;8220:25;;8265:8;8256:6;;:17;;;;;;;;;;;;;;;;;;8320:8;8289:40;;8310:8;8289:40;;;;;;;;;;;;8209:128;8146:191;:::o;36553:104::-;36622:27;36632:2;36636:8;36622:27;;;;;;;;;;;;:9;:27::i;:::-;36553:104;;:::o;9577:326::-;9637:4;9894:1;9872:7;:19;;;:23;9865:30;;9577:326;;;:::o;45216:667::-;45379:4;45416:2;45400:36;;;45437:12;:10;:12::i;:::-;45451:4;45457:7;45466:5;45400:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45396:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45651:1;45634:6;:13;:18;45630:235;;;45680:40;;;;;;;;;;;;;;45630:235;45823:6;45817:13;45808:6;45804:2;45800:15;45793:38;45396:480;45529:45;;;45519:55;;;:6;:55;;;;45512:62;;;45216:667;;;;;;:::o;49509:110::-;49569:13;49600;49593:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49509:110;:::o;3162:723::-;3218:13;3448:1;3439:5;:10;3435:53;;;3466:10;;;;;;;;;;;;;;;;;;;;;3435:53;3498:12;3513:5;3498:20;;3529:14;3554:78;3569:1;3561:4;:9;3554:78;;3587:8;;;;;:::i;:::-;;;;3618:2;3610:10;;;;;:::i;:::-;;;3554:78;;;3642:19;3674:6;3664:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3642:39;;3692:154;3708:1;3699:5;:10;3692:154;;3736:1;3726:11;;;;;:::i;:::-;;;3803:2;3795:5;:10;;;;:::i;:::-;3782:2;:24;;;;:::i;:::-;3769:39;;3752:6;3759;3752:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3832:2;3823:11;;;;;:::i;:::-;;;3692:154;;;3870:6;3856:21;;;;;3162:723;;;;:::o;46531:159::-;;;;;:::o;47349:158::-;;;;;:::o;37020:163::-;37143:32;37149:2;37153:8;37163:5;37170:4;37143:5;:32::i;:::-;37020:163;;;:::o;37442:1775::-;37581:20;37604:13;;37581:36;;37646:1;37632:16;;:2;:16;;;37628:48;;;37657:19;;;;;;;;;;;;;;37628:48;37703:1;37691:8;:13;37687:44;;;37713:18;;;;;;;;;;;;;;37687:44;37744:61;37774:1;37778:2;37782:12;37796:8;37744:21;:61::i;:::-;38117:8;38082:12;:16;38095:2;38082:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38181:8;38141:12;:16;38154:2;38141:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38240:2;38207:11;:25;38219:12;38207:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38307:15;38257:11;:25;38269:12;38257:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38340:20;38363:12;38340:35;;38390:11;38419:8;38404:12;:23;38390:37;;38448:4;:23;;;;;38456:15;:2;:13;;;:15::i;:::-;38448:23;38444:641;;;38492:314;38548:12;38544:2;38523:38;;38540:1;38523:38;;;;;;;;;;;;38589:69;38628:1;38632:2;38636:14;;;;;;38652:5;38589:30;:69::i;:::-;38584:174;;38694:40;;;;;;;;;;;;;;38584:174;38801:3;38785:12;:19;;38492:314;;38887:12;38870:13;;:29;38866:43;;38901:8;;;38866:43;38444:641;;;38950:120;39006:14;;;;;;39002:2;38981:40;;38998:1;38981:40;;;;;;;;;;;;39065:3;39049:12;:19;;38950:120;;38444:641;39115:12;39099:13;:28;;;;38057:1082;;39149:60;39178:1;39182:2;39186:12;39200:8;39149:20;:60::i;:::-;37570:1647;37442:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:329::-;2909:6;2958:2;2946:9;2937:7;2933:23;2929:32;2926:119;;;2964:79;;:::i;:::-;2926:119;3084:1;3109:53;3154:7;3145:6;3134:9;3130:22;3109:53;:::i;:::-;3099:63;;3055:117;2850:329;;;;:::o;3185:474::-;3253:6;3261;3310:2;3298:9;3289:7;3285:23;3281:32;3278:119;;;3316:79;;:::i;:::-;3278:119;3436:1;3461:53;3506:7;3497:6;3486:9;3482:22;3461:53;:::i;:::-;3451:63;;3407:117;3563:2;3589:53;3634:7;3625:6;3614:9;3610:22;3589:53;:::i;:::-;3579:63;;3534:118;3185:474;;;;;:::o;3665:619::-;3742:6;3750;3758;3807:2;3795:9;3786:7;3782:23;3778:32;3775:119;;;3813:79;;:::i;:::-;3775:119;3933:1;3958:53;4003:7;3994:6;3983:9;3979:22;3958:53;:::i;:::-;3948:63;;3904:117;4060:2;4086:53;4131:7;4122:6;4111:9;4107:22;4086:53;:::i;:::-;4076:63;;4031:118;4188:2;4214:53;4259:7;4250:6;4239:9;4235:22;4214:53;:::i;:::-;4204:63;;4159:118;3665:619;;;;;:::o;4290:943::-;4385:6;4393;4401;4409;4458:3;4446:9;4437:7;4433:23;4429:33;4426:120;;;4465:79;;:::i;:::-;4426:120;4585:1;4610:53;4655:7;4646:6;4635:9;4631:22;4610:53;:::i;:::-;4600:63;;4556:117;4712:2;4738:53;4783:7;4774:6;4763:9;4759:22;4738:53;:::i;:::-;4728:63;;4683:118;4840:2;4866:53;4911:7;4902:6;4891:9;4887:22;4866:53;:::i;:::-;4856:63;;4811:118;4996:2;4985:9;4981:18;4968:32;5027:18;5019:6;5016:30;5013:117;;;5049:79;;:::i;:::-;5013:117;5154:62;5208:7;5199:6;5188:9;5184:22;5154:62;:::i;:::-;5144:72;;4939:287;4290:943;;;;;;;:::o;5239:468::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:50;5682:7;5673:6;5662:9;5658:22;5640:50;:::i;:::-;5630:60;;5585:115;5239:468;;;;;:::o;5713:474::-;5781:6;5789;5838:2;5826:9;5817:7;5813:23;5809:32;5806:119;;;5844:79;;:::i;:::-;5806:119;5964:1;5989:53;6034:7;6025:6;6014:9;6010:22;5989:53;:::i;:::-;5979:63;;5935:117;6091:2;6117:53;6162:7;6153:6;6142:9;6138:22;6117:53;:::i;:::-;6107:63;;6062:118;5713:474;;;;;:::o;6193:323::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:50;6491:7;6482:6;6471:9;6467:22;6449:50;:::i;:::-;6439:60;;6395:114;6193:323;;;;:::o;6522:327::-;6580:6;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:52;6824:7;6815:6;6804:9;6800:22;6780:52;:::i;:::-;6770:62;;6726:116;6522:327;;;;:::o;6855:349::-;6924:6;6973:2;6961:9;6952:7;6948:23;6944:32;6941:119;;;6979:79;;:::i;:::-;6941:119;7099:1;7124:63;7179:7;7170:6;7159:9;7155:22;7124:63;:::i;:::-;7114:73;;7070:127;6855:349;;;;:::o;7210:529::-;7281:6;7289;7338:2;7326:9;7317:7;7313:23;7309:32;7306:119;;;7344:79;;:::i;:::-;7306:119;7492:1;7481:9;7477:17;7464:31;7522:18;7514:6;7511:30;7508:117;;;7544:79;;:::i;:::-;7508:117;7657:65;7714:7;7705:6;7694:9;7690:22;7657:65;:::i;:::-;7639:83;;;;7435:297;7210:529;;;;;:::o;7745:509::-;7814:6;7863:2;7851:9;7842:7;7838:23;7834:32;7831:119;;;7869:79;;:::i;:::-;7831:119;8017:1;8006:9;8002:17;7989:31;8047:18;8039:6;8036:30;8033:117;;;8069:79;;:::i;:::-;8033:117;8174:63;8229:7;8220:6;8209:9;8205:22;8174:63;:::i;:::-;8164:73;;7960:287;7745:509;;;;:::o;8260:329::-;8319:6;8368:2;8356:9;8347:7;8343:23;8339:32;8336:119;;;8374:79;;:::i;:::-;8336:119;8494:1;8519:53;8564:7;8555:6;8544:9;8540:22;8519:53;:::i;:::-;8509:63;;8465:117;8260:329;;;;:::o;8595:474::-;8663:6;8671;8720:2;8708:9;8699:7;8695:23;8691:32;8688:119;;;8726:79;;:::i;:::-;8688:119;8846:1;8871:53;8916:7;8907:6;8896:9;8892:22;8871:53;:::i;:::-;8861:63;;8817:117;8973:2;8999:53;9044:7;9035:6;9024:9;9020:22;8999:53;:::i;:::-;8989:63;;8944:118;8595:474;;;;;:::o;9075:118::-;9162:24;9180:5;9162:24;:::i;:::-;9157:3;9150:37;9075:118;;:::o;9199:109::-;9280:21;9295:5;9280:21;:::i;:::-;9275:3;9268:34;9199:109;;:::o;9314:360::-;9400:3;9428:38;9460:5;9428:38;:::i;:::-;9482:70;9545:6;9540:3;9482:70;:::i;:::-;9475:77;;9561:52;9606:6;9601:3;9594:4;9587:5;9583:16;9561:52;:::i;:::-;9638:29;9660:6;9638:29;:::i;:::-;9633:3;9629:39;9622:46;;9404:270;9314:360;;;;:::o;9680:364::-;9768:3;9796:39;9829:5;9796:39;:::i;:::-;9851:71;9915:6;9910:3;9851:71;:::i;:::-;9844:78;;9931:52;9976:6;9971:3;9964:4;9957:5;9953:16;9931:52;:::i;:::-;10008:29;10030:6;10008:29;:::i;:::-;10003:3;9999:39;9992:46;;9772:272;9680:364;;;;:::o;10050:377::-;10156:3;10184:39;10217:5;10184:39;:::i;:::-;10239:89;10321:6;10316:3;10239:89;:::i;:::-;10232:96;;10337:52;10382:6;10377:3;10370:4;10363:5;10359:16;10337:52;:::i;:::-;10414:6;10409:3;10405:16;10398:23;;10160:267;10050:377;;;;:::o;10433:366::-;10575:3;10596:67;10660:2;10655:3;10596:67;:::i;:::-;10589:74;;10672:93;10761:3;10672:93;:::i;:::-;10790:2;10785:3;10781:12;10774:19;;10433:366;;;:::o;10805:::-;10947:3;10968:67;11032:2;11027:3;10968:67;:::i;:::-;10961:74;;11044:93;11133:3;11044:93;:::i;:::-;11162:2;11157:3;11153:12;11146:19;;10805:366;;;:::o;11177:::-;11319:3;11340:67;11404:2;11399:3;11340:67;:::i;:::-;11333:74;;11416:93;11505:3;11416:93;:::i;:::-;11534:2;11529:3;11525:12;11518:19;;11177:366;;;:::o;11549:::-;11691:3;11712:67;11776:2;11771:3;11712:67;:::i;:::-;11705:74;;11788:93;11877:3;11788:93;:::i;:::-;11906:2;11901:3;11897:12;11890:19;;11549:366;;;:::o;11921:398::-;12080:3;12101:83;12182:1;12177:3;12101:83;:::i;:::-;12094:90;;12193:93;12282:3;12193:93;:::i;:::-;12311:1;12306:3;12302:11;12295:18;;11921:398;;;:::o;12325:366::-;12467:3;12488:67;12552:2;12547:3;12488:67;:::i;:::-;12481:74;;12564:93;12653:3;12564:93;:::i;:::-;12682:2;12677:3;12673:12;12666:19;;12325:366;;;:::o;12697:::-;12839:3;12860:67;12924:2;12919:3;12860:67;:::i;:::-;12853:74;;12936:93;13025:3;12936:93;:::i;:::-;13054:2;13049:3;13045:12;13038:19;;12697:366;;;:::o;13069:::-;13211:3;13232:67;13296:2;13291:3;13232:67;:::i;:::-;13225:74;;13308:93;13397:3;13308:93;:::i;:::-;13426:2;13421:3;13417:12;13410:19;;13069:366;;;:::o;13441:::-;13583:3;13604:67;13668:2;13663:3;13604:67;:::i;:::-;13597:74;;13680:93;13769:3;13680:93;:::i;:::-;13798:2;13793:3;13789:12;13782:19;;13441:366;;;:::o;13813:118::-;13900:24;13918:5;13900:24;:::i;:::-;13895:3;13888:37;13813:118;;:::o;13937:435::-;14117:3;14139:95;14230:3;14221:6;14139:95;:::i;:::-;14132:102;;14251:95;14342:3;14333:6;14251:95;:::i;:::-;14244:102;;14363:3;14356:10;;13937:435;;;;;:::o;14378:379::-;14562:3;14584:147;14727:3;14584:147;:::i;:::-;14577:154;;14748:3;14741:10;;14378:379;;;:::o;14763:222::-;14856:4;14894:2;14883:9;14879:18;14871:26;;14907:71;14975:1;14964:9;14960:17;14951:6;14907:71;:::i;:::-;14763:222;;;;:::o;14991:640::-;15186:4;15224:3;15213:9;15209:19;15201:27;;15238:71;15306:1;15295:9;15291:17;15282:6;15238:71;:::i;:::-;15319:72;15387:2;15376:9;15372:18;15363:6;15319:72;:::i;:::-;15401;15469:2;15458:9;15454:18;15445:6;15401:72;:::i;:::-;15520:9;15514:4;15510:20;15505:2;15494:9;15490:18;15483:48;15548:76;15619:4;15610:6;15548:76;:::i;:::-;15540:84;;14991:640;;;;;;;:::o;15637:210::-;15724:4;15762:2;15751:9;15747:18;15739:26;;15775:65;15837:1;15826:9;15822:17;15813:6;15775:65;:::i;:::-;15637:210;;;;:::o;15853:313::-;15966:4;16004:2;15993:9;15989:18;15981:26;;16053:9;16047:4;16043:20;16039:1;16028:9;16024:17;16017:47;16081:78;16154:4;16145:6;16081:78;:::i;:::-;16073:86;;15853:313;;;;:::o;16172:419::-;16338:4;16376:2;16365:9;16361:18;16353:26;;16425:9;16419:4;16415:20;16411:1;16400:9;16396:17;16389:47;16453:131;16579:4;16453:131;:::i;:::-;16445:139;;16172:419;;;:::o;16597:::-;16763:4;16801:2;16790:9;16786:18;16778:26;;16850:9;16844:4;16840:20;16836:1;16825:9;16821:17;16814:47;16878:131;17004:4;16878:131;:::i;:::-;16870:139;;16597:419;;;:::o;17022:::-;17188:4;17226:2;17215:9;17211:18;17203:26;;17275:9;17269:4;17265:20;17261:1;17250:9;17246:17;17239:47;17303:131;17429:4;17303:131;:::i;:::-;17295:139;;17022:419;;;:::o;17447:::-;17613:4;17651:2;17640:9;17636:18;17628:26;;17700:9;17694:4;17690:20;17686:1;17675:9;17671:17;17664:47;17728:131;17854:4;17728:131;:::i;:::-;17720:139;;17447:419;;;:::o;17872:::-;18038:4;18076:2;18065:9;18061:18;18053:26;;18125:9;18119:4;18115:20;18111:1;18100:9;18096:17;18089:47;18153:131;18279:4;18153:131;:::i;:::-;18145:139;;17872:419;;;:::o;18297:::-;18463:4;18501:2;18490:9;18486:18;18478:26;;18550:9;18544:4;18540:20;18536:1;18525:9;18521:17;18514:47;18578:131;18704:4;18578:131;:::i;:::-;18570:139;;18297:419;;;:::o;18722:::-;18888:4;18926:2;18915:9;18911:18;18903:26;;18975:9;18969:4;18965:20;18961:1;18950:9;18946:17;18939:47;19003:131;19129:4;19003:131;:::i;:::-;18995:139;;18722:419;;;:::o;19147:::-;19313:4;19351:2;19340:9;19336:18;19328:26;;19400:9;19394:4;19390:20;19386:1;19375:9;19371:17;19364:47;19428:131;19554:4;19428:131;:::i;:::-;19420:139;;19147:419;;;:::o;19572:222::-;19665:4;19703:2;19692:9;19688:18;19680:26;;19716:71;19784:1;19773:9;19769:17;19760:6;19716:71;:::i;:::-;19572:222;;;;:::o;19800:129::-;19834:6;19861:20;;:::i;:::-;19851:30;;19890:33;19918:4;19910:6;19890:33;:::i;:::-;19800:129;;;:::o;19935:75::-;19968:6;20001:2;19995:9;19985:19;;19935:75;:::o;20016:307::-;20077:4;20167:18;20159:6;20156:30;20153:56;;;20189:18;;:::i;:::-;20153:56;20227:29;20249:6;20227:29;:::i;:::-;20219:37;;20311:4;20305;20301:15;20293:23;;20016:307;;;:::o;20329:308::-;20391:4;20481:18;20473:6;20470:30;20467:56;;;20503:18;;:::i;:::-;20467:56;20541:29;20563:6;20541:29;:::i;:::-;20533:37;;20625:4;20619;20615:15;20607:23;;20329:308;;;:::o;20643:98::-;20694:6;20728:5;20722:12;20712:22;;20643:98;;;:::o;20747:99::-;20799:6;20833:5;20827:12;20817:22;;20747:99;;;:::o;20852:168::-;20935:11;20969:6;20964:3;20957:19;21009:4;21004:3;21000:14;20985:29;;20852:168;;;;:::o;21026:147::-;21127:11;21164:3;21149:18;;21026:147;;;;:::o;21179:169::-;21263:11;21297:6;21292:3;21285:19;21337:4;21332:3;21328:14;21313:29;;21179:169;;;;:::o;21354:148::-;21456:11;21493:3;21478:18;;21354:148;;;;:::o;21508:305::-;21548:3;21567:20;21585:1;21567:20;:::i;:::-;21562:25;;21601:20;21619:1;21601:20;:::i;:::-;21596:25;;21755:1;21687:66;21683:74;21680:1;21677:81;21674:107;;;21761:18;;:::i;:::-;21674:107;21805:1;21802;21798:9;21791:16;;21508:305;;;;:::o;21819:185::-;21859:1;21876:20;21894:1;21876:20;:::i;:::-;21871:25;;21910:20;21928:1;21910:20;:::i;:::-;21905:25;;21949:1;21939:35;;21954:18;;:::i;:::-;21939:35;21996:1;21993;21989:9;21984:14;;21819:185;;;;:::o;22010:348::-;22050:7;22073:20;22091:1;22073:20;:::i;:::-;22068:25;;22107:20;22125:1;22107:20;:::i;:::-;22102:25;;22295:1;22227:66;22223:74;22220:1;22217:81;22212:1;22205:9;22198:17;22194:105;22191:131;;;22302:18;;:::i;:::-;22191:131;22350:1;22347;22343:9;22332:20;;22010:348;;;;:::o;22364:191::-;22404:4;22424:20;22442:1;22424:20;:::i;:::-;22419:25;;22458:20;22476:1;22458:20;:::i;:::-;22453:25;;22497:1;22494;22491:8;22488:34;;;22502:18;;:::i;:::-;22488:34;22547:1;22544;22540:9;22532:17;;22364:191;;;;:::o;22561:96::-;22598:7;22627:24;22645:5;22627:24;:::i;:::-;22616:35;;22561:96;;;:::o;22663:90::-;22697:7;22740:5;22733:13;22726:21;22715:32;;22663:90;;;:::o;22759:149::-;22795:7;22835:66;22828:5;22824:78;22813:89;;22759:149;;;:::o;22914:126::-;22951:7;22991:42;22984:5;22980:54;22969:65;;22914:126;;;:::o;23046:77::-;23083:7;23112:5;23101:16;;23046:77;;;:::o;23129:154::-;23213:6;23208:3;23203;23190:30;23275:1;23266:6;23261:3;23257:16;23250:27;23129:154;;;:::o;23289:307::-;23357:1;23367:113;23381:6;23378:1;23375:13;23367:113;;;23466:1;23461:3;23457:11;23451:18;23447:1;23442:3;23438:11;23431:39;23403:2;23400:1;23396:10;23391:15;;23367:113;;;23498:6;23495:1;23492:13;23489:101;;;23578:1;23569:6;23564:3;23560:16;23553:27;23489:101;23338:258;23289:307;;;:::o;23602:320::-;23646:6;23683:1;23677:4;23673:12;23663:22;;23730:1;23724:4;23720:12;23751:18;23741:81;;23807:4;23799:6;23795:17;23785:27;;23741:81;23869:2;23861:6;23858:14;23838:18;23835:38;23832:84;;;23888:18;;:::i;:::-;23832:84;23653:269;23602:320;;;:::o;23928:281::-;24011:27;24033:4;24011:27;:::i;:::-;24003:6;23999:40;24141:6;24129:10;24126:22;24105:18;24093:10;24090:34;24087:62;24084:88;;;24152:18;;:::i;:::-;24084:88;24192:10;24188:2;24181:22;23971:238;23928:281;;:::o;24215:233::-;24254:3;24277:24;24295:5;24277:24;:::i;:::-;24268:33;;24323:66;24316:5;24313:77;24310:103;;;24393:18;;:::i;:::-;24310:103;24440:1;24433:5;24429:13;24422:20;;24215:233;;;:::o;24454:176::-;24486:1;24503:20;24521:1;24503:20;:::i;:::-;24498:25;;24537:20;24555:1;24537:20;:::i;:::-;24532:25;;24576:1;24566:35;;24581:18;;:::i;:::-;24566:35;24622:1;24619;24615:9;24610:14;;24454:176;;;;:::o;24636:180::-;24684:77;24681:1;24674:88;24781:4;24778:1;24771:15;24805:4;24802:1;24795:15;24822:180;24870:77;24867:1;24860:88;24967:4;24964:1;24957:15;24991:4;24988:1;24981:15;25008:180;25056:77;25053:1;25046:88;25153:4;25150:1;25143:15;25177:4;25174:1;25167:15;25194:180;25242:77;25239:1;25232:88;25339:4;25336:1;25329:15;25363:4;25360:1;25353:15;25380:180;25428:77;25425:1;25418:88;25525:4;25522:1;25515:15;25549:4;25546:1;25539:15;25566:117;25675:1;25672;25665:12;25689:117;25798:1;25795;25788:12;25812:117;25921:1;25918;25911:12;25935:117;26044:1;26041;26034:12;26058:117;26167:1;26164;26157:12;26181:117;26290:1;26287;26280:12;26304:102;26345:6;26396:2;26392:7;26387:2;26380:5;26376:14;26372:28;26362:38;;26304:102;;;:::o;26412:225::-;26552:34;26548:1;26540:6;26536:14;26529:58;26621:8;26616:2;26608:6;26604:15;26597:33;26412:225;:::o;26643:170::-;26783:22;26779:1;26771:6;26767:14;26760:46;26643:170;:::o;26819:182::-;26959:34;26955:1;26947:6;26943:14;26936:58;26819:182;:::o;27007:173::-;27147:25;27143:1;27135:6;27131:14;27124:49;27007:173;:::o;27186:114::-;;:::o;27306:170::-;27446:22;27442:1;27434:6;27430:14;27423:46;27306:170;:::o;27482:181::-;27622:33;27618:1;27610:6;27606:14;27599:57;27482:181;:::o;27669:169::-;27809:21;27805:1;27797:6;27793:14;27786:45;27669:169;:::o;27844:::-;27984:21;27980:1;27972:6;27968:14;27961:45;27844:169;:::o;28019:122::-;28092:24;28110:5;28092:24;:::i;:::-;28085:5;28082:35;28072:63;;28131:1;28128;28121:12;28072:63;28019:122;:::o;28147:116::-;28217:21;28232:5;28217:21;:::i;:::-;28210:5;28207:32;28197:60;;28253:1;28250;28243:12;28197:60;28147:116;:::o;28269:120::-;28341:23;28358:5;28341:23;:::i;:::-;28334:5;28331:34;28321:62;;28379:1;28376;28369:12;28321:62;28269:120;:::o;28395:122::-;28468:24;28486:5;28468:24;:::i;:::-;28461:5;28458:35;28448:63;;28507:1;28504;28497:12;28448:63;28395:122;:::o
Swarm Source
ipfs://d296df260d78fbc01203c4f2e04e38afce9b8968395f2c575778f469ce2d3d14
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.