ERC-721
Overview
Max Total Supply
0 TGV2
Holders
1,136
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TGV2Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TrendyGangV2
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract TrendyGangV2 is ERC721, Ownable, ReentrancyGuard { using Strings for uint256; bool public paused = true; bool public claimAllowed = true; uint256 mintPrice = 100000000000000000; // 0.1 uint256 public trendyGangV1Minted = 0; uint256 public nvlpeMinted = 0; uint256 public immutable nvlpeMintStartIndex; uint256 public constant MAX_SUPPLY = 8888; uint256 public immutable nvlpeSupply; uint256 public constant START_INDEX = 1; address public immutable trendyGangV1Address; mapping(address => NVLPE_CONTRACT) public nvlpeContracts; mapping(bytes => bool) public sigClaimed; address public authSigner; struct NVLPE_CONTRACT { IERC721 _contract; uint256 _totalSupply; mapping(uint256 => bool) claimed; } struct addressCollection { address contractAddress; uint256 contractSupply; } struct NVLPE_CLAIM { address contractAddress; uint256 tokenId; } event Collection( address indexed contractAddress, uint256 indexed contractSupply ); event AuthSignerSet(address indexed newSigner); constructor(addressCollection[] memory _collection) ERC721("TrendyGangV2", "TGV2") { authSigner = msg.sender; trendyGangV1Address = _collection[0].contractAddress; nvlpeMintStartIndex = START_INDEX + _collection[0].contractSupply; nvlpeSupply = MAX_SUPPLY - _collection[0].contractSupply; for (uint256 i = 0; i < _collection.length; i++) { NVLPE_CONTRACT storage nvlpeContract = nvlpeContracts[ _collection[i].contractAddress ]; nvlpeContract._contract = IERC721(_collection[i].contractAddress); nvlpeContract._totalSupply = _collection[i].contractSupply; emit Collection( _collection[i].contractAddress, _collection[i].contractSupply ); } } function setAuthSigner(address _authSigner) external onlyOwner { authSigner = _authSigner; emit AuthSignerSet(_authSigner); } function airdropToTrendyGangV1Owner( address _trendyGangV1Address, uint256 mintAmount ) external onlyOwner nonReentrant { require( trendyGangV1Minted + mintAmount < nvlpeMintStartIndex, "TokenId is out of range" ); uint256 _startIndex = START_INDEX + trendyGangV1Minted; for ( uint256 i = _startIndex; i < _startIndex + mintAmount; i++ ) { trendyGangV1OwnerMint(_trendyGangV1Address, i); } } function trendyGangV1OwnerMint( address _trendyGangV1Address, uint256 tokenId ) internal { require(_trendyGangV1Address == trendyGangV1Address, "Invalid contract address"); require( !nvlpeContracts[_trendyGangV1Address].claimed[tokenId], "tokenId has already been claimed" ); address ownerOftrendyGangV1 = fetchOwnerOfTokenId( _trendyGangV1Address, tokenId ); nvlpeContracts[_trendyGangV1Address].claimed[tokenId] = true; _safeMint(ownerOftrendyGangV1, tokenId); trendyGangV1Minted++; } function nvlpeOwnerBatchClaim(NVLPE_CLAIM[] calldata nvlpeItem) external nonReentrant { require(!paused, "Contract is paused"); require(claimAllowed, "Claims are not currently allowed"); for (uint256 i = 0; i < nvlpeItem.length; i++) { require(nvlpeItem[i].contractAddress != trendyGangV1Address, "Invalid contract address"); nvlpeOwnerMint(nvlpeItem[i].contractAddress, nvlpeItem[i].tokenId); } } function nvlpeOwnerMint(address _contractAddress, uint256 tokenId) internal { require(nvlpeContracts[_contractAddress]._totalSupply != 0, "invalid contract address"); require( !nvlpeContracts[_contractAddress].claimed[tokenId], "tokenId has already been claimed" ); require( tokenId <= nvlpeContracts[_contractAddress]._totalSupply, "TokenId is out of range" ); require( nvlpeMinted + 1 <= nvlpeSupply, "Out of supply" ); address nvlpeOwner = fetchOwnerOfTokenId(_contractAddress, tokenId); require(nvlpeOwner == msg.sender, "Not Owner"); nvlpeContracts[_contractAddress].claimed[tokenId] = true; _safeMint(msg.sender, nvlpeMintStartIndex + nvlpeMinted); nvlpeMinted++; } function mint() external nonReentrant payable { require(!paused, "Contract is paused"); require(!claimAllowed, "Public mint not permitted during claim period"); require(msg.value >= mintPrice, "Not enough ETH sent"); require(nvlpeMinted + 1 <= nvlpeSupply, "Out of supply"); _safeMint(msg.sender, nvlpeMintStartIndex + nvlpeMinted); nvlpeMinted++; } function claimBySig( uint256 nonce, uint256 amount, bytes calldata sig ) external nonReentrant { require(!paused, "Contract is paused"); require( nvlpeMinted + amount <= nvlpeSupply, "Out of supply" ); bytes32 hashes = keccak256( abi.encodePacked( "\x19Ethereum Signed Message:\n32", keccak256(abi.encodePacked(nonce, amount, msg.sender)) ) ); require(recoverSigner(hashes, sig) == authSigner, "Invalid sig"); require(!sigClaimed[sig], "Signature used"); sigClaimed[sig] = true; for (uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, nvlpeMintStartIndex + nvlpeMinted); nvlpeMinted++; } } function fetchOwnerOfTokenId(address _contractAddress, uint256 _tokenId) public view returns (address) { return nvlpeContracts[_contractAddress]._contract.ownerOf(_tokenId); } function checkClaimed(address _contractAddress, uint256 _tokenId) public view returns (bool) { return nvlpeContracts[_contractAddress].claimed[_tokenId]; } // metadata string public baseURI = "https://trendygang.io/media/pre-reveal.json"; bool public revealed = false; string public constant BASE_EXTENSION = ".json"; function setReveal(bool _reveal) public onlyOwner { revealed = _reveal; } function setClaimAllowed(bool _claimAllowed) public onlyOwner { claimAllowed = _claimAllowed; } function setMintPrice(uint256 _mintPrice) public onlyOwner { mintPrice = _mintPrice; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory newURI) public onlyOwner { baseURI = newURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!revealed) return baseURI; return string( abi.encodePacked( baseURI, Strings.toString(_tokenId), BASE_EXTENSION ) ); } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { payable(owner()).transfer(address(this).balance); } function splitSignature(bytes memory sig) internal pure returns ( uint8, bytes32, bytes32 ) { require(sig.length == 65, "invalid sig"); bytes32 r; bytes32 s; uint8 v; assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } return (v, r, s); } function recoverSigner(bytes32 message, bytes memory sig) internal pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); return ecrecover(message, v, r, s); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"components":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"contractSupply","type":"uint256"}],"internalType":"struct TrendyGangV2.addressCollection[]","name":"_collection","type":"tuple[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newSigner","type":"address"}],"name":"AuthSignerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"contractSupply","type":"uint256"}],"name":"Collection","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":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"START_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_trendyGangV1Address","type":"address"},{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"airdropToTrendyGangV1Owner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"authSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"checkClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"claimBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"fetchOwnerOfTokenId","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nvlpeContracts","outputs":[{"internalType":"contract IERC721","name":"_contract","type":"address"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nvlpeMintStartIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nvlpeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct TrendyGangV2.NVLPE_CLAIM[]","name":"nvlpeItem","type":"tuple[]"}],"name":"nvlpeOwnerBatchClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nvlpeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"_authSigner","type":"address"}],"name":"setAuthSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimAllowed","type":"bool"}],"name":"setClaimAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"","type":"bytes"}],"name":"sigClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"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":"trendyGangV1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trendyGangV1Minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526001600860006101000a81548160ff0219169083151502179055506001600860016101000a81548160ff02191690831515021790555067016345785d8a00006009556000600a556000600b556040518060600160405280602b815260200162005c8e602b9139600f90805190602001906200008192919062000635565b506000601060006101000a81548160ff021916908315150217905550348015620000aa57600080fd5b5060405162005cb938038062005cb98339818101604052810190620000d0919062000808565b6040518060400160405280600c81526020017f5472656e647947616e67563200000000000000000000000000000000000000008152506040518060400160405280600481526020017f544756320000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015492919062000635565b5080600190805190602001906200016d92919062000635565b50505062000190620001846200056760201b60201c565b6200056f60201b60201c565b600160078190555033600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060008151811062000214577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508060008151811062000291577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001516001620002ab9190620008a5565b6080818152505080600081518110620002ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001516122b862000308919062000902565b60a0818152505060005b81518110156200055f576000600c60008484815181106200035c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050828281518110620003de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600001518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082828151811062000466577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151602001518160010181905550828281518110620004b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160200151838381518110620004fa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000015173ffffffffffffffffffffffffffffffffffffffff167f1e2c07e4e028f3ae13812908ec8fcdc86ea3700f00579098aeffbec738a73ebd60405160405180910390a35080806200055690620009e7565b91505062000312565b505062000b07565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000643906200097b565b90600052602060002090601f016020900481019282620006675760008555620006b3565b82601f106200068257805160ff1916838001178555620006b3565b82800160010185558215620006b3579182015b82811115620006b257825182559160200191906001019062000695565b5b509050620006c29190620006c6565b5090565b5b80821115620006e1576000816000905550600101620006c7565b5090565b6000620006fc620006f68462000876565b6200084d565b905080838252602082019050828560408602820111156200071c57600080fd5b60005b858110156200075057816200073588826200079e565b8452602084019350604083019250506001810190506200071f565b5050509392505050565b6000815190506200076b8162000ad3565b92915050565b600082601f8301126200078357600080fd5b815162000795848260208601620006e5565b91505092915050565b600060408284031215620007b157600080fd5b620007bd60406200084d565b90506000620007cf848285016200075a565b6000830152506020620007e584828501620007f1565b60208301525092915050565b600081519050620008028162000aed565b92915050565b6000602082840312156200081b57600080fd5b600082015167ffffffffffffffff8111156200083657600080fd5b620008448482850162000771565b91505092915050565b6000620008596200086c565b9050620008678282620009b1565b919050565b6000604051905090565b600067ffffffffffffffff82111562000894576200089362000a93565b5b602082029050602081019050919050565b6000620008b28262000971565b9150620008bf8362000971565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008f757620008f662000a35565b5b828201905092915050565b60006200090f8262000971565b91506200091c8362000971565b92508282101562000932576200093162000a35565b5b828203905092915050565b60006200094a8262000951565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200099457607f821691505b60208210811415620009ab57620009aa62000a64565b5b50919050565b620009bc8262000ac2565b810181811067ffffffffffffffff82111715620009de57620009dd62000a93565b5b80604052505050565b6000620009f48262000971565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000a2a5762000a2962000a35565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000ade816200093d565b811462000aea57600080fd5b50565b62000af88162000971565b811462000b0457600080fd5b50565b60805160a05160c05160601c61511562000b7960003960008181610e7c015281816117240152612e3a01526000818161114a015281816113370152818161183501526124560152600081816111c20152818161159201528181611cb401528181611ec601526125b601526151156000f3fe6080604052600436106102675760003560e01c806366a5736411610144578063a4993a1f116100b6578063df3fdf001161007a578063df3fdf0014610910578063e41a7d2b1461093b578063e4f7945414610966578063e985e9c51461098f578063f2fde38b146109cc578063f4a0a528146109f557610267565b8063a4993a1f14610817578063b42348ac14610854578063b88d4fde1461087f578063c1661a26146108a8578063c87b56dd146108d357610267565b8063872f0b9711610108578063872f0b97146107075780638c4057f8146107325780638da5cb5b1461076f5780638e84c4811461079a57806395d89b41146107c3578063a22cb465146107ee57610267565b806366a573641461061f5780636c0360eb1461064a57806370a0823114610675578063715018a6146106b25780637c4daa14146106c957610267565b80632ea17d74116101dd57806351830227116101a1578063518302271461050d57806355cd9a8d1461053857806355f804b3146105635780635c975abb1461058c5780636352211e146105b757806364a3ff76146105f457610267565b80632ea17d741461043a57806332cb6b0c146104655780633ccfd60b1461049057806342842e0e146104a75780634d3dccf9146104d057610267565b8063099607fa1161022f578063099607fa146103635780631249c58b1461038c57806316c38b3c1461039657806323b872dd146103bf5780632a3d6788146103e85780632a3f300c1461041157610267565b806301ffc9a71461026c5780630532bca1146102a957806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e919061393d565b610a1e565b6040516102a09190614197565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb91906136ff565b610b00565b005b3480156102de57600080fd5b506102e7610b8f565b6040516102f49190614220565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613a11565b610c21565b6040516103319190614130565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613893565b610c67565b005b34801561036f57600080fd5b5061038a600480360381019061038591906138cf565b610d7f565b005b610394611015565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613914565b611212565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061378d565b611237565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190613a3a565b611297565b005b34801561041d57600080fd5b5061043860048036038101906104339190613914565b6115fb565b005b34801561044657600080fd5b5061044f611620565b60405161045c91906145c2565b60405180910390f35b34801561047157600080fd5b5061047a611626565b60405161048791906145c2565b60405180910390f35b34801561049c57600080fd5b506104a561162c565b005b3480156104b357600080fd5b506104ce60048036038101906104c9919061378d565b611684565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613893565b6116a4565b6040516105049190614197565b60405180910390f35b34801561051957600080fd5b5061052261170f565b60405161052f9190614197565b60405180910390f35b34801561054457600080fd5b5061054d611722565b60405161055a9190614130565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906139d0565b611746565b005b34801561059857600080fd5b506105a1611768565b6040516105ae9190614197565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613a11565b61177b565b6040516105eb9190614130565b60405180910390f35b34801561060057600080fd5b5061060961182d565b60405161061691906145c2565b60405180910390f35b34801561062b57600080fd5b50610634611833565b60405161064191906145c2565b60405180910390f35b34801561065657600080fd5b5061065f611857565b60405161066c9190614220565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906136ff565b6118e5565b6040516106a991906145c2565b60405180910390f35b3480156106be57600080fd5b506106c761199d565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906136ff565b6119b1565b6040516106fe9291906141f7565b60405180910390f35b34801561071357600080fd5b5061071c6119f5565b6040516107299190614197565b60405180910390f35b34801561073e57600080fd5b506107596004803603810190610754919061398f565b611a08565b6040516107669190614197565b60405180910390f35b34801561077b57600080fd5b50610784611a3e565b6040516107919190614130565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613914565b611a68565b005b3480156107cf57600080fd5b506107d8611a8d565b6040516107e59190614220565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613857565b611b1f565b005b34801561082357600080fd5b5061083e60048036038101906108399190613893565b611b35565b60405161084b9190614130565b60405180910390f35b34801561086057600080fd5b50610869611c2a565b6040516108769190614130565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a191906137dc565b611c50565b005b3480156108b457600080fd5b506108bd611cb2565b6040516108ca91906145c2565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190613a11565b611cd6565b6040516109079190614220565b60405180910390f35b34801561091c57600080fd5b50610925611e30565b6040516109329190614220565b60405180910390f35b34801561094757600080fd5b50610950611e69565b60405161095d91906145c2565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613893565b611e6e565b005b34801561099b57600080fd5b506109b660048036038101906109b19190613751565b611f8a565b6040516109c39190614197565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee91906136ff565b61201e565b005b348015610a0157600080fd5b50610a1c6004803603810190610a179190613a11565b6120a2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af95750610af8826120b4565b5b9050919050565b610b0861211e565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f9ee0f407fe781f489d612b2879aea89a7ce73492166d123f0b55ec4295626e4d60405160405180910390a250565b606060008054610b9e90614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610bca90614873565b8015610c175780601f10610bec57610100808354040283529160200191610c17565b820191906000526020600020905b815481529060010190602001808311610bfa57829003601f168201915b5050505050905090565b6000610c2c8261219c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c728261177b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90614502565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d026121e7565b73ffffffffffffffffffffffffffffffffffffffff161480610d315750610d3081610d2b6121e7565b611f8a565b5b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614422565b60405180910390fd5b610d7a83836121ef565b505050565b60026007541415610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906145a2565b60405180910390fd5b6002600781905550600860009054906101000a900460ff1615610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490614542565b60405180910390fd5b600860019054906101000a900460ff16610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614382565b60405180910390fd5b60005b82829050811015611008577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16838383818110610eea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050604002016000016020810190610f0291906136ff565b73ffffffffffffffffffffffffffffffffffffffff161415610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614362565b60405180910390fd5b610ff5838383818110610f95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050604002016000016020810190610fad91906136ff565b848484818110610fe6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060400201602001356122a8565b8080611000906148d6565b915050610e6f565b5060016007819055505050565b6002600754141561105b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611052906145a2565b60405180910390fd5b6002600781905550600860009054906101000a900460ff16156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614542565b60405180910390fd5b600860019054906101000a900460ff1615611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906143c2565b60405180910390fd5b600954341015611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906144c2565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600b5461117891906146c7565b11156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090614482565b60405180910390fd5b6111f033600b547f00000000000000000000000000000000000000000000000000000000000000006111eb91906146c7565b612601565b600b6000815480929190611203906148d6565b91905055506001600781905550565b61121a61211e565b80600860006101000a81548160ff02191690831515021790555050565b6112486112426121e7565b8261261f565b611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90614582565b60405180910390fd5b6112928383836126b4565b505050565b600260075414156112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906145a2565b60405180910390fd5b6002600781905550600860009054906101000a900460ff1615611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614542565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083600b5461136491906146c7565b11156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614482565b60405180910390fd5b60008484336040516020016113bc939291906140f3565b604051602081830303815290604052805190602001206040516020016113e291906140cd565b604051602081830303815290604052805190602001209050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114818285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061291b565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce906142e2565b60405180910390fd5b600d83836040516114e9929190614083565b908152602001604051809103902060009054906101000a900460ff1615611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614402565b60405180910390fd5b6001600d8484604051611559929190614083565b908152602001604051809103902060006101000a81548160ff02191690831515021790555060005b848110156115eb576115c033600b547f00000000000000000000000000000000000000000000000000000000000000006115bb91906146c7565b612601565b600b60008154809291906115d3906148d6565b919050555080806115e3906148d6565b915050611581565b5050600160078190555050505050565b61160361211e565b80601060006101000a81548160ff02191690831515021790555050565b600b5481565b6122b881565b61163461211e565b61163c611a3e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611681573d6000803e3d6000fd5b50565b61169f83838360405180602001604052806000815250611c50565b505050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600083815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b61174e61211e565b80600f908051906020019061176492919061347a565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906144e2565b60405180910390fd5b80915050919050565b600a5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f805461186490614873565b80601f016020809104026020016040519081016040528092919081815260200182805461189090614873565b80156118dd5780601f106118b2576101008083540402835291602001916118dd565b820191906000526020600020905b8154815290600101906020018083116118c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906143a2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119a561211e565b6119af6000612990565b565b600c6020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b600860019054906101000a900460ff1681565b600d818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a7061211e565b80600860016101000a81548160ff02191690831515021790555050565b606060018054611a9c90614873565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac890614873565b8015611b155780601f10611aea57610100808354040283529160200191611b15565b820191906000526020600020905b815481529060010190602001808311611af857829003601f168201915b5050505050905090565b611b31611b2a6121e7565b8383612a56565b5050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611bd291906145c2565b60206040518083038186803b158015611bea57600080fd5b505afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c229190613728565b905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c61611c5b6121e7565b8361261f565b611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614582565b60405180910390fd5b611cac84848484612bc3565b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6060611ce182612c1f565b611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906144a2565b60405180910390fd5b601060009054906101000a900460ff16611dc657600f8054611d4190614873565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6d90614873565b8015611dba5780601f10611d8f57610100808354040283529160200191611dba565b820191906000526020600020905b815481529060010190602001808311611d9d57829003601f168201915b50505050509050611e2b565b600f611dd183612c8b565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611e199392919061409c565b60405160208183030381529060405290505b919050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600181565b611e7661211e565b60026007541415611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906145a2565b60405180910390fd5b60026007819055507f000000000000000000000000000000000000000000000000000000000000000081600a54611ef391906146c7565b10611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906143e2565b60405180910390fd5b6000600a546001611f4491906146c7565b905060008190505b8282611f5891906146c7565b811015611f7c57611f698482612e38565b8080611f74906148d6565b915050611f4c565b505060016007819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202661211e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90614282565b60405180910390fd5b61209f81612990565b50565b6120aa61211e565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121266121e7565b73ffffffffffffffffffffffffffffffffffffffff16612144611a3e565b73ffffffffffffffffffffffffffffffffffffffff161461219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614462565b60405180910390fd5b565b6121a581612c1f565b6121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db906144e2565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122628361177b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590614562565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600082815260200190815260200160002060009054906101000a900460ff16156123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614522565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154811115612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b906143e2565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600b5461248491906146c7565b11156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc90614482565b60405180910390fd5b60006124d18383611b35565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253890614342565b60405180910390fd5b6001600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506125e433600b547f00000000000000000000000000000000000000000000000000000000000000006125df91906146c7565b612601565b600b60008154809291906125f7906148d6565b9190505550505050565b61261b828260405180602001604052806000815250613008565b5050565b60008061262b8361177b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266d575061266c8185611f8a565b5b806126ab57508373ffffffffffffffffffffffffffffffffffffffff1661269384610c21565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126d48261177b565b73ffffffffffffffffffffffffffffffffffffffff161461272a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612721906142a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279190614302565b60405180910390fd5b6127a5838383613063565b6127b06000826121ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612800919061474e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285791906146c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612916838383613068565b505050565b60008060008061292a8561306d565b8093508194508295505050506001868484846040516000815260200160405260405161295994939291906141b2565b6020604051602081039080840390855afa15801561297b573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614322565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb69190614197565b60405180910390a3505050565b612bce8484846126b4565b612bda848484846130e6565b612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090614262565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612cd3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e33565b600082905060005b60008214612d05578080612cee906148d6565b915050600a82612cfe919061471d565b9150612cdb565b60008167ffffffffffffffff811115612d47577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d795781602001600182028036833780820191505090505b5090505b60008514612e2c57600182612d92919061474e565b9150600a85612da19190614957565b6030612dad91906146c7565b60f81b818381518110612de9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e25919061471d565b9450612d7d565b8093505050505b919050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebd90614362565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600082815260200190815260200160002060009054906101000a900460ff1615612f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5e90614522565b60405180910390fd5b6000612f738383611b35565b90506001600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612feb8183612601565b600a6000815480929190612ffe906148d6565b9190505550505050565b613012838361327d565b61301f60008484846130e6565b61305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590614262565b60405180910390fd5b505050565b505050565b505050565b600080600060418451146130b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ad90614242565b60405180910390fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b60006131078473ffffffffffffffffffffffffffffffffffffffff16613457565b15613270578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131306121e7565b8786866040518563ffffffff1660e01b8152600401613152949392919061414b565b602060405180830381600087803b15801561316c57600080fd5b505af192505050801561319d57506040513d601f19601f8201168201806040525081019061319a9190613966565b60015b613220573d80600081146131cd576040519150601f19603f3d011682016040523d82523d6000602084013e6131d2565b606091505b50600081511415613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f90614262565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613275565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e490614442565b60405180910390fd5b6132f681612c1f565b15613336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332d906142c2565b60405180910390fd5b61334260008383613063565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339291906146c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461345360008383613068565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461348690614873565b90600052602060002090601f0160209004810192826134a857600085556134ef565b82601f106134c157805160ff19168380011785556134ef565b828001600101855582156134ef579182015b828111156134ee5782518255916020019190600101906134d3565b5b5090506134fc9190613500565b5090565b5b80821115613519576000816000905550600101613501565b5090565b600061353061352b84614602565b6145dd565b90508281526020810184848401111561354857600080fd5b613553848285614831565b509392505050565b600061356e61356984614633565b6145dd565b90508281526020810184848401111561358657600080fd5b613591848285614831565b509392505050565b6000813590506135a881615083565b92915050565b6000815190506135bd81615083565b92915050565b60008083601f8401126135d557600080fd5b8235905067ffffffffffffffff8111156135ee57600080fd5b60208301915083604082028301111561360657600080fd5b9250929050565b60008135905061361c8161509a565b92915050565b600081359050613631816150b1565b92915050565b600081519050613646816150b1565b92915050565b60008083601f84011261365e57600080fd5b8235905067ffffffffffffffff81111561367757600080fd5b60208301915083600182028301111561368f57600080fd5b9250929050565b600082601f8301126136a757600080fd5b81356136b784826020860161351d565b91505092915050565b600082601f8301126136d157600080fd5b81356136e184826020860161355b565b91505092915050565b6000813590506136f9816150c8565b92915050565b60006020828403121561371157600080fd5b600061371f84828501613599565b91505092915050565b60006020828403121561373a57600080fd5b6000613748848285016135ae565b91505092915050565b6000806040838503121561376457600080fd5b600061377285828601613599565b925050602061378385828601613599565b9150509250929050565b6000806000606084860312156137a257600080fd5b60006137b086828701613599565b93505060206137c186828701613599565b92505060406137d2868287016136ea565b9150509250925092565b600080600080608085870312156137f257600080fd5b600061380087828801613599565b945050602061381187828801613599565b9350506040613822878288016136ea565b925050606085013567ffffffffffffffff81111561383f57600080fd5b61384b87828801613696565b91505092959194509250565b6000806040838503121561386a57600080fd5b600061387885828601613599565b92505060206138898582860161360d565b9150509250929050565b600080604083850312156138a657600080fd5b60006138b485828601613599565b92505060206138c5858286016136ea565b9150509250929050565b600080602083850312156138e257600080fd5b600083013567ffffffffffffffff8111156138fc57600080fd5b613908858286016135c3565b92509250509250929050565b60006020828403121561392657600080fd5b60006139348482850161360d565b91505092915050565b60006020828403121561394f57600080fd5b600061395d84828501613622565b91505092915050565b60006020828403121561397857600080fd5b600061398684828501613637565b91505092915050565b6000602082840312156139a157600080fd5b600082013567ffffffffffffffff8111156139bb57600080fd5b6139c784828501613696565b91505092915050565b6000602082840312156139e257600080fd5b600082013567ffffffffffffffff8111156139fc57600080fd5b613a08848285016136c0565b91505092915050565b600060208284031215613a2357600080fd5b6000613a31848285016136ea565b91505092915050565b60008060008060608587031215613a5057600080fd5b6000613a5e878288016136ea565b9450506020613a6f878288016136ea565b935050604085013567ffffffffffffffff811115613a8c57600080fd5b613a988782880161364c565b925092505092959194509250565b613aaf81614782565b82525050565b613ac6613ac182614782565b61491f565b82525050565b613ad581614794565b82525050565b613ae4816147a0565b82525050565b613afb613af6826147a0565b614931565b82525050565b6000613b0d83856146a0565b9350613b1a838584614831565b82840190509392505050565b6000613b3182614679565b613b3b818561468f565b9350613b4b818560208601614840565b613b5481614a44565b840191505092915050565b613b688161480d565b82525050565b6000613b7982614684565b613b8381856146ab565b9350613b93818560208601614840565b613b9c81614a44565b840191505092915050565b6000613bb282614684565b613bbc81856146bc565b9350613bcc818560208601614840565b80840191505092915050565b60008154613be581614873565b613bef81866146bc565b94506001821660008114613c0a5760018114613c1b57613c4e565b60ff19831686528186019350613c4e565b613c2485614664565b60005b83811015613c4657815481890152600182019150602081019050613c27565b838801955050505b50505092915050565b6000613c64601c836146bc565b9150613c6f82614a62565b601c82019050919050565b6000613c87600b836146ab565b9150613c9282614a8b565b602082019050919050565b6000613caa6032836146ab565b9150613cb582614ab4565b604082019050919050565b6000613ccd6026836146ab565b9150613cd882614b03565b604082019050919050565b6000613cf06025836146ab565b9150613cfb82614b52565b604082019050919050565b6000613d13601c836146ab565b9150613d1e82614ba1565b602082019050919050565b6000613d36600b836146ab565b9150613d4182614bca565b602082019050919050565b6000613d596024836146ab565b9150613d6482614bf3565b604082019050919050565b6000613d7c6019836146ab565b9150613d8782614c42565b602082019050919050565b6000613d9f6009836146ab565b9150613daa82614c6b565b602082019050919050565b6000613dc26018836146ab565b9150613dcd82614c94565b602082019050919050565b6000613de56020836146ab565b9150613df082614cbd565b602082019050919050565b6000613e086029836146ab565b9150613e1382614ce6565b604082019050919050565b6000613e2b602d836146ab565b9150613e3682614d35565b604082019050919050565b6000613e4e6017836146ab565b9150613e5982614d84565b602082019050919050565b6000613e71600e836146ab565b9150613e7c82614dad565b602082019050919050565b6000613e94603e836146ab565b9150613e9f82614dd6565b604082019050919050565b6000613eb76020836146ab565b9150613ec282614e25565b602082019050919050565b6000613eda6020836146ab565b9150613ee582614e4e565b602082019050919050565b6000613efd600d836146ab565b9150613f0882614e77565b602082019050919050565b6000613f20602f836146ab565b9150613f2b82614ea0565b604082019050919050565b6000613f436013836146ab565b9150613f4e82614eef565b602082019050919050565b6000613f666018836146ab565b9150613f7182614f18565b602082019050919050565b6000613f896021836146ab565b9150613f9482614f41565b604082019050919050565b6000613fac6020836146ab565b9150613fb782614f90565b602082019050919050565b6000613fcf6012836146ab565b9150613fda82614fb9565b602082019050919050565b6000613ff26018836146ab565b9150613ffd82614fe2565b602082019050919050565b6000614015602e836146ab565b91506140208261500b565b604082019050919050565b6000614038601f836146ab565b91506140438261505a565b602082019050919050565b614057816147f6565b82525050565b61406e614069826147f6565b61494d565b82525050565b61407d81614800565b82525050565b6000614090828486613b01565b91508190509392505050565b60006140a88286613bd8565b91506140b48285613ba7565b91506140c08284613ba7565b9150819050949350505050565b60006140d882613c57565b91506140e48284613aea565b60208201915081905092915050565b60006140ff828661405d565b60208201915061410f828561405d565b60208201915061411f8284613ab5565b601482019150819050949350505050565b60006020820190506141456000830184613aa6565b92915050565b60006080820190506141606000830187613aa6565b61416d6020830186613aa6565b61417a604083018561404e565b818103606083015261418c8184613b26565b905095945050505050565b60006020820190506141ac6000830184613acc565b92915050565b60006080820190506141c76000830187613adb565b6141d46020830186614074565b6141e16040830185613adb565b6141ee6060830184613adb565b95945050505050565b600060408201905061420c6000830185613b5f565b614219602083018461404e565b9392505050565b6000602082019050818103600083015261423a8184613b6e565b905092915050565b6000602082019050818103600083015261425b81613c7a565b9050919050565b6000602082019050818103600083015261427b81613c9d565b9050919050565b6000602082019050818103600083015261429b81613cc0565b9050919050565b600060208201905081810360008301526142bb81613ce3565b9050919050565b600060208201905081810360008301526142db81613d06565b9050919050565b600060208201905081810360008301526142fb81613d29565b9050919050565b6000602082019050818103600083015261431b81613d4c565b9050919050565b6000602082019050818103600083015261433b81613d6f565b9050919050565b6000602082019050818103600083015261435b81613d92565b9050919050565b6000602082019050818103600083015261437b81613db5565b9050919050565b6000602082019050818103600083015261439b81613dd8565b9050919050565b600060208201905081810360008301526143bb81613dfb565b9050919050565b600060208201905081810360008301526143db81613e1e565b9050919050565b600060208201905081810360008301526143fb81613e41565b9050919050565b6000602082019050818103600083015261441b81613e64565b9050919050565b6000602082019050818103600083015261443b81613e87565b9050919050565b6000602082019050818103600083015261445b81613eaa565b9050919050565b6000602082019050818103600083015261447b81613ecd565b9050919050565b6000602082019050818103600083015261449b81613ef0565b9050919050565b600060208201905081810360008301526144bb81613f13565b9050919050565b600060208201905081810360008301526144db81613f36565b9050919050565b600060208201905081810360008301526144fb81613f59565b9050919050565b6000602082019050818103600083015261451b81613f7c565b9050919050565b6000602082019050818103600083015261453b81613f9f565b9050919050565b6000602082019050818103600083015261455b81613fc2565b9050919050565b6000602082019050818103600083015261457b81613fe5565b9050919050565b6000602082019050818103600083015261459b81614008565b9050919050565b600060208201905081810360008301526145bb8161402b565b9050919050565b60006020820190506145d7600083018461404e565b92915050565b60006145e76145f8565b90506145f382826148a5565b919050565b6000604051905090565b600067ffffffffffffffff82111561461d5761461c614a15565b5b61462682614a44565b9050602081019050919050565b600067ffffffffffffffff82111561464e5761464d614a15565b5b61465782614a44565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d2826147f6565b91506146dd836147f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471257614711614988565b5b828201905092915050565b6000614728826147f6565b9150614733836147f6565b925082614743576147426149b7565b5b828204905092915050565b6000614759826147f6565b9150614764836147f6565b92508282101561477757614776614988565b5b828203905092915050565b600061478d826147d6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006148188261481f565b9050919050565b600061482a826147d6565b9050919050565b82818337600083830152505050565b60005b8381101561485e578082015181840152602081019050614843565b8381111561486d576000848401525b50505050565b6000600282049050600182168061488b57607f821691505b6020821081141561489f5761489e6149e6565b5b50919050565b6148ae82614a44565b810181811067ffffffffffffffff821117156148cd576148cc614a15565b5b80604052505050565b60006148e1826147f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491457614913614988565b5b600182019050919050565b600061492a8261493b565b9050919050565b6000819050919050565b600061494682614a55565b9050919050565b6000819050919050565b6000614962826147f6565b915061496d836147f6565b92508261497d5761497c6149b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f696e76616c696420736967000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420736967000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b7f496e76616c696420636f6e747261637420616464726573730000000000000000600082015250565b7f436c61696d7320617265206e6f742063757272656e746c7920616c6c6f776564600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206e6f74207065726d697474656420647572696e6760008201527f20636c61696d20706572696f6400000000000000000000000000000000000000602082015250565b7f546f6b656e4964206973206f7574206f662072616e6765000000000000000000600082015250565b7f5369676e61747572652075736564000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f7574206f6620737570706c7900000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6b656e49642068617320616c7265616479206265656e20636c61696d6564600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f696e76616c696420636f6e747261637420616464726573730000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61508c81614782565b811461509757600080fd5b50565b6150a381614794565b81146150ae57600080fd5b50565b6150ba816147aa565b81146150c557600080fd5b50565b6150d1816147f6565b81146150dc57600080fd5b5056fea26469706673582212202141f795d8b36bf02d26d735c4955c15f65b4a1e759db7080314c2662dfd095664736f6c6343000804003368747470733a2f2f7472656e647967616e672e696f2f6d656469612f7072652d72657665616c2e6a736f6e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000084cfbf5118c8210b5052a9801985851b8b03eb3200000000000000000000000000000000000000000000000000000000000006540000000000000000000000003499933f1808b1b43bfc126359c25e2592ea8bd800000000000000000000000000000000000000000000000000000000000000580000000000000000000000003e02e06c7cc91af971d093c364bd19b79df7325000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000e0f14b5d415a7f000ab146bd881bf0fac02d15f300000000000000000000000000000000000000000000000000000000000000580000000000000000000000006fa82e0e161a80e5dd91bf2c2e7ef1aae37e925e000000000000000000000000000000000000000000000000000000000000065e000000000000000000000000a24bd3448892a91358a501c6a7b9ad9354ed0f000000000000000000000000000000000000000000000000000000000000000636000000000000000000000000f39fa9b41195d61eb5232a724451a00c02ff1a7d0000000000000000000000000000000000000000000000000000000000000058000000000000000000000000263d0286198b54657d4c005290024effaa5cd0ca0000000000000000000000000000000000000000000000000000000000000063000000000000000000000000053aff5369ad4fa9539fc04e132f58ef2a4f01f500000000000000000000000000000000000000000000000000000000000000b2000000000000000000000000e8be55b7bb54b9f0595aa0c432fc1a29e476af35000000000000000000000000000000000000000000000000000000000000009600000000000000000000000053e173a94ed5562a2fca5209246d2768440ea04500000000000000000000000000000000000000000000000000000000000000aa0000000000000000000000001ac4fe77d98051bc2ab36bfb2136716922a9fbb8000000000000000000000000000000000000000000000000000000000000009600000000000000000000000026709fcf01ddb7a00e9319274bcd2146ca0c3fe90000000000000000000000000000000000000000000000000000000000000096
Deployed Bytecode
0x6080604052600436106102675760003560e01c806366a5736411610144578063a4993a1f116100b6578063df3fdf001161007a578063df3fdf0014610910578063e41a7d2b1461093b578063e4f7945414610966578063e985e9c51461098f578063f2fde38b146109cc578063f4a0a528146109f557610267565b8063a4993a1f14610817578063b42348ac14610854578063b88d4fde1461087f578063c1661a26146108a8578063c87b56dd146108d357610267565b8063872f0b9711610108578063872f0b97146107075780638c4057f8146107325780638da5cb5b1461076f5780638e84c4811461079a57806395d89b41146107c3578063a22cb465146107ee57610267565b806366a573641461061f5780636c0360eb1461064a57806370a0823114610675578063715018a6146106b25780637c4daa14146106c957610267565b80632ea17d74116101dd57806351830227116101a1578063518302271461050d57806355cd9a8d1461053857806355f804b3146105635780635c975abb1461058c5780636352211e146105b757806364a3ff76146105f457610267565b80632ea17d741461043a57806332cb6b0c146104655780633ccfd60b1461049057806342842e0e146104a75780634d3dccf9146104d057610267565b8063099607fa1161022f578063099607fa146103635780631249c58b1461038c57806316c38b3c1461039657806323b872dd146103bf5780632a3d6788146103e85780632a3f300c1461041157610267565b806301ffc9a71461026c5780630532bca1146102a957806306fdde03146102d2578063081812fc146102fd578063095ea7b31461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e919061393d565b610a1e565b6040516102a09190614197565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb91906136ff565b610b00565b005b3480156102de57600080fd5b506102e7610b8f565b6040516102f49190614220565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f9190613a11565b610c21565b6040516103319190614130565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c9190613893565b610c67565b005b34801561036f57600080fd5b5061038a600480360381019061038591906138cf565b610d7f565b005b610394611015565b005b3480156103a257600080fd5b506103bd60048036038101906103b89190613914565b611212565b005b3480156103cb57600080fd5b506103e660048036038101906103e1919061378d565b611237565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190613a3a565b611297565b005b34801561041d57600080fd5b5061043860048036038101906104339190613914565b6115fb565b005b34801561044657600080fd5b5061044f611620565b60405161045c91906145c2565b60405180910390f35b34801561047157600080fd5b5061047a611626565b60405161048791906145c2565b60405180910390f35b34801561049c57600080fd5b506104a561162c565b005b3480156104b357600080fd5b506104ce60048036038101906104c9919061378d565b611684565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613893565b6116a4565b6040516105049190614197565b60405180910390f35b34801561051957600080fd5b5061052261170f565b60405161052f9190614197565b60405180910390f35b34801561054457600080fd5b5061054d611722565b60405161055a9190614130565b60405180910390f35b34801561056f57600080fd5b5061058a600480360381019061058591906139d0565b611746565b005b34801561059857600080fd5b506105a1611768565b6040516105ae9190614197565b60405180910390f35b3480156105c357600080fd5b506105de60048036038101906105d99190613a11565b61177b565b6040516105eb9190614130565b60405180910390f35b34801561060057600080fd5b5061060961182d565b60405161061691906145c2565b60405180910390f35b34801561062b57600080fd5b50610634611833565b60405161064191906145c2565b60405180910390f35b34801561065657600080fd5b5061065f611857565b60405161066c9190614220565b60405180910390f35b34801561068157600080fd5b5061069c600480360381019061069791906136ff565b6118e5565b6040516106a991906145c2565b60405180910390f35b3480156106be57600080fd5b506106c761199d565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906136ff565b6119b1565b6040516106fe9291906141f7565b60405180910390f35b34801561071357600080fd5b5061071c6119f5565b6040516107299190614197565b60405180910390f35b34801561073e57600080fd5b506107596004803603810190610754919061398f565b611a08565b6040516107669190614197565b60405180910390f35b34801561077b57600080fd5b50610784611a3e565b6040516107919190614130565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613914565b611a68565b005b3480156107cf57600080fd5b506107d8611a8d565b6040516107e59190614220565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613857565b611b1f565b005b34801561082357600080fd5b5061083e60048036038101906108399190613893565b611b35565b60405161084b9190614130565b60405180910390f35b34801561086057600080fd5b50610869611c2a565b6040516108769190614130565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a191906137dc565b611c50565b005b3480156108b457600080fd5b506108bd611cb2565b6040516108ca91906145c2565b60405180910390f35b3480156108df57600080fd5b506108fa60048036038101906108f59190613a11565b611cd6565b6040516109079190614220565b60405180910390f35b34801561091c57600080fd5b50610925611e30565b6040516109329190614220565b60405180910390f35b34801561094757600080fd5b50610950611e69565b60405161095d91906145c2565b60405180910390f35b34801561097257600080fd5b5061098d60048036038101906109889190613893565b611e6e565b005b34801561099b57600080fd5b506109b660048036038101906109b19190613751565b611f8a565b6040516109c39190614197565b60405180910390f35b3480156109d857600080fd5b506109f360048036038101906109ee91906136ff565b61201e565b005b348015610a0157600080fd5b50610a1c6004803603810190610a179190613a11565b6120a2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ae957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610af95750610af8826120b4565b5b9050919050565b610b0861211e565b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f9ee0f407fe781f489d612b2879aea89a7ce73492166d123f0b55ec4295626e4d60405160405180910390a250565b606060008054610b9e90614873565b80601f0160208091040260200160405190810160405280929190818152602001828054610bca90614873565b8015610c175780601f10610bec57610100808354040283529160200191610c17565b820191906000526020600020905b815481529060010190602001808311610bfa57829003601f168201915b5050505050905090565b6000610c2c8261219c565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c728261177b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cda90614502565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d026121e7565b73ffffffffffffffffffffffffffffffffffffffff161480610d315750610d3081610d2b6121e7565b611f8a565b5b610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790614422565b60405180910390fd5b610d7a83836121ef565b505050565b60026007541415610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc906145a2565b60405180910390fd5b6002600781905550600860009054906101000a900460ff1615610e1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1490614542565b60405180910390fd5b600860019054906101000a900460ff16610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6390614382565b60405180910390fd5b60005b82829050811015611008577f00000000000000000000000084cfbf5118c8210b5052a9801985851b8b03eb3273ffffffffffffffffffffffffffffffffffffffff16838383818110610eea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050604002016000016020810190610f0291906136ff565b73ffffffffffffffffffffffffffffffffffffffff161415610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5090614362565b60405180910390fd5b610ff5838383818110610f95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050604002016000016020810190610fad91906136ff565b848484818110610fe6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060400201602001356122a8565b8080611000906148d6565b915050610e6f565b5060016007819055505050565b6002600754141561105b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611052906145a2565b60405180910390fd5b6002600781905550600860009054906101000a900460ff16156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614542565b60405180910390fd5b600860019054906101000a900460ff1615611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa906143c2565b60405180910390fd5b600954341015611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f906144c2565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001c646001600b5461117891906146c7565b11156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090614482565b60405180910390fd5b6111f033600b547f00000000000000000000000000000000000000000000000000000000000006556111eb91906146c7565b612601565b600b6000815480929190611203906148d6565b91905055506001600781905550565b61121a61211e565b80600860006101000a81548160ff02191690831515021790555050565b6112486112426121e7565b8261261f565b611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90614582565b60405180910390fd5b6112928383836126b4565b505050565b600260075414156112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906145a2565b60405180910390fd5b6002600781905550600860009054906101000a900460ff1615611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614542565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001c6483600b5461136491906146c7565b11156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90614482565b60405180910390fd5b60008484336040516020016113bc939291906140f3565b604051602081830303815290604052805190602001206040516020016113e291906140cd565b604051602081830303815290604052805190602001209050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114818285858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505061291b565b73ffffffffffffffffffffffffffffffffffffffff16146114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce906142e2565b60405180910390fd5b600d83836040516114e9929190614083565b908152602001604051809103902060009054906101000a900460ff1615611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614402565b60405180910390fd5b6001600d8484604051611559929190614083565b908152602001604051809103902060006101000a81548160ff02191690831515021790555060005b848110156115eb576115c033600b547f00000000000000000000000000000000000000000000000000000000000006556115bb91906146c7565b612601565b600b60008154809291906115d3906148d6565b919050555080806115e3906148d6565b915050611581565b5050600160078190555050505050565b61160361211e565b80601060006101000a81548160ff02191690831515021790555050565b600b5481565b6122b881565b61163461211e565b61163c611a3e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611681573d6000803e3d6000fd5b50565b61169f83838360405180602001604052806000815250611c50565b505050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600083815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900460ff1681565b7f00000000000000000000000084cfbf5118c8210b5052a9801985851b8b03eb3281565b61174e61211e565b80600f908051906020019061176492919061347a565b5050565b600860009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181b906144e2565b60405180910390fd5b80915050919050565b600a5481565b7f0000000000000000000000000000000000000000000000000000000000001c6481565b600f805461186490614873565b80601f016020809104026020016040519081016040528092919081815260200182805461189090614873565b80156118dd5780601f106118b2576101008083540402835291602001916118dd565b820191906000526020600020905b8154815290600101906020018083116118c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d906143a2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119a561211e565b6119af6000612990565b565b600c6020528060005260406000206000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b600860019054906101000a900460ff1681565b600d818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a7061211e565b80600860016101000a81548160ff02191690831515021790555050565b606060018054611a9c90614873565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac890614873565b8015611b155780601f10611aea57610100808354040283529160200191611b15565b820191906000526020600020905b815481529060010190602001808311611af857829003601f168201915b5050505050905090565b611b31611b2a6121e7565b8383612a56565b5050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611bd291906145c2565b60206040518083038186803b158015611bea57600080fd5b505afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c229190613728565b905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c61611c5b6121e7565b8361261f565b611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614582565b60405180910390fd5b611cac84848484612bc3565b50505050565b7f000000000000000000000000000000000000000000000000000000000000065581565b6060611ce182612c1f565b611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d17906144a2565b60405180910390fd5b601060009054906101000a900460ff16611dc657600f8054611d4190614873565b80601f0160208091040260200160405190810160405280929190818152602001828054611d6d90614873565b8015611dba5780601f10611d8f57610100808354040283529160200191611dba565b820191906000526020600020905b815481529060010190602001808311611d9d57829003601f168201915b50505050509050611e2b565b600f611dd183612c8b565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611e199392919061409c565b60405160208183030381529060405290505b919050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600181565b611e7661211e565b60026007541415611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906145a2565b60405180910390fd5b60026007819055507f000000000000000000000000000000000000000000000000000000000000065581600a54611ef391906146c7565b10611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906143e2565b60405180910390fd5b6000600a546001611f4491906146c7565b905060008190505b8282611f5891906146c7565b811015611f7c57611f698482612e38565b8080611f74906148d6565b915050611f4c565b505060016007819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202661211e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90614282565b60405180910390fd5b61209f81612990565b50565b6120aa61211e565b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121266121e7565b73ffffffffffffffffffffffffffffffffffffffff16612144611a3e565b73ffffffffffffffffffffffffffffffffffffffff161461219a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219190614462565b60405180910390fd5b565b6121a581612c1f565b6121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db906144e2565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166122628361177b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154141561232e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232590614562565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600082815260200190815260200160002060009054906101000a900460ff16156123cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c690614522565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154811115612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b906143e2565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001c646001600b5461248491906146c7565b11156124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc90614482565b60405180910390fd5b60006124d18383611b35565b90503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253890614342565b60405180910390fd5b6001600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506125e433600b547f00000000000000000000000000000000000000000000000000000000000006556125df91906146c7565b612601565b600b60008154809291906125f7906148d6565b9190505550505050565b61261b828260405180602001604052806000815250613008565b5050565b60008061262b8361177b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061266d575061266c8185611f8a565b5b806126ab57508373ffffffffffffffffffffffffffffffffffffffff1661269384610c21565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126d48261177b565b73ffffffffffffffffffffffffffffffffffffffff161461272a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612721906142a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279190614302565b60405180910390fd5b6127a5838383613063565b6127b06000826121ef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612800919061474e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461285791906146c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612916838383613068565b505050565b60008060008061292a8561306d565b8093508194508295505050506001868484846040516000815260200160405260405161295994939291906141b2565b6020604051602081039080840390855afa15801561297b573d6000803e3d6000fd5b50505060206040510351935050505092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abc90614322565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bb69190614197565b60405180910390a3505050565b612bce8484846126b4565b612bda848484846130e6565b612c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1090614262565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415612cd3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e33565b600082905060005b60008214612d05578080612cee906148d6565b915050600a82612cfe919061471d565b9150612cdb565b60008167ffffffffffffffff811115612d47577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d795781602001600182028036833780820191505090505b5090505b60008514612e2c57600182612d92919061474e565b9150600a85612da19190614957565b6030612dad91906146c7565b60f81b818381518110612de9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e25919061471d565b9450612d7d565b8093505050505b919050565b7f00000000000000000000000084cfbf5118c8210b5052a9801985851b8b03eb3273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebd90614362565b60405180910390fd5b600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600082815260200190815260200160002060009054906101000a900460ff1615612f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5e90614522565b60405180910390fd5b6000612f738383611b35565b90506001600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201600084815260200190815260200160002060006101000a81548160ff021916908315150217905550612feb8183612601565b600a6000815480929190612ffe906148d6565b9190505550505050565b613012838361327d565b61301f60008484846130e6565b61305e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305590614262565b60405180910390fd5b505050565b505050565b505050565b600080600060418451146130b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ad90614242565b60405180910390fd5b60008060006020870151925060408701519150606087015160001a90508083839550955095505050509193909250565b60006131078473ffffffffffffffffffffffffffffffffffffffff16613457565b15613270578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131306121e7565b8786866040518563ffffffff1660e01b8152600401613152949392919061414b565b602060405180830381600087803b15801561316c57600080fd5b505af192505050801561319d57506040513d601f19601f8201168201806040525081019061319a9190613966565b60015b613220573d80600081146131cd576040519150601f19603f3d011682016040523d82523d6000602084013e6131d2565b606091505b50600081511415613218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320f90614262565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613275565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e490614442565b60405180910390fd5b6132f681612c1f565b15613336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332d906142c2565b60405180910390fd5b61334260008383613063565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461339291906146c7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461345360008383613068565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461348690614873565b90600052602060002090601f0160209004810192826134a857600085556134ef565b82601f106134c157805160ff19168380011785556134ef565b828001600101855582156134ef579182015b828111156134ee5782518255916020019190600101906134d3565b5b5090506134fc9190613500565b5090565b5b80821115613519576000816000905550600101613501565b5090565b600061353061352b84614602565b6145dd565b90508281526020810184848401111561354857600080fd5b613553848285614831565b509392505050565b600061356e61356984614633565b6145dd565b90508281526020810184848401111561358657600080fd5b613591848285614831565b509392505050565b6000813590506135a881615083565b92915050565b6000815190506135bd81615083565b92915050565b60008083601f8401126135d557600080fd5b8235905067ffffffffffffffff8111156135ee57600080fd5b60208301915083604082028301111561360657600080fd5b9250929050565b60008135905061361c8161509a565b92915050565b600081359050613631816150b1565b92915050565b600081519050613646816150b1565b92915050565b60008083601f84011261365e57600080fd5b8235905067ffffffffffffffff81111561367757600080fd5b60208301915083600182028301111561368f57600080fd5b9250929050565b600082601f8301126136a757600080fd5b81356136b784826020860161351d565b91505092915050565b600082601f8301126136d157600080fd5b81356136e184826020860161355b565b91505092915050565b6000813590506136f9816150c8565b92915050565b60006020828403121561371157600080fd5b600061371f84828501613599565b91505092915050565b60006020828403121561373a57600080fd5b6000613748848285016135ae565b91505092915050565b6000806040838503121561376457600080fd5b600061377285828601613599565b925050602061378385828601613599565b9150509250929050565b6000806000606084860312156137a257600080fd5b60006137b086828701613599565b93505060206137c186828701613599565b92505060406137d2868287016136ea565b9150509250925092565b600080600080608085870312156137f257600080fd5b600061380087828801613599565b945050602061381187828801613599565b9350506040613822878288016136ea565b925050606085013567ffffffffffffffff81111561383f57600080fd5b61384b87828801613696565b91505092959194509250565b6000806040838503121561386a57600080fd5b600061387885828601613599565b92505060206138898582860161360d565b9150509250929050565b600080604083850312156138a657600080fd5b60006138b485828601613599565b92505060206138c5858286016136ea565b9150509250929050565b600080602083850312156138e257600080fd5b600083013567ffffffffffffffff8111156138fc57600080fd5b613908858286016135c3565b92509250509250929050565b60006020828403121561392657600080fd5b60006139348482850161360d565b91505092915050565b60006020828403121561394f57600080fd5b600061395d84828501613622565b91505092915050565b60006020828403121561397857600080fd5b600061398684828501613637565b91505092915050565b6000602082840312156139a157600080fd5b600082013567ffffffffffffffff8111156139bb57600080fd5b6139c784828501613696565b91505092915050565b6000602082840312156139e257600080fd5b600082013567ffffffffffffffff8111156139fc57600080fd5b613a08848285016136c0565b91505092915050565b600060208284031215613a2357600080fd5b6000613a31848285016136ea565b91505092915050565b60008060008060608587031215613a5057600080fd5b6000613a5e878288016136ea565b9450506020613a6f878288016136ea565b935050604085013567ffffffffffffffff811115613a8c57600080fd5b613a988782880161364c565b925092505092959194509250565b613aaf81614782565b82525050565b613ac6613ac182614782565b61491f565b82525050565b613ad581614794565b82525050565b613ae4816147a0565b82525050565b613afb613af6826147a0565b614931565b82525050565b6000613b0d83856146a0565b9350613b1a838584614831565b82840190509392505050565b6000613b3182614679565b613b3b818561468f565b9350613b4b818560208601614840565b613b5481614a44565b840191505092915050565b613b688161480d565b82525050565b6000613b7982614684565b613b8381856146ab565b9350613b93818560208601614840565b613b9c81614a44565b840191505092915050565b6000613bb282614684565b613bbc81856146bc565b9350613bcc818560208601614840565b80840191505092915050565b60008154613be581614873565b613bef81866146bc565b94506001821660008114613c0a5760018114613c1b57613c4e565b60ff19831686528186019350613c4e565b613c2485614664565b60005b83811015613c4657815481890152600182019150602081019050613c27565b838801955050505b50505092915050565b6000613c64601c836146bc565b9150613c6f82614a62565b601c82019050919050565b6000613c87600b836146ab565b9150613c9282614a8b565b602082019050919050565b6000613caa6032836146ab565b9150613cb582614ab4565b604082019050919050565b6000613ccd6026836146ab565b9150613cd882614b03565b604082019050919050565b6000613cf06025836146ab565b9150613cfb82614b52565b604082019050919050565b6000613d13601c836146ab565b9150613d1e82614ba1565b602082019050919050565b6000613d36600b836146ab565b9150613d4182614bca565b602082019050919050565b6000613d596024836146ab565b9150613d6482614bf3565b604082019050919050565b6000613d7c6019836146ab565b9150613d8782614c42565b602082019050919050565b6000613d9f6009836146ab565b9150613daa82614c6b565b602082019050919050565b6000613dc26018836146ab565b9150613dcd82614c94565b602082019050919050565b6000613de56020836146ab565b9150613df082614cbd565b602082019050919050565b6000613e086029836146ab565b9150613e1382614ce6565b604082019050919050565b6000613e2b602d836146ab565b9150613e3682614d35565b604082019050919050565b6000613e4e6017836146ab565b9150613e5982614d84565b602082019050919050565b6000613e71600e836146ab565b9150613e7c82614dad565b602082019050919050565b6000613e94603e836146ab565b9150613e9f82614dd6565b604082019050919050565b6000613eb76020836146ab565b9150613ec282614e25565b602082019050919050565b6000613eda6020836146ab565b9150613ee582614e4e565b602082019050919050565b6000613efd600d836146ab565b9150613f0882614e77565b602082019050919050565b6000613f20602f836146ab565b9150613f2b82614ea0565b604082019050919050565b6000613f436013836146ab565b9150613f4e82614eef565b602082019050919050565b6000613f666018836146ab565b9150613f7182614f18565b602082019050919050565b6000613f896021836146ab565b9150613f9482614f41565b604082019050919050565b6000613fac6020836146ab565b9150613fb782614f90565b602082019050919050565b6000613fcf6012836146ab565b9150613fda82614fb9565b602082019050919050565b6000613ff26018836146ab565b9150613ffd82614fe2565b602082019050919050565b6000614015602e836146ab565b91506140208261500b565b604082019050919050565b6000614038601f836146ab565b91506140438261505a565b602082019050919050565b614057816147f6565b82525050565b61406e614069826147f6565b61494d565b82525050565b61407d81614800565b82525050565b6000614090828486613b01565b91508190509392505050565b60006140a88286613bd8565b91506140b48285613ba7565b91506140c08284613ba7565b9150819050949350505050565b60006140d882613c57565b91506140e48284613aea565b60208201915081905092915050565b60006140ff828661405d565b60208201915061410f828561405d565b60208201915061411f8284613ab5565b601482019150819050949350505050565b60006020820190506141456000830184613aa6565b92915050565b60006080820190506141606000830187613aa6565b61416d6020830186613aa6565b61417a604083018561404e565b818103606083015261418c8184613b26565b905095945050505050565b60006020820190506141ac6000830184613acc565b92915050565b60006080820190506141c76000830187613adb565b6141d46020830186614074565b6141e16040830185613adb565b6141ee6060830184613adb565b95945050505050565b600060408201905061420c6000830185613b5f565b614219602083018461404e565b9392505050565b6000602082019050818103600083015261423a8184613b6e565b905092915050565b6000602082019050818103600083015261425b81613c7a565b9050919050565b6000602082019050818103600083015261427b81613c9d565b9050919050565b6000602082019050818103600083015261429b81613cc0565b9050919050565b600060208201905081810360008301526142bb81613ce3565b9050919050565b600060208201905081810360008301526142db81613d06565b9050919050565b600060208201905081810360008301526142fb81613d29565b9050919050565b6000602082019050818103600083015261431b81613d4c565b9050919050565b6000602082019050818103600083015261433b81613d6f565b9050919050565b6000602082019050818103600083015261435b81613d92565b9050919050565b6000602082019050818103600083015261437b81613db5565b9050919050565b6000602082019050818103600083015261439b81613dd8565b9050919050565b600060208201905081810360008301526143bb81613dfb565b9050919050565b600060208201905081810360008301526143db81613e1e565b9050919050565b600060208201905081810360008301526143fb81613e41565b9050919050565b6000602082019050818103600083015261441b81613e64565b9050919050565b6000602082019050818103600083015261443b81613e87565b9050919050565b6000602082019050818103600083015261445b81613eaa565b9050919050565b6000602082019050818103600083015261447b81613ecd565b9050919050565b6000602082019050818103600083015261449b81613ef0565b9050919050565b600060208201905081810360008301526144bb81613f13565b9050919050565b600060208201905081810360008301526144db81613f36565b9050919050565b600060208201905081810360008301526144fb81613f59565b9050919050565b6000602082019050818103600083015261451b81613f7c565b9050919050565b6000602082019050818103600083015261453b81613f9f565b9050919050565b6000602082019050818103600083015261455b81613fc2565b9050919050565b6000602082019050818103600083015261457b81613fe5565b9050919050565b6000602082019050818103600083015261459b81614008565b9050919050565b600060208201905081810360008301526145bb8161402b565b9050919050565b60006020820190506145d7600083018461404e565b92915050565b60006145e76145f8565b90506145f382826148a5565b919050565b6000604051905090565b600067ffffffffffffffff82111561461d5761461c614a15565b5b61462682614a44565b9050602081019050919050565b600067ffffffffffffffff82111561464e5761464d614a15565b5b61465782614a44565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006146d2826147f6565b91506146dd836147f6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561471257614711614988565b5b828201905092915050565b6000614728826147f6565b9150614733836147f6565b925082614743576147426149b7565b5b828204905092915050565b6000614759826147f6565b9150614764836147f6565b92508282101561477757614776614988565b5b828203905092915050565b600061478d826147d6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006148188261481f565b9050919050565b600061482a826147d6565b9050919050565b82818337600083830152505050565b60005b8381101561485e578082015181840152602081019050614843565b8381111561486d576000848401525b50505050565b6000600282049050600182168061488b57607f821691505b6020821081141561489f5761489e6149e6565b5b50919050565b6148ae82614a44565b810181811067ffffffffffffffff821117156148cd576148cc614a15565b5b80604052505050565b60006148e1826147f6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561491457614913614988565b5b600182019050919050565b600061492a8261493b565b9050919050565b6000819050919050565b600061494682614a55565b9050919050565b6000819050919050565b6000614962826147f6565b915061496d836147f6565b92508261497d5761497c6149b7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f696e76616c696420736967000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c696420736967000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b7f496e76616c696420636f6e747261637420616464726573730000000000000000600082015250565b7f436c61696d7320617265206e6f742063757272656e746c7920616c6c6f776564600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74206e6f74207065726d697474656420647572696e6760008201527f20636c61696d20706572696f6400000000000000000000000000000000000000602082015250565b7f546f6b656e4964206973206f7574206f662072616e6765000000000000000000600082015250565b7f5369676e61747572652075736564000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4f7574206f6620737570706c7900000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6b656e49642068617320616c7265616479206265656e20636c61696d6564600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f696e76616c696420636f6e747261637420616464726573730000000000000000600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61508c81614782565b811461509757600080fd5b50565b6150a381614794565b81146150ae57600080fd5b50565b6150ba816147aa565b81146150c557600080fd5b50565b6150d1816147f6565b81146150dc57600080fd5b5056fea26469706673582212202141f795d8b36bf02d26d735c4955c15f65b4a1e759db7080314c2662dfd095664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000d00000000000000000000000084cfbf5118c8210b5052a9801985851b8b03eb3200000000000000000000000000000000000000000000000000000000000006540000000000000000000000003499933f1808b1b43bfc126359c25e2592ea8bd800000000000000000000000000000000000000000000000000000000000000580000000000000000000000003e02e06c7cc91af971d093c364bd19b79df7325000000000000000000000000000000000000000000000000000000000000006e0000000000000000000000000e0f14b5d415a7f000ab146bd881bf0fac02d15f300000000000000000000000000000000000000000000000000000000000000580000000000000000000000006fa82e0e161a80e5dd91bf2c2e7ef1aae37e925e000000000000000000000000000000000000000000000000000000000000065e000000000000000000000000a24bd3448892a91358a501c6a7b9ad9354ed0f000000000000000000000000000000000000000000000000000000000000000636000000000000000000000000f39fa9b41195d61eb5232a724451a00c02ff1a7d0000000000000000000000000000000000000000000000000000000000000058000000000000000000000000263d0286198b54657d4c005290024effaa5cd0ca0000000000000000000000000000000000000000000000000000000000000063000000000000000000000000053aff5369ad4fa9539fc04e132f58ef2a4f01f500000000000000000000000000000000000000000000000000000000000000b2000000000000000000000000e8be55b7bb54b9f0595aa0c432fc1a29e476af35000000000000000000000000000000000000000000000000000000000000009600000000000000000000000053e173a94ed5562a2fca5209246d2768440ea04500000000000000000000000000000000000000000000000000000000000000aa0000000000000000000000001ac4fe77d98051bc2ab36bfb2136716922a9fbb8000000000000000000000000000000000000000000000000000000000000009600000000000000000000000026709fcf01ddb7a00e9319274bcd2146ca0c3fe90000000000000000000000000000000000000000000000000000000000000096
-----Decoded View---------------
Arg [0] : _collection (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
-----Encoded View---------------
28 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [2] : 00000000000000000000000084cfbf5118c8210b5052a9801985851b8b03eb32
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000654
Arg [4] : 0000000000000000000000003499933f1808b1b43bfc126359c25e2592ea8bd8
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [6] : 0000000000000000000000003e02e06c7cc91af971d093c364bd19b79df73250
Arg [7] : 00000000000000000000000000000000000000000000000000000000000006e0
Arg [8] : 000000000000000000000000e0f14b5d415a7f000ab146bd881bf0fac02d15f3
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [10] : 0000000000000000000000006fa82e0e161a80e5dd91bf2c2e7ef1aae37e925e
Arg [11] : 000000000000000000000000000000000000000000000000000000000000065e
Arg [12] : 000000000000000000000000a24bd3448892a91358a501c6a7b9ad9354ed0f00
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000636
Arg [14] : 000000000000000000000000f39fa9b41195d61eb5232a724451a00c02ff1a7d
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [16] : 000000000000000000000000263d0286198b54657d4c005290024effaa5cd0ca
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [18] : 000000000000000000000000053aff5369ad4fa9539fc04e132f58ef2a4f01f5
Arg [19] : 00000000000000000000000000000000000000000000000000000000000000b2
Arg [20] : 000000000000000000000000e8be55b7bb54b9f0595aa0c432fc1a29e476af35
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [22] : 00000000000000000000000053e173a94ed5562a2fca5209246d2768440ea045
Arg [23] : 00000000000000000000000000000000000000000000000000000000000000aa
Arg [24] : 0000000000000000000000001ac4fe77d98051bc2ab36bfb2136716922a9fbb8
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [26] : 00000000000000000000000026709fcf01ddb7a00e9319274bcd2146ca0c3fe9
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000096
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.