Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
9,999 WYN
Holders
2,648
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WYNLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WynLambo
Compiler Version
v0.8.6+commit.11564f7e
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.6; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract WynLambo is ERC721, Ownable { bool public saleActive = false; bool public claimActive = false; string internal baseTokenURI; uint public price = 0.09 ether; uint public totalSupply = 9999; uint public mintSupply = 7242; uint public claimSupply = 2706; uint public nonce = 0; uint public maxTx = 20; mapping(address => uint[]) private ownership; mapping(address => uint) public holders; mapping(address => mapping(uint => uint)) internal blockMints; event Mint(address owner, uint qty); event Withdraw(uint amount); struct Holders { address wallet; uint qty; } modifier onlyHolders() { require(holders[_msgSender()] > 0, "ONLY HOLDERS"); _; } constructor() ERC721("WynLambo", "WYN") {} function setPrice(uint newPrice) external onlyOwner { price = newPrice; } function setBaseTokenURI(string calldata _uri) external onlyOwner { baseTokenURI = _uri; } function setTotalSupply(uint newSupply) external onlyOwner { totalSupply = newSupply; } function setMintSupply(uint newSupply) external onlyOwner { mintSupply = newSupply; } function setClaimSupply(uint newSupply) external onlyOwner { claimSupply = newSupply; } function setMaxTx(uint newMax) external onlyOwner { maxTx = newMax; } function setSaleActive(bool val) public onlyOwner { saleActive = val; } function setClaimActive(bool val) public onlyOwner { claimActive = val; } function getTokenIdsByOwner(address _owner) public view returns(uint[] memory) { return ownership[_owner]; } function _baseURI() internal override view returns (string memory) { return baseTokenURI; } function buy(uint qty) external payable { require(saleActive, 'Sale is not active'); require(qty <= maxTx || qty < 1, "TRANSACTION: qty of mints not alowed"); require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply"); require(msg.value == price * qty, "PAYMENT: invalid value"); require(mintSupply >= qty, "Sold out"); mintSupply -= qty; _create(_msgSender(), qty); emit Mint(_msgSender(), qty); } function addHolders(address[] calldata holders_, uint[] calldata qty) external onlyOwner { for(uint i=0; i< holders_.length; i++){ holders[holders_[i]] = qty[i]; } } function claim() external onlyHolders { require(claimActive, 'Claim is not active'); uint qty = holders[_msgSender()]; require(claimSupply > qty, "Claim over"); require(nonce + qty <= totalSupply, "sold out"); holders[_msgSender()] = 0; claimSupply -= qty; _create(_msgSender(), qty); } function giveaway(address to, uint qty, bool fromHolders) external onlyOwner { require(nonce + qty <= totalSupply, "sold out"); if(fromHolders){ require(claimSupply >= qty, "Claim over"); claimSupply -= qty; } _create(to,qty); } function _create(address to, uint qty) internal { for(uint i = 0; i < qty; i++){ nonce++; _safeMint(to, nonce); } } function withdrawTeam() external onlyOwner { uint balance = address(this).balance; payable(0x23A8b7F4cf5FB0D40Aa7DB57b8cd376d3332130e).transfer((balance * 40 )/100); payable(0x268F5Fa2aDeB3a904FA60D4FfB904738F0dfE3b4).transfer((balance * 15 )/100); payable(0xBcdc5969Ec1652Bf80fc15edFE50f9834a55067b).transfer((balance * 20 )/100); payable(0x9bad8C60d464c23C2BDF164C2fE42F85C9A000F2).transfer((balance * 25 )/100); } function withdraw() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override { if(from != address(0)){ uint[] memory tokens = ownership[from]; for(uint i=0;i<tokens.length;i++){ if(tokens[i] == tokenId){ delete ownership[from][i]; break; } } } if(to != address(0)){ ownership[to].push(tokenId); } } }
// SPDX-License-Identifier: MIT 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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 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); }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "berlin", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address[]","name":"holders_","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"addHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIdsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bool","name":"fromHolders","type":"bool"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setClaimSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff02191690831515021790555067013fbe85edc9000060085561270f600955611c4a600a55610a92600b556000600c556014600d553480156200006f57600080fd5b506040518060400160405280600881526020017f57796e4c616d626f0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f57594e00000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f492919062000204565b5080600190805190602001906200010d92919062000204565b50505062000130620001246200013660201b60201c565b6200013e60201b60201c565b62000319565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021290620002b4565b90600052602060002090601f01602090048101928262000236576000855562000282565b82601f106200025157805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028157825182559160200191906001019062000264565b5b50905062000291919062000295565b5090565b5b80821115620002b057600081600090555060010162000296565b5090565b60006002820490506001821680620002cd57607f821691505b60208210811415620002e457620002e3620002ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614aee80620003296000396000f3fe60806040526004361061023b5760003560e01c806373417b091161012e578063affed0e0116100ab578063d4a6a2fd1161006f578063d4a6a2fd14610833578063d96a094a1461085e578063e985e9c51461087a578063f2fde38b146108b7578063f7ea7a3d146108e05761023b565b8063affed0e014610762578063b88d4fde1461078d578063bb51f32d146107b6578063bc337182146107cd578063c87b56dd146107f65761023b565b806391b7f5ed116100f257806391b7f5ed1461069157806395d89b41146106ba578063a035b1fe146106e5578063a22cb46514610710578063ac568e84146107395761023b565b806373417b09146105c05780637437681e146105e95780637d4437c014610614578063841718a61461063d5780638da5cb5b146106665761023b565b80632a3e67fc116101bc5780636352211e116101805780636352211e146104c757806368428a1b146105045780636970bb0a1461052f57806370a082311461056c578063715018a6146105a95761023b565b80632a3e67fc1461041e57806330176e13146104475780633ccfd60b1461047057806342842e0e146104875780634e71d92d146104b05761023b565b80630ad29ec3116102035780630ad29ec31461033957806318160ddd1461036457806318a5bbdc1461038f57806322e8d8cd146103cc57806323b872dd146103f55761023b565b806301ffc9a714610240578063045b7dca1461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906135d1565b610909565b6040516102749190613c3b565b60405180910390f35b34801561028957600080fd5b506102926109eb565b60405161029f9190613f98565b60405180910390f35b3480156102b457600080fd5b506102bd6109f1565b6040516102ca9190613c56565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613678565b610a83565b6040516103079190613b89565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613490565b610b08565b005b34801561034557600080fd5b5061034e610c20565b60405161035b9190613f98565b60405180910390f35b34801561037057600080fd5b50610379610c26565b6040516103869190613f98565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b1919061330d565b610c2c565b6040516103c39190613f98565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613678565b610c44565b005b34801561040157600080fd5b5061041c6004803603810190610417919061337a565b610cca565b005b34801561042a57600080fd5b50610445600480360381019061044091906134d0565b610d2a565b005b34801561045357600080fd5b5061046e6004803603810190610469919061362b565b610e6c565b005b34801561047c57600080fd5b50610485610efe565b005b34801561049357600080fd5b506104ae60048036038101906104a9919061337a565b610fca565b005b3480156104bc57600080fd5b506104c5610fea565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613678565b61121c565b6040516104fb9190613b89565b60405180910390f35b34801561051057600080fd5b506105196112ce565b6040516105269190613c3b565b60405180910390f35b34801561053b57600080fd5b506105566004803603810190610551919061330d565b6112e1565b6040516105639190613c19565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061330d565b611378565b6040516105a09190613f98565b60405180910390f35b3480156105b557600080fd5b506105be611430565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906135a4565b6114b8565b005b3480156105f557600080fd5b506105fe611551565b60405161060b9190613f98565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613523565b611557565b005b34801561064957600080fd5b50610664600480360381019061065f91906135a4565b61167f565b005b34801561067257600080fd5b5061067b611718565b6040516106889190613b89565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190613678565b611742565b005b3480156106c657600080fd5b506106cf6117c8565b6040516106dc9190613c56565b60405180910390f35b3480156106f157600080fd5b506106fa61185a565b6040516107079190613f98565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190613450565b611860565b005b34801561074557600080fd5b50610760600480360381019061075b9190613678565b6119e1565b005b34801561076e57600080fd5b50610777611a67565b6040516107849190613f98565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af91906133cd565b611a6d565b005b3480156107c257600080fd5b506107cb611acf565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613678565b611d1f565b005b34801561080257600080fd5b5061081d60048036038101906108189190613678565b611da5565b60405161082a9190613c56565b60405180910390f35b34801561083f57600080fd5b50610848611e4c565b6040516108559190613c3b565b60405180910390f35b61087860048036038101906108739190613678565b611e5f565b005b34801561088657600080fd5b506108a1600480360381019061089c919061333a565b612051565b6040516108ae9190613c3b565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d9919061330d565b6120e5565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613678565b6121dd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e457506109e382612263565b5b9050919050565b600a5481565b606060008054610a0090614250565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90614250565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e826122cd565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613e78565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b138261121c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613ef8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba3612339565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc612339565b612051565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890613db8565b60405180910390fd5b610c1b8383612341565b505050565b600b5481565b60095481565b600f6020528060005260406000206000915090505481565b610c4c612339565b73ffffffffffffffffffffffffffffffffffffffff16610c6a611718565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613e98565b60405180910390fd5b80600b8190555050565b610cdb610cd5612339565b826123fa565b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613f38565b60405180910390fd5b610d258383836124d8565b505050565b610d32612339565b73ffffffffffffffffffffffffffffffffffffffff16610d50611718565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613e98565b60405180910390fd5b60095482600c54610db79190614085565b1115610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90613d98565b60405180910390fd5b8015610e5d5781600b541015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613e38565b60405180910390fd5b81600b6000828254610e559190614166565b925050819055505b610e678383612734565b505050565b610e74612339565b73ffffffffffffffffffffffffffffffffffffffff16610e92611718565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613e98565b60405180910390fd5b818160079190610ef992919061308f565b505050565b610f06612339565b73ffffffffffffffffffffffffffffffffffffffff16610f24611718565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613e98565b60405180910390fd5b610f82612339565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fc7573d6000803e3d6000fd5b50565b610fe583838360405180602001604052806000815250611a6d565b505050565b6000600f6000610ff8612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90613f78565b60405180910390fd5b600660159054906101000a900460ff166110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613e58565b60405180910390fd5b6000600f60006110d0612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600b5411611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890613e38565b60405180910390fd5b60095481600c546111629190614085565b11156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90613d98565b60405180910390fd5b6000600f60006111b1612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b60008282546112019190614166565b92505081905550611219611213612339565b82612734565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613df8565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561136c57602002820191906000526020600020905b815481526020019060010190808311611358575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613dd8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611438612339565b73ffffffffffffffffffffffffffffffffffffffff16611456611718565b73ffffffffffffffffffffffffffffffffffffffff16146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613e98565b60405180910390fd5b6114b6600061277b565b565b6114c0612339565b73ffffffffffffffffffffffffffffffffffffffff166114de611718565b73ffffffffffffffffffffffffffffffffffffffff1614611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613e98565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600d5481565b61155f612339565b73ffffffffffffffffffffffffffffffffffffffff1661157d611718565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613e98565b60405180910390fd5b60005b84849050811015611678578282828181106115f4576115f36143ba565b5b90506020020135600f6000878785818110611612576116116143ba565b5b9050602002016020810190611627919061330d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611670906142b3565b9150506115d6565b5050505050565b611687612339565b73ffffffffffffffffffffffffffffffffffffffff166116a5611718565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613e98565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61174a612339565b73ffffffffffffffffffffffffffffffffffffffff16611768611718565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613e98565b60405180910390fd5b8060088190555050565b6060600180546117d790614250565b80601f016020809104026020016040519081016040528092919081815260200182805461180390614250565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b5050505050905090565b60085481565b611868612339565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613d38565b60405180910390fd5b80600560006118e3612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611990612339565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d59190613c3b565b60405180910390a35050565b6119e9612339565b73ffffffffffffffffffffffffffffffffffffffff16611a07611718565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613e98565b60405180910390fd5b80600a8190555050565b600c5481565b611a7e611a78612339565b836123fa565b611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613f38565b60405180910390fd5b611ac984848484612841565b50505050565b611ad7612339565b73ffffffffffffffffffffffffffffffffffffffff16611af5611718565b73ffffffffffffffffffffffffffffffffffffffff1614611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613e98565b60405180910390fd5b60004790507323a8b7f4cf5fb0d40aa7db57b8cd376d3332130e73ffffffffffffffffffffffffffffffffffffffff166108fc6064602884611b8d919061410c565b611b9791906140db565b9081150290604051600060405180830381858888f19350505050158015611bc2573d6000803e3d6000fd5b5073268f5fa2adeb3a904fa60d4ffb904738f0dfe3b473ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84611c00919061410c565b611c0a91906140db565b9081150290604051600060405180830381858888f19350505050158015611c35573d6000803e3d6000fd5b5073bcdc5969ec1652bf80fc15edfe50f9834a55067b73ffffffffffffffffffffffffffffffffffffffff166108fc6064601484611c73919061410c565b611c7d91906140db565b9081150290604051600060405180830381858888f19350505050158015611ca8573d6000803e3d6000fd5b50739bad8c60d464c23c2bdf164c2fe42f85c9a000f273ffffffffffffffffffffffffffffffffffffffff166108fc6064601984611ce6919061410c565b611cf091906140db565b9081150290604051600060405180830381858888f19350505050158015611d1b573d6000803e3d6000fd5b5050565b611d27612339565b73ffffffffffffffffffffffffffffffffffffffff16611d45611718565b73ffffffffffffffffffffffffffffffffffffffff1614611d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9290613e98565b60405180910390fd5b80600d8190555050565b6060611db0826122cd565b611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613ed8565b60405180910390fd5b6000611df961289d565b90506000815111611e195760405180602001604052806000815250611e44565b80611e238461292f565b604051602001611e34929190613b65565b6040516020818303038152906040525b915050919050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613d58565b60405180910390fd5b600d5481111580611ebf5750600181105b611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613cd8565b60405180910390fd5b600954600c5482611f0f9190614085565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790613f18565b60405180910390fd5b80600854611f5e919061410c565b3414611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613cf8565b60405180910390fd5b80600a541015611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90613f58565b60405180910390fd5b80600a6000828254611ff69190614166565b9250508190555061200e612008612339565b82612734565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885612037612339565b82604051612046929190613bf0565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120ed612339565b73ffffffffffffffffffffffffffffffffffffffff1661210b611718565b73ffffffffffffffffffffffffffffffffffffffff1614612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890613e98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890613c98565b60405180910390fd5b6121da8161277b565b50565b6121e5612339565b73ffffffffffffffffffffffffffffffffffffffff16612203611718565b73ffffffffffffffffffffffffffffffffffffffff1614612259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225090613e98565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123b48361121c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612405826122cd565b612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90613d78565b60405180910390fd5b600061244f8361121c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124be57508373ffffffffffffffffffffffffffffffffffffffff166124a684610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b806124cf57506124ce8185612051565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124f88261121c565b73ffffffffffffffffffffffffffffffffffffffff161461254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590613eb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590613d18565b60405180910390fd5b6125c9838383612a90565b6125d4600082612341565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126249190614166565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267b9190614085565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b8181101561277657600c6000815480929190612752906142b3565b919050555061276383600c54612c9e565b808061276e906142b3565b915050612737565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61284c8484846124d8565b61285884848484612cbc565b612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e90613c78565b60405180910390fd5b50505050565b6060600780546128ac90614250565b80601f01602080910402602001604051908101604052809291908181526020018280546128d890614250565b80156129255780601f106128fa57610100808354040283529160200191612925565b820191906000526020600020905b81548152906001019060200180831161290857829003601f168201915b5050505050905090565b60606000821415612977576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a8b565b600082905060005b600082146129a9578080612992906142b3565b915050600a826129a291906140db565b915061297f565b60008167ffffffffffffffff8111156129c5576129c46143e9565b5b6040519080825280601f01601f1916602001820160405280156129f75781602001600182028036833780820191505090505b5090505b60008514612a8457600182612a109190614166565b9150600a85612a1f91906142fc565b6030612a2b9190614085565b60f81b818381518110612a4157612a406143ba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a7d91906140db565b94506129fb565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bfe576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015612b4f57602002820191906000526020600020905b815481526020019060010190808311612b3b575b5050505050905060005b8151811015612bfb5782828281518110612b7657612b756143ba565b5b60200260200101511415612be857600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208181548110612bd557612bd46143ba565b5b9060005260206000200160009055612bfb565b8080612bf3906142b3565b915050612b59565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c9957600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b612cb8828260405180602001604052806000815250612e53565b5050565b6000612cdd8473ffffffffffffffffffffffffffffffffffffffff16612eae565b15612e46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d06612339565b8786866040518563ffffffff1660e01b8152600401612d289493929190613ba4565b602060405180830381600087803b158015612d4257600080fd5b505af1925050508015612d7357506040513d601f19601f82011682018060405250810190612d7091906135fe565b60015b612df6573d8060008114612da3576040519150601f19603f3d011682016040523d82523d6000602084013e612da8565b606091505b50600081511415612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de590613c78565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e4b565b600190505b949350505050565b612e5d8383612ec1565b612e6a6000848484612cbc565b612ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea090613c78565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2890613e18565b60405180910390fd5b612f3a816122cd565b15612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190613cb8565b60405180910390fd5b612f8660008383612a90565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd69190614085565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461309b90614250565b90600052602060002090601f0160209004810192826130bd5760008555613104565b82601f106130d657803560ff1916838001178555613104565b82800160010185558215613104579182015b828111156131035782358255916020019190600101906130e8565b5b5090506131119190613115565b5090565b5b8082111561312e576000816000905550600101613116565b5090565b600061314561314084613fd8565b613fb3565b90508281526020810184848401111561316157613160614427565b5b61316c84828561420e565b509392505050565b60008135905061318381614a5c565b92915050565b60008083601f84011261319f5761319e61441d565b5b8235905067ffffffffffffffff8111156131bc576131bb614418565b5b6020830191508360208202830111156131d8576131d7614422565b5b9250929050565b60008083601f8401126131f5576131f461441d565b5b8235905067ffffffffffffffff81111561321257613211614418565b5b60208301915083602082028301111561322e5761322d614422565b5b9250929050565b60008135905061324481614a73565b92915050565b60008135905061325981614a8a565b92915050565b60008151905061326e81614a8a565b92915050565b600082601f8301126132895761328861441d565b5b8135613299848260208601613132565b91505092915050565b60008083601f8401126132b8576132b761441d565b5b8235905067ffffffffffffffff8111156132d5576132d4614418565b5b6020830191508360018202830111156132f1576132f0614422565b5b9250929050565b60008135905061330781614aa1565b92915050565b60006020828403121561332357613322614431565b5b600061333184828501613174565b91505092915050565b6000806040838503121561335157613350614431565b5b600061335f85828601613174565b925050602061337085828601613174565b9150509250929050565b60008060006060848603121561339357613392614431565b5b60006133a186828701613174565b93505060206133b286828701613174565b92505060406133c3868287016132f8565b9150509250925092565b600080600080608085870312156133e7576133e6614431565b5b60006133f587828801613174565b945050602061340687828801613174565b9350506040613417878288016132f8565b925050606085013567ffffffffffffffff8111156134385761343761442c565b5b61344487828801613274565b91505092959194509250565b6000806040838503121561346757613466614431565b5b600061347585828601613174565b925050602061348685828601613235565b9150509250929050565b600080604083850312156134a7576134a6614431565b5b60006134b585828601613174565b92505060206134c6858286016132f8565b9150509250929050565b6000806000606084860312156134e9576134e8614431565b5b60006134f786828701613174565b9350506020613508868287016132f8565b925050604061351986828701613235565b9150509250925092565b6000806000806040858703121561353d5761353c614431565b5b600085013567ffffffffffffffff81111561355b5761355a61442c565b5b61356787828801613189565b9450945050602085013567ffffffffffffffff81111561358a5761358961442c565b5b613596878288016131df565b925092505092959194509250565b6000602082840312156135ba576135b9614431565b5b60006135c884828501613235565b91505092915050565b6000602082840312156135e7576135e6614431565b5b60006135f58482850161324a565b91505092915050565b60006020828403121561361457613613614431565b5b60006136228482850161325f565b91505092915050565b6000806020838503121561364257613641614431565b5b600083013567ffffffffffffffff8111156136605761365f61442c565b5b61366c858286016132a2565b92509250509250929050565b60006020828403121561368e5761368d614431565b5b600061369c848285016132f8565b91505092915050565b60006136b18383613b47565b60208301905092915050565b6136c68161419a565b82525050565b60006136d782614019565b6136e18185614047565b93506136ec83614009565b8060005b8381101561371d57815161370488826136a5565b975061370f8361403a565b9250506001810190506136f0565b5085935050505092915050565b613733816141ac565b82525050565b600061374482614024565b61374e8185614058565b935061375e81856020860161421d565b61376781614436565b840191505092915050565b600061377d8261402f565b6137878185614069565b935061379781856020860161421d565b6137a081614436565b840191505092915050565b60006137b68261402f565b6137c0818561407a565b93506137d081856020860161421d565b80840191505092915050565b60006137e9603283614069565b91506137f482614447565b604082019050919050565b600061380c602683614069565b915061381782614496565b604082019050919050565b600061382f601c83614069565b915061383a826144e5565b602082019050919050565b6000613852602483614069565b915061385d8261450e565b604082019050919050565b6000613875601683614069565b91506138808261455d565b602082019050919050565b6000613898602483614069565b91506138a382614586565b604082019050919050565b60006138bb601983614069565b91506138c6826145d5565b602082019050919050565b60006138de601283614069565b91506138e9826145fe565b602082019050919050565b6000613901602c83614069565b915061390c82614627565b604082019050919050565b6000613924600883614069565b915061392f82614676565b602082019050919050565b6000613947603883614069565b91506139528261469f565b604082019050919050565b600061396a602a83614069565b9150613975826146ee565b604082019050919050565b600061398d602983614069565b91506139988261473d565b604082019050919050565b60006139b0602083614069565b91506139bb8261478c565b602082019050919050565b60006139d3600a83614069565b91506139de826147b5565b602082019050919050565b60006139f6601383614069565b9150613a01826147de565b602082019050919050565b6000613a19602c83614069565b9150613a2482614807565b604082019050919050565b6000613a3c602083614069565b9150613a4782614856565b602082019050919050565b6000613a5f602983614069565b9150613a6a8261487f565b604082019050919050565b6000613a82602f83614069565b9150613a8d826148ce565b604082019050919050565b6000613aa5602183614069565b9150613ab08261491d565b604082019050919050565b6000613ac8602183614069565b9150613ad38261496c565b604082019050919050565b6000613aeb603183614069565b9150613af6826149bb565b604082019050919050565b6000613b0e600883614069565b9150613b1982614a0a565b602082019050919050565b6000613b31600c83614069565b9150613b3c82614a33565b602082019050919050565b613b5081614204565b82525050565b613b5f81614204565b82525050565b6000613b7182856137ab565b9150613b7d82846137ab565b91508190509392505050565b6000602082019050613b9e60008301846136bd565b92915050565b6000608082019050613bb960008301876136bd565b613bc660208301866136bd565b613bd36040830185613b56565b8181036060830152613be58184613739565b905095945050505050565b6000604082019050613c0560008301856136bd565b613c126020830184613b56565b9392505050565b60006020820190508181036000830152613c3381846136cc565b905092915050565b6000602082019050613c50600083018461372a565b92915050565b60006020820190508181036000830152613c708184613772565b905092915050565b60006020820190508181036000830152613c91816137dc565b9050919050565b60006020820190508181036000830152613cb1816137ff565b9050919050565b60006020820190508181036000830152613cd181613822565b9050919050565b60006020820190508181036000830152613cf181613845565b9050919050565b60006020820190508181036000830152613d1181613868565b9050919050565b60006020820190508181036000830152613d318161388b565b9050919050565b60006020820190508181036000830152613d51816138ae565b9050919050565b60006020820190508181036000830152613d71816138d1565b9050919050565b60006020820190508181036000830152613d91816138f4565b9050919050565b60006020820190508181036000830152613db181613917565b9050919050565b60006020820190508181036000830152613dd18161393a565b9050919050565b60006020820190508181036000830152613df18161395d565b9050919050565b60006020820190508181036000830152613e1181613980565b9050919050565b60006020820190508181036000830152613e31816139a3565b9050919050565b60006020820190508181036000830152613e51816139c6565b9050919050565b60006020820190508181036000830152613e71816139e9565b9050919050565b60006020820190508181036000830152613e9181613a0c565b9050919050565b60006020820190508181036000830152613eb181613a2f565b9050919050565b60006020820190508181036000830152613ed181613a52565b9050919050565b60006020820190508181036000830152613ef181613a75565b9050919050565b60006020820190508181036000830152613f1181613a98565b9050919050565b60006020820190508181036000830152613f3181613abb565b9050919050565b60006020820190508181036000830152613f5181613ade565b9050919050565b60006020820190508181036000830152613f7181613b01565b9050919050565b60006020820190508181036000830152613f9181613b24565b9050919050565b6000602082019050613fad6000830184613b56565b92915050565b6000613fbd613fce565b9050613fc98282614282565b919050565b6000604051905090565b600067ffffffffffffffff821115613ff357613ff26143e9565b5b613ffc82614436565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061409082614204565b915061409b83614204565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140d0576140cf61432d565b5b828201905092915050565b60006140e682614204565b91506140f183614204565b9250826141015761410061435c565b5b828204905092915050565b600061411782614204565b915061412283614204565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561415b5761415a61432d565b5b828202905092915050565b600061417182614204565b915061417c83614204565b92508282101561418f5761418e61432d565b5b828203905092915050565b60006141a5826141e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561423b578082015181840152602081019050614220565b8381111561424a576000848401525b50505050565b6000600282049050600182168061426857607f821691505b6020821081141561427c5761427b61438b565b5b50919050565b61428b82614436565b810181811067ffffffffffffffff821117156142aa576142a96143e9565b5b80604052505050565b60006142be82614204565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f1576142f061432d565b5b600182019050919050565b600061430782614204565b915061431283614204565b9250826143225761432161435c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436c61696d206f76657200000000000000000000000000000000000000000000600082015250565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4f4e4c5920484f4c444552530000000000000000000000000000000000000000600082015250565b614a658161419a565b8114614a7057600080fd5b50565b614a7c816141ac565b8114614a8757600080fd5b50565b614a93816141b8565b8114614a9e57600080fd5b50565b614aaa81614204565b8114614ab557600080fd5b5056fea2646970667358221220c145ece49c6aad674f176654e0d72f4f6e5bf1cea938335357af5fbdc274726764736f6c63430008060033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806373417b091161012e578063affed0e0116100ab578063d4a6a2fd1161006f578063d4a6a2fd14610833578063d96a094a1461085e578063e985e9c51461087a578063f2fde38b146108b7578063f7ea7a3d146108e05761023b565b8063affed0e014610762578063b88d4fde1461078d578063bb51f32d146107b6578063bc337182146107cd578063c87b56dd146107f65761023b565b806391b7f5ed116100f257806391b7f5ed1461069157806395d89b41146106ba578063a035b1fe146106e5578063a22cb46514610710578063ac568e84146107395761023b565b806373417b09146105c05780637437681e146105e95780637d4437c014610614578063841718a61461063d5780638da5cb5b146106665761023b565b80632a3e67fc116101bc5780636352211e116101805780636352211e146104c757806368428a1b146105045780636970bb0a1461052f57806370a082311461056c578063715018a6146105a95761023b565b80632a3e67fc1461041e57806330176e13146104475780633ccfd60b1461047057806342842e0e146104875780634e71d92d146104b05761023b565b80630ad29ec3116102035780630ad29ec31461033957806318160ddd1461036457806318a5bbdc1461038f57806322e8d8cd146103cc57806323b872dd146103f55761023b565b806301ffc9a714610240578063045b7dca1461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906135d1565b610909565b6040516102749190613c3b565b60405180910390f35b34801561028957600080fd5b506102926109eb565b60405161029f9190613f98565b60405180910390f35b3480156102b457600080fd5b506102bd6109f1565b6040516102ca9190613c56565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613678565b610a83565b6040516103079190613b89565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613490565b610b08565b005b34801561034557600080fd5b5061034e610c20565b60405161035b9190613f98565b60405180910390f35b34801561037057600080fd5b50610379610c26565b6040516103869190613f98565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b1919061330d565b610c2c565b6040516103c39190613f98565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613678565b610c44565b005b34801561040157600080fd5b5061041c6004803603810190610417919061337a565b610cca565b005b34801561042a57600080fd5b50610445600480360381019061044091906134d0565b610d2a565b005b34801561045357600080fd5b5061046e6004803603810190610469919061362b565b610e6c565b005b34801561047c57600080fd5b50610485610efe565b005b34801561049357600080fd5b506104ae60048036038101906104a9919061337a565b610fca565b005b3480156104bc57600080fd5b506104c5610fea565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613678565b61121c565b6040516104fb9190613b89565b60405180910390f35b34801561051057600080fd5b506105196112ce565b6040516105269190613c3b565b60405180910390f35b34801561053b57600080fd5b506105566004803603810190610551919061330d565b6112e1565b6040516105639190613c19565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061330d565b611378565b6040516105a09190613f98565b60405180910390f35b3480156105b557600080fd5b506105be611430565b005b3480156105cc57600080fd5b506105e760048036038101906105e291906135a4565b6114b8565b005b3480156105f557600080fd5b506105fe611551565b60405161060b9190613f98565b60405180910390f35b34801561062057600080fd5b5061063b60048036038101906106369190613523565b611557565b005b34801561064957600080fd5b50610664600480360381019061065f91906135a4565b61167f565b005b34801561067257600080fd5b5061067b611718565b6040516106889190613b89565b60405180910390f35b34801561069d57600080fd5b506106b860048036038101906106b39190613678565b611742565b005b3480156106c657600080fd5b506106cf6117c8565b6040516106dc9190613c56565b60405180910390f35b3480156106f157600080fd5b506106fa61185a565b6040516107079190613f98565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190613450565b611860565b005b34801561074557600080fd5b50610760600480360381019061075b9190613678565b6119e1565b005b34801561076e57600080fd5b50610777611a67565b6040516107849190613f98565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af91906133cd565b611a6d565b005b3480156107c257600080fd5b506107cb611acf565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190613678565b611d1f565b005b34801561080257600080fd5b5061081d60048036038101906108189190613678565b611da5565b60405161082a9190613c56565b60405180910390f35b34801561083f57600080fd5b50610848611e4c565b6040516108559190613c3b565b60405180910390f35b61087860048036038101906108739190613678565b611e5f565b005b34801561088657600080fd5b506108a1600480360381019061089c919061333a565b612051565b6040516108ae9190613c3b565b60405180910390f35b3480156108c357600080fd5b506108de60048036038101906108d9919061330d565b6120e5565b005b3480156108ec57600080fd5b5061090760048036038101906109029190613678565b6121dd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e457506109e382612263565b5b9050919050565b600a5481565b606060008054610a0090614250565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90614250565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e826122cd565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613e78565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b138261121c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90613ef8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba3612339565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc612339565b612051565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890613db8565b60405180910390fd5b610c1b8383612341565b505050565b600b5481565b60095481565b600f6020528060005260406000206000915090505481565b610c4c612339565b73ffffffffffffffffffffffffffffffffffffffff16610c6a611718565b73ffffffffffffffffffffffffffffffffffffffff1614610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790613e98565b60405180910390fd5b80600b8190555050565b610cdb610cd5612339565b826123fa565b610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190613f38565b60405180910390fd5b610d258383836124d8565b505050565b610d32612339565b73ffffffffffffffffffffffffffffffffffffffff16610d50611718565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613e98565b60405180910390fd5b60095482600c54610db79190614085565b1115610df8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610def90613d98565b60405180910390fd5b8015610e5d5781600b541015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90613e38565b60405180910390fd5b81600b6000828254610e559190614166565b925050819055505b610e678383612734565b505050565b610e74612339565b73ffffffffffffffffffffffffffffffffffffffff16610e92611718565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613e98565b60405180910390fd5b818160079190610ef992919061308f565b505050565b610f06612339565b73ffffffffffffffffffffffffffffffffffffffff16610f24611718565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613e98565b60405180910390fd5b610f82612339565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fc7573d6000803e3d6000fd5b50565b610fe583838360405180602001604052806000815250611a6d565b505050565b6000600f6000610ff8612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90613f78565b60405180910390fd5b600660159054906101000a900460ff166110c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b990613e58565b60405180910390fd5b6000600f60006110d0612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600b5411611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890613e38565b60405180910390fd5b60095481600c546111629190614085565b11156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90613d98565b60405180910390fd5b6000600f60006111b1612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600b60008282546112019190614166565b92505081905550611219611213612339565b82612734565b50565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bc90613df8565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b6060600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561136c57602002820191906000526020600020905b815481526020019060010190808311611358575b50505050509050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090613dd8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611438612339565b73ffffffffffffffffffffffffffffffffffffffff16611456611718565b73ffffffffffffffffffffffffffffffffffffffff16146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613e98565b60405180910390fd5b6114b6600061277b565b565b6114c0612339565b73ffffffffffffffffffffffffffffffffffffffff166114de611718565b73ffffffffffffffffffffffffffffffffffffffff1614611534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152b90613e98565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b600d5481565b61155f612339565b73ffffffffffffffffffffffffffffffffffffffff1661157d611718565b73ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ca90613e98565b60405180910390fd5b60005b84849050811015611678578282828181106115f4576115f36143ba565b5b90506020020135600f6000878785818110611612576116116143ba565b5b9050602002016020810190611627919061330d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611670906142b3565b9150506115d6565b5050505050565b611687612339565b73ffffffffffffffffffffffffffffffffffffffff166116a5611718565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f290613e98565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61174a612339565b73ffffffffffffffffffffffffffffffffffffffff16611768611718565b73ffffffffffffffffffffffffffffffffffffffff16146117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590613e98565b60405180910390fd5b8060088190555050565b6060600180546117d790614250565b80601f016020809104026020016040519081016040528092919081815260200182805461180390614250565b80156118505780601f1061182557610100808354040283529160200191611850565b820191906000526020600020905b81548152906001019060200180831161183357829003601f168201915b5050505050905090565b60085481565b611868612339565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cd90613d38565b60405180910390fd5b80600560006118e3612339565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611990612339565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d59190613c3b565b60405180910390a35050565b6119e9612339565b73ffffffffffffffffffffffffffffffffffffffff16611a07611718565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613e98565b60405180910390fd5b80600a8190555050565b600c5481565b611a7e611a78612339565b836123fa565b611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613f38565b60405180910390fd5b611ac984848484612841565b50505050565b611ad7612339565b73ffffffffffffffffffffffffffffffffffffffff16611af5611718565b73ffffffffffffffffffffffffffffffffffffffff1614611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613e98565b60405180910390fd5b60004790507323a8b7f4cf5fb0d40aa7db57b8cd376d3332130e73ffffffffffffffffffffffffffffffffffffffff166108fc6064602884611b8d919061410c565b611b9791906140db565b9081150290604051600060405180830381858888f19350505050158015611bc2573d6000803e3d6000fd5b5073268f5fa2adeb3a904fa60d4ffb904738f0dfe3b473ffffffffffffffffffffffffffffffffffffffff166108fc6064600f84611c00919061410c565b611c0a91906140db565b9081150290604051600060405180830381858888f19350505050158015611c35573d6000803e3d6000fd5b5073bcdc5969ec1652bf80fc15edfe50f9834a55067b73ffffffffffffffffffffffffffffffffffffffff166108fc6064601484611c73919061410c565b611c7d91906140db565b9081150290604051600060405180830381858888f19350505050158015611ca8573d6000803e3d6000fd5b50739bad8c60d464c23c2bdf164c2fe42f85c9a000f273ffffffffffffffffffffffffffffffffffffffff166108fc6064601984611ce6919061410c565b611cf091906140db565b9081150290604051600060405180830381858888f19350505050158015611d1b573d6000803e3d6000fd5b5050565b611d27612339565b73ffffffffffffffffffffffffffffffffffffffff16611d45611718565b73ffffffffffffffffffffffffffffffffffffffff1614611d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9290613e98565b60405180910390fd5b80600d8190555050565b6060611db0826122cd565b611def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de690613ed8565b60405180910390fd5b6000611df961289d565b90506000815111611e195760405180602001604052806000815250611e44565b80611e238461292f565b604051602001611e34929190613b65565b6040516020818303038152906040525b915050919050565b600660159054906101000a900460ff1681565b600660149054906101000a900460ff16611eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea590613d58565b60405180910390fd5b600d5481111580611ebf5750600181105b611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef590613cd8565b60405180910390fd5b600954600c5482611f0f9190614085565b1115611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790613f18565b60405180910390fd5b80600854611f5e919061410c565b3414611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9690613cf8565b60405180910390fd5b80600a541015611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90613f58565b60405180910390fd5b80600a6000828254611ff69190614166565b9250508190555061200e612008612339565b82612734565b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885612037612339565b82604051612046929190613bf0565b60405180910390a150565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120ed612339565b73ffffffffffffffffffffffffffffffffffffffff1661210b611718565b73ffffffffffffffffffffffffffffffffffffffff1614612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890613e98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890613c98565b60405180910390fd5b6121da8161277b565b50565b6121e5612339565b73ffffffffffffffffffffffffffffffffffffffff16612203611718565b73ffffffffffffffffffffffffffffffffffffffff1614612259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225090613e98565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123b48361121c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612405826122cd565b612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90613d78565b60405180910390fd5b600061244f8361121c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124be57508373ffffffffffffffffffffffffffffffffffffffff166124a684610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b806124cf57506124ce8185612051565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124f88261121c565b73ffffffffffffffffffffffffffffffffffffffff161461254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590613eb8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590613d18565b60405180910390fd5b6125c9838383612a90565b6125d4600082612341565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126249190614166565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267b9190614085565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60005b8181101561277657600c6000815480929190612752906142b3565b919050555061276383600c54612c9e565b808061276e906142b3565b915050612737565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61284c8484846124d8565b61285884848484612cbc565b612897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288e90613c78565b60405180910390fd5b50505050565b6060600780546128ac90614250565b80601f01602080910402602001604051908101604052809291908181526020018280546128d890614250565b80156129255780601f106128fa57610100808354040283529160200191612925565b820191906000526020600020905b81548152906001019060200180831161290857829003601f168201915b5050505050905090565b60606000821415612977576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a8b565b600082905060005b600082146129a9578080612992906142b3565b915050600a826129a291906140db565b915061297f565b60008167ffffffffffffffff8111156129c5576129c46143e9565b5b6040519080825280601f01601f1916602001820160405280156129f75781602001600182028036833780820191505090505b5090505b60008514612a8457600182612a109190614166565b9150600a85612a1f91906142fc565b6030612a2b9190614085565b60f81b818381518110612a4157612a406143ba565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a7d91906140db565b94506129fb565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bfe576000600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805480602002602001604051908101604052809291908181526020018280548015612b4f57602002820191906000526020600020905b815481526020019060010190808311612b3b575b5050505050905060005b8151811015612bfb5782828281518110612b7657612b756143ba565b5b60200260200101511415612be857600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208181548110612bd557612bd46143ba565b5b9060005260206000200160009055612bfb565b8080612bf3906142b3565b915050612b59565b50505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c9957600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555b505050565b612cb8828260405180602001604052806000815250612e53565b5050565b6000612cdd8473ffffffffffffffffffffffffffffffffffffffff16612eae565b15612e46578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d06612339565b8786866040518563ffffffff1660e01b8152600401612d289493929190613ba4565b602060405180830381600087803b158015612d4257600080fd5b505af1925050508015612d7357506040513d601f19601f82011682018060405250810190612d7091906135fe565b60015b612df6573d8060008114612da3576040519150601f19603f3d011682016040523d82523d6000602084013e612da8565b606091505b50600081511415612dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de590613c78565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e4b565b600190505b949350505050565b612e5d8383612ec1565b612e6a6000848484612cbc565b612ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea090613c78565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2890613e18565b60405180910390fd5b612f3a816122cd565b15612f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190613cb8565b60405180910390fd5b612f8660008383612a90565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fd69190614085565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461309b90614250565b90600052602060002090601f0160209004810192826130bd5760008555613104565b82601f106130d657803560ff1916838001178555613104565b82800160010185558215613104579182015b828111156131035782358255916020019190600101906130e8565b5b5090506131119190613115565b5090565b5b8082111561312e576000816000905550600101613116565b5090565b600061314561314084613fd8565b613fb3565b90508281526020810184848401111561316157613160614427565b5b61316c84828561420e565b509392505050565b60008135905061318381614a5c565b92915050565b60008083601f84011261319f5761319e61441d565b5b8235905067ffffffffffffffff8111156131bc576131bb614418565b5b6020830191508360208202830111156131d8576131d7614422565b5b9250929050565b60008083601f8401126131f5576131f461441d565b5b8235905067ffffffffffffffff81111561321257613211614418565b5b60208301915083602082028301111561322e5761322d614422565b5b9250929050565b60008135905061324481614a73565b92915050565b60008135905061325981614a8a565b92915050565b60008151905061326e81614a8a565b92915050565b600082601f8301126132895761328861441d565b5b8135613299848260208601613132565b91505092915050565b60008083601f8401126132b8576132b761441d565b5b8235905067ffffffffffffffff8111156132d5576132d4614418565b5b6020830191508360018202830111156132f1576132f0614422565b5b9250929050565b60008135905061330781614aa1565b92915050565b60006020828403121561332357613322614431565b5b600061333184828501613174565b91505092915050565b6000806040838503121561335157613350614431565b5b600061335f85828601613174565b925050602061337085828601613174565b9150509250929050565b60008060006060848603121561339357613392614431565b5b60006133a186828701613174565b93505060206133b286828701613174565b92505060406133c3868287016132f8565b9150509250925092565b600080600080608085870312156133e7576133e6614431565b5b60006133f587828801613174565b945050602061340687828801613174565b9350506040613417878288016132f8565b925050606085013567ffffffffffffffff8111156134385761343761442c565b5b61344487828801613274565b91505092959194509250565b6000806040838503121561346757613466614431565b5b600061347585828601613174565b925050602061348685828601613235565b9150509250929050565b600080604083850312156134a7576134a6614431565b5b60006134b585828601613174565b92505060206134c6858286016132f8565b9150509250929050565b6000806000606084860312156134e9576134e8614431565b5b60006134f786828701613174565b9350506020613508868287016132f8565b925050604061351986828701613235565b9150509250925092565b6000806000806040858703121561353d5761353c614431565b5b600085013567ffffffffffffffff81111561355b5761355a61442c565b5b61356787828801613189565b9450945050602085013567ffffffffffffffff81111561358a5761358961442c565b5b613596878288016131df565b925092505092959194509250565b6000602082840312156135ba576135b9614431565b5b60006135c884828501613235565b91505092915050565b6000602082840312156135e7576135e6614431565b5b60006135f58482850161324a565b91505092915050565b60006020828403121561361457613613614431565b5b60006136228482850161325f565b91505092915050565b6000806020838503121561364257613641614431565b5b600083013567ffffffffffffffff8111156136605761365f61442c565b5b61366c858286016132a2565b92509250509250929050565b60006020828403121561368e5761368d614431565b5b600061369c848285016132f8565b91505092915050565b60006136b18383613b47565b60208301905092915050565b6136c68161419a565b82525050565b60006136d782614019565b6136e18185614047565b93506136ec83614009565b8060005b8381101561371d57815161370488826136a5565b975061370f8361403a565b9250506001810190506136f0565b5085935050505092915050565b613733816141ac565b82525050565b600061374482614024565b61374e8185614058565b935061375e81856020860161421d565b61376781614436565b840191505092915050565b600061377d8261402f565b6137878185614069565b935061379781856020860161421d565b6137a081614436565b840191505092915050565b60006137b68261402f565b6137c0818561407a565b93506137d081856020860161421d565b80840191505092915050565b60006137e9603283614069565b91506137f482614447565b604082019050919050565b600061380c602683614069565b915061381782614496565b604082019050919050565b600061382f601c83614069565b915061383a826144e5565b602082019050919050565b6000613852602483614069565b915061385d8261450e565b604082019050919050565b6000613875601683614069565b91506138808261455d565b602082019050919050565b6000613898602483614069565b91506138a382614586565b604082019050919050565b60006138bb601983614069565b91506138c6826145d5565b602082019050919050565b60006138de601283614069565b91506138e9826145fe565b602082019050919050565b6000613901602c83614069565b915061390c82614627565b604082019050919050565b6000613924600883614069565b915061392f82614676565b602082019050919050565b6000613947603883614069565b91506139528261469f565b604082019050919050565b600061396a602a83614069565b9150613975826146ee565b604082019050919050565b600061398d602983614069565b91506139988261473d565b604082019050919050565b60006139b0602083614069565b91506139bb8261478c565b602082019050919050565b60006139d3600a83614069565b91506139de826147b5565b602082019050919050565b60006139f6601383614069565b9150613a01826147de565b602082019050919050565b6000613a19602c83614069565b9150613a2482614807565b604082019050919050565b6000613a3c602083614069565b9150613a4782614856565b602082019050919050565b6000613a5f602983614069565b9150613a6a8261487f565b604082019050919050565b6000613a82602f83614069565b9150613a8d826148ce565b604082019050919050565b6000613aa5602183614069565b9150613ab08261491d565b604082019050919050565b6000613ac8602183614069565b9150613ad38261496c565b604082019050919050565b6000613aeb603183614069565b9150613af6826149bb565b604082019050919050565b6000613b0e600883614069565b9150613b1982614a0a565b602082019050919050565b6000613b31600c83614069565b9150613b3c82614a33565b602082019050919050565b613b5081614204565b82525050565b613b5f81614204565b82525050565b6000613b7182856137ab565b9150613b7d82846137ab565b91508190509392505050565b6000602082019050613b9e60008301846136bd565b92915050565b6000608082019050613bb960008301876136bd565b613bc660208301866136bd565b613bd36040830185613b56565b8181036060830152613be58184613739565b905095945050505050565b6000604082019050613c0560008301856136bd565b613c126020830184613b56565b9392505050565b60006020820190508181036000830152613c3381846136cc565b905092915050565b6000602082019050613c50600083018461372a565b92915050565b60006020820190508181036000830152613c708184613772565b905092915050565b60006020820190508181036000830152613c91816137dc565b9050919050565b60006020820190508181036000830152613cb1816137ff565b9050919050565b60006020820190508181036000830152613cd181613822565b9050919050565b60006020820190508181036000830152613cf181613845565b9050919050565b60006020820190508181036000830152613d1181613868565b9050919050565b60006020820190508181036000830152613d318161388b565b9050919050565b60006020820190508181036000830152613d51816138ae565b9050919050565b60006020820190508181036000830152613d71816138d1565b9050919050565b60006020820190508181036000830152613d91816138f4565b9050919050565b60006020820190508181036000830152613db181613917565b9050919050565b60006020820190508181036000830152613dd18161393a565b9050919050565b60006020820190508181036000830152613df18161395d565b9050919050565b60006020820190508181036000830152613e1181613980565b9050919050565b60006020820190508181036000830152613e31816139a3565b9050919050565b60006020820190508181036000830152613e51816139c6565b9050919050565b60006020820190508181036000830152613e71816139e9565b9050919050565b60006020820190508181036000830152613e9181613a0c565b9050919050565b60006020820190508181036000830152613eb181613a2f565b9050919050565b60006020820190508181036000830152613ed181613a52565b9050919050565b60006020820190508181036000830152613ef181613a75565b9050919050565b60006020820190508181036000830152613f1181613a98565b9050919050565b60006020820190508181036000830152613f3181613abb565b9050919050565b60006020820190508181036000830152613f5181613ade565b9050919050565b60006020820190508181036000830152613f7181613b01565b9050919050565b60006020820190508181036000830152613f9181613b24565b9050919050565b6000602082019050613fad6000830184613b56565b92915050565b6000613fbd613fce565b9050613fc98282614282565b919050565b6000604051905090565b600067ffffffffffffffff821115613ff357613ff26143e9565b5b613ffc82614436565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061409082614204565b915061409b83614204565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140d0576140cf61432d565b5b828201905092915050565b60006140e682614204565b91506140f183614204565b9250826141015761410061435c565b5b828204905092915050565b600061411782614204565b915061412283614204565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561415b5761415a61432d565b5b828202905092915050565b600061417182614204565b915061417c83614204565b92508282101561418f5761418e61432d565b5b828203905092915050565b60006141a5826141e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561423b578082015181840152602081019050614220565b8381111561424a576000848401525b50505050565b6000600282049050600182168061426857607f821691505b6020821081141561427c5761427b61438b565b5b50919050565b61428b82614436565b810181811067ffffffffffffffff821117156142aa576142a96143e9565b5b80604052505050565b60006142be82614204565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f1576142f061432d565b5b600182019050919050565b600061430782614204565b915061431283614204565b9250826143225761432161435c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f436c61696d206f76657200000000000000000000000000000000000000000000600082015250565b7f436c61696d206973206e6f742061637469766500000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4f4e4c5920484f4c444552530000000000000000000000000000000000000000600082015250565b614a658161419a565b8114614a7057600080fd5b50565b614a7c816141ac565b8114614a8757600080fd5b50565b614a93816141b8565b8114614a9e57600080fd5b50565b614aaa81614204565b8114614ab557600080fd5b5056fea2646970667358221220c145ece49c6aad674f176654e0d72f4f6e5bf1cea938335357af5fbdc274726764736f6c63430008060033
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.