ERC-721
Overview
Max Total Supply
53 REKT
Holders
20
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 REKTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
REKT
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** *Submitted for verification at Etherscan.io on 2021-09-18 */ 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; } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol 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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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(to).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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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.4; /* Dev Telegram: @elbrupt Dev Discord do#0002 */ contract REKT is ERC721Enumerable, Ownable { using Strings for uint256; uint256 public constant REKT_PRIVATE = 0; uint256 public constant REKT_PUBLIC = 3333; uint256 public constant REKT_MAX = REKT_PRIVATE + REKT_PUBLIC; uint256 public constant REKT_PRICE = 0.015 ether; uint256 public constant REKT_PER_MINT = 100; mapping(address => bool) public presalerList; mapping(address => uint256) public presalerListPurchases; string private _contractURI = "https://gateway.pinata.cloud/ipfs/QmYi5EsA4GRt3iqijsXo25LX8VU2UFU8aVbw49Zp6f9wDc/"; string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmYi5EsA4GRt3iqijsXo25LX8VU2UFU8aVbw49Zp6f9wDc/"; address private member1 = 0xDD8de027E6974F44dFB0f0f0431Ed6364C73eB35; // WALLET 1 uint256 public publicAmountMinted; uint256 public privateAmountMinted; uint256 public presalePurchaseLimit = 100; bool public presaleLive; bool public saleLive; bool public locked; constructor() ERC721("REKT", "REKT") {} modifier notLocked() { require(!locked, "Contract metadata methods are locked"); _; } function addToPresaleList(address[] calldata entries) external onlyOwner { for (uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "NULL_ADDRESS"); require(!presalerList[entry], "DUPLICATE_ENTRY"); presalerList[entry] = true; } } function removeFromPresaleList(address[] calldata entries) external onlyOwner { for (uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "NULL_ADDRESS"); presalerList[entry] = false; } } function buy(uint256 tokenQuantity) external payable { require(saleLive, "SALE_CLOSED"); require(!presaleLive, "ONLY_PRESALE"); require(totalSupply() < REKT_MAX, "OUT_OF_STOCK"); require( publicAmountMinted + tokenQuantity <= REKT_PUBLIC, "EXCEED_PUBLIC" ); require(tokenQuantity <= REKT_PER_MINT, "EXCEED_REKT_PER_MINT"); require(REKT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH"); for (uint256 i = 0; i < tokenQuantity; i++) { publicAmountMinted++; _safeMint(msg.sender, totalSupply() + 1); } } function presaleBuy(uint256 tokenQuantity) external payable { require(!saleLive && presaleLive, "PRESALE_CLOSED"); require(presalerList[msg.sender], "NOT_QUALIFIED"); require(totalSupply() < REKT_MAX, "OUT_OF_STOCK"); require( privateAmountMinted + tokenQuantity <= REKT_PRIVATE, "EXCEED_PRIVATE" ); require( presalerListPurchases[msg.sender] + tokenQuantity <= presalePurchaseLimit, "EXCEED_ALLOC" ); require(REKT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH"); for (uint256 i = 0; i < tokenQuantity; i++) { privateAmountMinted++; presalerListPurchases[msg.sender]++; _safeMint(msg.sender, totalSupply() + 1); } } function withdraw() external { payable(member1).transfer(address(this).balance); } function isPresaler(address addr) external view returns (bool) { return presalerList[addr]; } function presalePurchasedCount(address addr) external view returns (uint256) { return presalerListPurchases[addr]; } function lockMetadata() external onlyOwner { locked = true; } function togglePresaleStatus() external onlyOwner { presaleLive = !presaleLive; } function toggleSaleStatus() external onlyOwner { saleLive = !saleLive; } function setContractURI(string calldata URI) external onlyOwner notLocked { _contractURI = URI; } function setBaseURI(string calldata URI) external onlyOwner notLocked { _tokenBaseURI = URI; } function contractURI() public view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Cannot query non-existent token"); return string( abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json") ); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "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"},{"inputs":[],"name":"REKT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REKT_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REKT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REKT_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REKT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","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":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","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":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280605181526020016200540260519139600d90805190602001906200003592919062000264565b506040518060800160405280605181526020016200540260519139600e90805190602001906200006792919062000264565b5073dd8de027e6974f44dfb0f0f0431ed6364c73eb35600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064601255348015620000cf57600080fd5b506040518060400160405280600481526020017f52454b54000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52454b540000000000000000000000000000000000000000000000000000000081525081600090805190602001906200015492919062000264565b5080600190805190602001906200016d92919062000264565b50505062000190620001846200019660201b60201c565b6200019e60201b60201c565b62000379565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002729062000314565b90600052602060002090601f016020900481019282620002965760008555620002e2565b82601f10620002b157805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e1578251825591602001919060010190620002c4565b5b509050620002f19190620002f5565b5090565b5b8082111562000310576000816000905550600101620002f6565b5090565b600060028204905060018216806200032d57607f821691505b602082108114156200034457620003436200034a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61507980620003896000396000f3fe6080604052600436106102725760003560e01c8063815f7bbd1161014f578063a22cb465116100c1578063e081b7811161007a578063e081b78114610936578063e8a3d48514610961578063e985e9c51461098c578063f2fde38b146109c9578063f4743070146109f2578063f7b3e53214610a1d57610272565b8063a22cb46514610837578063b179e06014610860578063b88d4fde14610889578063c87b56dd146108b2578063cf309012146108ef578063d96a094a1461091a57610272565b8063940f1ada11610113578063940f1ada1461071357806395d89b411461073e578063989bdbb6146107695780639bf80316146107805780639cf2e8d6146107bd5780639e273b2f146107fa57610272565b8063815f7bbd1461064d57806383a9e04914610669578063854a27ca146106945780638da5cb5b146106bf578063938e3d7b146106ea57610272565b806342842e0e116101e85780636352211e116101ac5780636352211e146105515780636887815f1461058e57806370a08231146105b9578063715018a6146105f65780637204a3c91461060d5780637bffb4ce1461063657610272565b806342842e0e1461045a5780634f6ccce71461048357806355f804b3146104c057806359a12ad5146104e95780635ce7af1f1461051457610272565b8063095ea7b31161023a578063095ea7b31461035e57806318160ddd1461038757806322c18de5146103b257806323b872dd146103dd5780632f745c59146104065780633ccfd60b1461044357610272565b806301ffc9a714610277578063049c5c49146102b457806306fdde03146102cb578063081812fc146102f657806308817ac214610333575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906138c3565b610a48565b6040516102ab9190613fdc565b60405180910390f35b3480156102c057600080fd5b506102c9610ac2565b005b3480156102d757600080fd5b506102e0610b6a565b6040516102ed9190613ff7565b60405180910390f35b34801561030257600080fd5b5061031d6004803603810190610318919061396a565b610bfc565b60405161032a9190613f75565b60405180910390f35b34801561033f57600080fd5b50610348610c81565b60405161035591906143f9565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190613836565b610c87565b005b34801561039357600080fd5b5061039c610d9f565b6040516103a991906143f9565b60405180910390f35b3480156103be57600080fd5b506103c7610dac565b6040516103d491906143f9565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613720565b610db7565b005b34801561041257600080fd5b5061042d60048036038101906104289190613836565b610e17565b60405161043a91906143f9565b60405180910390f35b34801561044f57600080fd5b50610458610ebc565b005b34801561046657600080fd5b50610481600480360381019061047c9190613720565b610f27565b005b34801561048f57600080fd5b506104aa60048036038101906104a5919061396a565b610f47565b6040516104b791906143f9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061391d565b610fb8565b005b3480156104f557600080fd5b506104fe61109a565b60405161050b91906143f9565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906136b3565b6110a0565b60405161054891906143f9565b60405180910390f35b34801561055d57600080fd5b506105786004803603810190610573919061396a565b6110e9565b6040516105859190613f75565b60405180910390f35b34801561059a57600080fd5b506105a361119b565b6040516105b091906143f9565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db91906136b3565b6111ad565b6040516105ed91906143f9565b60405180910390f35b34801561060257600080fd5b5061060b611265565b005b34801561061957600080fd5b50610634600480360381019061062f9190613876565b6112ed565b005b34801561064257600080fd5b5061064b611511565b005b6106676004803603810190610662919061396a565b6115b9565b005b34801561067557600080fd5b5061067e6118e5565b60405161068b9190613fdc565b60405180910390f35b3480156106a057600080fd5b506106a96118f8565b6040516106b691906143f9565b60405180910390f35b3480156106cb57600080fd5b506106d46118fd565b6040516106e19190613f75565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c919061391d565b611927565b005b34801561071f57600080fd5b50610728611a09565b60405161073591906143f9565b60405180910390f35b34801561074a57600080fd5b50610753611a0f565b6040516107609190613ff7565b60405180910390f35b34801561077557600080fd5b5061077e611aa1565b005b34801561078c57600080fd5b506107a760048036038101906107a291906136b3565b611b3a565b6040516107b491906143f9565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df91906136b3565b611b52565b6040516107f19190613fdc565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c91906136b3565b611b72565b60405161082e9190613fdc565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906137f6565b611bc8565b005b34801561086c57600080fd5b5061088760048036038101906108829190613876565b611d49565b005b34801561089557600080fd5b506108b060048036038101906108ab9190613773565b611ee0565b005b3480156108be57600080fd5b506108d960048036038101906108d4919061396a565b611f42565b6040516108e69190613ff7565b60405180910390f35b3480156108fb57600080fd5b50610904611fbe565b6040516109119190613fdc565b60405180910390f35b610934600480360381019061092f919061396a565b611fd1565b005b34801561094257600080fd5b5061094b612209565b6040516109589190613fdc565b60405180910390f35b34801561096d57600080fd5b5061097661221c565b6040516109839190613ff7565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae91906136e0565b6122ae565b6040516109c09190613fdc565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb91906136b3565b612342565b005b3480156109fe57600080fd5b50610a0761243a565b604051610a1491906143f9565b60405180910390f35b348015610a2957600080fd5b50610a32612440565b604051610a3f91906143f9565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abb5750610aba82612445565b5b9050919050565b610aca612527565b73ffffffffffffffffffffffffffffffffffffffff16610ae86118fd565b73ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590614279565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b606060008054610b799061468d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba59061468d565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b6000610c078261252f565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614259565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d0581565b6000610c92826110e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90614319565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d22612527565b73ffffffffffffffffffffffffffffffffffffffff161480610d515750610d5081610d4b612527565b6122ae565b5b610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d87906141d9565b60405180910390fd5b610d9a838361259b565b505050565b6000600880549050905090565b66354a6ba7a1800081565b610dc8610dc2612527565b82612654565b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90614359565b60405180910390fd5b610e12838383612732565b505050565b6000610e22836111ad565b8210610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90614059565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f24573d6000803e3d6000fd5b50565b610f4283838360405180602001604052806000815250611ee0565b505050565b6000610f51610d9f565b8210610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990614379565b60405180910390fd5b60088281548110610fa657610fa5614826565b5b90600052602060002001549050919050565b610fc0612527565b73ffffffffffffffffffffffffffffffffffffffff16610fde6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614279565b60405180910390fd5b601360029054906101000a900460ff1615611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b906142b9565b60405180910390fd5b8181600e919061109592919061348b565b505050565b60115481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990614219565b60405180910390fd5b80915050919050565b610d0560006111aa91906144c2565b81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906141f9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126d612527565b73ffffffffffffffffffffffffffffffffffffffff1661128b6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614279565b60405180910390fd5b6112eb600061298e565b565b6112f5612527565b73ffffffffffffffffffffffffffffffffffffffff166113136118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090614279565b60405180910390fd5b60005b8282905081101561150c57600083838381811061138c5761138b614826565b5b90506020020160208101906113a191906136b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90614039565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790614199565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611504906146f0565b91505061136c565b505050565b611519612527565b73ffffffffffffffffffffffffffffffffffffffff166115376118fd565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490614279565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b601360019054906101000a900460ff161580156115e25750601360009054906101000a900460ff165b611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614019565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a4906142d9565b60405180910390fd5b610d0560006116bc91906144c2565b6116c4610d9f565b10611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614139565b60405180910390fd5b60008160115461171491906144c2565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90614399565b60405180910390fd5b60125481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a391906144c2565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906143b9565b60405180910390fd5b348166354a6ba7a180006117f89190614549565b1115611839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611830906143d9565b60405180910390fd5b60005b818110156118e15760116000815480929190611857906146f0565b9190505550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118ac906146f0565b91905055506118ce3360016118bf610d9f565b6118c991906144c2565b612a54565b80806118d9906146f0565b91505061183c565b5050565b601360009054906101000a900460ff1681565b600081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61192f612527565b73ffffffffffffffffffffffffffffffffffffffff1661194d6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90614279565b60405180910390fd5b601360029054906101000a900460ff16156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906142b9565b60405180910390fd5b8181600d9190611a0492919061348b565b505050565b60105481565b606060018054611a1e9061468d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4a9061468d565b8015611a975780601f10611a6c57610100808354040283529160200191611a97565b820191906000526020600020905b815481529060010190602001808311611a7a57829003601f168201915b5050505050905090565b611aa9612527565b73ffffffffffffffffffffffffffffffffffffffff16611ac76118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490614279565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b600c6020528060005260406000206000915090505481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611bd0612527565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590614119565b60405180910390fd5b8060056000611c4b612527565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cf8612527565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3d9190613fdc565b60405180910390a35050565b611d51612527565b73ffffffffffffffffffffffffffffffffffffffff16611d6f6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614279565b60405180910390fd5b60005b82829050811015611edb576000838383818110611de857611de7614826565b5b9050602002016020810190611dfd91906136b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614039565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611ed3906146f0565b915050611dc8565b505050565b611ef1611eeb612527565b83612654565b611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790614359565b60405180910390fd5b611f3c84848484612a72565b50505050565b6060611f4d8261252f565b611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906142f9565b60405180910390fd5b600e611f9783612ace565b604051602001611fa8929190613f46565b6040516020818303038152906040529050919050565b601360029054906101000a900460ff1681565b601360019054906101000a900460ff16612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790614159565b60405180910390fd5b601360009054906101000a900460ff1615612070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612067906141b9565b60405180910390fd5b610d05600061207f91906144c2565b612087610d9f565b106120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90614139565b60405180910390fd5b610d05816010546120d891906144c2565b1115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614339565b60405180910390fd5b606481111561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614099565b60405180910390fd5b348166354a6ba7a180006121719190614549565b11156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906143d9565b60405180910390fd5b60005b8181101561220557601060008154809291906121d0906146f0565b91905055506121f23360016121e3610d9f565b6121ed91906144c2565b612a54565b80806121fd906146f0565b9150506121b5565b5050565b601360019054906101000a900460ff1681565b6060600d805461222b9061468d565b80601f01602080910402602001604051908101604052809291908181526020018280546122579061468d565b80156122a45780601f10612279576101008083540402835291602001916122a4565b820191906000526020600020905b81548152906001019060200180831161228757829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61234a612527565b73ffffffffffffffffffffffffffffffffffffffff166123686118fd565b73ffffffffffffffffffffffffffffffffffffffff16146123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590614279565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612425906140b9565b60405180910390fd5b6124378161298e565b50565b60125481565b606481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612520575061251f82612c2f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661260e836110e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061265f8261252f565b61269e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269590614179565b60405180910390fd5b60006126a9836110e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061271857508373ffffffffffffffffffffffffffffffffffffffff1661270084610bfc565b73ffffffffffffffffffffffffffffffffffffffff16145b80612729575061272881856122ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612752826110e9565b73ffffffffffffffffffffffffffffffffffffffff16146127a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279f90614299565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f906140f9565b60405180910390fd5b612823838383612c99565b61282e60008261259b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287e91906145a3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128d591906144c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a6e828260405180602001604052806000815250612dad565b5050565b612a7d848484612732565b612a8984848484612e08565b612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614079565b60405180910390fd5b50505050565b60606000821415612b16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c2a565b600082905060005b60008214612b48578080612b31906146f0565b915050600a82612b419190614518565b9150612b1e565b60008167ffffffffffffffff811115612b6457612b63614855565b5b6040519080825280601f01601f191660200182016040528015612b965781602001600182028036833780820191505090505b5090505b60008514612c2357600182612baf91906145a3565b9150600a85612bbe9190614739565b6030612bca91906144c2565b60f81b818381518110612be057612bdf614826565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c1c9190614518565b9450612b9a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ca4838383612f9f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ce757612ce281612fa4565b612d26565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d2557612d248382612fed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d6957612d648161315a565b612da8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612da757612da6828261322b565b5b5b505050565b612db783836132aa565b612dc46000848484612e08565b612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa90614079565b60405180910390fd5b505050565b6000612e298473ffffffffffffffffffffffffffffffffffffffff16613478565b15612f92578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e52612527565b8786866040518563ffffffff1660e01b8152600401612e749493929190613f90565b602060405180830381600087803b158015612e8e57600080fd5b505af1925050508015612ebf57506040513d601f19601f82011682018060405250810190612ebc91906138f0565b60015b612f42573d8060008114612eef576040519150601f19603f3d011682016040523d82523d6000602084013e612ef4565b606091505b50600081511415612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190614079565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f97565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ffa846111ad565b61300491906145a3565b90506000600760008481526020019081526020016000205490508181146130e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061316e91906145a3565b905060006009600084815260200190815260200160002054905060006008838154811061319e5761319d614826565b5b9060005260206000200154905080600883815481106131c0576131bf614826565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061320f5761320e6147f7565b5b6001900381819060005260206000200160009055905550505050565b6000613236836111ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561331a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331190614239565b60405180910390fd5b6133238161252f565b15613363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335a906140d9565b60405180910390fd5b61336f60008383612c99565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133bf91906144c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134979061468d565b90600052602060002090601f0160209004810192826134b95760008555613500565b82601f106134d257803560ff1916838001178555613500565b82800160010185558215613500579182015b828111156134ff5782358255916020019190600101906134e4565b5b50905061350d9190613511565b5090565b5b8082111561352a576000816000905550600101613512565b5090565b600061354161353c84614439565b614414565b90508281526020810184848401111561355d5761355c614893565b5b61356884828561464b565b509392505050565b60008135905061357f81614fe7565b92915050565b60008083601f84011261359b5761359a614889565b5b8235905067ffffffffffffffff8111156135b8576135b7614884565b5b6020830191508360208202830111156135d4576135d361488e565b5b9250929050565b6000813590506135ea81614ffe565b92915050565b6000813590506135ff81615015565b92915050565b60008151905061361481615015565b92915050565b600082601f83011261362f5761362e614889565b5b813561363f84826020860161352e565b91505092915050565b60008083601f84011261365e5761365d614889565b5b8235905067ffffffffffffffff81111561367b5761367a614884565b5b6020830191508360018202830111156136975761369661488e565b5b9250929050565b6000813590506136ad8161502c565b92915050565b6000602082840312156136c9576136c861489d565b5b60006136d784828501613570565b91505092915050565b600080604083850312156136f7576136f661489d565b5b600061370585828601613570565b925050602061371685828601613570565b9150509250929050565b6000806000606084860312156137395761373861489d565b5b600061374786828701613570565b935050602061375886828701613570565b92505060406137698682870161369e565b9150509250925092565b6000806000806080858703121561378d5761378c61489d565b5b600061379b87828801613570565b94505060206137ac87828801613570565b93505060406137bd8782880161369e565b925050606085013567ffffffffffffffff8111156137de576137dd614898565b5b6137ea8782880161361a565b91505092959194509250565b6000806040838503121561380d5761380c61489d565b5b600061381b85828601613570565b925050602061382c858286016135db565b9150509250929050565b6000806040838503121561384d5761384c61489d565b5b600061385b85828601613570565b925050602061386c8582860161369e565b9150509250929050565b6000806020838503121561388d5761388c61489d565b5b600083013567ffffffffffffffff8111156138ab576138aa614898565b5b6138b785828601613585565b92509250509250929050565b6000602082840312156138d9576138d861489d565b5b60006138e7848285016135f0565b91505092915050565b6000602082840312156139065761390561489d565b5b600061391484828501613605565b91505092915050565b600080602083850312156139345761393361489d565b5b600083013567ffffffffffffffff81111561395257613951614898565b5b61395e85828601613648565b92509250509250929050565b6000602082840312156139805761397f61489d565b5b600061398e8482850161369e565b91505092915050565b6139a0816145d7565b82525050565b6139af816145e9565b82525050565b60006139c08261447f565b6139ca8185614495565b93506139da81856020860161465a565b6139e3816148a2565b840191505092915050565b60006139f98261448a565b613a0381856144a6565b9350613a1381856020860161465a565b613a1c816148a2565b840191505092915050565b6000613a328261448a565b613a3c81856144b7565b9350613a4c81856020860161465a565b80840191505092915050565b60008154613a658161468d565b613a6f81866144b7565b94506001821660008114613a8a5760018114613a9b57613ace565b60ff19831686528186019350613ace565b613aa48561446a565b60005b83811015613ac657815481890152600182019150602081019050613aa7565b838801955050505b50505092915050565b6000613ae4600e836144a6565b9150613aef826148b3565b602082019050919050565b6000613b07600c836144a6565b9150613b12826148dc565b602082019050919050565b6000613b2a602b836144a6565b9150613b3582614905565b604082019050919050565b6000613b4d6032836144a6565b9150613b5882614954565b604082019050919050565b6000613b706014836144a6565b9150613b7b826149a3565b602082019050919050565b6000613b936026836144a6565b9150613b9e826149cc565b604082019050919050565b6000613bb6601c836144a6565b9150613bc182614a1b565b602082019050919050565b6000613bd96024836144a6565b9150613be482614a44565b604082019050919050565b6000613bfc6019836144a6565b9150613c0782614a93565b602082019050919050565b6000613c1f600c836144a6565b9150613c2a82614abc565b602082019050919050565b6000613c42600b836144a6565b9150613c4d82614ae5565b602082019050919050565b6000613c65602c836144a6565b9150613c7082614b0e565b604082019050919050565b6000613c88600f836144a6565b9150613c9382614b5d565b602082019050919050565b6000613cab600c836144a6565b9150613cb682614b86565b602082019050919050565b6000613cce6038836144a6565b9150613cd982614baf565b604082019050919050565b6000613cf1602a836144a6565b9150613cfc82614bfe565b604082019050919050565b6000613d146029836144a6565b9150613d1f82614c4d565b604082019050919050565b6000613d376020836144a6565b9150613d4282614c9c565b602082019050919050565b6000613d5a602c836144a6565b9150613d6582614cc5565b604082019050919050565b6000613d7d6005836144b7565b9150613d8882614d14565b600582019050919050565b6000613da06020836144a6565b9150613dab82614d3d565b602082019050919050565b6000613dc36029836144a6565b9150613dce82614d66565b604082019050919050565b6000613de66024836144a6565b9150613df182614db5565b604082019050919050565b6000613e09600d836144a6565b9150613e1482614e04565b602082019050919050565b6000613e2c601f836144a6565b9150613e3782614e2d565b602082019050919050565b6000613e4f6021836144a6565b9150613e5a82614e56565b604082019050919050565b6000613e72600d836144a6565b9150613e7d82614ea5565b602082019050919050565b6000613e956031836144a6565b9150613ea082614ece565b604082019050919050565b6000613eb8602c836144a6565b9150613ec382614f1d565b604082019050919050565b6000613edb600e836144a6565b9150613ee682614f6c565b602082019050919050565b6000613efe600c836144a6565b9150613f0982614f95565b602082019050919050565b6000613f216010836144a6565b9150613f2c82614fbe565b602082019050919050565b613f4081614641565b82525050565b6000613f528285613a58565b9150613f5e8284613a27565b9150613f6982613d70565b91508190509392505050565b6000602082019050613f8a6000830184613997565b92915050565b6000608082019050613fa56000830187613997565b613fb26020830186613997565b613fbf6040830185613f37565b8181036060830152613fd181846139b5565b905095945050505050565b6000602082019050613ff160008301846139a6565b92915050565b6000602082019050818103600083015261401181846139ee565b905092915050565b6000602082019050818103600083015261403281613ad7565b9050919050565b6000602082019050818103600083015261405281613afa565b9050919050565b6000602082019050818103600083015261407281613b1d565b9050919050565b6000602082019050818103600083015261409281613b40565b9050919050565b600060208201905081810360008301526140b281613b63565b9050919050565b600060208201905081810360008301526140d281613b86565b9050919050565b600060208201905081810360008301526140f281613ba9565b9050919050565b6000602082019050818103600083015261411281613bcc565b9050919050565b6000602082019050818103600083015261413281613bef565b9050919050565b6000602082019050818103600083015261415281613c12565b9050919050565b6000602082019050818103600083015261417281613c35565b9050919050565b6000602082019050818103600083015261419281613c58565b9050919050565b600060208201905081810360008301526141b281613c7b565b9050919050565b600060208201905081810360008301526141d281613c9e565b9050919050565b600060208201905081810360008301526141f281613cc1565b9050919050565b6000602082019050818103600083015261421281613ce4565b9050919050565b6000602082019050818103600083015261423281613d07565b9050919050565b6000602082019050818103600083015261425281613d2a565b9050919050565b6000602082019050818103600083015261427281613d4d565b9050919050565b6000602082019050818103600083015261429281613d93565b9050919050565b600060208201905081810360008301526142b281613db6565b9050919050565b600060208201905081810360008301526142d281613dd9565b9050919050565b600060208201905081810360008301526142f281613dfc565b9050919050565b6000602082019050818103600083015261431281613e1f565b9050919050565b6000602082019050818103600083015261433281613e42565b9050919050565b6000602082019050818103600083015261435281613e65565b9050919050565b6000602082019050818103600083015261437281613e88565b9050919050565b6000602082019050818103600083015261439281613eab565b9050919050565b600060208201905081810360008301526143b281613ece565b9050919050565b600060208201905081810360008301526143d281613ef1565b9050919050565b600060208201905081810360008301526143f281613f14565b9050919050565b600060208201905061440e6000830184613f37565b92915050565b600061441e61442f565b905061442a82826146bf565b919050565b6000604051905090565b600067ffffffffffffffff82111561445457614453614855565b5b61445d826148a2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144cd82614641565b91506144d883614641565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561450d5761450c61476a565b5b828201905092915050565b600061452382614641565b915061452e83614641565b92508261453e5761453d614799565b5b828204905092915050565b600061455482614641565b915061455f83614641565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145985761459761476a565b5b828202905092915050565b60006145ae82614641565b91506145b983614641565b9250828210156145cc576145cb61476a565b5b828203905092915050565b60006145e282614621565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561467857808201518184015260208101905061465d565b83811115614687576000848401525b50505050565b600060028204905060018216806146a557607f821691505b602082108114156146b9576146b86147c8565b5b50919050565b6146c8826148a2565b810181811067ffffffffffffffff821117156146e7576146e6614855565b5b80604052505050565b60006146fb82614641565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472e5761472d61476a565b5b600182019050919050565b600061474482614641565b915061474f83614641565b92508261475f5761475e614799565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4558434545445f52454b545f5045525f4d494e54000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f4f4e4c595f50524553414c450000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f5155414c494649454400000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4558434545445f50524956415445000000000000000000000000000000000000600082015250565b7f4558434545445f414c4c4f430000000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b614ff0816145d7565b8114614ffb57600080fd5b50565b615007816145e9565b811461501257600080fd5b50565b61501e816145f5565b811461502957600080fd5b50565b61503581614641565b811461504057600080fd5b5056fea2646970667358221220d94244b704e2346b056cbed5db7cadff47974a79e3bedc02335d05a1648a05a864736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59693545734134475274336971696a73586f32354c5838565532554655386156627734395a703666397744632f
Deployed Bytecode
0x6080604052600436106102725760003560e01c8063815f7bbd1161014f578063a22cb465116100c1578063e081b7811161007a578063e081b78114610936578063e8a3d48514610961578063e985e9c51461098c578063f2fde38b146109c9578063f4743070146109f2578063f7b3e53214610a1d57610272565b8063a22cb46514610837578063b179e06014610860578063b88d4fde14610889578063c87b56dd146108b2578063cf309012146108ef578063d96a094a1461091a57610272565b8063940f1ada11610113578063940f1ada1461071357806395d89b411461073e578063989bdbb6146107695780639bf80316146107805780639cf2e8d6146107bd5780639e273b2f146107fa57610272565b8063815f7bbd1461064d57806383a9e04914610669578063854a27ca146106945780638da5cb5b146106bf578063938e3d7b146106ea57610272565b806342842e0e116101e85780636352211e116101ac5780636352211e146105515780636887815f1461058e57806370a08231146105b9578063715018a6146105f65780637204a3c91461060d5780637bffb4ce1461063657610272565b806342842e0e1461045a5780634f6ccce71461048357806355f804b3146104c057806359a12ad5146104e95780635ce7af1f1461051457610272565b8063095ea7b31161023a578063095ea7b31461035e57806318160ddd1461038757806322c18de5146103b257806323b872dd146103dd5780632f745c59146104065780633ccfd60b1461044357610272565b806301ffc9a714610277578063049c5c49146102b457806306fdde03146102cb578063081812fc146102f657806308817ac214610333575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906138c3565b610a48565b6040516102ab9190613fdc565b60405180910390f35b3480156102c057600080fd5b506102c9610ac2565b005b3480156102d757600080fd5b506102e0610b6a565b6040516102ed9190613ff7565b60405180910390f35b34801561030257600080fd5b5061031d6004803603810190610318919061396a565b610bfc565b60405161032a9190613f75565b60405180910390f35b34801561033f57600080fd5b50610348610c81565b60405161035591906143f9565b60405180910390f35b34801561036a57600080fd5b5061038560048036038101906103809190613836565b610c87565b005b34801561039357600080fd5b5061039c610d9f565b6040516103a991906143f9565b60405180910390f35b3480156103be57600080fd5b506103c7610dac565b6040516103d491906143f9565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190613720565b610db7565b005b34801561041257600080fd5b5061042d60048036038101906104289190613836565b610e17565b60405161043a91906143f9565b60405180910390f35b34801561044f57600080fd5b50610458610ebc565b005b34801561046657600080fd5b50610481600480360381019061047c9190613720565b610f27565b005b34801561048f57600080fd5b506104aa60048036038101906104a5919061396a565b610f47565b6040516104b791906143f9565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061391d565b610fb8565b005b3480156104f557600080fd5b506104fe61109a565b60405161050b91906143f9565b60405180910390f35b34801561052057600080fd5b5061053b600480360381019061053691906136b3565b6110a0565b60405161054891906143f9565b60405180910390f35b34801561055d57600080fd5b506105786004803603810190610573919061396a565b6110e9565b6040516105859190613f75565b60405180910390f35b34801561059a57600080fd5b506105a361119b565b6040516105b091906143f9565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db91906136b3565b6111ad565b6040516105ed91906143f9565b60405180910390f35b34801561060257600080fd5b5061060b611265565b005b34801561061957600080fd5b50610634600480360381019061062f9190613876565b6112ed565b005b34801561064257600080fd5b5061064b611511565b005b6106676004803603810190610662919061396a565b6115b9565b005b34801561067557600080fd5b5061067e6118e5565b60405161068b9190613fdc565b60405180910390f35b3480156106a057600080fd5b506106a96118f8565b6040516106b691906143f9565b60405180910390f35b3480156106cb57600080fd5b506106d46118fd565b6040516106e19190613f75565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c919061391d565b611927565b005b34801561071f57600080fd5b50610728611a09565b60405161073591906143f9565b60405180910390f35b34801561074a57600080fd5b50610753611a0f565b6040516107609190613ff7565b60405180910390f35b34801561077557600080fd5b5061077e611aa1565b005b34801561078c57600080fd5b506107a760048036038101906107a291906136b3565b611b3a565b6040516107b491906143f9565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df91906136b3565b611b52565b6040516107f19190613fdc565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c91906136b3565b611b72565b60405161082e9190613fdc565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906137f6565b611bc8565b005b34801561086c57600080fd5b5061088760048036038101906108829190613876565b611d49565b005b34801561089557600080fd5b506108b060048036038101906108ab9190613773565b611ee0565b005b3480156108be57600080fd5b506108d960048036038101906108d4919061396a565b611f42565b6040516108e69190613ff7565b60405180910390f35b3480156108fb57600080fd5b50610904611fbe565b6040516109119190613fdc565b60405180910390f35b610934600480360381019061092f919061396a565b611fd1565b005b34801561094257600080fd5b5061094b612209565b6040516109589190613fdc565b60405180910390f35b34801561096d57600080fd5b5061097661221c565b6040516109839190613ff7565b60405180910390f35b34801561099857600080fd5b506109b360048036038101906109ae91906136e0565b6122ae565b6040516109c09190613fdc565b60405180910390f35b3480156109d557600080fd5b506109f060048036038101906109eb91906136b3565b612342565b005b3480156109fe57600080fd5b50610a0761243a565b604051610a1491906143f9565b60405180910390f35b348015610a2957600080fd5b50610a32612440565b604051610a3f91906143f9565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610abb5750610aba82612445565b5b9050919050565b610aca612527565b73ffffffffffffffffffffffffffffffffffffffff16610ae86118fd565b73ffffffffffffffffffffffffffffffffffffffff1614610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3590614279565b60405180910390fd5b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b606060008054610b799061468d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba59061468d565b8015610bf25780601f10610bc757610100808354040283529160200191610bf2565b820191906000526020600020905b815481529060010190602001808311610bd557829003601f168201915b5050505050905090565b6000610c078261252f565b610c46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3d90614259565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d0581565b6000610c92826110e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90614319565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d22612527565b73ffffffffffffffffffffffffffffffffffffffff161480610d515750610d5081610d4b612527565b6122ae565b5b610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d87906141d9565b60405180910390fd5b610d9a838361259b565b505050565b6000600880549050905090565b66354a6ba7a1800081565b610dc8610dc2612527565b82612654565b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90614359565b60405180910390fd5b610e12838383612732565b505050565b6000610e22836111ad565b8210610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90614059565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f24573d6000803e3d6000fd5b50565b610f4283838360405180602001604052806000815250611ee0565b505050565b6000610f51610d9f565b8210610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990614379565b60405180910390fd5b60088281548110610fa657610fa5614826565b5b90600052602060002001549050919050565b610fc0612527565b73ffffffffffffffffffffffffffffffffffffffff16610fde6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90614279565b60405180910390fd5b601360029054906101000a900460ff1615611084576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107b906142b9565b60405180910390fd5b8181600e919061109592919061348b565b505050565b60115481565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990614219565b60405180910390fd5b80915050919050565b610d0560006111aa91906144c2565b81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611215906141f9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61126d612527565b73ffffffffffffffffffffffffffffffffffffffff1661128b6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d890614279565b60405180910390fd5b6112eb600061298e565b565b6112f5612527565b73ffffffffffffffffffffffffffffffffffffffff166113136118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136090614279565b60405180910390fd5b60005b8282905081101561150c57600083838381811061138c5761138b614826565b5b90506020020160208101906113a191906136b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90614039565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156114a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149790614199565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611504906146f0565b91505061136c565b505050565b611519612527565b73ffffffffffffffffffffffffffffffffffffffff166115376118fd565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158490614279565b60405180910390fd5b601360009054906101000a900460ff1615601360006101000a81548160ff021916908315150217905550565b601360019054906101000a900460ff161580156115e25750601360009054906101000a900460ff165b611621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161890614019565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a4906142d9565b60405180910390fd5b610d0560006116bc91906144c2565b6116c4610d9f565b10611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90614139565b60405180910390fd5b60008160115461171491906144c2565b1115611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90614399565b60405180910390fd5b60125481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117a391906144c2565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906143b9565b60405180910390fd5b348166354a6ba7a180006117f89190614549565b1115611839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611830906143d9565b60405180910390fd5b60005b818110156118e15760116000815480929190611857906146f0565b9190505550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906118ac906146f0565b91905055506118ce3360016118bf610d9f565b6118c991906144c2565b612a54565b80806118d9906146f0565b91505061183c565b5050565b601360009054906101000a900460ff1681565b600081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61192f612527565b73ffffffffffffffffffffffffffffffffffffffff1661194d6118fd565b73ffffffffffffffffffffffffffffffffffffffff16146119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90614279565b60405180910390fd5b601360029054906101000a900460ff16156119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea906142b9565b60405180910390fd5b8181600d9190611a0492919061348b565b505050565b60105481565b606060018054611a1e9061468d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4a9061468d565b8015611a975780601f10611a6c57610100808354040283529160200191611a97565b820191906000526020600020905b815481529060010190602001808311611a7a57829003601f168201915b5050505050905090565b611aa9612527565b73ffffffffffffffffffffffffffffffffffffffff16611ac76118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490614279565b60405180910390fd5b6001601360026101000a81548160ff021916908315150217905550565b600c6020528060005260406000206000915090505481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611bd0612527565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590614119565b60405180910390fd5b8060056000611c4b612527565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cf8612527565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d3d9190613fdc565b60405180910390a35050565b611d51612527565b73ffffffffffffffffffffffffffffffffffffffff16611d6f6118fd565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614279565b60405180910390fd5b60005b82829050811015611edb576000838383818110611de857611de7614826565b5b9050602002016020810190611dfd91906136b3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614039565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080611ed3906146f0565b915050611dc8565b505050565b611ef1611eeb612527565b83612654565b611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790614359565b60405180910390fd5b611f3c84848484612a72565b50505050565b6060611f4d8261252f565b611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906142f9565b60405180910390fd5b600e611f9783612ace565b604051602001611fa8929190613f46565b6040516020818303038152906040529050919050565b601360029054906101000a900460ff1681565b601360019054906101000a900460ff16612020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201790614159565b60405180910390fd5b601360009054906101000a900460ff1615612070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612067906141b9565b60405180910390fd5b610d05600061207f91906144c2565b612087610d9f565b106120c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120be90614139565b60405180910390fd5b610d05816010546120d891906144c2565b1115612119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211090614339565b60405180910390fd5b606481111561215d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215490614099565b60405180910390fd5b348166354a6ba7a180006121719190614549565b11156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906143d9565b60405180910390fd5b60005b8181101561220557601060008154809291906121d0906146f0565b91905055506121f23360016121e3610d9f565b6121ed91906144c2565b612a54565b80806121fd906146f0565b9150506121b5565b5050565b601360019054906101000a900460ff1681565b6060600d805461222b9061468d565b80601f01602080910402602001604051908101604052809291908181526020018280546122579061468d565b80156122a45780601f10612279576101008083540402835291602001916122a4565b820191906000526020600020905b81548152906001019060200180831161228757829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61234a612527565b73ffffffffffffffffffffffffffffffffffffffff166123686118fd565b73ffffffffffffffffffffffffffffffffffffffff16146123be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b590614279565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561242e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612425906140b9565b60405180910390fd5b6124378161298e565b50565b60125481565b606481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061251057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612520575061251f82612c2f565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661260e836110e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061265f8261252f565b61269e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269590614179565b60405180910390fd5b60006126a9836110e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061271857508373ffffffffffffffffffffffffffffffffffffffff1661270084610bfc565b73ffffffffffffffffffffffffffffffffffffffff16145b80612729575061272881856122ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612752826110e9565b73ffffffffffffffffffffffffffffffffffffffff16146127a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279f90614299565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f906140f9565b60405180910390fd5b612823838383612c99565b61282e60008261259b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287e91906145a3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128d591906144c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612a6e828260405180602001604052806000815250612dad565b5050565b612a7d848484612732565b612a8984848484612e08565b612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614079565b60405180910390fd5b50505050565b60606000821415612b16576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c2a565b600082905060005b60008214612b48578080612b31906146f0565b915050600a82612b419190614518565b9150612b1e565b60008167ffffffffffffffff811115612b6457612b63614855565b5b6040519080825280601f01601f191660200182016040528015612b965781602001600182028036833780820191505090505b5090505b60008514612c2357600182612baf91906145a3565b9150600a85612bbe9190614739565b6030612bca91906144c2565b60f81b818381518110612be057612bdf614826565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c1c9190614518565b9450612b9a565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612ca4838383612f9f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ce757612ce281612fa4565b612d26565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d2557612d248382612fed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d6957612d648161315a565b612da8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612da757612da6828261322b565b5b5b505050565b612db783836132aa565b612dc46000848484612e08565b612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa90614079565b60405180910390fd5b505050565b6000612e298473ffffffffffffffffffffffffffffffffffffffff16613478565b15612f92578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e52612527565b8786866040518563ffffffff1660e01b8152600401612e749493929190613f90565b602060405180830381600087803b158015612e8e57600080fd5b505af1925050508015612ebf57506040513d601f19601f82011682018060405250810190612ebc91906138f0565b60015b612f42573d8060008114612eef576040519150601f19603f3d011682016040523d82523d6000602084013e612ef4565b606091505b50600081511415612f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3190614079565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f97565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ffa846111ad565b61300491906145a3565b90506000600760008481526020019081526020016000205490508181146130e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061316e91906145a3565b905060006009600084815260200190815260200160002054905060006008838154811061319e5761319d614826565b5b9060005260206000200154905080600883815481106131c0576131bf614826565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061320f5761320e6147f7565b5b6001900381819060005260206000200160009055905550505050565b6000613236836111ad565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561331a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331190614239565b60405180910390fd5b6133238161252f565b15613363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335a906140d9565b60405180910390fd5b61336f60008383612c99565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133bf91906144c2565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546134979061468d565b90600052602060002090601f0160209004810192826134b95760008555613500565b82601f106134d257803560ff1916838001178555613500565b82800160010185558215613500579182015b828111156134ff5782358255916020019190600101906134e4565b5b50905061350d9190613511565b5090565b5b8082111561352a576000816000905550600101613512565b5090565b600061354161353c84614439565b614414565b90508281526020810184848401111561355d5761355c614893565b5b61356884828561464b565b509392505050565b60008135905061357f81614fe7565b92915050565b60008083601f84011261359b5761359a614889565b5b8235905067ffffffffffffffff8111156135b8576135b7614884565b5b6020830191508360208202830111156135d4576135d361488e565b5b9250929050565b6000813590506135ea81614ffe565b92915050565b6000813590506135ff81615015565b92915050565b60008151905061361481615015565b92915050565b600082601f83011261362f5761362e614889565b5b813561363f84826020860161352e565b91505092915050565b60008083601f84011261365e5761365d614889565b5b8235905067ffffffffffffffff81111561367b5761367a614884565b5b6020830191508360018202830111156136975761369661488e565b5b9250929050565b6000813590506136ad8161502c565b92915050565b6000602082840312156136c9576136c861489d565b5b60006136d784828501613570565b91505092915050565b600080604083850312156136f7576136f661489d565b5b600061370585828601613570565b925050602061371685828601613570565b9150509250929050565b6000806000606084860312156137395761373861489d565b5b600061374786828701613570565b935050602061375886828701613570565b92505060406137698682870161369e565b9150509250925092565b6000806000806080858703121561378d5761378c61489d565b5b600061379b87828801613570565b94505060206137ac87828801613570565b93505060406137bd8782880161369e565b925050606085013567ffffffffffffffff8111156137de576137dd614898565b5b6137ea8782880161361a565b91505092959194509250565b6000806040838503121561380d5761380c61489d565b5b600061381b85828601613570565b925050602061382c858286016135db565b9150509250929050565b6000806040838503121561384d5761384c61489d565b5b600061385b85828601613570565b925050602061386c8582860161369e565b9150509250929050565b6000806020838503121561388d5761388c61489d565b5b600083013567ffffffffffffffff8111156138ab576138aa614898565b5b6138b785828601613585565b92509250509250929050565b6000602082840312156138d9576138d861489d565b5b60006138e7848285016135f0565b91505092915050565b6000602082840312156139065761390561489d565b5b600061391484828501613605565b91505092915050565b600080602083850312156139345761393361489d565b5b600083013567ffffffffffffffff81111561395257613951614898565b5b61395e85828601613648565b92509250509250929050565b6000602082840312156139805761397f61489d565b5b600061398e8482850161369e565b91505092915050565b6139a0816145d7565b82525050565b6139af816145e9565b82525050565b60006139c08261447f565b6139ca8185614495565b93506139da81856020860161465a565b6139e3816148a2565b840191505092915050565b60006139f98261448a565b613a0381856144a6565b9350613a1381856020860161465a565b613a1c816148a2565b840191505092915050565b6000613a328261448a565b613a3c81856144b7565b9350613a4c81856020860161465a565b80840191505092915050565b60008154613a658161468d565b613a6f81866144b7565b94506001821660008114613a8a5760018114613a9b57613ace565b60ff19831686528186019350613ace565b613aa48561446a565b60005b83811015613ac657815481890152600182019150602081019050613aa7565b838801955050505b50505092915050565b6000613ae4600e836144a6565b9150613aef826148b3565b602082019050919050565b6000613b07600c836144a6565b9150613b12826148dc565b602082019050919050565b6000613b2a602b836144a6565b9150613b3582614905565b604082019050919050565b6000613b4d6032836144a6565b9150613b5882614954565b604082019050919050565b6000613b706014836144a6565b9150613b7b826149a3565b602082019050919050565b6000613b936026836144a6565b9150613b9e826149cc565b604082019050919050565b6000613bb6601c836144a6565b9150613bc182614a1b565b602082019050919050565b6000613bd96024836144a6565b9150613be482614a44565b604082019050919050565b6000613bfc6019836144a6565b9150613c0782614a93565b602082019050919050565b6000613c1f600c836144a6565b9150613c2a82614abc565b602082019050919050565b6000613c42600b836144a6565b9150613c4d82614ae5565b602082019050919050565b6000613c65602c836144a6565b9150613c7082614b0e565b604082019050919050565b6000613c88600f836144a6565b9150613c9382614b5d565b602082019050919050565b6000613cab600c836144a6565b9150613cb682614b86565b602082019050919050565b6000613cce6038836144a6565b9150613cd982614baf565b604082019050919050565b6000613cf1602a836144a6565b9150613cfc82614bfe565b604082019050919050565b6000613d146029836144a6565b9150613d1f82614c4d565b604082019050919050565b6000613d376020836144a6565b9150613d4282614c9c565b602082019050919050565b6000613d5a602c836144a6565b9150613d6582614cc5565b604082019050919050565b6000613d7d6005836144b7565b9150613d8882614d14565b600582019050919050565b6000613da06020836144a6565b9150613dab82614d3d565b602082019050919050565b6000613dc36029836144a6565b9150613dce82614d66565b604082019050919050565b6000613de66024836144a6565b9150613df182614db5565b604082019050919050565b6000613e09600d836144a6565b9150613e1482614e04565b602082019050919050565b6000613e2c601f836144a6565b9150613e3782614e2d565b602082019050919050565b6000613e4f6021836144a6565b9150613e5a82614e56565b604082019050919050565b6000613e72600d836144a6565b9150613e7d82614ea5565b602082019050919050565b6000613e956031836144a6565b9150613ea082614ece565b604082019050919050565b6000613eb8602c836144a6565b9150613ec382614f1d565b604082019050919050565b6000613edb600e836144a6565b9150613ee682614f6c565b602082019050919050565b6000613efe600c836144a6565b9150613f0982614f95565b602082019050919050565b6000613f216010836144a6565b9150613f2c82614fbe565b602082019050919050565b613f4081614641565b82525050565b6000613f528285613a58565b9150613f5e8284613a27565b9150613f6982613d70565b91508190509392505050565b6000602082019050613f8a6000830184613997565b92915050565b6000608082019050613fa56000830187613997565b613fb26020830186613997565b613fbf6040830185613f37565b8181036060830152613fd181846139b5565b905095945050505050565b6000602082019050613ff160008301846139a6565b92915050565b6000602082019050818103600083015261401181846139ee565b905092915050565b6000602082019050818103600083015261403281613ad7565b9050919050565b6000602082019050818103600083015261405281613afa565b9050919050565b6000602082019050818103600083015261407281613b1d565b9050919050565b6000602082019050818103600083015261409281613b40565b9050919050565b600060208201905081810360008301526140b281613b63565b9050919050565b600060208201905081810360008301526140d281613b86565b9050919050565b600060208201905081810360008301526140f281613ba9565b9050919050565b6000602082019050818103600083015261411281613bcc565b9050919050565b6000602082019050818103600083015261413281613bef565b9050919050565b6000602082019050818103600083015261415281613c12565b9050919050565b6000602082019050818103600083015261417281613c35565b9050919050565b6000602082019050818103600083015261419281613c58565b9050919050565b600060208201905081810360008301526141b281613c7b565b9050919050565b600060208201905081810360008301526141d281613c9e565b9050919050565b600060208201905081810360008301526141f281613cc1565b9050919050565b6000602082019050818103600083015261421281613ce4565b9050919050565b6000602082019050818103600083015261423281613d07565b9050919050565b6000602082019050818103600083015261425281613d2a565b9050919050565b6000602082019050818103600083015261427281613d4d565b9050919050565b6000602082019050818103600083015261429281613d93565b9050919050565b600060208201905081810360008301526142b281613db6565b9050919050565b600060208201905081810360008301526142d281613dd9565b9050919050565b600060208201905081810360008301526142f281613dfc565b9050919050565b6000602082019050818103600083015261431281613e1f565b9050919050565b6000602082019050818103600083015261433281613e42565b9050919050565b6000602082019050818103600083015261435281613e65565b9050919050565b6000602082019050818103600083015261437281613e88565b9050919050565b6000602082019050818103600083015261439281613eab565b9050919050565b600060208201905081810360008301526143b281613ece565b9050919050565b600060208201905081810360008301526143d281613ef1565b9050919050565b600060208201905081810360008301526143f281613f14565b9050919050565b600060208201905061440e6000830184613f37565b92915050565b600061441e61442f565b905061442a82826146bf565b919050565b6000604051905090565b600067ffffffffffffffff82111561445457614453614855565b5b61445d826148a2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144cd82614641565b91506144d883614641565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561450d5761450c61476a565b5b828201905092915050565b600061452382614641565b915061452e83614641565b92508261453e5761453d614799565b5b828204905092915050565b600061455482614641565b915061455f83614641565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145985761459761476a565b5b828202905092915050565b60006145ae82614641565b91506145b983614641565b9250828210156145cc576145cb61476a565b5b828203905092915050565b60006145e282614621565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561467857808201518184015260208101905061465d565b83811115614687576000848401525b50505050565b600060028204905060018216806146a557607f821691505b602082108114156146b9576146b86147c8565b5b50919050565b6146c8826148a2565b810181811067ffffffffffffffff821117156146e7576146e6614855565b5b80604052505050565b60006146fb82614641565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472e5761472d61476a565b5b600182019050919050565b600061474482614641565b915061474f83614641565b92508261475f5761475e614799565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f50524553414c455f434c4f534544000000000000000000000000000000000000600082015250565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4558434545445f52454b545f5045525f4d494e54000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f4f4e4c595f50524553414c450000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60008201527f636b656400000000000000000000000000000000000000000000000000000000602082015250565b7f4e4f545f5155414c494649454400000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4558434545445f50524956415445000000000000000000000000000000000000600082015250565b7f4558434545445f414c4c4f430000000000000000000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b614ff0816145d7565b8114614ffb57600080fd5b50565b615007816145e9565b811461501257600080fd5b50565b61501e816145f5565b811461502957600080fd5b50565b61503581614641565b811461504057600080fd5b5056fea2646970667358221220d94244b704e2346b056cbed5db7cadff47974a79e3bedc02335d05a1648a05a864736f6c63430008060033
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.