ERC-721
Overview
Max Total Supply
6,666 HOUNDS
Holders
1,928
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HOUNDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FoxyHounds
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./FoxyFam.sol"; contract FoxyHounds is ERC721, Ownable { bool public saleActive = false; bool public presaleActive = false; bool public claimActive = false; string internal baseTokenURI; uint public price = 0.03 ether; uint public totalSupply = 10000; uint public claimSupply = 3333; uint public nonce = 0; uint public claimed = 0; uint public maxTx = 3; FoxyFam public NFT; event Mint(address owner, uint qty); event Giveaway(address to, uint qty); event Withdraw(uint amount); mapping (address => uint256) public presaleWallets; mapping(uint => bool) public foxyMints; constructor(address nft) ERC721("FoxyHounds", "HOUNDS") { setFoxyFamAddress(nft); } function setFoxyFamAddress(address newAddress) public onlyOwner { NFT = FoxyFam(newAddress); } 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 setClaimSupply(uint newSupply) external onlyOwner { claimSupply = newSupply; } function setPresaleActive(bool val) public onlyOwner { presaleActive = val; } function setSaleActive(bool val) public onlyOwner { saleActive = val; } function setClaimActive(bool val) public onlyOwner { claimActive = val; } function setPresaleWallets(address[] memory _a, uint256[] memory _amount) public onlyOwner { for(uint256 i; i < _a.length; i++){ presaleWallets[_a[i]] = _amount[i]; } } function setMaxTx(uint newMax) external onlyOwner { maxTx = newMax; } function getFoxyByOwner(address owner) public view returns (uint[] memory) { uint[] memory balance = new uint[](NFT.balanceOf(owner)); uint counter = 0; for (uint i = 0; i < NFT.nonce(); i++) { if (NFT.ownerOf(i) == owner) { balance[counter] = i; counter++; } } return balance; } function getAssetsByOwner(address _owner) public view returns(uint[] memory) { uint[] memory result = new uint[](balanceOf(_owner)); uint counter = 0; for (uint i = 0; i < nonce; i++) { if (ownerOf(i) == _owner) { result[counter] = i; counter++; } } return result; } function getMyAssets() external view returns(uint[] memory){ return getAssetsByOwner(tx.origin); } function _baseURI() internal override view returns (string memory) { return baseTokenURI; } function giveaway(address to, uint qty) external onlyOwner { require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply"); for(uint i = 0; i < qty; i++){ uint tokenId = nonce; _safeMint(to, tokenId); nonce++; } emit Giveaway(to, qty); } function claim(uint[] memory ids) external { require(claimActive, "TRANSACTION: claim is not active"); require(ids.length + claimed <= claimSupply, "SUPPLY: Value exceeds totalSupply"); uint qty = 0; for(uint i=0; i < ids.length;i++){ uint tokenId = ids[i]; require(NFT.ownerOf(tokenId) == _msgSender(), "SENDER IS NOT OWNER"); require(foxyMints[tokenId] != true, "FOXY ALREADY CLAIMED"); if(foxyMints[tokenId] != true){ qty++; uint id = nonce; _safeMint(_msgSender(), id); nonce++; claimed++; foxyMints[tokenId] = true; } } emit Mint(_msgSender(), qty); } function buyPresale(uint qty) external payable { uint256 qtyAllowed = presaleWallets[msg.sender]; require(presaleActive, "TRANSACTION: Presale is not active"); require(qtyAllowed > 0, "TRANSACTION: You can't mint on presale"); require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply"); require(msg.value == price * qty, "PAYMENT: invalid value"); presaleWallets[msg.sender] = qtyAllowed - qty; for(uint i = 0; i < qty; i++){ uint tokenId = nonce; _safeMint(msg.sender, tokenId); nonce++; } emit Mint(msg.sender, qty); } function buy(uint qty) external payable { require(saleActive, "TRANSACTION: 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"); for(uint i = 0; i < qty; i++){ uint tokenId = nonce; _safeMint(msg.sender, tokenId); nonce++; } emit Mint(msg.sender, qty); } function withdrawOwner() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
// 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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract FoxyFam is ERC721, Ownable { bool public saleActive = false; bool public presaleActive = false; string internal baseTokenURI; uint public price = 0.06 ether; uint public totalSupply = 10000; uint public nonce = 0; uint public maxTx = 20; event Mint(address owner, uint qty); event Giveaway(address to, uint qty); event Withdraw(uint amount); address public m1; address public m2; address public m3; address public m4; mapping (address => uint256) public presaleWallets; constructor() ERC721("FoxyFam", "FOXY") {} 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 setPresaleActive(bool val) public onlyOwner { presaleActive = val; } function setSaleActive(bool val) public onlyOwner { saleActive = val; } function setPresaleWallets(address[] memory _a, uint256[] memory _amount) public onlyOwner { for(uint256 i; i < _a.length; i++){ presaleWallets[_a[i]] = _amount[i]; } } function setMembersAddresses(address[] memory _a) public onlyOwner { m1 = _a[0]; m2 = _a[1]; m3 = _a[2]; m4 = _a[3]; } function withdrawTeam(uint256 amount) public payable onlyOwner { uint256 percent = amount / 100; require(payable(m1).send(percent * 35)); require(payable(m2).send(percent * 35)); require(payable(m3).send(percent * 25)); require(payable(m4).send(percent * 5)); } function setMaxTx(uint newMax) external onlyOwner { maxTx = newMax; } function getAssetsByOwner(address _owner) public view returns(uint[] memory) { uint[] memory result = new uint[](balanceOf(_owner)); uint counter = 0; for (uint i = 0; i < nonce; i++) { if (ownerOf(i) == _owner) { result[counter] = i; counter++; } } return result; } function getMyAssets() external view returns(uint[] memory){ return getAssetsByOwner(tx.origin); } function _baseURI() internal override view returns (string memory) { return baseTokenURI; } function giveaway(address to, uint qty) external onlyOwner { require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply"); for(uint i = 0; i < qty; i++){ uint tokenId = nonce; _safeMint(to, tokenId); nonce++; } emit Giveaway(to, qty); } function buyPresale(uint qty) external payable { uint256 qtyAllowed = presaleWallets[msg.sender]; require(presaleActive, "TRANSACTION: Presale is not active"); require(qtyAllowed > 0, "TRANSACTION: You can't mint on presale"); require(qty + nonce <= totalSupply, "SUPPLY: Value exceeds totalSupply"); require(msg.value == price * qty, "PAYMENT: invalid value"); presaleWallets[msg.sender] = qtyAllowed - qty; for(uint i = 0; i < qty; i++){ uint tokenId = nonce; _safeMint(msg.sender, tokenId); nonce++; } emit Mint(msg.sender, qty); } function buy(uint qty) external payable { require(saleActive, "TRANSACTION: 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"); for(uint i = 0; i < qty; i++){ uint tokenId = nonce; _safeMint(msg.sender, tokenId); nonce++; } emit Mint(msg.sender, qty); } function withdrawOwner() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"nft","type":"address"}],"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":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"qty","type":"uint256"}],"name":"Giveaway","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":[],"name":"NFT","outputs":[{"internalType":"contract FoxyFam","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"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":[],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"foxyMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"getAssetsByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getFoxyByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyAssets","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"newAddress","type":"address"}],"name":"setFoxyFamAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"setPresaleWallets","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":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600660146101000a81548160ff0219169083151502179055506000600660156101000a81548160ff0219169083151502179055506000600660166101000a81548160ff021916908315150217905550666a94d74f430000600855612710600955610d05600a556000600b556000600c556003600d553480156200008857600080fd5b5060405162005785380380620057858339818101604052810190620000ae919062000418565b6040518060400160405280600a81526020017f466f7879486f756e6473000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f484f554e4453000000000000000000000000000000000000000000000000000081525081600090805190602001906200013292919062000351565b5080600190805190602001906200014b92919062000351565b5050506200016e620001626200018660201b60201c565b6200018e60201b60201c565b6200017f816200025460201b60201c565b506200057a565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002646200018660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028a6200032760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002da906200046b565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200035f90620004d2565b90600052602060002090601f016020900481019282620003835760008555620003cf565b82601f106200039e57805160ff1916838001178555620003cf565b82800160010185558215620003cf579182015b82811115620003ce578251825591602001919060010190620003b1565b5b509050620003de9190620003e2565b5090565b5b80821115620003fd576000816000905550600101620003e3565b5090565b600081519050620004128162000560565b92915050565b6000602082840312156200042b57600080fd5b60006200043b8482850162000401565b91505092915050565b6000620004536020836200048d565b9150620004608262000537565b602082019050919050565b60006020820190508181036000830152620004868162000444565b9050919050565b600082825260208201905092915050565b6000620004ab82620004b2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004eb57607f821691505b6020821081141562000502576200050162000508565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200056b816200049e565b81146200057757600080fd5b50565b6151fb806200058a6000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063affed0e0116100c1578063e834a8341161007a578063e834a83414610978578063e8cc00ad146109a3578063e985e9c5146109ba578063f2fde38b146109f7578063f5469ac314610a20578063f7ea7a3d14610a5d5761027d565b8063affed0e014610877578063b88d4fde146108a2578063bc337182146108cb578063c87b56dd146108f4578063d4a6a2fd14610931578063d96a094a1461095c5761027d565b80638da5cb5b116101135780638da5cb5b1461076757806391b7f5ed1461079257806395d89b41146107bb5780639f8aa3a7146107e6578063a035b1fe14610823578063a22cb4651461084e5761027d565b8063715018a6146106a857806373417b09146106bf5780637437681e146106e85780637c0b8de214610713578063841718a61461073e5761027d565b80632e6b106c116101f357806349c32217116101ac57806349c322171461059357806353135ca0146105af5780636352211e146105da57806368428a1b146106175780636ba4c1381461064257806370a082311461066b5761027d565b80632e6b106c1461048757806330176e13146104b057806330b2264e146104d95780633f8121a21461051657806342842e0e1461053f57806347002d1d146105685761027d565b80630ad29ec3116102455780630ad29ec31461037957806316b0e8b9146103a457806318160ddd146103cd57806322e8d8cd146103f857806323b872dd14610421578063276f09341461044a5761027d565b806301ffc9a714610282578063050225ea146102bf57806306fdde03146102e8578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613c24565b610a86565b6040516102b691906142b2565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613b12565b610b68565b005b3480156102f457600080fd5b506102fd610cbc565b60405161030a91906142e8565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613cbb565b610d4e565b6040516103479190614200565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613b12565b610dd3565b005b34801561038557600080fd5b5061038e610eeb565b60405161039b919061462a565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c6919061397e565b610ef1565b005b3480156103d957600080fd5b506103e2610fb1565b6040516103ef919061462a565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613cbb565b610fb7565b005b34801561042d57600080fd5b5061044860048036038101906104439190613a0c565b61103d565b005b34801561045657600080fd5b50610471600480360381019061046c919061397e565b61109d565b60405161047e9190614290565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613b4e565b6111d7565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613c76565b61133b565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061397e565b6113cd565b60405161050d919061462a565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613bfb565b6113e5565b005b34801561054b57600080fd5b5061056660048036038101906105619190613a0c565b61147e565b005b34801561057457600080fd5b5061057d61149e565b60405161058a9190614290565b60405180910390f35b6105ad60048036038101906105a89190613cbb565b6114ae565b005b3480156105bb57600080fd5b506105c46116fa565b6040516105d191906142b2565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613cbb565b61170d565b60405161060e9190614200565b60405180910390f35b34801561062357600080fd5b5061062c6117bf565b60405161063991906142b2565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613bba565b6117d2565b005b34801561067757600080fd5b50610692600480360381019061068d919061397e565b611b56565b60405161069f919061462a565b60405180910390f35b3480156106b457600080fd5b506106bd611c0e565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190613bfb565b611c96565b005b3480156106f457600080fd5b506106fd611d2f565b60405161070a919061462a565b60405180910390f35b34801561071f57600080fd5b50610728611d35565b60405161073591906142cd565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613bfb565b611d5b565b005b34801561077357600080fd5b5061077c611df4565b6040516107899190614200565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190613cbb565b611e1e565b005b3480156107c757600080fd5b506107d0611ea4565b6040516107dd91906142e8565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613cbb565b611f36565b60405161081a91906142b2565b60405180910390f35b34801561082f57600080fd5b50610838611f56565b604051610845919061462a565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613ad6565b611f5c565b005b34801561088357600080fd5b5061088c6120dd565b604051610899919061462a565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190613a5b565b6120e3565b005b3480156108d757600080fd5b506108f260048036038101906108ed9190613cbb565b612145565b005b34801561090057600080fd5b5061091b60048036038101906109169190613cbb565b6121cb565b60405161092891906142e8565b60405180910390f35b34801561093d57600080fd5b50610946612272565b60405161095391906142b2565b60405180910390f35b61097660048036038101906109719190613cbb565b612285565b005b34801561098457600080fd5b5061098d61244a565b60405161099a919061462a565b60405180910390f35b3480156109af57600080fd5b506109b8612450565b005b3480156109c657600080fd5b506109e160048036038101906109dc91906139d0565b612515565b6040516109ee91906142b2565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a19919061397e565b6125a9565b005b348015610a2c57600080fd5b50610a476004803603810190610a42919061397e565b6126a1565b604051610a549190614290565b60405180910390f35b348015610a6957600080fd5b50610a846004803603810190610a7f9190613cbb565b6129bc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b615750610b6082612a42565b5b9050919050565b610b70612aac565b73ffffffffffffffffffffffffffffffffffffffff16610b8e611df4565b73ffffffffffffffffffffffffffffffffffffffff1614610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906144ca565b60405180910390fd5b600954600b5482610bf5919061476f565b1115610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d9061458a565b60405180910390fd5b60005b81811015610c7e576000600b549050610c528482612ab4565b600b6000815480929190610c65906149c1565b9190505550508080610c76906149c1565b915050610c39565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610cb0929190614267565b60405180910390a15050565b606060008054610ccb9061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf79061495e565b8015610d445780601f10610d1957610100808354040283529160200191610d44565b820191906000526020600020905b815481529060010190602001808311610d2757829003601f168201915b5050505050905090565b6000610d5982612ad2565b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f906144aa565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dde8261170d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061454a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6e612aac565b73ffffffffffffffffffffffffffffffffffffffff161480610e9d5750610e9c81610e97612aac565b612515565b5b610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed39061440a565b60405180910390fd5b610ee68383612b3e565b505050565b600a5481565b610ef9612aac565b73ffffffffffffffffffffffffffffffffffffffff16610f17611df4565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f64906144ca565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b610fbf612aac565b73ffffffffffffffffffffffffffffffffffffffff16610fdd611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906144ca565b60405180910390fd5b80600a8190555050565b61104e611048612aac565b82612bf7565b61108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906145aa565b60405180910390fd5b611098838383612cd5565b505050565b606060006110aa83611b56565b67ffffffffffffffff8111156110e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111175781602001602082028036833780820191505090505b5090506000805b600b548110156111cc578473ffffffffffffffffffffffffffffffffffffffff166111488261170d565b73ffffffffffffffffffffffffffffffffffffffff1614156111b9578083838151811061119e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806111b5906149c1565b9250505b80806111c4906149c1565b91505061111e565b508192505050919050565b6111df612aac565b73ffffffffffffffffffffffffffffffffffffffff166111fd611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906144ca565b60405180910390fd5b60005b825181101561133657818181518110611298577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60008584815181106112dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061132e906149c1565b915050611256565b505050565b611343612aac565b73ffffffffffffffffffffffffffffffffffffffff16611361611df4565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906144ca565b60405180910390fd5b8181600791906113c892919061366a565b505050565b600f6020528060005260406000206000915090505481565b6113ed612aac565b73ffffffffffffffffffffffffffffffffffffffff1661140b611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906144ca565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b611499838383604051806020016040528060008152506120e3565b505050565b60606114a93261109d565b905090565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16611541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115389061452a565b60405180910390fd5b60008111611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b906145ca565b60405180910390fd5b600954600b5483611595919061476f565b11156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd9061458a565b60405180910390fd5b816008546115e491906147f6565b3414611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c9061438a565b60405180910390fd5b81816116319190614850565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156116bc576000600b5490506116903382612ab4565b600b60008154809291906116a3906149c1565b91905055505080806116b4906149c1565b915050611677565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533836040516116ee929190614267565b60405180910390a15050565b600660159054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061444a565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b600660169054906101000a900460ff16611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906145ea565b60405180910390fd5b600a54600c548251611833919061476f565b1115611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b9061458a565b60405180910390fd5b6000805b8251811015611b115760008382815181106118bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506118ce612aac565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161193f919061462a565b60206040518083038186803b15801561195757600080fd5b505afa15801561196b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198f91906139a7565b73ffffffffffffffffffffffffffffffffffffffff16146119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc9061460a565b60405180910390fd5b600115156010600083815260200190815260200160002060009054906101000a900460ff1615151415611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a449061456a565b60405180910390fd5b600115156010600083815260200190815260200160002060009054906101000a900460ff16151514611afd578280611a84906149c1565b9350506000600b549050611a9f611a99612aac565b82612ab4565b600b6000815480929190611ab2906149c1565b9190505550600c6000815480929190611aca906149c1565b919050555060016010600084815260200190815260200160002060006101000a81548160ff021916908315150217905550505b508080611b09906149c1565b915050611878565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611b3b612aac565b82604051611b4a929190614267565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe9061442a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c16612aac565b73ffffffffffffffffffffffffffffffffffffffff16611c34611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906144ca565b60405180910390fd5b611c946000612f31565b565b611c9e612aac565b73ffffffffffffffffffffffffffffffffffffffff16611cbc611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906144ca565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b600d5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d63612aac565b73ffffffffffffffffffffffffffffffffffffffff16611d81611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce906144ca565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e26612aac565b73ffffffffffffffffffffffffffffffffffffffff16611e44611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906144ca565b60405180910390fd5b8060088190555050565b606060018054611eb39061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054611edf9061495e565b8015611f2c5780601f10611f0157610100808354040283529160200191611f2c565b820191906000526020600020905b815481529060010190602001808311611f0f57829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b60085481565b611f64612aac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc9906143ca565b60405180910390fd5b8060056000611fdf612aac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661208c612aac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d191906142b2565b60405180910390a35050565b600b5481565b6120f46120ee612aac565b83612bf7565b612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906145aa565b60405180910390fd5b61213f84848484612ff7565b50505050565b61214d612aac565b73ffffffffffffffffffffffffffffffffffffffff1661216b611df4565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b8906144ca565b60405180910390fd5b80600d8190555050565b60606121d682612ad2565b612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c9061450a565b60405180910390fd5b600061221f613053565b9050600081511161223f576040518060200160405280600081525061226a565b80612249846130e5565b60405160200161225a9291906141dc565b6040516020818303038152906040525b915050919050565b600660169054906101000a900460ff1681565b600660149054906101000a900460ff166122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb9061448a565b60405180910390fd5b600d54811115806122e55750600181105b612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b9061436a565b60405180910390fd5b600954600b5482612335919061476f565b1115612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d9061458a565b60405180910390fd5b8060085461238491906147f6565b34146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc9061438a565b60405180910390fd5b60005b8181101561240d576000600b5490506123e13382612ab4565b600b60008154809291906123f4906149c1565b9190505550508080612405906149c1565b9150506123c8565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885338260405161243f929190614267565b60405180910390a150565b600c5481565b612458612aac565b73ffffffffffffffffffffffffffffffffffffffff16612476611df4565b73ffffffffffffffffffffffffffffffffffffffff16146124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c3906144ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612512573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125b1612aac565b73ffffffffffffffffffffffffffffffffffffffff166125cf611df4565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c906144ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c9061432a565b60405180910390fd5b61269e81612f31565b50565b60606000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016127009190614200565b60206040518083038186803b15801561271857600080fd5b505afa15801561272c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127509190613ce4565b67ffffffffffffffff81111561278f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156127bd5781602001602082028036833780820191505090505b5090506000805b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663affed0e06040518163ffffffff1660e01b815260040160206040518083038186803b15801561282c57600080fd5b505afa158015612840573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128649190613ce4565b8110156129b1578473ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016128dd919061462a565b60206040518083038186803b1580156128f557600080fd5b505afa158015612909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292d91906139a7565b73ffffffffffffffffffffffffffffffffffffffff16141561299e5780838381518110612983577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050818061299a906149c1565b9250505b80806129a9906149c1565b9150506127c4565b508192505050919050565b6129c4612aac565b73ffffffffffffffffffffffffffffffffffffffff166129e2611df4565b73ffffffffffffffffffffffffffffffffffffffff1614612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f906144ca565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612ace828260405180602001604052806000815250613292565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612bb18361170d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c0282612ad2565b612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c38906143ea565b60405180910390fd5b6000612c4c8361170d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cbb57508373ffffffffffffffffffffffffffffffffffffffff16612ca384610d4e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ccc5750612ccb8185612515565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cf58261170d565b73ffffffffffffffffffffffffffffffffffffffff1614612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d42906144ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db2906143aa565b60405180910390fd5b612dc68383836132ed565b612dd1600082612b3e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e219190614850565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e78919061476f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613002848484612cd5565b61300e848484846132f2565b61304d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130449061430a565b60405180910390fd5b50505050565b6060600780546130629061495e565b80601f016020809104026020016040519081016040528092919081815260200182805461308e9061495e565b80156130db5780601f106130b0576101008083540402835291602001916130db565b820191906000526020600020905b8154815290600101906020018083116130be57829003601f168201915b5050505050905090565b6060600082141561312d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061328d565b600082905060005b6000821461315f578080613148906149c1565b915050600a8261315891906147c5565b9150613135565b60008167ffffffffffffffff8111156131a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131d35781602001600182028036833780820191505090505b5090505b60008514613286576001826131ec9190614850565b9150600a856131fb9190614a0a565b6030613207919061476f565b60f81b818381518110613243577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561327f91906147c5565b94506131d7565b8093505050505b919050565b61329c8383613489565b6132a960008484846132f2565b6132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132df9061430a565b60405180910390fd5b505050565b505050565b60006133138473ffffffffffffffffffffffffffffffffffffffff16613657565b1561347c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261333c612aac565b8786866040518563ffffffff1660e01b815260040161335e949392919061421b565b602060405180830381600087803b15801561337857600080fd5b505af19250505080156133a957506040513d601f19601f820116820180604052508101906133a69190613c4d565b60015b61342c573d80600081146133d9576040519150601f19603f3d011682016040523d82523d6000602084013e6133de565b606091505b50600081511415613424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341b9061430a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613481565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f09061446a565b60405180910390fd5b61350281612ad2565b15613542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135399061434a565b60405180910390fd5b61354e600083836132ed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461359e919061476f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546136769061495e565b90600052602060002090601f01602090048101928261369857600085556136df565b82601f106136b157803560ff19168380011785556136df565b828001600101855582156136df579182015b828111156136de5782358255916020019190600101906136c3565b5b5090506136ec91906136f0565b5090565b5b808211156137095760008160009055506001016136f1565b5090565b600061372061371b8461466a565b614645565b9050808382526020820190508285602086028201111561373f57600080fd5b60005b8581101561376f57816137558882613823565b845260208401935060208301925050600181019050613742565b5050509392505050565b600061378c61378784614696565b614645565b905080838252602082019050828560208602820111156137ab57600080fd5b60005b858110156137db57816137c18882613954565b8452602084019350602083019250506001810190506137ae565b5050509392505050565b60006137f86137f3846146c2565b614645565b90508281526020810184848401111561381057600080fd5b61381b84828561491c565b509392505050565b60008135905061383281615169565b92915050565b60008151905061384781615169565b92915050565b600082601f83011261385e57600080fd5b813561386e84826020860161370d565b91505092915050565b600082601f83011261388857600080fd5b8135613898848260208601613779565b91505092915050565b6000813590506138b081615180565b92915050565b6000813590506138c581615197565b92915050565b6000815190506138da81615197565b92915050565b600082601f8301126138f157600080fd5b81356139018482602086016137e5565b91505092915050565b60008083601f84011261391c57600080fd5b8235905067ffffffffffffffff81111561393557600080fd5b60208301915083600182028301111561394d57600080fd5b9250929050565b600081359050613963816151ae565b92915050565b600081519050613978816151ae565b92915050565b60006020828403121561399057600080fd5b600061399e84828501613823565b91505092915050565b6000602082840312156139b957600080fd5b60006139c784828501613838565b91505092915050565b600080604083850312156139e357600080fd5b60006139f185828601613823565b9250506020613a0285828601613823565b9150509250929050565b600080600060608486031215613a2157600080fd5b6000613a2f86828701613823565b9350506020613a4086828701613823565b9250506040613a5186828701613954565b9150509250925092565b60008060008060808587031215613a7157600080fd5b6000613a7f87828801613823565b9450506020613a9087828801613823565b9350506040613aa187828801613954565b925050606085013567ffffffffffffffff811115613abe57600080fd5b613aca878288016138e0565b91505092959194509250565b60008060408385031215613ae957600080fd5b6000613af785828601613823565b9250506020613b08858286016138a1565b9150509250929050565b60008060408385031215613b2557600080fd5b6000613b3385828601613823565b9250506020613b4485828601613954565b9150509250929050565b60008060408385031215613b6157600080fd5b600083013567ffffffffffffffff811115613b7b57600080fd5b613b878582860161384d565b925050602083013567ffffffffffffffff811115613ba457600080fd5b613bb085828601613877565b9150509250929050565b600060208284031215613bcc57600080fd5b600082013567ffffffffffffffff811115613be657600080fd5b613bf284828501613877565b91505092915050565b600060208284031215613c0d57600080fd5b6000613c1b848285016138a1565b91505092915050565b600060208284031215613c3657600080fd5b6000613c44848285016138b6565b91505092915050565b600060208284031215613c5f57600080fd5b6000613c6d848285016138cb565b91505092915050565b60008060208385031215613c8957600080fd5b600083013567ffffffffffffffff811115613ca357600080fd5b613caf8582860161390a565b92509250509250929050565b600060208284031215613ccd57600080fd5b6000613cdb84828501613954565b91505092915050565b600060208284031215613cf657600080fd5b6000613d0484828501613969565b91505092915050565b6000613d1983836141be565b60208301905092915050565b613d2e81614884565b82525050565b6000613d3f82614703565b613d498185614731565b9350613d54836146f3565b8060005b83811015613d85578151613d6c8882613d0d565b9750613d7783614724565b925050600181019050613d58565b5085935050505092915050565b613d9b81614896565b82525050565b6000613dac8261470e565b613db68185614742565b9350613dc681856020860161492b565b613dcf81614af7565b840191505092915050565b613de3816148f8565b82525050565b6000613df482614719565b613dfe8185614753565b9350613e0e81856020860161492b565b613e1781614af7565b840191505092915050565b6000613e2d82614719565b613e378185614764565b9350613e4781856020860161492b565b80840191505092915050565b6000613e60603283614753565b9150613e6b82614b08565b604082019050919050565b6000613e83602683614753565b9150613e8e82614b57565b604082019050919050565b6000613ea6601c83614753565b9150613eb182614ba6565b602082019050919050565b6000613ec9602483614753565b9150613ed482614bcf565b604082019050919050565b6000613eec601683614753565b9150613ef782614c1e565b602082019050919050565b6000613f0f602483614753565b9150613f1a82614c47565b604082019050919050565b6000613f32601983614753565b9150613f3d82614c96565b602082019050919050565b6000613f55602c83614753565b9150613f6082614cbf565b604082019050919050565b6000613f78603883614753565b9150613f8382614d0e565b604082019050919050565b6000613f9b602a83614753565b9150613fa682614d5d565b604082019050919050565b6000613fbe602983614753565b9150613fc982614dac565b604082019050919050565b6000613fe1602083614753565b9150613fec82614dfb565b602082019050919050565b6000614004601f83614753565b915061400f82614e24565b602082019050919050565b6000614027602c83614753565b915061403282614e4d565b604082019050919050565b600061404a602083614753565b915061405582614e9c565b602082019050919050565b600061406d602983614753565b915061407882614ec5565b604082019050919050565b6000614090602f83614753565b915061409b82614f14565b604082019050919050565b60006140b3602283614753565b91506140be82614f63565b604082019050919050565b60006140d6602183614753565b91506140e182614fb2565b604082019050919050565b60006140f9601483614753565b915061410482615001565b602082019050919050565b600061411c602183614753565b91506141278261502a565b604082019050919050565b600061413f603183614753565b915061414a82615079565b604082019050919050565b6000614162602683614753565b915061416d826150c8565b604082019050919050565b6000614185602083614753565b915061419082615117565b602082019050919050565b60006141a8601383614753565b91506141b382615140565b602082019050919050565b6141c7816148ee565b82525050565b6141d6816148ee565b82525050565b60006141e88285613e22565b91506141f48284613e22565b91508190509392505050565b60006020820190506142156000830184613d25565b92915050565b60006080820190506142306000830187613d25565b61423d6020830186613d25565b61424a60408301856141cd565b818103606083015261425c8184613da1565b905095945050505050565b600060408201905061427c6000830185613d25565b61428960208301846141cd565b9392505050565b600060208201905081810360008301526142aa8184613d34565b905092915050565b60006020820190506142c76000830184613d92565b92915050565b60006020820190506142e26000830184613dda565b92915050565b600060208201905081810360008301526143028184613de9565b905092915050565b6000602082019050818103600083015261432381613e53565b9050919050565b6000602082019050818103600083015261434381613e76565b9050919050565b6000602082019050818103600083015261436381613e99565b9050919050565b6000602082019050818103600083015261438381613ebc565b9050919050565b600060208201905081810360008301526143a381613edf565b9050919050565b600060208201905081810360008301526143c381613f02565b9050919050565b600060208201905081810360008301526143e381613f25565b9050919050565b6000602082019050818103600083015261440381613f48565b9050919050565b6000602082019050818103600083015261442381613f6b565b9050919050565b6000602082019050818103600083015261444381613f8e565b9050919050565b6000602082019050818103600083015261446381613fb1565b9050919050565b6000602082019050818103600083015261448381613fd4565b9050919050565b600060208201905081810360008301526144a381613ff7565b9050919050565b600060208201905081810360008301526144c38161401a565b9050919050565b600060208201905081810360008301526144e38161403d565b9050919050565b6000602082019050818103600083015261450381614060565b9050919050565b6000602082019050818103600083015261452381614083565b9050919050565b60006020820190508181036000830152614543816140a6565b9050919050565b60006020820190508181036000830152614563816140c9565b9050919050565b60006020820190508181036000830152614583816140ec565b9050919050565b600060208201905081810360008301526145a38161410f565b9050919050565b600060208201905081810360008301526145c381614132565b9050919050565b600060208201905081810360008301526145e381614155565b9050919050565b6000602082019050818103600083015261460381614178565b9050919050565b600060208201905081810360008301526146238161419b565b9050919050565b600060208201905061463f60008301846141cd565b92915050565b600061464f614660565b905061465b8282614990565b919050565b6000604051905090565b600067ffffffffffffffff82111561468557614684614ac8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146b1576146b0614ac8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146dd576146dc614ac8565b5b6146e682614af7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061477a826148ee565b9150614785836148ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147ba576147b9614a3b565b5b828201905092915050565b60006147d0826148ee565b91506147db836148ee565b9250826147eb576147ea614a6a565b5b828204905092915050565b6000614801826148ee565b915061480c836148ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484557614844614a3b565b5b828202905092915050565b600061485b826148ee565b9150614866836148ee565b92508282101561487957614878614a3b565b5b828203905092915050565b600061488f826148ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006149038261490a565b9050919050565b6000614915826148ce565b9050919050565b82818337600083830152505050565b60005b8381101561494957808201518184015260208101905061492e565b83811115614958576000848401525b50505050565b6000600282049050600182168061497657607f821691505b6020821081141561498a57614989614a99565b5b50919050565b61499982614af7565b810181811067ffffffffffffffff821117156149b8576149b7614ac8565b5b80604052505050565b60006149cc826148ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ff576149fe614a3b565b5b600182019050919050565b6000614a15826148ee565b9150614a20836148ee565b925082614a3057614a2f614a6a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f464f585920414c524541445920434c41494d4544000000000000000000000000600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20636c61696d206973206e6f7420616374697665600082015250565b7f53454e444552204953204e4f54204f574e455200000000000000000000000000600082015250565b61517281614884565b811461517d57600080fd5b50565b61518981614896565b811461519457600080fd5b50565b6151a0816148a2565b81146151ab57600080fd5b50565b6151b7816148ee565b81146151c257600080fd5b5056fea26469706673582212208b43cbb5ee368b836c4d36724d614db925d7a35da6f122fdf16b09c1e049929e64736f6c63430008040033000000000000000000000000444467738cf0c5bcca9c1d6f66670f4c493e53ff
Deployed Bytecode
0x60806040526004361061027d5760003560e01c8063715018a61161014f578063affed0e0116100c1578063e834a8341161007a578063e834a83414610978578063e8cc00ad146109a3578063e985e9c5146109ba578063f2fde38b146109f7578063f5469ac314610a20578063f7ea7a3d14610a5d5761027d565b8063affed0e014610877578063b88d4fde146108a2578063bc337182146108cb578063c87b56dd146108f4578063d4a6a2fd14610931578063d96a094a1461095c5761027d565b80638da5cb5b116101135780638da5cb5b1461076757806391b7f5ed1461079257806395d89b41146107bb5780639f8aa3a7146107e6578063a035b1fe14610823578063a22cb4651461084e5761027d565b8063715018a6146106a857806373417b09146106bf5780637437681e146106e85780637c0b8de214610713578063841718a61461073e5761027d565b80632e6b106c116101f357806349c32217116101ac57806349c322171461059357806353135ca0146105af5780636352211e146105da57806368428a1b146106175780636ba4c1381461064257806370a082311461066b5761027d565b80632e6b106c1461048757806330176e13146104b057806330b2264e146104d95780633f8121a21461051657806342842e0e1461053f57806347002d1d146105685761027d565b80630ad29ec3116102455780630ad29ec31461037957806316b0e8b9146103a457806318160ddd146103cd57806322e8d8cd146103f857806323b872dd14610421578063276f09341461044a5761027d565b806301ffc9a714610282578063050225ea146102bf57806306fdde03146102e8578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613c24565b610a86565b6040516102b691906142b2565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613b12565b610b68565b005b3480156102f457600080fd5b506102fd610cbc565b60405161030a91906142e8565b60405180910390f35b34801561031f57600080fd5b5061033a60048036038101906103359190613cbb565b610d4e565b6040516103479190614200565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190613b12565b610dd3565b005b34801561038557600080fd5b5061038e610eeb565b60405161039b919061462a565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c6919061397e565b610ef1565b005b3480156103d957600080fd5b506103e2610fb1565b6040516103ef919061462a565b60405180910390f35b34801561040457600080fd5b5061041f600480360381019061041a9190613cbb565b610fb7565b005b34801561042d57600080fd5b5061044860048036038101906104439190613a0c565b61103d565b005b34801561045657600080fd5b50610471600480360381019061046c919061397e565b61109d565b60405161047e9190614290565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613b4e565b6111d7565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190613c76565b61133b565b005b3480156104e557600080fd5b5061050060048036038101906104fb919061397e565b6113cd565b60405161050d919061462a565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190613bfb565b6113e5565b005b34801561054b57600080fd5b5061056660048036038101906105619190613a0c565b61147e565b005b34801561057457600080fd5b5061057d61149e565b60405161058a9190614290565b60405180910390f35b6105ad60048036038101906105a89190613cbb565b6114ae565b005b3480156105bb57600080fd5b506105c46116fa565b6040516105d191906142b2565b60405180910390f35b3480156105e657600080fd5b5061060160048036038101906105fc9190613cbb565b61170d565b60405161060e9190614200565b60405180910390f35b34801561062357600080fd5b5061062c6117bf565b60405161063991906142b2565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190613bba565b6117d2565b005b34801561067757600080fd5b50610692600480360381019061068d919061397e565b611b56565b60405161069f919061462a565b60405180910390f35b3480156106b457600080fd5b506106bd611c0e565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190613bfb565b611c96565b005b3480156106f457600080fd5b506106fd611d2f565b60405161070a919061462a565b60405180910390f35b34801561071f57600080fd5b50610728611d35565b60405161073591906142cd565b60405180910390f35b34801561074a57600080fd5b5061076560048036038101906107609190613bfb565b611d5b565b005b34801561077357600080fd5b5061077c611df4565b6040516107899190614200565b60405180910390f35b34801561079e57600080fd5b506107b960048036038101906107b49190613cbb565b611e1e565b005b3480156107c757600080fd5b506107d0611ea4565b6040516107dd91906142e8565b60405180910390f35b3480156107f257600080fd5b5061080d60048036038101906108089190613cbb565b611f36565b60405161081a91906142b2565b60405180910390f35b34801561082f57600080fd5b50610838611f56565b604051610845919061462a565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190613ad6565b611f5c565b005b34801561088357600080fd5b5061088c6120dd565b604051610899919061462a565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190613a5b565b6120e3565b005b3480156108d757600080fd5b506108f260048036038101906108ed9190613cbb565b612145565b005b34801561090057600080fd5b5061091b60048036038101906109169190613cbb565b6121cb565b60405161092891906142e8565b60405180910390f35b34801561093d57600080fd5b50610946612272565b60405161095391906142b2565b60405180910390f35b61097660048036038101906109719190613cbb565b612285565b005b34801561098457600080fd5b5061098d61244a565b60405161099a919061462a565b60405180910390f35b3480156109af57600080fd5b506109b8612450565b005b3480156109c657600080fd5b506109e160048036038101906109dc91906139d0565b612515565b6040516109ee91906142b2565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a19919061397e565b6125a9565b005b348015610a2c57600080fd5b50610a476004803603810190610a42919061397e565b6126a1565b604051610a549190614290565b60405180910390f35b348015610a6957600080fd5b50610a846004803603810190610a7f9190613cbb565b6129bc565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b5157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b615750610b6082612a42565b5b9050919050565b610b70612aac565b73ffffffffffffffffffffffffffffffffffffffff16610b8e611df4565b73ffffffffffffffffffffffffffffffffffffffff1614610be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdb906144ca565b60405180910390fd5b600954600b5482610bf5919061476f565b1115610c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2d9061458a565b60405180910390fd5b60005b81811015610c7e576000600b549050610c528482612ab4565b600b6000815480929190610c65906149c1565b9190505550508080610c76906149c1565b915050610c39565b507f2118eda2a5fcc2e5f909a608477a856272adadcb48e1373747c51d2d3f6fc2ef8282604051610cb0929190614267565b60405180910390a15050565b606060008054610ccb9061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf79061495e565b8015610d445780601f10610d1957610100808354040283529160200191610d44565b820191906000526020600020905b815481529060010190602001808311610d2757829003601f168201915b5050505050905090565b6000610d5982612ad2565b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f906144aa565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dde8261170d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e469061454a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e6e612aac565b73ffffffffffffffffffffffffffffffffffffffff161480610e9d5750610e9c81610e97612aac565b612515565b5b610edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed39061440a565b60405180910390fd5b610ee68383612b3e565b505050565b600a5481565b610ef9612aac565b73ffffffffffffffffffffffffffffffffffffffff16610f17611df4565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f64906144ca565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b610fbf612aac565b73ffffffffffffffffffffffffffffffffffffffff16610fdd611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906144ca565b60405180910390fd5b80600a8190555050565b61104e611048612aac565b82612bf7565b61108d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611084906145aa565b60405180910390fd5b611098838383612cd5565b505050565b606060006110aa83611b56565b67ffffffffffffffff8111156110e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156111175781602001602082028036833780820191505090505b5090506000805b600b548110156111cc578473ffffffffffffffffffffffffffffffffffffffff166111488261170d565b73ffffffffffffffffffffffffffffffffffffffff1614156111b9578083838151811061119e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505081806111b5906149c1565b9250505b80806111c4906149c1565b91505061111e565b508192505050919050565b6111df612aac565b73ffffffffffffffffffffffffffffffffffffffff166111fd611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906144ca565b60405180910390fd5b60005b825181101561133657818181518110611298577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600f60008584815181106112dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061132e906149c1565b915050611256565b505050565b611343612aac565b73ffffffffffffffffffffffffffffffffffffffff16611361611df4565b73ffffffffffffffffffffffffffffffffffffffff16146113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae906144ca565b60405180910390fd5b8181600791906113c892919061366a565b505050565b600f6020528060005260406000206000915090505481565b6113ed612aac565b73ffffffffffffffffffffffffffffffffffffffff1661140b611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611461576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611458906144ca565b60405180910390fd5b80600660156101000a81548160ff02191690831515021790555050565b611499838383604051806020016040528060008152506120e3565b505050565b60606114a93261109d565b905090565b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600660159054906101000a900460ff16611541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115389061452a565b60405180910390fd5b60008111611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b906145ca565b60405180910390fd5b600954600b5483611595919061476f565b11156115d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cd9061458a565b60405180910390fd5b816008546115e491906147f6565b3414611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c9061438a565b60405180910390fd5b81816116319190614850565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156116bc576000600b5490506116903382612ab4565b600b60008154809291906116a3906149c1565b91905055505080806116b4906149c1565b915050611677565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533836040516116ee929190614267565b60405180910390a15050565b600660159054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad9061444a565b60405180910390fd5b80915050919050565b600660149054906101000a900460ff1681565b600660169054906101000a900460ff16611821576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611818906145ea565b60405180910390fd5b600a54600c548251611833919061476f565b1115611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b9061458a565b60405180910390fd5b6000805b8251811015611b115760008382815181106118bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506118ce612aac565b73ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161193f919061462a565b60206040518083038186803b15801561195757600080fd5b505afa15801561196b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198f91906139a7565b73ffffffffffffffffffffffffffffffffffffffff16146119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc9061460a565b60405180910390fd5b600115156010600083815260200190815260200160002060009054906101000a900460ff1615151415611a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a449061456a565b60405180910390fd5b600115156010600083815260200190815260200160002060009054906101000a900460ff16151514611afd578280611a84906149c1565b9350506000600b549050611a9f611a99612aac565b82612ab4565b600b6000815480929190611ab2906149c1565b9190505550600c6000815480929190611aca906149c1565b919050555060016010600084815260200190815260200160002060006101000a81548160ff021916908315150217905550505b508080611b09906149c1565b915050611878565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885611b3b612aac565b82604051611b4a929190614267565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbe9061442a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c16612aac565b73ffffffffffffffffffffffffffffffffffffffff16611c34611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c81906144ca565b60405180910390fd5b611c946000612f31565b565b611c9e612aac565b73ffffffffffffffffffffffffffffffffffffffff16611cbc611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d09906144ca565b60405180910390fd5b80600660166101000a81548160ff02191690831515021790555050565b600d5481565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611d63612aac565b73ffffffffffffffffffffffffffffffffffffffff16611d81611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce906144ca565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611e26612aac565b73ffffffffffffffffffffffffffffffffffffffff16611e44611df4565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906144ca565b60405180910390fd5b8060088190555050565b606060018054611eb39061495e565b80601f0160208091040260200160405190810160405280929190818152602001828054611edf9061495e565b8015611f2c5780601f10611f0157610100808354040283529160200191611f2c565b820191906000526020600020905b815481529060010190602001808311611f0f57829003601f168201915b5050505050905090565b60106020528060005260406000206000915054906101000a900460ff1681565b60085481565b611f64612aac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc9906143ca565b60405180910390fd5b8060056000611fdf612aac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661208c612aac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120d191906142b2565b60405180910390a35050565b600b5481565b6120f46120ee612aac565b83612bf7565b612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906145aa565b60405180910390fd5b61213f84848484612ff7565b50505050565b61214d612aac565b73ffffffffffffffffffffffffffffffffffffffff1661216b611df4565b73ffffffffffffffffffffffffffffffffffffffff16146121c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b8906144ca565b60405180910390fd5b80600d8190555050565b60606121d682612ad2565b612215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220c9061450a565b60405180910390fd5b600061221f613053565b9050600081511161223f576040518060200160405280600081525061226a565b80612249846130e5565b60405160200161225a9291906141dc565b6040516020818303038152906040525b915050919050565b600660169054906101000a900460ff1681565b600660149054906101000a900460ff166122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb9061448a565b60405180910390fd5b600d54811115806122e55750600181105b612324576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231b9061436a565b60405180910390fd5b600954600b5482612335919061476f565b1115612376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236d9061458a565b60405180910390fd5b8060085461238491906147f6565b34146123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc9061438a565b60405180910390fd5b60005b8181101561240d576000600b5490506123e13382612ab4565b600b60008154809291906123f4906149c1565b9190505550508080612405906149c1565b9150506123c8565b507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885338260405161243f929190614267565b60405180910390a150565b600c5481565b612458612aac565b73ffffffffffffffffffffffffffffffffffffffff16612476611df4565b73ffffffffffffffffffffffffffffffffffffffff16146124cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c3906144ca565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612512573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6125b1612aac565b73ffffffffffffffffffffffffffffffffffffffff166125cf611df4565b73ffffffffffffffffffffffffffffffffffffffff1614612625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261c906144ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c9061432a565b60405180910390fd5b61269e81612f31565b50565b60606000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b81526004016127009190614200565b60206040518083038186803b15801561271857600080fd5b505afa15801561272c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127509190613ce4565b67ffffffffffffffff81111561278f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156127bd5781602001602082028036833780820191505090505b5090506000805b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663affed0e06040518163ffffffff1660e01b815260040160206040518083038186803b15801561282c57600080fd5b505afa158015612840573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128649190613ce4565b8110156129b1578473ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b81526004016128dd919061462a565b60206040518083038186803b1580156128f557600080fd5b505afa158015612909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061292d91906139a7565b73ffffffffffffffffffffffffffffffffffffffff16141561299e5780838381518110612983577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050818061299a906149c1565b9250505b80806129a9906149c1565b9150506127c4565b508192505050919050565b6129c4612aac565b73ffffffffffffffffffffffffffffffffffffffff166129e2611df4565b73ffffffffffffffffffffffffffffffffffffffff1614612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f906144ca565b60405180910390fd5b8060098190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b612ace828260405180602001604052806000815250613292565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612bb18361170d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612c0282612ad2565b612c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c38906143ea565b60405180910390fd5b6000612c4c8361170d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cbb57508373ffffffffffffffffffffffffffffffffffffffff16612ca384610d4e565b73ffffffffffffffffffffffffffffffffffffffff16145b80612ccc5750612ccb8185612515565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cf58261170d565b73ffffffffffffffffffffffffffffffffffffffff1614612d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d42906144ea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db2906143aa565b60405180910390fd5b612dc68383836132ed565b612dd1600082612b3e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e219190614850565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e78919061476f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613002848484612cd5565b61300e848484846132f2565b61304d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130449061430a565b60405180910390fd5b50505050565b6060600780546130629061495e565b80601f016020809104026020016040519081016040528092919081815260200182805461308e9061495e565b80156130db5780601f106130b0576101008083540402835291602001916130db565b820191906000526020600020905b8154815290600101906020018083116130be57829003601f168201915b5050505050905090565b6060600082141561312d576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061328d565b600082905060005b6000821461315f578080613148906149c1565b915050600a8261315891906147c5565b9150613135565b60008167ffffffffffffffff8111156131a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131d35781602001600182028036833780820191505090505b5090505b60008514613286576001826131ec9190614850565b9150600a856131fb9190614a0a565b6030613207919061476f565b60f81b818381518110613243577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561327f91906147c5565b94506131d7565b8093505050505b919050565b61329c8383613489565b6132a960008484846132f2565b6132e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132df9061430a565b60405180910390fd5b505050565b505050565b60006133138473ffffffffffffffffffffffffffffffffffffffff16613657565b1561347c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261333c612aac565b8786866040518563ffffffff1660e01b815260040161335e949392919061421b565b602060405180830381600087803b15801561337857600080fd5b505af19250505080156133a957506040513d601f19601f820116820180604052508101906133a69190613c4d565b60015b61342c573d80600081146133d9576040519150601f19603f3d011682016040523d82523d6000602084013e6133de565b606091505b50600081511415613424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341b9061430a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613481565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134f09061446a565b60405180910390fd5b61350281612ad2565b15613542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135399061434a565b60405180910390fd5b61354e600083836132ed565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461359e919061476f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546136769061495e565b90600052602060002090601f01602090048101928261369857600085556136df565b82601f106136b157803560ff19168380011785556136df565b828001600101855582156136df579182015b828111156136de5782358255916020019190600101906136c3565b5b5090506136ec91906136f0565b5090565b5b808211156137095760008160009055506001016136f1565b5090565b600061372061371b8461466a565b614645565b9050808382526020820190508285602086028201111561373f57600080fd5b60005b8581101561376f57816137558882613823565b845260208401935060208301925050600181019050613742565b5050509392505050565b600061378c61378784614696565b614645565b905080838252602082019050828560208602820111156137ab57600080fd5b60005b858110156137db57816137c18882613954565b8452602084019350602083019250506001810190506137ae565b5050509392505050565b60006137f86137f3846146c2565b614645565b90508281526020810184848401111561381057600080fd5b61381b84828561491c565b509392505050565b60008135905061383281615169565b92915050565b60008151905061384781615169565b92915050565b600082601f83011261385e57600080fd5b813561386e84826020860161370d565b91505092915050565b600082601f83011261388857600080fd5b8135613898848260208601613779565b91505092915050565b6000813590506138b081615180565b92915050565b6000813590506138c581615197565b92915050565b6000815190506138da81615197565b92915050565b600082601f8301126138f157600080fd5b81356139018482602086016137e5565b91505092915050565b60008083601f84011261391c57600080fd5b8235905067ffffffffffffffff81111561393557600080fd5b60208301915083600182028301111561394d57600080fd5b9250929050565b600081359050613963816151ae565b92915050565b600081519050613978816151ae565b92915050565b60006020828403121561399057600080fd5b600061399e84828501613823565b91505092915050565b6000602082840312156139b957600080fd5b60006139c784828501613838565b91505092915050565b600080604083850312156139e357600080fd5b60006139f185828601613823565b9250506020613a0285828601613823565b9150509250929050565b600080600060608486031215613a2157600080fd5b6000613a2f86828701613823565b9350506020613a4086828701613823565b9250506040613a5186828701613954565b9150509250925092565b60008060008060808587031215613a7157600080fd5b6000613a7f87828801613823565b9450506020613a9087828801613823565b9350506040613aa187828801613954565b925050606085013567ffffffffffffffff811115613abe57600080fd5b613aca878288016138e0565b91505092959194509250565b60008060408385031215613ae957600080fd5b6000613af785828601613823565b9250506020613b08858286016138a1565b9150509250929050565b60008060408385031215613b2557600080fd5b6000613b3385828601613823565b9250506020613b4485828601613954565b9150509250929050565b60008060408385031215613b6157600080fd5b600083013567ffffffffffffffff811115613b7b57600080fd5b613b878582860161384d565b925050602083013567ffffffffffffffff811115613ba457600080fd5b613bb085828601613877565b9150509250929050565b600060208284031215613bcc57600080fd5b600082013567ffffffffffffffff811115613be657600080fd5b613bf284828501613877565b91505092915050565b600060208284031215613c0d57600080fd5b6000613c1b848285016138a1565b91505092915050565b600060208284031215613c3657600080fd5b6000613c44848285016138b6565b91505092915050565b600060208284031215613c5f57600080fd5b6000613c6d848285016138cb565b91505092915050565b60008060208385031215613c8957600080fd5b600083013567ffffffffffffffff811115613ca357600080fd5b613caf8582860161390a565b92509250509250929050565b600060208284031215613ccd57600080fd5b6000613cdb84828501613954565b91505092915050565b600060208284031215613cf657600080fd5b6000613d0484828501613969565b91505092915050565b6000613d1983836141be565b60208301905092915050565b613d2e81614884565b82525050565b6000613d3f82614703565b613d498185614731565b9350613d54836146f3565b8060005b83811015613d85578151613d6c8882613d0d565b9750613d7783614724565b925050600181019050613d58565b5085935050505092915050565b613d9b81614896565b82525050565b6000613dac8261470e565b613db68185614742565b9350613dc681856020860161492b565b613dcf81614af7565b840191505092915050565b613de3816148f8565b82525050565b6000613df482614719565b613dfe8185614753565b9350613e0e81856020860161492b565b613e1781614af7565b840191505092915050565b6000613e2d82614719565b613e378185614764565b9350613e4781856020860161492b565b80840191505092915050565b6000613e60603283614753565b9150613e6b82614b08565b604082019050919050565b6000613e83602683614753565b9150613e8e82614b57565b604082019050919050565b6000613ea6601c83614753565b9150613eb182614ba6565b602082019050919050565b6000613ec9602483614753565b9150613ed482614bcf565b604082019050919050565b6000613eec601683614753565b9150613ef782614c1e565b602082019050919050565b6000613f0f602483614753565b9150613f1a82614c47565b604082019050919050565b6000613f32601983614753565b9150613f3d82614c96565b602082019050919050565b6000613f55602c83614753565b9150613f6082614cbf565b604082019050919050565b6000613f78603883614753565b9150613f8382614d0e565b604082019050919050565b6000613f9b602a83614753565b9150613fa682614d5d565b604082019050919050565b6000613fbe602983614753565b9150613fc982614dac565b604082019050919050565b6000613fe1602083614753565b9150613fec82614dfb565b602082019050919050565b6000614004601f83614753565b915061400f82614e24565b602082019050919050565b6000614027602c83614753565b915061403282614e4d565b604082019050919050565b600061404a602083614753565b915061405582614e9c565b602082019050919050565b600061406d602983614753565b915061407882614ec5565b604082019050919050565b6000614090602f83614753565b915061409b82614f14565b604082019050919050565b60006140b3602283614753565b91506140be82614f63565b604082019050919050565b60006140d6602183614753565b91506140e182614fb2565b604082019050919050565b60006140f9601483614753565b915061410482615001565b602082019050919050565b600061411c602183614753565b91506141278261502a565b604082019050919050565b600061413f603183614753565b915061414a82615079565b604082019050919050565b6000614162602683614753565b915061416d826150c8565b604082019050919050565b6000614185602083614753565b915061419082615117565b602082019050919050565b60006141a8601383614753565b91506141b382615140565b602082019050919050565b6141c7816148ee565b82525050565b6141d6816148ee565b82525050565b60006141e88285613e22565b91506141f48284613e22565b91508190509392505050565b60006020820190506142156000830184613d25565b92915050565b60006080820190506142306000830187613d25565b61423d6020830186613d25565b61424a60408301856141cd565b818103606083015261425c8184613da1565b905095945050505050565b600060408201905061427c6000830185613d25565b61428960208301846141cd565b9392505050565b600060208201905081810360008301526142aa8184613d34565b905092915050565b60006020820190506142c76000830184613d92565b92915050565b60006020820190506142e26000830184613dda565b92915050565b600060208201905081810360008301526143028184613de9565b905092915050565b6000602082019050818103600083015261432381613e53565b9050919050565b6000602082019050818103600083015261434381613e76565b9050919050565b6000602082019050818103600083015261436381613e99565b9050919050565b6000602082019050818103600083015261438381613ebc565b9050919050565b600060208201905081810360008301526143a381613edf565b9050919050565b600060208201905081810360008301526143c381613f02565b9050919050565b600060208201905081810360008301526143e381613f25565b9050919050565b6000602082019050818103600083015261440381613f48565b9050919050565b6000602082019050818103600083015261442381613f6b565b9050919050565b6000602082019050818103600083015261444381613f8e565b9050919050565b6000602082019050818103600083015261446381613fb1565b9050919050565b6000602082019050818103600083015261448381613fd4565b9050919050565b600060208201905081810360008301526144a381613ff7565b9050919050565b600060208201905081810360008301526144c38161401a565b9050919050565b600060208201905081810360008301526144e38161403d565b9050919050565b6000602082019050818103600083015261450381614060565b9050919050565b6000602082019050818103600083015261452381614083565b9050919050565b60006020820190508181036000830152614543816140a6565b9050919050565b60006020820190508181036000830152614563816140c9565b9050919050565b60006020820190508181036000830152614583816140ec565b9050919050565b600060208201905081810360008301526145a38161410f565b9050919050565b600060208201905081810360008301526145c381614132565b9050919050565b600060208201905081810360008301526145e381614155565b9050919050565b6000602082019050818103600083015261460381614178565b9050919050565b600060208201905081810360008301526146238161419b565b9050919050565b600060208201905061463f60008301846141cd565b92915050565b600061464f614660565b905061465b8282614990565b919050565b6000604051905090565b600067ffffffffffffffff82111561468557614684614ac8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146b1576146b0614ac8565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156146dd576146dc614ac8565b5b6146e682614af7565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061477a826148ee565b9150614785836148ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147ba576147b9614a3b565b5b828201905092915050565b60006147d0826148ee565b91506147db836148ee565b9250826147eb576147ea614a6a565b5b828204905092915050565b6000614801826148ee565b915061480c836148ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561484557614844614a3b565b5b828202905092915050565b600061485b826148ee565b9150614866836148ee565b92508282101561487957614878614a3b565b5b828203905092915050565b600061488f826148ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006149038261490a565b9050919050565b6000614915826148ce565b9050919050565b82818337600083830152505050565b60005b8381101561494957808201518184015260208101905061492e565b83811115614958576000848401525b50505050565b6000600282049050600182168061497657607f821691505b6020821081141561498a57614989614a99565b5b50919050565b61499982614af7565b810181811067ffffffffffffffff821117156149b8576149b7614ac8565b5b80604052505050565b60006149cc826148ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149ff576149fe614a3b565b5b600182019050919050565b6000614a15826148ee565b9150614a20836148ee565b925082614a3057614a2f614a6a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5452414e53414354494f4e3a20717479206f66206d696e7473206e6f7420616c60008201527f6f77656400000000000000000000000000000000000000000000000000000000602082015250565b7f5041594d454e543a20696e76616c69642076616c756500000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f5452414e53414354494f4e3a2073616c65206973206e6f742061637469766500600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a2050726573616c65206973206e6f74206163746960008201527f7665000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f464f585920414c524541445920434c41494d4544000000000000000000000000600082015250565b7f535550504c593a2056616c7565206578636565647320746f74616c537570706c60008201527f7900000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20596f752063616e2774206d696e74206f6e207060008201527f726573616c650000000000000000000000000000000000000000000000000000602082015250565b7f5452414e53414354494f4e3a20636c61696d206973206e6f7420616374697665600082015250565b7f53454e444552204953204e4f54204f574e455200000000000000000000000000600082015250565b61517281614884565b811461517d57600080fd5b50565b61518981614896565b811461519457600080fd5b50565b6151a0816148a2565b81146151ab57600080fd5b50565b6151b7816148ee565b81146151c257600080fd5b5056fea26469706673582212208b43cbb5ee368b836c4d36724d614db925d7a35da6f122fdf16b09c1e049929e64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000444467738cf0c5bcca9c1d6f66670f4c493e53ff
-----Decoded View---------------
Arg [0] : nft (address): 0x444467738cf0c5bcCa9C1d6F66670F4c493E53fF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000444467738cf0c5bcca9c1d6f66670f4c493e53ff
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.