Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
39 WEICARD
Holders
29
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WEICARDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WeiCardsWrapper
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; interface WeiCards { function getCard(uint8 _cardId) external view returns ( uint8 id, address owner, string calldata title, string calldata url, string calldata image, bool nsfw ); function transferCardOwnership(address to, uint8 cardId) external returns (bool success); function editCard( uint8 cardId, string calldata title, string calldata url, string calldata image ) external returns (bool success); function getCardDetails(uint8 cardId) external view returns ( uint8 id, uint256 price, uint256 priceLease, uint256 leaseDuration, bool availableBuy, bool availableLease ); function getLastLease(uint8 cardId) external view returns ( uint256 leaseIndex, address tenant, uint256 untilBlock, string calldata title, string calldata url, string calldata image ); } contract WeiCardsWrapper is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; mapping(uint256 => address) public claimed; bool public sealedTokenURI; WeiCards public weiCardsContract = WeiCards(0x7F57292bF494A8c9342d37395D1378A65D59C499); string public baseTokenURI = "ipfs://QmQwkDaQbF3TgQUVBaBqbiPW4qc6amse8EeWRT1S9DR5Yx/"; event Wrapped(bytes32 indexed fortressId, uint256 tokenId); event Unwrapped(bytes32 indexed fortressId, uint256 tokenId); constructor() ERC721("WeiCards", "WEICARD") {} function claimCard(uint8 cardId) external { (, address owner, , , , ) = weiCardsContract.getCard(cardId); require(owner == msg.sender, "not owner"); (, , , , bool availableBuy, bool availableLease) = weiCardsContract .getCardDetails(cardId); require(availableBuy == false, "cannot be offered for sale"); require(availableLease == false, "cannot be offered for lease"); (, , uint256 untilBlock, , , ) = weiCardsContract.getLastLease(cardId); require(untilBlock < block.number, "cannot be currently leased"); claimed[cardId] = msg.sender; } function wrap(uint8 cardId) external { require(claimed[cardId] == msg.sender, "not claimed"); (, address owner, , , , ) = weiCardsContract.getCard(cardId); (, , , , bool availableBuy, bool availableLease) = weiCardsContract .getCardDetails(cardId); require(availableBuy == false, "cannot be offered for sale"); require(availableLease == false, "cannot be offered for lease"); (, , uint256 untilBlock, , , ) = weiCardsContract.getLastLease(cardId); require(untilBlock < block.number, "cannot be currently leased"); require(owner == address(this), "not transferred"); claimed[cardId] = address(0); _mint(msg.sender, uint8(cardId)); } function unwrap(uint8 cardId) external { require(ownerOf(cardId) == msg.sender, "not owner"); _burn(cardId); weiCardsContract.transferCardOwnership(msg.sender, cardId); } function sealTokenURI() external onlyOwner { sealedTokenURI = true; } function setBaseTokenURI(string memory _baseTokenURI) public onlyOwner { require(!sealedTokenURI, "baseURI is sealed"); baseTokenURI = _baseTokenURI; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function contractURI() public pure returns (string memory) { return "ipfs://QmSSARXvSSGBoFX3KtQgToLZ2qdWb7RPn9GDa32PbLH5vM"; } function editCard( uint8 cardId, string calldata title, string calldata url, string calldata image ) external { require(ownerOf(cardId) == msg.sender, "not owner"); weiCardsContract.editCard(cardId, title, url, image); } }
// 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 "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// 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; 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 "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":true,"internalType":"bytes32","name":"fortressId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unwrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"fortressId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Wrapped","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"cardId","type":"uint8"}],"name":"claimCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint8","name":"cardId","type":"uint8"},{"internalType":"string","name":"title","type":"string"},{"internalType":"string","name":"url","type":"string"},{"internalType":"string","name":"image","type":"string"}],"name":"editCard","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"sealTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sealedTokenURI","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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"cardId","type":"uint8"}],"name":"unwrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weiCardsContract","outputs":[{"internalType":"contract WeiCards","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"cardId","type":"uint8"}],"name":"wrap","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052737f57292bf494a8c9342d37395d1378a65d59c499600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060368152602001620050db60369139600e90805190602001906200008a9291906200022d565b503480156200009857600080fd5b506040518060400160405280600881526020017f57656943617264730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f574549434152440000000000000000000000000000000000000000000000000081525081600090805190602001906200011d9291906200022d565b508060019080519060200190620001369291906200022d565b505050620001596200014d6200015f60201b60201c565b6200016760201b60201c565b62000342565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023b90620002dd565b90600052602060002090601f0160209004810192826200025f5760008555620002ab565b82601f106200027a57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002aa5782518255916020019190600101906200028d565b5b509050620002ba9190620002be565b5090565b5b80821115620002d9576000816000905550600101620002bf565b5090565b60006002820490506001821680620002f657607f821691505b602082108114156200030d576200030c62000313565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614d8980620003526000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a22cb465116100a2578063dbe7e3bd11610071578063dbe7e3bd1461052d578063e8a3d4851461055d578063e985e9c51461057b578063f2fde38b146105ab576101da565b8063a22cb465146104a7578063b88d4fde146104c3578063c87b56dd146104df578063d547cfb71461050f576101da565b80638da5cb5b116100de5780638da5cb5b14610433578063936b99391461045157806395d89b411461046d57806399d776ef1461048b576101da565b8063715018a6146104035780638014f2381461040d5780638ccaa63814610429576101da565b806330176e131161017c5780634f6ccce71161014b5780634f6ccce71461035757806351e2eacd146103875780636352211e146103a357806370a08231146103d3576101da565b806330176e13146102e357806341523651146102ff57806342842e0e1461031d5780634b9f4bf414610339576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd146102975780632f745c59146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613495565b6105c7565b6040516102069190613de4565b60405180910390f35b610217610641565b6040516102249190613e1a565b60405180910390f35b61024760048036038101906102429190613538565b6106d3565b6040516102549190613d54565b60405180910390f35b61027760048036038101906102729190613428565b610758565b005b610281610870565b60405161028e919061415c565b60405180910390f35b6102b160048036038101906102ac9190613312565b61087d565b005b6102cd60048036038101906102c89190613428565b6108dd565b6040516102da919061415c565b60405180910390f35b6102fd60048036038101906102f891906134ef565b610982565b005b610307610a68565b6040516103149190613dff565b60405180910390f35b61033760048036038101906103329190613312565b610a8e565b005b610341610aae565b60405161034e9190613de4565b60405180910390f35b610371600480360381019061036c9190613538565b610ac1565b60405161037e919061415c565b60405180910390f35b6103a1600480360381019061039c9190613646565b610b32565b005b6103bd60048036038101906103b89190613538565b610fa6565b6040516103ca9190613d54565b60405180910390f35b6103ed60048036038101906103e891906132a5565b611058565b6040516103fa919061415c565b60405180910390f35b61040b611110565b005b61042760048036038101906104229190613754565b611198565b005b6104316112d4565b005b61043b61136d565b6040516104489190613d54565b60405180910390f35b61046b60048036038101906104669190613646565b611397565b005b6104756114cf565b6040516104829190613e1a565b60405180910390f35b6104a560048036038101906104a09190613646565b611561565b005b6104c160048036038101906104bc91906133e8565b611923565b005b6104dd60048036038101906104d89190613365565b611aa4565b005b6104f960048036038101906104f49190613538565b611b06565b6040516105069190613e1a565b60405180910390f35b610517611bad565b6040516105249190613e1a565b60405180910390f35b61054760048036038101906105429190613538565b611c3b565b6040516105549190613d54565b60405180910390f35b610565611c6e565b6040516105729190613e1a565b60405180910390f35b610595600480360381019061059091906132d2565b611c8e565b6040516105a29190613de4565b60405180910390f35b6105c560048036038101906105c091906132a5565b611d22565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a575061063982611e1a565b5b9050919050565b60606000805461065090614470565b80601f016020809104026020016040519081016040528092919081815260200182805461067c90614470565b80156106c95780601f1061069e576101008083540402835291602001916106c9565b820191906000526020600020905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b60006106de82611efc565b61071d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071490613ffc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076382610fa6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb9061407c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f3611f68565b73ffffffffffffffffffffffffffffffffffffffff16148061082257506108218161081c611f68565b611c8e565b5b610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890613f7c565b60405180910390fd5b61086b8383611f70565b505050565b6000600880549050905090565b61088e610888611f68565b82612029565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c49061409c565b60405180910390fd5b6108d8838383612107565b505050565b60006108e883611058565b8210610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613e7c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61098a611f68565b73ffffffffffffffffffffffffffffffffffffffff166109a861136d565b73ffffffffffffffffffffffffffffffffffffffff16146109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f59061401c565b60405180910390fd5b600d60009054906101000a900460ff1615610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a459061411c565b60405180910390fd5b80600e9080519060200190610a64929190612f8a565b5050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aa983838360405180602001604052806000815250611aa4565b505050565b600d60009054906101000a900460ff1681565b6000610acb610870565b8210610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b03906140fc565b60405180910390fd5b60088281548110610b2057610b1f614609565b5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60008360ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd906140dc565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309004eb1836040518263ffffffff1660e01b8152600401610c339190614177565b60006040518083038186803b158015610c4b57600080fd5b505afa158015610c5f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610c889190613673565b50505050915050600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b7b2a009856040518263ffffffff1660e01b8152600401610ced9190614177565b60c06040518083038186803b158015610d0557600080fd5b505afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d919061381d565b95509550505050506000151582151514610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613e3c565b60405180910390fd5b6000151581151514610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906140bc565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f0d8e968866040518263ffffffff1660e01b8152600401610e309190614177565b60006040518083038186803b158015610e4857600080fd5b505afa158015610e5c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e859190613565565b50505092505050438110610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590613efc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613e5c565b60405180910390fd5b6000600c60008760ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f9f338660ff16612363565b5050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690613fbc565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613f9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611118611f68565b73ffffffffffffffffffffffffffffffffffffffff1661113661136d565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061401c565b60405180910390fd5b6111966000612531565b565b3373ffffffffffffffffffffffffffffffffffffffff166111bb8860ff16610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061413c565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638014f238888888888888886040518863ffffffff1660e01b81526004016112789796959493929190614192565b602060405180830381600087803b15801561129257600080fd5b505af11580156112a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ca9190613468565b5050505050505050565b6112dc611f68565b73ffffffffffffffffffffffffffffffffffffffff166112fa61136d565b73ffffffffffffffffffffffffffffffffffffffff1614611350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113479061401c565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166113ba8260ff16610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614611410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114079061413c565b60405180910390fd5b61141c8160ff166125f7565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc2fe07b33836040518363ffffffff1660e01b8152600401611479929190613dbb565b602060405180830381600087803b15801561149357600080fd5b505af11580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb9190613468565b5050565b6060600180546114de90614470565b80601f016020809104026020016040519081016040528092919081815260200182805461150a90614470565b80156115575780601f1061152c57610100808354040283529160200191611557565b820191906000526020600020905b81548152906001019060200180831161153a57829003601f168201915b5050505050905090565b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309004eb1836040518263ffffffff1660e01b81526004016115be9190614177565b60006040518083038186803b1580156115d657600080fd5b505afa1580156115ea573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906116139190613673565b505050509150503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f9061413c565b60405180910390fd5b600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b7b2a009856040518263ffffffff1660e01b81526004016116e69190614177565b60c06040518083038186803b1580156116fe57600080fd5b505afa158015611712573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611736919061381d565b95509550505050506000151582151514611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613e3c565b60405180910390fd5b60001515811515146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c3906140bc565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f0d8e968866040518263ffffffff1660e01b81526004016118299190614177565b60006040518083038186803b15801561184157600080fd5b505afa158015611855573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061187e9190613565565b505050925050504381106118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613efc565b60405180910390fd5b33600c60008760ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b61192b611f68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090613f3c565b60405180910390fd5b80600560006119a6611f68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a53611f68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a989190613de4565b60405180910390a35050565b611ab5611aaf611f68565b83612029565b611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061409c565b60405180910390fd5b611b0084848484612708565b50505050565b6060611b1182611efc565b611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b479061405c565b60405180910390fd5b6000611b5a612764565b90506000815111611b7a5760405180602001604052806000815250611ba5565b80611b84846127f6565b604051602001611b95929190613d30565b6040516020818303038152906040525b915050919050565b600e8054611bba90614470565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690614470565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060604051806060016040528060358152602001614d1f60359139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d2a611f68565b73ffffffffffffffffffffffffffffffffffffffff16611d4861136d565b73ffffffffffffffffffffffffffffffffffffffff1614611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d959061401c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590613ebc565b60405180910390fd5b611e1781612531565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ee557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ef55750611ef482612957565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fe383610fa6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061203482611efc565b612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613f5c565b60405180910390fd5b600061207e83610fa6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120ed57508373ffffffffffffffffffffffffffffffffffffffff166120d5846106d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806120fe57506120fd8185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661212782610fa6565b73ffffffffffffffffffffffffffffffffffffffff161461217d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121749061403c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613f1c565b60405180910390fd5b6121f88383836129c1565b612203600082611f70565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122539190614343565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122aa91906142bc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90613fdc565b60405180910390fd5b6123dc81611efc565b1561241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390613edc565b60405180910390fd5b612428600083836129c1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247891906142bc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061260282610fa6565b9050612610816000846129c1565b61261b600083611f70565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266b9190614343565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612713848484612107565b61271f84848484612ad5565b61275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590613e9c565b60405180910390fd5b50505050565b6060600e805461277390614470565b80601f016020809104026020016040519081016040528092919081815260200182805461279f90614470565b80156127ec5780601f106127c1576101008083540402835291602001916127ec565b820191906000526020600020905b8154815290600101906020018083116127cf57829003601f168201915b5050505050905090565b6060600082141561283e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612952565b600082905060005b60008214612870578080612859906144d3565b915050600a826128699190614312565b9150612846565b60008167ffffffffffffffff81111561288c5761288b614638565b5b6040519080825280601f01601f1916602001820160405280156128be5781602001600182028036833780820191505090505b5090505b6000851461294b576001826128d79190614343565b9150600a856128e6919061451c565b60306128f291906142bc565b60f81b81838151811061290857612907614609565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129449190614312565b94506128c2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129cc838383612c6c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a0f57612a0a81612c71565b612a4e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a4d57612a4c8382612cba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a9157612a8c81612e27565b612ad0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612acf57612ace8282612ef8565b5b5b505050565b6000612af68473ffffffffffffffffffffffffffffffffffffffff16612f77565b15612c5f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b1f611f68565b8786866040518563ffffffff1660e01b8152600401612b419493929190613d6f565b602060405180830381600087803b158015612b5b57600080fd5b505af1925050508015612b8c57506040513d601f19601f82011682018060405250810190612b8991906134c2565b60015b612c0f573d8060008114612bbc576040519150601f19603f3d011682016040523d82523d6000602084013e612bc1565b606091505b50600081511415612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90613e9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c64565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cc784611058565b612cd19190614343565b9050600060076000848152602001908152602001600020549050818114612db6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e3b9190614343565b9050600060096000848152602001908152602001600020549050600060088381548110612e6b57612e6a614609565b5b906000526020600020015490508060088381548110612e8d57612e8c614609565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612edc57612edb6145da565b5b6001900381819060005260206000200160009055905550505050565b6000612f0383611058565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612f9690614470565b90600052602060002090601f016020900481019282612fb85760008555612fff565b82601f10612fd157805160ff1916838001178555612fff565b82800160010185558215612fff579182015b82811115612ffe578251825591602001919060010190612fe3565b5b50905061300c9190613010565b5090565b5b80821115613029576000816000905550600101613011565b5090565b600061304061303b84614217565b6141f2565b90508281526020810184848401111561305c5761305b614676565b5b61306784828561442e565b509392505050565b600061308261307d84614248565b6141f2565b90508281526020810184848401111561309e5761309d614676565b5b6130a984828561442e565b509392505050565b60006130c46130bf84614248565b6141f2565b9050828152602081018484840111156130e0576130df614676565b5b6130eb84828561443d565b509392505050565b60008135905061310281614cab565b92915050565b60008151905061311781614cab565b92915050565b60008135905061312c81614cc2565b92915050565b60008151905061314181614cc2565b92915050565b60008135905061315681614cd9565b92915050565b60008151905061316b81614cd9565b92915050565b600082601f8301126131865761318561466c565b5b813561319684826020860161302d565b91505092915050565b60008083601f8401126131b5576131b461466c565b5b8235905067ffffffffffffffff8111156131d2576131d1614667565b5b6020830191508360018202830111156131ee576131ed614671565b5b9250929050565b600082601f83011261320a5761320961466c565b5b813561321a84826020860161306f565b91505092915050565b600082601f8301126132385761323761466c565b5b81516132488482602086016130b1565b91505092915050565b60008135905061326081614cf0565b92915050565b60008151905061327581614cf0565b92915050565b60008135905061328a81614d07565b92915050565b60008151905061329f81614d07565b92915050565b6000602082840312156132bb576132ba614680565b5b60006132c9848285016130f3565b91505092915050565b600080604083850312156132e9576132e8614680565b5b60006132f7858286016130f3565b9250506020613308858286016130f3565b9150509250929050565b60008060006060848603121561332b5761332a614680565b5b6000613339868287016130f3565b935050602061334a868287016130f3565b925050604061335b86828701613251565b9150509250925092565b6000806000806080858703121561337f5761337e614680565b5b600061338d878288016130f3565b945050602061339e878288016130f3565b93505060406133af87828801613251565b925050606085013567ffffffffffffffff8111156133d0576133cf61467b565b5b6133dc87828801613171565b91505092959194509250565b600080604083850312156133ff576133fe614680565b5b600061340d858286016130f3565b925050602061341e8582860161311d565b9150509250929050565b6000806040838503121561343f5761343e614680565b5b600061344d858286016130f3565b925050602061345e85828601613251565b9150509250929050565b60006020828403121561347e5761347d614680565b5b600061348c84828501613132565b91505092915050565b6000602082840312156134ab576134aa614680565b5b60006134b984828501613147565b91505092915050565b6000602082840312156134d8576134d7614680565b5b60006134e68482850161315c565b91505092915050565b60006020828403121561350557613504614680565b5b600082013567ffffffffffffffff8111156135235761352261467b565b5b61352f848285016131f5565b91505092915050565b60006020828403121561354e5761354d614680565b5b600061355c84828501613251565b91505092915050565b60008060008060008060c0878903121561358257613581614680565b5b600061359089828a01613266565b96505060206135a189828a01613108565b95505060406135b289828a01613266565b945050606087015167ffffffffffffffff8111156135d3576135d261467b565b5b6135df89828a01613223565b935050608087015167ffffffffffffffff811115613600576135ff61467b565b5b61360c89828a01613223565b92505060a087015167ffffffffffffffff81111561362d5761362c61467b565b5b61363989828a01613223565b9150509295509295509295565b60006020828403121561365c5761365b614680565b5b600061366a8482850161327b565b91505092915050565b60008060008060008060c087890312156136905761368f614680565b5b600061369e89828a01613290565b96505060206136af89828a01613108565b955050604087015167ffffffffffffffff8111156136d0576136cf61467b565b5b6136dc89828a01613223565b945050606087015167ffffffffffffffff8111156136fd576136fc61467b565b5b61370989828a01613223565b935050608087015167ffffffffffffffff81111561372a5761372961467b565b5b61373689828a01613223565b92505060a061374789828a01613132565b9150509295509295509295565b60008060008060008060006080888a03121561377357613772614680565b5b60006137818a828b0161327b565b975050602088013567ffffffffffffffff8111156137a2576137a161467b565b5b6137ae8a828b0161319f565b9650965050604088013567ffffffffffffffff8111156137d1576137d061467b565b5b6137dd8a828b0161319f565b9450945050606088013567ffffffffffffffff811115613800576137ff61467b565b5b61380c8a828b0161319f565b925092505092959891949750929550565b60008060008060008060c0878903121561383a57613839614680565b5b600061384889828a01613290565b965050602061385989828a01613266565b955050604061386a89828a01613266565b945050606061387b89828a01613266565b935050608061388c89828a01613132565b92505060a061389d89828a01613132565b9150509295509295509295565b6138b381614377565b82525050565b6138c281614389565b82525050565b60006138d382614279565b6138dd818561428f565b93506138ed81856020860161443d565b6138f681614685565b840191505092915050565b61390a816143f8565b82525050565b600061391c83856142a0565b935061392983858461442e565b61393283614685565b840190509392505050565b600061394882614284565b61395281856142a0565b935061396281856020860161443d565b61396b81614685565b840191505092915050565b600061398182614284565b61398b81856142b1565b935061399b81856020860161443d565b80840191505092915050565b60006139b4601a836142a0565b91506139bf82614696565b602082019050919050565b60006139d7600f836142a0565b91506139e2826146bf565b602082019050919050565b60006139fa602b836142a0565b9150613a05826146e8565b604082019050919050565b6000613a1d6032836142a0565b9150613a2882614737565b604082019050919050565b6000613a406026836142a0565b9150613a4b82614786565b604082019050919050565b6000613a63601c836142a0565b9150613a6e826147d5565b602082019050919050565b6000613a86601a836142a0565b9150613a91826147fe565b602082019050919050565b6000613aa96024836142a0565b9150613ab482614827565b604082019050919050565b6000613acc6019836142a0565b9150613ad782614876565b602082019050919050565b6000613aef602c836142a0565b9150613afa8261489f565b604082019050919050565b6000613b126038836142a0565b9150613b1d826148ee565b604082019050919050565b6000613b35602a836142a0565b9150613b408261493d565b604082019050919050565b6000613b586029836142a0565b9150613b638261498c565b604082019050919050565b6000613b7b6020836142a0565b9150613b86826149db565b602082019050919050565b6000613b9e602c836142a0565b9150613ba982614a04565b604082019050919050565b6000613bc16020836142a0565b9150613bcc82614a53565b602082019050919050565b6000613be46029836142a0565b9150613bef82614a7c565b604082019050919050565b6000613c07602f836142a0565b9150613c1282614acb565b604082019050919050565b6000613c2a6021836142a0565b9150613c3582614b1a565b604082019050919050565b6000613c4d6031836142a0565b9150613c5882614b69565b604082019050919050565b6000613c70601b836142a0565b9150613c7b82614bb8565b602082019050919050565b6000613c93600b836142a0565b9150613c9e82614be1565b602082019050919050565b6000613cb6602c836142a0565b9150613cc182614c0a565b604082019050919050565b6000613cd96011836142a0565b9150613ce482614c59565b602082019050919050565b6000613cfc6009836142a0565b9150613d0782614c82565b602082019050919050565b613d1b816143e1565b82525050565b613d2a816143eb565b82525050565b6000613d3c8285613976565b9150613d488284613976565b91508190509392505050565b6000602082019050613d6960008301846138aa565b92915050565b6000608082019050613d8460008301876138aa565b613d9160208301866138aa565b613d9e6040830185613d12565b8181036060830152613db081846138c8565b905095945050505050565b6000604082019050613dd060008301856138aa565b613ddd6020830184613d21565b9392505050565b6000602082019050613df960008301846138b9565b92915050565b6000602082019050613e146000830184613901565b92915050565b60006020820190508181036000830152613e34818461393d565b905092915050565b60006020820190508181036000830152613e55816139a7565b9050919050565b60006020820190508181036000830152613e75816139ca565b9050919050565b60006020820190508181036000830152613e95816139ed565b9050919050565b60006020820190508181036000830152613eb581613a10565b9050919050565b60006020820190508181036000830152613ed581613a33565b9050919050565b60006020820190508181036000830152613ef581613a56565b9050919050565b60006020820190508181036000830152613f1581613a79565b9050919050565b60006020820190508181036000830152613f3581613a9c565b9050919050565b60006020820190508181036000830152613f5581613abf565b9050919050565b60006020820190508181036000830152613f7581613ae2565b9050919050565b60006020820190508181036000830152613f9581613b05565b9050919050565b60006020820190508181036000830152613fb581613b28565b9050919050565b60006020820190508181036000830152613fd581613b4b565b9050919050565b60006020820190508181036000830152613ff581613b6e565b9050919050565b6000602082019050818103600083015261401581613b91565b9050919050565b6000602082019050818103600083015261403581613bb4565b9050919050565b6000602082019050818103600083015261405581613bd7565b9050919050565b6000602082019050818103600083015261407581613bfa565b9050919050565b6000602082019050818103600083015261409581613c1d565b9050919050565b600060208201905081810360008301526140b581613c40565b9050919050565b600060208201905081810360008301526140d581613c63565b9050919050565b600060208201905081810360008301526140f581613c86565b9050919050565b6000602082019050818103600083015261411581613ca9565b9050919050565b6000602082019050818103600083015261413581613ccc565b9050919050565b6000602082019050818103600083015261415581613cef565b9050919050565b60006020820190506141716000830184613d12565b92915050565b600060208201905061418c6000830184613d21565b92915050565b60006080820190506141a7600083018a613d21565b81810360208301526141ba81888a613910565b905081810360408301526141cf818688613910565b905081810360608301526141e4818486613910565b905098975050505050505050565b60006141fc61420d565b905061420882826144a2565b919050565b6000604051905090565b600067ffffffffffffffff82111561423257614231614638565b5b61423b82614685565b9050602081019050919050565b600067ffffffffffffffff82111561426357614262614638565b5b61426c82614685565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142c7826143e1565b91506142d2836143e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143075761430661454d565b5b828201905092915050565b600061431d826143e1565b9150614328836143e1565b9250826143385761433761457c565b5b828204905092915050565b600061434e826143e1565b9150614359836143e1565b92508282101561436c5761436b61454d565b5b828203905092915050565b6000614382826143c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006144038261440a565b9050919050565b60006144158261441c565b9050919050565b6000614427826143c1565b9050919050565b82818337600083830152505050565b60005b8381101561445b578082015181840152602081019050614440565b8381111561446a576000848401525b50505050565b6000600282049050600182168061448857607f821691505b6020821081141561449c5761449b6145ab565b5b50919050565b6144ab82614685565b810181811067ffffffffffffffff821117156144ca576144c9614638565b5b80604052505050565b60006144de826143e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145115761451061454d565b5b600182019050919050565b6000614527826143e1565b9150614532836143e1565b9250826145425761454161457c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f63616e6e6f74206265206f66666572656420666f722073616c65000000000000600082015250565b7f6e6f74207472616e736665727265640000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f63616e6e6f742062652063757272656e746c79206c6561736564000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f63616e6e6f74206265206f66666572656420666f72206c656173650000000000600082015250565b7f6e6f7420636c61696d6564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f62617365555249206973207365616c6564000000000000000000000000000000600082015250565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b614cb481614377565b8114614cbf57600080fd5b50565b614ccb81614389565b8114614cd657600080fd5b50565b614ce281614395565b8114614ced57600080fd5b50565b614cf9816143e1565b8114614d0457600080fd5b50565b614d10816143eb565b8114614d1b57600080fd5b5056fe697066733a2f2f516d535341525876535347426f4658334b745167546f4c5a32716457623752506e39474461333250624c4835764da2646970667358221220bd37a26a2a2751200bc3a406b714b1ce0bf4dd4663928f9d37b2a94501fddbf364736f6c63430008070033697066733a2f2f516d51776b4461516246335467515556426142716269505734716336616d736538456557525431533944523559782f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a22cb465116100a2578063dbe7e3bd11610071578063dbe7e3bd1461052d578063e8a3d4851461055d578063e985e9c51461057b578063f2fde38b146105ab576101da565b8063a22cb465146104a7578063b88d4fde146104c3578063c87b56dd146104df578063d547cfb71461050f576101da565b80638da5cb5b116100de5780638da5cb5b14610433578063936b99391461045157806395d89b411461046d57806399d776ef1461048b576101da565b8063715018a6146104035780638014f2381461040d5780638ccaa63814610429576101da565b806330176e131161017c5780634f6ccce71161014b5780634f6ccce71461035757806351e2eacd146103875780636352211e146103a357806370a08231146103d3576101da565b806330176e13146102e357806341523651146102ff57806342842e0e1461031d5780634b9f4bf414610339576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd1461027957806323b872dd146102975780632f745c59146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190613495565b6105c7565b6040516102069190613de4565b60405180910390f35b610217610641565b6040516102249190613e1a565b60405180910390f35b61024760048036038101906102429190613538565b6106d3565b6040516102549190613d54565b60405180910390f35b61027760048036038101906102729190613428565b610758565b005b610281610870565b60405161028e919061415c565b60405180910390f35b6102b160048036038101906102ac9190613312565b61087d565b005b6102cd60048036038101906102c89190613428565b6108dd565b6040516102da919061415c565b60405180910390f35b6102fd60048036038101906102f891906134ef565b610982565b005b610307610a68565b6040516103149190613dff565b60405180910390f35b61033760048036038101906103329190613312565b610a8e565b005b610341610aae565b60405161034e9190613de4565b60405180910390f35b610371600480360381019061036c9190613538565b610ac1565b60405161037e919061415c565b60405180910390f35b6103a1600480360381019061039c9190613646565b610b32565b005b6103bd60048036038101906103b89190613538565b610fa6565b6040516103ca9190613d54565b60405180910390f35b6103ed60048036038101906103e891906132a5565b611058565b6040516103fa919061415c565b60405180910390f35b61040b611110565b005b61042760048036038101906104229190613754565b611198565b005b6104316112d4565b005b61043b61136d565b6040516104489190613d54565b60405180910390f35b61046b60048036038101906104669190613646565b611397565b005b6104756114cf565b6040516104829190613e1a565b60405180910390f35b6104a560048036038101906104a09190613646565b611561565b005b6104c160048036038101906104bc91906133e8565b611923565b005b6104dd60048036038101906104d89190613365565b611aa4565b005b6104f960048036038101906104f49190613538565b611b06565b6040516105069190613e1a565b60405180910390f35b610517611bad565b6040516105249190613e1a565b60405180910390f35b61054760048036038101906105429190613538565b611c3b565b6040516105549190613d54565b60405180910390f35b610565611c6e565b6040516105729190613e1a565b60405180910390f35b610595600480360381019061059091906132d2565b611c8e565b6040516105a29190613de4565b60405180910390f35b6105c560048036038101906105c091906132a5565b611d22565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063a575061063982611e1a565b5b9050919050565b60606000805461065090614470565b80601f016020809104026020016040519081016040528092919081815260200182805461067c90614470565b80156106c95780601f1061069e576101008083540402835291602001916106c9565b820191906000526020600020905b8154815290600101906020018083116106ac57829003601f168201915b5050505050905090565b60006106de82611efc565b61071d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071490613ffc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076382610fa6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb9061407c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f3611f68565b73ffffffffffffffffffffffffffffffffffffffff16148061082257506108218161081c611f68565b611c8e565b5b610861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085890613f7c565b60405180910390fd5b61086b8383611f70565b505050565b6000600880549050905090565b61088e610888611f68565b82612029565b6108cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c49061409c565b60405180910390fd5b6108d8838383612107565b505050565b60006108e883611058565b8210610929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092090613e7c565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61098a611f68565b73ffffffffffffffffffffffffffffffffffffffff166109a861136d565b73ffffffffffffffffffffffffffffffffffffffff16146109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f59061401c565b60405180910390fd5b600d60009054906101000a900460ff1615610a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a459061411c565b60405180910390fd5b80600e9080519060200190610a64929190612f8a565b5050565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610aa983838360405180602001604052806000815250611aa4565b505050565b600d60009054906101000a900460ff1681565b6000610acb610870565b8210610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b03906140fc565b60405180910390fd5b60088281548110610b2057610b1f614609565b5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600c60008360ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd906140dc565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309004eb1836040518263ffffffff1660e01b8152600401610c339190614177565b60006040518083038186803b158015610c4b57600080fd5b505afa158015610c5f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610c889190613673565b50505050915050600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b7b2a009856040518263ffffffff1660e01b8152600401610ced9190614177565b60c06040518083038186803b158015610d0557600080fd5b505afa158015610d19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3d919061381d565b95509550505050506000151582151514610d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8390613e3c565b60405180910390fd5b6000151581151514610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca906140bc565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f0d8e968866040518263ffffffff1660e01b8152600401610e309190614177565b60006040518083038186803b158015610e4857600080fd5b505afa158015610e5c573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e859190613565565b50505092505050438110610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec590613efc565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614610f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3390613e5c565b60405180910390fd5b6000600c60008760ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610f9f338660ff16612363565b5050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104690613fbc565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613f9c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611118611f68565b73ffffffffffffffffffffffffffffffffffffffff1661113661136d565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111839061401c565b60405180910390fd5b6111966000612531565b565b3373ffffffffffffffffffffffffffffffffffffffff166111bb8860ff16610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061413c565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638014f238888888888888886040518863ffffffff1660e01b81526004016112789796959493929190614192565b602060405180830381600087803b15801561129257600080fd5b505af11580156112a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ca9190613468565b5050505050505050565b6112dc611f68565b73ffffffffffffffffffffffffffffffffffffffff166112fa61136d565b73ffffffffffffffffffffffffffffffffffffffff1614611350576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113479061401c565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff166113ba8260ff16610fa6565b73ffffffffffffffffffffffffffffffffffffffff1614611410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114079061413c565b60405180910390fd5b61141c8160ff166125f7565b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bc2fe07b33836040518363ffffffff1660e01b8152600401611479929190613dbb565b602060405180830381600087803b15801561149357600080fd5b505af11580156114a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114cb9190613468565b5050565b6060600180546114de90614470565b80601f016020809104026020016040519081016040528092919081815260200182805461150a90614470565b80156115575780601f1061152c57610100808354040283529160200191611557565b820191906000526020600020905b81548152906001019060200180831161153a57829003601f168201915b5050505050905090565b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166309004eb1836040518263ffffffff1660e01b81526004016115be9190614177565b60006040518083038186803b1580156115d657600080fd5b505afa1580156115ea573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906116139190613673565b505050509150503373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f9061413c565b60405180910390fd5b600080600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b7b2a009856040518263ffffffff1660e01b81526004016116e69190614177565b60c06040518083038186803b1580156116fe57600080fd5b505afa158015611712573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611736919061381d565b95509550505050506000151582151514611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613e3c565b60405180910390fd5b60001515811515146117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c3906140bc565b60405180910390fd5b6000600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f0d8e968866040518263ffffffff1660e01b81526004016118299190614177565b60006040518083038186803b15801561184157600080fd5b505afa158015611855573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061187e9190613565565b505050925050504381106118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613efc565b60405180910390fd5b33600c60008760ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b61192b611f68565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090613f3c565b60405180910390fd5b80600560006119a6611f68565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a53611f68565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a989190613de4565b60405180910390a35050565b611ab5611aaf611f68565b83612029565b611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb9061409c565b60405180910390fd5b611b0084848484612708565b50505050565b6060611b1182611efc565b611b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b479061405c565b60405180910390fd5b6000611b5a612764565b90506000815111611b7a5760405180602001604052806000815250611ba5565b80611b84846127f6565b604051602001611b95929190613d30565b6040516020818303038152906040525b915050919050565b600e8054611bba90614470565b80601f0160208091040260200160405190810160405280929190818152602001828054611be690614470565b8015611c335780601f10611c0857610100808354040283529160200191611c33565b820191906000526020600020905b815481529060010190602001808311611c1657829003601f168201915b505050505081565b600c6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060604051806060016040528060358152602001614d1f60359139905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d2a611f68565b73ffffffffffffffffffffffffffffffffffffffff16611d4861136d565b73ffffffffffffffffffffffffffffffffffffffff1614611d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d959061401c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590613ebc565b60405180910390fd5b611e1781612531565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ee557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ef55750611ef482612957565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fe383610fa6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061203482611efc565b612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a90613f5c565b60405180910390fd5b600061207e83610fa6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120ed57508373ffffffffffffffffffffffffffffffffffffffff166120d5846106d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806120fe57506120fd8185611c8e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661212782610fa6565b73ffffffffffffffffffffffffffffffffffffffff161461217d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121749061403c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e490613f1c565b60405180910390fd5b6121f88383836129c1565b612203600082611f70565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122539190614343565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122aa91906142bc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ca90613fdc565b60405180910390fd5b6123dc81611efc565b1561241c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241390613edc565b60405180910390fd5b612428600083836129c1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461247891906142bc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061260282610fa6565b9050612610816000846129c1565b61261b600083611f70565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461266b9190614343565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612713848484612107565b61271f84848484612ad5565b61275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590613e9c565b60405180910390fd5b50505050565b6060600e805461277390614470565b80601f016020809104026020016040519081016040528092919081815260200182805461279f90614470565b80156127ec5780601f106127c1576101008083540402835291602001916127ec565b820191906000526020600020905b8154815290600101906020018083116127cf57829003601f168201915b5050505050905090565b6060600082141561283e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612952565b600082905060005b60008214612870578080612859906144d3565b915050600a826128699190614312565b9150612846565b60008167ffffffffffffffff81111561288c5761288b614638565b5b6040519080825280601f01601f1916602001820160405280156128be5781602001600182028036833780820191505090505b5090505b6000851461294b576001826128d79190614343565b9150600a856128e6919061451c565b60306128f291906142bc565b60f81b81838151811061290857612907614609565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129449190614312565b94506128c2565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129cc838383612c6c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a0f57612a0a81612c71565b612a4e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a4d57612a4c8382612cba565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a9157612a8c81612e27565b612ad0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612acf57612ace8282612ef8565b5b5b505050565b6000612af68473ffffffffffffffffffffffffffffffffffffffff16612f77565b15612c5f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b1f611f68565b8786866040518563ffffffff1660e01b8152600401612b419493929190613d6f565b602060405180830381600087803b158015612b5b57600080fd5b505af1925050508015612b8c57506040513d601f19601f82011682018060405250810190612b8991906134c2565b60015b612c0f573d8060008114612bbc576040519150601f19603f3d011682016040523d82523d6000602084013e612bc1565b606091505b50600081511415612c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfe90613e9c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c64565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612cc784611058565b612cd19190614343565b9050600060076000848152602001908152602001600020549050818114612db6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e3b9190614343565b9050600060096000848152602001908152602001600020549050600060088381548110612e6b57612e6a614609565b5b906000526020600020015490508060088381548110612e8d57612e8c614609565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612edc57612edb6145da565b5b6001900381819060005260206000200160009055905550505050565b6000612f0383611058565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054612f9690614470565b90600052602060002090601f016020900481019282612fb85760008555612fff565b82601f10612fd157805160ff1916838001178555612fff565b82800160010185558215612fff579182015b82811115612ffe578251825591602001919060010190612fe3565b5b50905061300c9190613010565b5090565b5b80821115613029576000816000905550600101613011565b5090565b600061304061303b84614217565b6141f2565b90508281526020810184848401111561305c5761305b614676565b5b61306784828561442e565b509392505050565b600061308261307d84614248565b6141f2565b90508281526020810184848401111561309e5761309d614676565b5b6130a984828561442e565b509392505050565b60006130c46130bf84614248565b6141f2565b9050828152602081018484840111156130e0576130df614676565b5b6130eb84828561443d565b509392505050565b60008135905061310281614cab565b92915050565b60008151905061311781614cab565b92915050565b60008135905061312c81614cc2565b92915050565b60008151905061314181614cc2565b92915050565b60008135905061315681614cd9565b92915050565b60008151905061316b81614cd9565b92915050565b600082601f8301126131865761318561466c565b5b813561319684826020860161302d565b91505092915050565b60008083601f8401126131b5576131b461466c565b5b8235905067ffffffffffffffff8111156131d2576131d1614667565b5b6020830191508360018202830111156131ee576131ed614671565b5b9250929050565b600082601f83011261320a5761320961466c565b5b813561321a84826020860161306f565b91505092915050565b600082601f8301126132385761323761466c565b5b81516132488482602086016130b1565b91505092915050565b60008135905061326081614cf0565b92915050565b60008151905061327581614cf0565b92915050565b60008135905061328a81614d07565b92915050565b60008151905061329f81614d07565b92915050565b6000602082840312156132bb576132ba614680565b5b60006132c9848285016130f3565b91505092915050565b600080604083850312156132e9576132e8614680565b5b60006132f7858286016130f3565b9250506020613308858286016130f3565b9150509250929050565b60008060006060848603121561332b5761332a614680565b5b6000613339868287016130f3565b935050602061334a868287016130f3565b925050604061335b86828701613251565b9150509250925092565b6000806000806080858703121561337f5761337e614680565b5b600061338d878288016130f3565b945050602061339e878288016130f3565b93505060406133af87828801613251565b925050606085013567ffffffffffffffff8111156133d0576133cf61467b565b5b6133dc87828801613171565b91505092959194509250565b600080604083850312156133ff576133fe614680565b5b600061340d858286016130f3565b925050602061341e8582860161311d565b9150509250929050565b6000806040838503121561343f5761343e614680565b5b600061344d858286016130f3565b925050602061345e85828601613251565b9150509250929050565b60006020828403121561347e5761347d614680565b5b600061348c84828501613132565b91505092915050565b6000602082840312156134ab576134aa614680565b5b60006134b984828501613147565b91505092915050565b6000602082840312156134d8576134d7614680565b5b60006134e68482850161315c565b91505092915050565b60006020828403121561350557613504614680565b5b600082013567ffffffffffffffff8111156135235761352261467b565b5b61352f848285016131f5565b91505092915050565b60006020828403121561354e5761354d614680565b5b600061355c84828501613251565b91505092915050565b60008060008060008060c0878903121561358257613581614680565b5b600061359089828a01613266565b96505060206135a189828a01613108565b95505060406135b289828a01613266565b945050606087015167ffffffffffffffff8111156135d3576135d261467b565b5b6135df89828a01613223565b935050608087015167ffffffffffffffff811115613600576135ff61467b565b5b61360c89828a01613223565b92505060a087015167ffffffffffffffff81111561362d5761362c61467b565b5b61363989828a01613223565b9150509295509295509295565b60006020828403121561365c5761365b614680565b5b600061366a8482850161327b565b91505092915050565b60008060008060008060c087890312156136905761368f614680565b5b600061369e89828a01613290565b96505060206136af89828a01613108565b955050604087015167ffffffffffffffff8111156136d0576136cf61467b565b5b6136dc89828a01613223565b945050606087015167ffffffffffffffff8111156136fd576136fc61467b565b5b61370989828a01613223565b935050608087015167ffffffffffffffff81111561372a5761372961467b565b5b61373689828a01613223565b92505060a061374789828a01613132565b9150509295509295509295565b60008060008060008060006080888a03121561377357613772614680565b5b60006137818a828b0161327b565b975050602088013567ffffffffffffffff8111156137a2576137a161467b565b5b6137ae8a828b0161319f565b9650965050604088013567ffffffffffffffff8111156137d1576137d061467b565b5b6137dd8a828b0161319f565b9450945050606088013567ffffffffffffffff811115613800576137ff61467b565b5b61380c8a828b0161319f565b925092505092959891949750929550565b60008060008060008060c0878903121561383a57613839614680565b5b600061384889828a01613290565b965050602061385989828a01613266565b955050604061386a89828a01613266565b945050606061387b89828a01613266565b935050608061388c89828a01613132565b92505060a061389d89828a01613132565b9150509295509295509295565b6138b381614377565b82525050565b6138c281614389565b82525050565b60006138d382614279565b6138dd818561428f565b93506138ed81856020860161443d565b6138f681614685565b840191505092915050565b61390a816143f8565b82525050565b600061391c83856142a0565b935061392983858461442e565b61393283614685565b840190509392505050565b600061394882614284565b61395281856142a0565b935061396281856020860161443d565b61396b81614685565b840191505092915050565b600061398182614284565b61398b81856142b1565b935061399b81856020860161443d565b80840191505092915050565b60006139b4601a836142a0565b91506139bf82614696565b602082019050919050565b60006139d7600f836142a0565b91506139e2826146bf565b602082019050919050565b60006139fa602b836142a0565b9150613a05826146e8565b604082019050919050565b6000613a1d6032836142a0565b9150613a2882614737565b604082019050919050565b6000613a406026836142a0565b9150613a4b82614786565b604082019050919050565b6000613a63601c836142a0565b9150613a6e826147d5565b602082019050919050565b6000613a86601a836142a0565b9150613a91826147fe565b602082019050919050565b6000613aa96024836142a0565b9150613ab482614827565b604082019050919050565b6000613acc6019836142a0565b9150613ad782614876565b602082019050919050565b6000613aef602c836142a0565b9150613afa8261489f565b604082019050919050565b6000613b126038836142a0565b9150613b1d826148ee565b604082019050919050565b6000613b35602a836142a0565b9150613b408261493d565b604082019050919050565b6000613b586029836142a0565b9150613b638261498c565b604082019050919050565b6000613b7b6020836142a0565b9150613b86826149db565b602082019050919050565b6000613b9e602c836142a0565b9150613ba982614a04565b604082019050919050565b6000613bc16020836142a0565b9150613bcc82614a53565b602082019050919050565b6000613be46029836142a0565b9150613bef82614a7c565b604082019050919050565b6000613c07602f836142a0565b9150613c1282614acb565b604082019050919050565b6000613c2a6021836142a0565b9150613c3582614b1a565b604082019050919050565b6000613c4d6031836142a0565b9150613c5882614b69565b604082019050919050565b6000613c70601b836142a0565b9150613c7b82614bb8565b602082019050919050565b6000613c93600b836142a0565b9150613c9e82614be1565b602082019050919050565b6000613cb6602c836142a0565b9150613cc182614c0a565b604082019050919050565b6000613cd96011836142a0565b9150613ce482614c59565b602082019050919050565b6000613cfc6009836142a0565b9150613d0782614c82565b602082019050919050565b613d1b816143e1565b82525050565b613d2a816143eb565b82525050565b6000613d3c8285613976565b9150613d488284613976565b91508190509392505050565b6000602082019050613d6960008301846138aa565b92915050565b6000608082019050613d8460008301876138aa565b613d9160208301866138aa565b613d9e6040830185613d12565b8181036060830152613db081846138c8565b905095945050505050565b6000604082019050613dd060008301856138aa565b613ddd6020830184613d21565b9392505050565b6000602082019050613df960008301846138b9565b92915050565b6000602082019050613e146000830184613901565b92915050565b60006020820190508181036000830152613e34818461393d565b905092915050565b60006020820190508181036000830152613e55816139a7565b9050919050565b60006020820190508181036000830152613e75816139ca565b9050919050565b60006020820190508181036000830152613e95816139ed565b9050919050565b60006020820190508181036000830152613eb581613a10565b9050919050565b60006020820190508181036000830152613ed581613a33565b9050919050565b60006020820190508181036000830152613ef581613a56565b9050919050565b60006020820190508181036000830152613f1581613a79565b9050919050565b60006020820190508181036000830152613f3581613a9c565b9050919050565b60006020820190508181036000830152613f5581613abf565b9050919050565b60006020820190508181036000830152613f7581613ae2565b9050919050565b60006020820190508181036000830152613f9581613b05565b9050919050565b60006020820190508181036000830152613fb581613b28565b9050919050565b60006020820190508181036000830152613fd581613b4b565b9050919050565b60006020820190508181036000830152613ff581613b6e565b9050919050565b6000602082019050818103600083015261401581613b91565b9050919050565b6000602082019050818103600083015261403581613bb4565b9050919050565b6000602082019050818103600083015261405581613bd7565b9050919050565b6000602082019050818103600083015261407581613bfa565b9050919050565b6000602082019050818103600083015261409581613c1d565b9050919050565b600060208201905081810360008301526140b581613c40565b9050919050565b600060208201905081810360008301526140d581613c63565b9050919050565b600060208201905081810360008301526140f581613c86565b9050919050565b6000602082019050818103600083015261411581613ca9565b9050919050565b6000602082019050818103600083015261413581613ccc565b9050919050565b6000602082019050818103600083015261415581613cef565b9050919050565b60006020820190506141716000830184613d12565b92915050565b600060208201905061418c6000830184613d21565b92915050565b60006080820190506141a7600083018a613d21565b81810360208301526141ba81888a613910565b905081810360408301526141cf818688613910565b905081810360608301526141e4818486613910565b905098975050505050505050565b60006141fc61420d565b905061420882826144a2565b919050565b6000604051905090565b600067ffffffffffffffff82111561423257614231614638565b5b61423b82614685565b9050602081019050919050565b600067ffffffffffffffff82111561426357614262614638565b5b61426c82614685565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142c7826143e1565b91506142d2836143e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143075761430661454d565b5b828201905092915050565b600061431d826143e1565b9150614328836143e1565b9250826143385761433761457c565b5b828204905092915050565b600061434e826143e1565b9150614359836143e1565b92508282101561436c5761436b61454d565b5b828203905092915050565b6000614382826143c1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006144038261440a565b9050919050565b60006144158261441c565b9050919050565b6000614427826143c1565b9050919050565b82818337600083830152505050565b60005b8381101561445b578082015181840152602081019050614440565b8381111561446a576000848401525b50505050565b6000600282049050600182168061448857607f821691505b6020821081141561449c5761449b6145ab565b5b50919050565b6144ab82614685565b810181811067ffffffffffffffff821117156144ca576144c9614638565b5b80604052505050565b60006144de826143e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145115761451061454d565b5b600182019050919050565b6000614527826143e1565b9150614532836143e1565b9250826145425761454161457c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f63616e6e6f74206265206f66666572656420666f722073616c65000000000000600082015250565b7f6e6f74207472616e736665727265640000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f63616e6e6f742062652063757272656e746c79206c6561736564000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f63616e6e6f74206265206f66666572656420666f72206c656173650000000000600082015250565b7f6e6f7420636c61696d6564000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f62617365555249206973207365616c6564000000000000000000000000000000600082015250565b7f6e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b614cb481614377565b8114614cbf57600080fd5b50565b614ccb81614389565b8114614cd657600080fd5b50565b614ce281614395565b8114614ced57600080fd5b50565b614cf9816143e1565b8114614d0457600080fd5b50565b614d10816143eb565b8114614d1b57600080fd5b5056fe697066733a2f2f516d535341525876535347426f4658334b745167546f4c5a32716457623752506e39474461333250624c4835764da2646970667358221220bd37a26a2a2751200bc3a406b714b1ce0bf4dd4663928f9d37b2a94501fddbf364736f6c63430008070033
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.