ERC-721
NFT
Overview
Max Total Supply
650 GHGHOUSE
Holders
218
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GHGHOUSELoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GHGHouse
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IGold { function burn(address account, uint amount) external; function balanceOf(address owner) external view returns (uint); } contract GHGHouse is ERC721, Ownable, Pausable, ReentrancyGuard { uint16 public maxTokens = 500; uint16 public maxGiveAway = 150; uint16 public tokensMinted = 0; uint16 public giveAwayMinted = 0; uint public goldPrice = 0 ether; uint public woodPrice = 300000 ether; IGold public gold; IGold public wood; mapping(address => bool) public approvedManagers; string private _apiURI = "https://gold-hunt-house.herokuapp.com/token/"; function _baseURI() internal view override returns (string memory) { return _apiURI; } function setBaseURI(string memory uri) external { _apiURI = uri; } function setGold(address _address) external onlyOwner { gold = IGold(_address); } function setWood(address _address) external onlyOwner { wood = IGold(_address); } constructor() ERC721("GHGHouse", "GHGHOUSE") { _pause(); _mint(msg.sender, 0); approvedManagers[msg.sender] = true; } function totalSupply() external view returns (uint) { return tokensMinted + giveAwayMinted; } function unpause() public onlyOwner { _unpause(); } function pause() external onlyOwner { _pause(); } function addManager(address _address) external onlyOwner { approvedManagers[_address] = true; } function removeManager(address _address) external onlyOwner { approvedManagers[_address] = false; } function changeGoldPrice(uint _wei) external onlyOwner { goldPrice = _wei; } function changeWoodPrice(uint _wei) external onlyOwner { woodPrice = _wei; } function changeTotalSupply(uint16 _maxSupply) external onlyOwner { maxTokens = _maxSupply; } function changeGiveAwaySupply(uint16 _maxSupply) external onlyOwner { maxGiveAway = _maxSupply; } function mintPrice(uint16 _amount, bool inWood) public view returns(uint) { return inWood ? _amount * woodPrice : _amount * goldPrice; } function giveAway(address _wallet, uint16 _amount) public { require(approvedManagers[msg.sender] == true); require(giveAwayMinted + _amount <= maxGiveAway, "Out of limit"); uint16 fromToken = tokensMinted + giveAwayMinted + 1; giveAwayMinted += _amount; for (uint16 i = 0; i < _amount; i++) { _mint(_wallet, fromToken + i); } } function mint(uint16 _amount) public whenNotPaused nonReentrant { require(tokensMinted + _amount <= maxTokens, "Out of limit"); uint goldTotalPrice = mintPrice(_amount, false); uint woodTotalPrice = mintPrice(_amount, true); require(gold.balanceOf(msg.sender) >= goldTotalPrice, "Not enough gold"); require(wood.balanceOf(msg.sender) >= woodTotalPrice, "Not enough wood"); uint16 fromToken = tokensMinted + giveAwayMinted + 1; tokensMinted += _amount; if (goldTotalPrice > 0) { gold.burn(msg.sender, goldTotalPrice); } if (woodTotalPrice > 0) { wood.burn(msg.sender, woodTotalPrice); } for (uint16 i = 0; i < _amount; i++) { _mint(msg.sender, fromToken + i); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addManager","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":"","type":"address"}],"name":"approvedManagers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"changeGiveAwaySupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wei","type":"uint256"}],"name":"changeGoldPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"changeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wei","type":"uint256"}],"name":"changeWoodPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giveAwayMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gold","outputs":[{"internalType":"contract IGold","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"goldPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiveAway","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"},{"internalType":"bool","name":"inWood","type":"bool"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeManager","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":[{"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":"address","name":"_address","type":"address"}],"name":"setGold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWood","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wood","outputs":[{"internalType":"contract IGold","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"woodPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526101f4600860006101000a81548161ffff021916908361ffff1602179055506096600860026101000a81548161ffff021916908361ffff1602179055506000600860046101000a81548161ffff021916908361ffff1602179055506000600860066101000a81548161ffff021916908361ffff1602179055506000600955693f870857a3e0e3800000600a556040518060600160405280602c815260200162004f1d602c9139600e9080519060200190620000c192919062000628565b50348015620000cf57600080fd5b506040518060400160405280600881526020017f474847486f7573650000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f474847484f55534500000000000000000000000000000000000000000000000081525081600090805190602001906200015492919062000628565b5080600190805190602001906200016d92919062000628565b50505062000190620001846200023460201b60201c565b6200023c60201b60201c565b6000600660146101000a81548160ff0219169083151502179055506001600781905550620001c36200030260201b60201c565b620001d6336000620003ba60201b60201c565b6001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200099c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000312620005a060201b60201c565b1562000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c9062000739565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003a16200023460201b60201c565b604051620003b09190620007a0565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200042d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000424906200080d565b60405180910390fd5b6200043e81620005b760201b60201c565b1562000481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000478906200087f565b60405180910390fd5b62000495600083836200062360201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004e79190620008da565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660149054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b828054620006369062000966565b90600052602060002090601f0160209004810192826200065a5760008555620006a6565b82601f106200067557805160ff1916838001178555620006a6565b82800160010185558215620006a6579182015b82811115620006a557825182559160200191906001019062000688565b5b509050620006b59190620006b9565b5090565b5b80821115620006d4576000816000905550600101620006ba565b5090565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000721601083620006d8565b91506200072e82620006e9565b602082019050919050565b60006020820190508181036000830152620007548162000712565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000788826200075b565b9050919050565b6200079a816200077b565b82525050565b6000602082019050620007b760008301846200078f565b92915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000620007f5602083620006d8565b91506200080282620007bd565b602082019050919050565b600060208201905081810360008301526200082881620007e6565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000867601c83620006d8565b915062000874826200082f565b602082019050919050565b600060208201905081810360008301526200089a8162000858565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008e782620008a1565b9150620008f483620008a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200092c576200092b620008ab565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200097f57607f821691505b6020821081141562000996576200099562000937565b5b50919050565b61457180620009ac6000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c806363c0f13311610146578063a22cb465116100c3578063e427c12711610087578063e427c12714610694578063e8315742146106b2578063e985e9c5146106d0578063f2fde38b14610700578063f7896da31461071c578063fbec6f211461073a57610253565b8063a22cb465146105f4578063ac18de4314610610578063b88d4fde1461062c578063c7b3743314610648578063c87b56dd1461066457610253565b80637b5f89121161010a5780637b5f8912146105745780638456cb59146105925780638da5cb5b1461059c57806395d89b41146105ba5780639e3a3db2146105d857610253565b806363c0f133146104bc5780636de9f32b146104ec5780636f19d4cd1461050a57806370a082311461053a578063715018a61461056a57610253565b806326d33c73116101d45780634450140411610198578063445014041461041857806348a6ab7e1461043657806355f804b3146104525780635c975abb1461046e5780636352211e1461048c57610253565b806326d33c731461039c5780632bba06ec146103ba5780632d06177a146103d65780633f4ba83a146103f257806342842e0e146103fc57610253565b8063095ea7b31161021b578063095ea7b31461030e57806318160ddd1461032a5780631b399b6d1461034857806323b872dd1461036457806323cf0a221461038057610253565b806301ffc9a7146102585780630520b7081461028857806306fdde03146102a4578063081812fc146102c2578063095d43af146102f2575b600080fd5b610272600480360381019061026d9190612dd1565b610758565b60405161027f9190612e19565b60405180910390f35b6102a2600480360381019061029d9190612e92565b61083a565b005b6102ac6108fa565b6040516102b99190612f58565b60405180910390f35b6102dc60048036038101906102d79190612fb0565b61098c565b6040516102e99190612fec565b60405180910390f35b61030c60048036038101906103079190612fb0565b610a11565b005b61032860048036038101906103239190613007565b610a97565b005b610332610baf565b60405161033f9190613056565b60405180910390f35b610362600480360381019061035d91906130ab565b610be6565b005b61037e600480360381019061037991906130d8565b610c82565b005b61039a600480360381019061039591906130ab565b610ce2565b005b6103a46111db565b6040516103b19190613056565b60405180910390f35b6103d460048036038101906103cf9190612fb0565b6111e1565b005b6103f060048036038101906103eb9190612e92565b611267565b005b6103fa61133e565b005b610416600480360381019061041191906130d8565b6113c4565b005b6104206113e4565b60405161042d9190613056565b60405180910390f35b610450600480360381019061044b919061312b565b6113ea565b005b61046c600480360381019061046791906132a0565b611577565b005b610476611591565b6040516104839190612e19565b60405180910390f35b6104a660048036038101906104a19190612fb0565b6115a8565b6040516104b39190612fec565b60405180910390f35b6104d660048036038101906104d19190612e92565b61165a565b6040516104e39190612e19565b60405180910390f35b6104f461167a565b60405161050191906132f8565b60405180910390f35b610524600480360381019061051f919061333f565b61168e565b6040516105319190613056565b60405180910390f35b610554600480360381019061054f9190612e92565b6116c7565b6040516105619190613056565b60405180910390f35b61057261177f565b005b61057c611807565b60405161058991906133de565b60405180910390f35b61059a61182d565b005b6105a46118b3565b6040516105b19190612fec565b60405180910390f35b6105c26118dd565b6040516105cf9190612f58565b60405180910390f35b6105f260048036038101906105ed9190612e92565b61196f565b005b61060e600480360381019061060991906133f9565b611a2f565b005b61062a60048036038101906106259190612e92565b611bb0565b005b610646600480360381019061064191906134da565b611c87565b005b610662600480360381019061065d91906130ab565b611ce9565b005b61067e60048036038101906106799190612fb0565b611d85565b60405161068b9190612f58565b60405180910390f35b61069c611e2c565b6040516106a991906132f8565b60405180910390f35b6106ba611e40565b6040516106c791906132f8565b60405180910390f35b6106ea60048036038101906106e5919061355d565b611e54565b6040516106f79190612e19565b60405180910390f35b61071a60048036038101906107159190612e92565b611ee8565b005b610724611fe0565b60405161073191906132f8565b60405180910390f35b610742611ff4565b60405161074f91906133de565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083357506108328261201a565b5b9050919050565b610842612084565b73ffffffffffffffffffffffffffffffffffffffff166108606118b3565b73ffffffffffffffffffffffffffffffffffffffff16146108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad906135e9565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461090990613638565b80601f016020809104026020016040519081016040528092919081815260200182805461093590613638565b80156109825780601f1061095757610100808354040283529160200191610982565b820191906000526020600020905b81548152906001019060200180831161096557829003601f168201915b5050505050905090565b60006109978261208c565b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd906136dc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a19612084565b73ffffffffffffffffffffffffffffffffffffffff16610a376118b3565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906135e9565b60405180910390fd5b80600a8190555050565b6000610aa2826115a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a9061376e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b32612084565b73ffffffffffffffffffffffffffffffffffffffff161480610b615750610b6081610b5b612084565b611e54565b5b610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790613800565b60405180910390fd5b610baa83836120f8565b505050565b6000600860069054906101000a900461ffff16600860049054906101000a900461ffff16610bdd919061384f565b61ffff16905090565b610bee612084565b73ffffffffffffffffffffffffffffffffffffffff16610c0c6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906135e9565b60405180910390fd5b80600860026101000a81548161ffff021916908361ffff16021790555050565b610c93610c8d612084565b826121b1565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906138f9565b60405180910390fd5b610cdd83838361228f565b505050565b610cea611591565b15610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190613965565b60405180910390fd5b60026007541415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d67906139d1565b60405180910390fd5b6002600781905550600860009054906101000a900461ffff1661ffff1681600860049054906101000a900461ffff16610da9919061384f565b61ffff161115610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613a3d565b60405180910390fd5b6000610dfb82600061168e565b90506000610e0a83600161168e565b905081600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610e689190612fec565b60206040518083038186803b158015610e8057600080fd5b505afa158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb89190613a72565b1015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613aeb565b60405180910390fd5b80600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610f559190612fec565b60206040518083038186803b158015610f6d57600080fd5b505afa158015610f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa59190613a72565b1015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613b57565b60405180910390fd5b60006001600860069054906101000a900461ffff16600860049054906101000a900461ffff16611016919061384f565b611020919061384f565b905083600860048282829054906101000a900461ffff16611041919061384f565b92506101000a81548161ffff021916908361ffff16021790555060008311156110f457600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33856040518363ffffffff1660e01b81526004016110c1929190613b77565b600060405180830381600087803b1580156110db57600080fd5b505af11580156110ef573d6000803e3d6000fd5b505050505b600082111561118d57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33846040518363ffffffff1660e01b815260040161115a929190613b77565b600060405180830381600087803b15801561117457600080fd5b505af1158015611188573d6000803e3d6000fd5b505050505b60005b8461ffff168161ffff1610156111cc576111b93382846111b0919061384f565b61ffff166124eb565b80806111c490613ba0565b915050611190565b50505050600160078190555050565b600a5481565b6111e9612084565b73ffffffffffffffffffffffffffffffffffffffff166112076118b3565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611254906135e9565b60405180910390fd5b8060098190555050565b61126f612084565b73ffffffffffffffffffffffffffffffffffffffff1661128d6118b3565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906135e9565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611346612084565b73ffffffffffffffffffffffffffffffffffffffff166113646118b3565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b1906135e9565b60405180910390fd5b6113c26126b9565b565b6113df83838360405180602001604052806000815250611c87565b505050565b60095481565b60011515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461144757600080fd5b600860029054906101000a900461ffff1661ffff1681600860069054906101000a900461ffff16611478919061384f565b61ffff1611156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613a3d565b60405180910390fd5b60006001600860069054906101000a900461ffff16600860049054906101000a900461ffff166114ed919061384f565b6114f7919061384f565b905081600860068282829054906101000a900461ffff16611518919061384f565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff168161ffff1610156115715761155e848284611555919061384f565b61ffff166124eb565b808061156990613ba0565b915050611535565b50505050565b80600e908051906020019061158d929190612cc2565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613c3d565b60405180910390fd5b80915050919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600860049054906101000a900461ffff1681565b6000816116ac576009548361ffff166116a79190613c5d565b6116bf565b600a548361ffff166116be9190613c5d565b5b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613d29565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611787612084565b73ffffffffffffffffffffffffffffffffffffffff166117a56118b3565b73ffffffffffffffffffffffffffffffffffffffff16146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906135e9565b60405180910390fd5b611805600061275b565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611835612084565b73ffffffffffffffffffffffffffffffffffffffff166118536118b3565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906135e9565b60405180910390fd5b6118b1612821565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118ec90613638565b80601f016020809104026020016040519081016040528092919081815260200182805461191890613638565b80156119655780601f1061193a57610100808354040283529160200191611965565b820191906000526020600020905b81548152906001019060200180831161194857829003601f168201915b5050505050905090565b611977612084565b73ffffffffffffffffffffffffffffffffffffffff166119956118b3565b73ffffffffffffffffffffffffffffffffffffffff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906135e9565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a37612084565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613d95565b60405180910390fd5b8060056000611ab2612084565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b5f612084565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba49190612e19565b60405180910390a35050565b611bb8612084565b73ffffffffffffffffffffffffffffffffffffffff16611bd66118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c23906135e9565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611c98611c92612084565b836121b1565b611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce906138f9565b60405180910390fd5b611ce3848484846128c4565b50505050565b611cf1612084565b73ffffffffffffffffffffffffffffffffffffffff16611d0f6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c906135e9565b60405180910390fd5b80600860006101000a81548161ffff021916908361ffff16021790555050565b6060611d908261208c565b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613e27565b60405180910390fd5b6000611dd9612920565b90506000815111611df95760405180602001604052806000815250611e24565b80611e03846129b2565b604051602001611e14929190613e83565b6040516020818303038152906040525b915050919050565b600860029054906101000a900461ffff1681565b600860009054906101000a900461ffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ef0612084565b73ffffffffffffffffffffffffffffffffffffffff16611f0e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906135e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90613f19565b60405180910390fd5b611fdd8161275b565b50565b600860069054906101000a900461ffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661216b836115a8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121bc8261208c565b6121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613fab565b60405180910390fd5b6000612206836115a8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227557508373ffffffffffffffffffffffffffffffffffffffff1661225d8461098c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228657506122858185611e54565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122af826115a8565b73ffffffffffffffffffffffffffffffffffffffff1614612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc9061403d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c906140cf565b60405180910390fd5b612380838383612b13565b61238b6000826120f8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123db91906140ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124329190614123565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612552906141c5565b60405180910390fd5b6125648161208c565b156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90614231565b60405180910390fd5b6125b060008383612b13565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126009190614123565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6126c1611591565b612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f79061429d565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612744612084565b6040516127519190612fec565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612829611591565b15612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613965565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128ad612084565b6040516128ba9190612fec565b60405180910390a1565b6128cf84848461228f565b6128db84848484612b18565b61291a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129119061432f565b60405180910390fd5b50505050565b6060600e805461292f90613638565b80601f016020809104026020016040519081016040528092919081815260200182805461295b90613638565b80156129a85780601f1061297d576101008083540402835291602001916129a8565b820191906000526020600020905b81548152906001019060200180831161298b57829003601f168201915b5050505050905090565b606060008214156129fa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b0e565b600082905060005b60008214612a2c578080612a159061434f565b915050600a82612a2591906143c7565b9150612a02565b60008167ffffffffffffffff811115612a4857612a47613175565b5b6040519080825280601f01601f191660200182016040528015612a7a5781602001600182028036833780820191505090505b5090505b60008514612b0757600182612a9391906140ef565b9150600a85612aa291906143f8565b6030612aae9190614123565b60f81b818381518110612ac457612ac3614429565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b0091906143c7565b9450612a7e565b8093505050505b919050565b505050565b6000612b398473ffffffffffffffffffffffffffffffffffffffff16612caf565b15612ca2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b62612084565b8786866040518563ffffffff1660e01b8152600401612b8494939291906144ad565b602060405180830381600087803b158015612b9e57600080fd5b505af1925050508015612bcf57506040513d601f19601f82011682018060405250810190612bcc919061450e565b60015b612c52573d8060008114612bff576040519150601f19603f3d011682016040523d82523d6000602084013e612c04565b606091505b50600081511415612c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c419061432f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca7565b600190505b949350505050565b600080823b905060008111915050919050565b828054612cce90613638565b90600052602060002090601f016020900481019282612cf05760008555612d37565b82601f10612d0957805160ff1916838001178555612d37565b82800160010185558215612d37579182015b82811115612d36578251825591602001919060010190612d1b565b5b509050612d449190612d48565b5090565b5b80821115612d61576000816000905550600101612d49565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dae81612d79565b8114612db957600080fd5b50565b600081359050612dcb81612da5565b92915050565b600060208284031215612de757612de6612d6f565b5b6000612df584828501612dbc565b91505092915050565b60008115159050919050565b612e1381612dfe565b82525050565b6000602082019050612e2e6000830184612e0a565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5f82612e34565b9050919050565b612e6f81612e54565b8114612e7a57600080fd5b50565b600081359050612e8c81612e66565b92915050565b600060208284031215612ea857612ea7612d6f565b5b6000612eb684828501612e7d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ef9578082015181840152602081019050612ede565b83811115612f08576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f2a82612ebf565b612f348185612eca565b9350612f44818560208601612edb565b612f4d81612f0e565b840191505092915050565b60006020820190508181036000830152612f728184612f1f565b905092915050565b6000819050919050565b612f8d81612f7a565b8114612f9857600080fd5b50565b600081359050612faa81612f84565b92915050565b600060208284031215612fc657612fc5612d6f565b5b6000612fd484828501612f9b565b91505092915050565b612fe681612e54565b82525050565b60006020820190506130016000830184612fdd565b92915050565b6000806040838503121561301e5761301d612d6f565b5b600061302c85828601612e7d565b925050602061303d85828601612f9b565b9150509250929050565b61305081612f7a565b82525050565b600060208201905061306b6000830184613047565b92915050565b600061ffff82169050919050565b61308881613071565b811461309357600080fd5b50565b6000813590506130a58161307f565b92915050565b6000602082840312156130c1576130c0612d6f565b5b60006130cf84828501613096565b91505092915050565b6000806000606084860312156130f1576130f0612d6f565b5b60006130ff86828701612e7d565b935050602061311086828701612e7d565b925050604061312186828701612f9b565b9150509250925092565b6000806040838503121561314257613141612d6f565b5b600061315085828601612e7d565b925050602061316185828601613096565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131ad82612f0e565b810181811067ffffffffffffffff821117156131cc576131cb613175565b5b80604052505050565b60006131df612d65565b90506131eb82826131a4565b919050565b600067ffffffffffffffff82111561320b5761320a613175565b5b61321482612f0e565b9050602081019050919050565b82818337600083830152505050565b600061324361323e846131f0565b6131d5565b90508281526020810184848401111561325f5761325e613170565b5b61326a848285613221565b509392505050565b600082601f8301126132875761328661316b565b5b8135613297848260208601613230565b91505092915050565b6000602082840312156132b6576132b5612d6f565b5b600082013567ffffffffffffffff8111156132d4576132d3612d74565b5b6132e084828501613272565b91505092915050565b6132f281613071565b82525050565b600060208201905061330d60008301846132e9565b92915050565b61331c81612dfe565b811461332757600080fd5b50565b60008135905061333981613313565b92915050565b6000806040838503121561335657613355612d6f565b5b600061336485828601613096565b92505060206133758582860161332a565b9150509250929050565b6000819050919050565b60006133a461339f61339a84612e34565b61337f565b612e34565b9050919050565b60006133b682613389565b9050919050565b60006133c8826133ab565b9050919050565b6133d8816133bd565b82525050565b60006020820190506133f360008301846133cf565b92915050565b600080604083850312156134105761340f612d6f565b5b600061341e85828601612e7d565b925050602061342f8582860161332a565b9150509250929050565b600067ffffffffffffffff82111561345457613453613175565b5b61345d82612f0e565b9050602081019050919050565b600061347d61347884613439565b6131d5565b90508281526020810184848401111561349957613498613170565b5b6134a4848285613221565b509392505050565b600082601f8301126134c1576134c061316b565b5b81356134d184826020860161346a565b91505092915050565b600080600080608085870312156134f4576134f3612d6f565b5b600061350287828801612e7d565b945050602061351387828801612e7d565b935050604061352487828801612f9b565b925050606085013567ffffffffffffffff81111561354557613544612d74565b5b613551878288016134ac565b91505092959194509250565b6000806040838503121561357457613573612d6f565b5b600061358285828601612e7d565b925050602061359385828601612e7d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135d3602083612eca565b91506135de8261359d565b602082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061365057607f821691505b6020821081141561366457613663613609565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006136c6602c83612eca565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602183612eca565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137ea603883612eca565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061385a82613071565b915061386583613071565b92508261ffff0382111561387c5761387b613820565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006138e3603183612eca565b91506138ee82613887565b604082019050919050565b60006020820190508181036000830152613912816138d6565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061394f601083612eca565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139bb601f83612eca565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b7f4f7574206f66206c696d69740000000000000000000000000000000000000000600082015250565b6000613a27600c83612eca565b9150613a32826139f1565b602082019050919050565b60006020820190508181036000830152613a5681613a1a565b9050919050565b600081519050613a6c81612f84565b92915050565b600060208284031215613a8857613a87612d6f565b5b6000613a9684828501613a5d565b91505092915050565b7f4e6f7420656e6f75676820676f6c640000000000000000000000000000000000600082015250565b6000613ad5600f83612eca565b9150613ae082613a9f565b602082019050919050565b60006020820190508181036000830152613b0481613ac8565b9050919050565b7f4e6f7420656e6f75676820776f6f640000000000000000000000000000000000600082015250565b6000613b41600f83612eca565b9150613b4c82613b0b565b602082019050919050565b60006020820190508181036000830152613b7081613b34565b9050919050565b6000604082019050613b8c6000830185612fdd565b613b996020830184613047565b9392505050565b6000613bab82613071565b915061ffff821415613bc057613bbf613820565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c27602983612eca565b9150613c3282613bcb565b604082019050919050565b60006020820190508181036000830152613c5681613c1a565b9050919050565b6000613c6882612f7a565b9150613c7383612f7a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cac57613cab613820565b5b828202905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d13602a83612eca565b9150613d1e82613cb7565b604082019050919050565b60006020820190508181036000830152613d4281613d06565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d7f601983612eca565b9150613d8a82613d49565b602082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e11602f83612eca565b9150613e1c82613db5565b604082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b600081905092915050565b6000613e5d82612ebf565b613e678185613e47565b9350613e77818560208601612edb565b80840191505092915050565b6000613e8f8285613e52565b9150613e9b8284613e52565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f03602683612eca565b9150613f0e82613ea7565b604082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f95602c83612eca565b9150613fa082613f39565b604082019050919050565b60006020820190508181036000830152613fc481613f88565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614027602983612eca565b915061403282613fcb565b604082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140b9602483612eca565b91506140c48261405d565b604082019050919050565b600060208201905081810360008301526140e8816140ac565b9050919050565b60006140fa82612f7a565b915061410583612f7a565b92508282101561411857614117613820565b5b828203905092915050565b600061412e82612f7a565b915061413983612f7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561416e5761416d613820565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141af602083612eca565b91506141ba82614179565b602082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061421b601c83612eca565b9150614226826141e5565b602082019050919050565b6000602082019050818103600083015261424a8161420e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614287601483612eca565b915061429282614251565b602082019050919050565b600060208201905081810360008301526142b68161427a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614319603283612eca565b9150614324826142bd565b604082019050919050565b600060208201905081810360008301526143488161430c565b9050919050565b600061435a82612f7a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561438d5761438c613820565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143d282612f7a565b91506143dd83612f7a565b9250826143ed576143ec614398565b5b828204905092915050565b600061440382612f7a565b915061440e83612f7a565b92508261441e5761441d614398565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061447f82614458565b6144898185614463565b9350614499818560208601612edb565b6144a281612f0e565b840191505092915050565b60006080820190506144c26000830187612fdd565b6144cf6020830186612fdd565b6144dc6040830185613047565b81810360608301526144ee8184614474565b905095945050505050565b60008151905061450881612da5565b92915050565b60006020828403121561452457614523612d6f565b5b6000614532848285016144f9565b9150509291505056fea2646970667358221220de387323ceb85b9ea93720035ad2f71f7a8f317a085d51e7044de08983674ca464736f6c6343000809003368747470733a2f2f676f6c642d68756e742d686f7573652e6865726f6b756170702e636f6d2f746f6b656e2f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102535760003560e01c806363c0f13311610146578063a22cb465116100c3578063e427c12711610087578063e427c12714610694578063e8315742146106b2578063e985e9c5146106d0578063f2fde38b14610700578063f7896da31461071c578063fbec6f211461073a57610253565b8063a22cb465146105f4578063ac18de4314610610578063b88d4fde1461062c578063c7b3743314610648578063c87b56dd1461066457610253565b80637b5f89121161010a5780637b5f8912146105745780638456cb59146105925780638da5cb5b1461059c57806395d89b41146105ba5780639e3a3db2146105d857610253565b806363c0f133146104bc5780636de9f32b146104ec5780636f19d4cd1461050a57806370a082311461053a578063715018a61461056a57610253565b806326d33c73116101d45780634450140411610198578063445014041461041857806348a6ab7e1461043657806355f804b3146104525780635c975abb1461046e5780636352211e1461048c57610253565b806326d33c731461039c5780632bba06ec146103ba5780632d06177a146103d65780633f4ba83a146103f257806342842e0e146103fc57610253565b8063095ea7b31161021b578063095ea7b31461030e57806318160ddd1461032a5780631b399b6d1461034857806323b872dd1461036457806323cf0a221461038057610253565b806301ffc9a7146102585780630520b7081461028857806306fdde03146102a4578063081812fc146102c2578063095d43af146102f2575b600080fd5b610272600480360381019061026d9190612dd1565b610758565b60405161027f9190612e19565b60405180910390f35b6102a2600480360381019061029d9190612e92565b61083a565b005b6102ac6108fa565b6040516102b99190612f58565b60405180910390f35b6102dc60048036038101906102d79190612fb0565b61098c565b6040516102e99190612fec565b60405180910390f35b61030c60048036038101906103079190612fb0565b610a11565b005b61032860048036038101906103239190613007565b610a97565b005b610332610baf565b60405161033f9190613056565b60405180910390f35b610362600480360381019061035d91906130ab565b610be6565b005b61037e600480360381019061037991906130d8565b610c82565b005b61039a600480360381019061039591906130ab565b610ce2565b005b6103a46111db565b6040516103b19190613056565b60405180910390f35b6103d460048036038101906103cf9190612fb0565b6111e1565b005b6103f060048036038101906103eb9190612e92565b611267565b005b6103fa61133e565b005b610416600480360381019061041191906130d8565b6113c4565b005b6104206113e4565b60405161042d9190613056565b60405180910390f35b610450600480360381019061044b919061312b565b6113ea565b005b61046c600480360381019061046791906132a0565b611577565b005b610476611591565b6040516104839190612e19565b60405180910390f35b6104a660048036038101906104a19190612fb0565b6115a8565b6040516104b39190612fec565b60405180910390f35b6104d660048036038101906104d19190612e92565b61165a565b6040516104e39190612e19565b60405180910390f35b6104f461167a565b60405161050191906132f8565b60405180910390f35b610524600480360381019061051f919061333f565b61168e565b6040516105319190613056565b60405180910390f35b610554600480360381019061054f9190612e92565b6116c7565b6040516105619190613056565b60405180910390f35b61057261177f565b005b61057c611807565b60405161058991906133de565b60405180910390f35b61059a61182d565b005b6105a46118b3565b6040516105b19190612fec565b60405180910390f35b6105c26118dd565b6040516105cf9190612f58565b60405180910390f35b6105f260048036038101906105ed9190612e92565b61196f565b005b61060e600480360381019061060991906133f9565b611a2f565b005b61062a60048036038101906106259190612e92565b611bb0565b005b610646600480360381019061064191906134da565b611c87565b005b610662600480360381019061065d91906130ab565b611ce9565b005b61067e60048036038101906106799190612fb0565b611d85565b60405161068b9190612f58565b60405180910390f35b61069c611e2c565b6040516106a991906132f8565b60405180910390f35b6106ba611e40565b6040516106c791906132f8565b60405180910390f35b6106ea60048036038101906106e5919061355d565b611e54565b6040516106f79190612e19565b60405180910390f35b61071a60048036038101906107159190612e92565b611ee8565b005b610724611fe0565b60405161073191906132f8565b60405180910390f35b610742611ff4565b60405161074f91906133de565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083357506108328261201a565b5b9050919050565b610842612084565b73ffffffffffffffffffffffffffffffffffffffff166108606118b3565b73ffffffffffffffffffffffffffffffffffffffff16146108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad906135e9565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606000805461090990613638565b80601f016020809104026020016040519081016040528092919081815260200182805461093590613638565b80156109825780601f1061095757610100808354040283529160200191610982565b820191906000526020600020905b81548152906001019060200180831161096557829003601f168201915b5050505050905090565b60006109978261208c565b6109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd906136dc565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a19612084565b73ffffffffffffffffffffffffffffffffffffffff16610a376118b3565b73ffffffffffffffffffffffffffffffffffffffff1614610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906135e9565b60405180910390fd5b80600a8190555050565b6000610aa2826115a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a9061376e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b32612084565b73ffffffffffffffffffffffffffffffffffffffff161480610b615750610b6081610b5b612084565b611e54565b5b610ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9790613800565b60405180910390fd5b610baa83836120f8565b505050565b6000600860069054906101000a900461ffff16600860049054906101000a900461ffff16610bdd919061384f565b61ffff16905090565b610bee612084565b73ffffffffffffffffffffffffffffffffffffffff16610c0c6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614610c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c59906135e9565b60405180910390fd5b80600860026101000a81548161ffff021916908361ffff16021790555050565b610c93610c8d612084565b826121b1565b610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc9906138f9565b60405180910390fd5b610cdd83838361228f565b505050565b610cea611591565b15610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190613965565b60405180910390fd5b60026007541415610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d67906139d1565b60405180910390fd5b6002600781905550600860009054906101000a900461ffff1661ffff1681600860049054906101000a900461ffff16610da9919061384f565b61ffff161115610dee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de590613a3d565b60405180910390fd5b6000610dfb82600061168e565b90506000610e0a83600161168e565b905081600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610e689190612fec565b60206040518083038186803b158015610e8057600080fd5b505afa158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb89190613a72565b1015610ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef090613aeb565b60405180910390fd5b80600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610f559190612fec565b60206040518083038186803b158015610f6d57600080fd5b505afa158015610f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa59190613a72565b1015610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613b57565b60405180910390fd5b60006001600860069054906101000a900461ffff16600860049054906101000a900461ffff16611016919061384f565b611020919061384f565b905083600860048282829054906101000a900461ffff16611041919061384f565b92506101000a81548161ffff021916908361ffff16021790555060008311156110f457600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33856040518363ffffffff1660e01b81526004016110c1929190613b77565b600060405180830381600087803b1580156110db57600080fd5b505af11580156110ef573d6000803e3d6000fd5b505050505b600082111561118d57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33846040518363ffffffff1660e01b815260040161115a929190613b77565b600060405180830381600087803b15801561117457600080fd5b505af1158015611188573d6000803e3d6000fd5b505050505b60005b8461ffff168161ffff1610156111cc576111b93382846111b0919061384f565b61ffff166124eb565b80806111c490613ba0565b915050611190565b50505050600160078190555050565b600a5481565b6111e9612084565b73ffffffffffffffffffffffffffffffffffffffff166112076118b3565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611254906135e9565b60405180910390fd5b8060098190555050565b61126f612084565b73ffffffffffffffffffffffffffffffffffffffff1661128d6118b3565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906135e9565b60405180910390fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611346612084565b73ffffffffffffffffffffffffffffffffffffffff166113646118b3565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b1906135e9565b60405180910390fd5b6113c26126b9565b565b6113df83838360405180602001604052806000815250611c87565b505050565b60095481565b60011515600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461144757600080fd5b600860029054906101000a900461ffff1661ffff1681600860069054906101000a900461ffff16611478919061384f565b61ffff1611156114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490613a3d565b60405180910390fd5b60006001600860069054906101000a900461ffff16600860049054906101000a900461ffff166114ed919061384f565b6114f7919061384f565b905081600860068282829054906101000a900461ffff16611518919061384f565b92506101000a81548161ffff021916908361ffff16021790555060005b8261ffff168161ffff1610156115715761155e848284611555919061384f565b61ffff166124eb565b808061156990613ba0565b915050611535565b50505050565b80600e908051906020019061158d929190612cc2565b5050565b6000600660149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613c3d565b60405180910390fd5b80915050919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600860049054906101000a900461ffff1681565b6000816116ac576009548361ffff166116a79190613c5d565b6116bf565b600a548361ffff166116be9190613c5d565b5b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f90613d29565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611787612084565b73ffffffffffffffffffffffffffffffffffffffff166117a56118b3565b73ffffffffffffffffffffffffffffffffffffffff16146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906135e9565b60405180910390fd5b611805600061275b565b565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611835612084565b73ffffffffffffffffffffffffffffffffffffffff166118536118b3565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906135e9565b60405180910390fd5b6118b1612821565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118ec90613638565b80601f016020809104026020016040519081016040528092919081815260200182805461191890613638565b80156119655780601f1061193a57610100808354040283529160200191611965565b820191906000526020600020905b81548152906001019060200180831161194857829003601f168201915b5050505050905090565b611977612084565b73ffffffffffffffffffffffffffffffffffffffff166119956118b3565b73ffffffffffffffffffffffffffffffffffffffff16146119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906135e9565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611a37612084565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90613d95565b60405180910390fd5b8060056000611ab2612084565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b5f612084565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ba49190612e19565b60405180910390a35050565b611bb8612084565b73ffffffffffffffffffffffffffffffffffffffff16611bd66118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c23906135e9565b60405180910390fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611c98611c92612084565b836121b1565b611cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cce906138f9565b60405180910390fd5b611ce3848484846128c4565b50505050565b611cf1612084565b73ffffffffffffffffffffffffffffffffffffffff16611d0f6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5c906135e9565b60405180910390fd5b80600860006101000a81548161ffff021916908361ffff16021790555050565b6060611d908261208c565b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613e27565b60405180910390fd5b6000611dd9612920565b90506000815111611df95760405180602001604052806000815250611e24565b80611e03846129b2565b604051602001611e14929190613e83565b6040516020818303038152906040525b915050919050565b600860029054906101000a900461ffff1681565b600860009054906101000a900461ffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ef0612084565b73ffffffffffffffffffffffffffffffffffffffff16611f0e6118b3565b73ffffffffffffffffffffffffffffffffffffffff1614611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b906135e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcb90613f19565b60405180910390fd5b611fdd8161275b565b50565b600860069054906101000a900461ffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661216b836115a8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121bc8261208c565b6121fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f290613fab565b60405180910390fd5b6000612206836115a8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061227557508373ffffffffffffffffffffffffffffffffffffffff1661225d8461098c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061228657506122858185611e54565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122af826115a8565b73ffffffffffffffffffffffffffffffffffffffff1614612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc9061403d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236c906140cf565b60405180910390fd5b612380838383612b13565b61238b6000826120f8565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123db91906140ef565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124329190614123565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612552906141c5565b60405180910390fd5b6125648161208c565b156125a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259b90614231565b60405180910390fd5b6125b060008383612b13565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126009190614123565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6126c1611591565b612700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f79061429d565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612744612084565b6040516127519190612fec565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612829611591565b15612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613965565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586128ad612084565b6040516128ba9190612fec565b60405180910390a1565b6128cf84848461228f565b6128db84848484612b18565b61291a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129119061432f565b60405180910390fd5b50505050565b6060600e805461292f90613638565b80601f016020809104026020016040519081016040528092919081815260200182805461295b90613638565b80156129a85780601f1061297d576101008083540402835291602001916129a8565b820191906000526020600020905b81548152906001019060200180831161298b57829003601f168201915b5050505050905090565b606060008214156129fa576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b0e565b600082905060005b60008214612a2c578080612a159061434f565b915050600a82612a2591906143c7565b9150612a02565b60008167ffffffffffffffff811115612a4857612a47613175565b5b6040519080825280601f01601f191660200182016040528015612a7a5781602001600182028036833780820191505090505b5090505b60008514612b0757600182612a9391906140ef565b9150600a85612aa291906143f8565b6030612aae9190614123565b60f81b818381518110612ac457612ac3614429565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b0091906143c7565b9450612a7e565b8093505050505b919050565b505050565b6000612b398473ffffffffffffffffffffffffffffffffffffffff16612caf565b15612ca2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b62612084565b8786866040518563ffffffff1660e01b8152600401612b8494939291906144ad565b602060405180830381600087803b158015612b9e57600080fd5b505af1925050508015612bcf57506040513d601f19601f82011682018060405250810190612bcc919061450e565b60015b612c52573d8060008114612bff576040519150601f19603f3d011682016040523d82523d6000602084013e612c04565b606091505b50600081511415612c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c419061432f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca7565b600190505b949350505050565b600080823b905060008111915050919050565b828054612cce90613638565b90600052602060002090601f016020900481019282612cf05760008555612d37565b82601f10612d0957805160ff1916838001178555612d37565b82800160010185558215612d37579182015b82811115612d36578251825591602001919060010190612d1b565b5b509050612d449190612d48565b5090565b5b80821115612d61576000816000905550600101612d49565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612dae81612d79565b8114612db957600080fd5b50565b600081359050612dcb81612da5565b92915050565b600060208284031215612de757612de6612d6f565b5b6000612df584828501612dbc565b91505092915050565b60008115159050919050565b612e1381612dfe565b82525050565b6000602082019050612e2e6000830184612e0a565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5f82612e34565b9050919050565b612e6f81612e54565b8114612e7a57600080fd5b50565b600081359050612e8c81612e66565b92915050565b600060208284031215612ea857612ea7612d6f565b5b6000612eb684828501612e7d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ef9578082015181840152602081019050612ede565b83811115612f08576000848401525b50505050565b6000601f19601f8301169050919050565b6000612f2a82612ebf565b612f348185612eca565b9350612f44818560208601612edb565b612f4d81612f0e565b840191505092915050565b60006020820190508181036000830152612f728184612f1f565b905092915050565b6000819050919050565b612f8d81612f7a565b8114612f9857600080fd5b50565b600081359050612faa81612f84565b92915050565b600060208284031215612fc657612fc5612d6f565b5b6000612fd484828501612f9b565b91505092915050565b612fe681612e54565b82525050565b60006020820190506130016000830184612fdd565b92915050565b6000806040838503121561301e5761301d612d6f565b5b600061302c85828601612e7d565b925050602061303d85828601612f9b565b9150509250929050565b61305081612f7a565b82525050565b600060208201905061306b6000830184613047565b92915050565b600061ffff82169050919050565b61308881613071565b811461309357600080fd5b50565b6000813590506130a58161307f565b92915050565b6000602082840312156130c1576130c0612d6f565b5b60006130cf84828501613096565b91505092915050565b6000806000606084860312156130f1576130f0612d6f565b5b60006130ff86828701612e7d565b935050602061311086828701612e7d565b925050604061312186828701612f9b565b9150509250925092565b6000806040838503121561314257613141612d6f565b5b600061315085828601612e7d565b925050602061316185828601613096565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131ad82612f0e565b810181811067ffffffffffffffff821117156131cc576131cb613175565b5b80604052505050565b60006131df612d65565b90506131eb82826131a4565b919050565b600067ffffffffffffffff82111561320b5761320a613175565b5b61321482612f0e565b9050602081019050919050565b82818337600083830152505050565b600061324361323e846131f0565b6131d5565b90508281526020810184848401111561325f5761325e613170565b5b61326a848285613221565b509392505050565b600082601f8301126132875761328661316b565b5b8135613297848260208601613230565b91505092915050565b6000602082840312156132b6576132b5612d6f565b5b600082013567ffffffffffffffff8111156132d4576132d3612d74565b5b6132e084828501613272565b91505092915050565b6132f281613071565b82525050565b600060208201905061330d60008301846132e9565b92915050565b61331c81612dfe565b811461332757600080fd5b50565b60008135905061333981613313565b92915050565b6000806040838503121561335657613355612d6f565b5b600061336485828601613096565b92505060206133758582860161332a565b9150509250929050565b6000819050919050565b60006133a461339f61339a84612e34565b61337f565b612e34565b9050919050565b60006133b682613389565b9050919050565b60006133c8826133ab565b9050919050565b6133d8816133bd565b82525050565b60006020820190506133f360008301846133cf565b92915050565b600080604083850312156134105761340f612d6f565b5b600061341e85828601612e7d565b925050602061342f8582860161332a565b9150509250929050565b600067ffffffffffffffff82111561345457613453613175565b5b61345d82612f0e565b9050602081019050919050565b600061347d61347884613439565b6131d5565b90508281526020810184848401111561349957613498613170565b5b6134a4848285613221565b509392505050565b600082601f8301126134c1576134c061316b565b5b81356134d184826020860161346a565b91505092915050565b600080600080608085870312156134f4576134f3612d6f565b5b600061350287828801612e7d565b945050602061351387828801612e7d565b935050604061352487828801612f9b565b925050606085013567ffffffffffffffff81111561354557613544612d74565b5b613551878288016134ac565b91505092959194509250565b6000806040838503121561357457613573612d6f565b5b600061358285828601612e7d565b925050602061359385828601612e7d565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135d3602083612eca565b91506135de8261359d565b602082019050919050565b60006020820190508181036000830152613602816135c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061365057607f821691505b6020821081141561366457613663613609565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006136c6602c83612eca565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602183612eca565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006137ea603883612eca565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061385a82613071565b915061386583613071565b92508261ffff0382111561387c5761387b613820565b5b828201905092915050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006138e3603183612eca565b91506138ee82613887565b604082019050919050565b60006020820190508181036000830152613912816138d6565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061394f601083612eca565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006139bb601f83612eca565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b9050919050565b7f4f7574206f66206c696d69740000000000000000000000000000000000000000600082015250565b6000613a27600c83612eca565b9150613a32826139f1565b602082019050919050565b60006020820190508181036000830152613a5681613a1a565b9050919050565b600081519050613a6c81612f84565b92915050565b600060208284031215613a8857613a87612d6f565b5b6000613a9684828501613a5d565b91505092915050565b7f4e6f7420656e6f75676820676f6c640000000000000000000000000000000000600082015250565b6000613ad5600f83612eca565b9150613ae082613a9f565b602082019050919050565b60006020820190508181036000830152613b0481613ac8565b9050919050565b7f4e6f7420656e6f75676820776f6f640000000000000000000000000000000000600082015250565b6000613b41600f83612eca565b9150613b4c82613b0b565b602082019050919050565b60006020820190508181036000830152613b7081613b34565b9050919050565b6000604082019050613b8c6000830185612fdd565b613b996020830184613047565b9392505050565b6000613bab82613071565b915061ffff821415613bc057613bbf613820565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613c27602983612eca565b9150613c3282613bcb565b604082019050919050565b60006020820190508181036000830152613c5681613c1a565b9050919050565b6000613c6882612f7a565b9150613c7383612f7a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cac57613cab613820565b5b828202905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613d13602a83612eca565b9150613d1e82613cb7565b604082019050919050565b60006020820190508181036000830152613d4281613d06565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d7f601983612eca565b9150613d8a82613d49565b602082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613e11602f83612eca565b9150613e1c82613db5565b604082019050919050565b60006020820190508181036000830152613e4081613e04565b9050919050565b600081905092915050565b6000613e5d82612ebf565b613e678185613e47565b9350613e77818560208601612edb565b80840191505092915050565b6000613e8f8285613e52565b9150613e9b8284613e52565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613f03602683612eca565b9150613f0e82613ea7565b604082019050919050565b60006020820190508181036000830152613f3281613ef6565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613f95602c83612eca565b9150613fa082613f39565b604082019050919050565b60006020820190508181036000830152613fc481613f88565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614027602983612eca565b915061403282613fcb565b604082019050919050565b600060208201905081810360008301526140568161401a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006140b9602483612eca565b91506140c48261405d565b604082019050919050565b600060208201905081810360008301526140e8816140ac565b9050919050565b60006140fa82612f7a565b915061410583612f7a565b92508282101561411857614117613820565b5b828203905092915050565b600061412e82612f7a565b915061413983612f7a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561416e5761416d613820565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006141af602083612eca565b91506141ba82614179565b602082019050919050565b600060208201905081810360008301526141de816141a2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061421b601c83612eca565b9150614226826141e5565b602082019050919050565b6000602082019050818103600083015261424a8161420e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000614287601483612eca565b915061429282614251565b602082019050919050565b600060208201905081810360008301526142b68161427a565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614319603283612eca565b9150614324826142bd565b604082019050919050565b600060208201905081810360008301526143488161430c565b9050919050565b600061435a82612f7a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561438d5761438c613820565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143d282612f7a565b91506143dd83612f7a565b9250826143ed576143ec614398565b5b828204905092915050565b600061440382612f7a565b915061440e83612f7a565b92508261441e5761441d614398565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061447f82614458565b6144898185614463565b9350614499818560208601612edb565b6144a281612f0e565b840191505092915050565b60006080820190506144c26000830187612fdd565b6144cf6020830186612fdd565b6144dc6040830185613047565b81810360608301526144ee8184614474565b905095945050505050565b60008151905061450881612da5565b92915050565b60006020828403121561452457614523612d6f565b5b6000614532848285016144f9565b9150509291505056fea2646970667358221220de387323ceb85b9ea93720035ad2f71f7a8f317a085d51e7044de08983674ca464736f6c63430008090033
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.