NFT
Overview
TokenID
2826
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GHGShips
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 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 IGGold { function balanceOf(address owner) external view returns (uint); function burn(address account, uint amount) external; } contract GHGShips is ERC721, Ownable, Pausable, ReentrancyGuard { uint private constant MINT_PER_TX_LIMIT = 20; uint public tokensMinted = 0; uint public paidTokensMinted = 0; uint public priceInEth = 0.5 ether; uint public minPriceInEth = 0.07 ether; uint public priceInGGold = 300000 ether; uint public startSaleDate; address public shareAddress; mapping(address => bool) public bannedWallets; mapping(address => bool) public approvedManagers; mapping(uint16 => bool) private _isPirate; IGGold public gold; string private _apiURI = "https://gold-hunt-ships.herokuapp.com/token/"; uint16[] private _availablePaidTokens; uint16[] private _availableTokens; constructor() ERC721("GHGShips", "GHGSHIP") { _pause(); _safeMint(msg.sender, 0); tokensMinted += 1; fillPaidTokens(1, 2500); fillTokens(2501, 5000); } function fillTokens(uint16 _from, uint16 _to) public onlyOwner { for (uint16 i = _from; i <= _to; i++) { _availableTokens.push(i); } } function fillPaidTokens(uint16 _from, uint16 _to) public onlyOwner { for (uint16 i = _from; i <= _to; i++) { _availablePaidTokens.push(i); } } function setPirateIds(uint16[] calldata ids) external onlyOwner { for (uint i = 0; i < ids.length; i++) { _isPirate[ids[i]] = true; } } function isPirate(uint16 id) public view returns (bool) { return _isPirate[id]; } function giveAway(uint _amount, address _address, bool _paid) public onlyOwner { if (_paid) { require(_availablePaidTokens.length > 0, "All tokens are minted"); } else { require(_availableTokens.length > 0, "All tokens are minted"); } for (uint i = 0; i < _amount; i++) { uint16 tokenId = getTokenToBeMinted(_paid); _safeMint(_address, tokenId); } } function mint(uint _amount, bool _paid) public payable whenNotPaused nonReentrant { require(bannedWallets[msg.sender] == false, "Banned wallet is not allowed to mint"); require(tx.origin == msg.sender, "Only EOA"); require(_amount > 0 && _amount <= MINT_PER_TX_LIMIT,"Invalid mint amount"); uint totalGoldCost = 0; if (_paid) { // Paid mint require(_availablePaidTokens.length > 0, "All tokens are minted"); require(msg.value >= mintPrice(_amount), "Invalid payment amount"); } else { // GGold burn require(_availableTokens.length > 0, "All tokens are minted"); require(msg.value == 0, "Now minting is done via GGold"); totalGoldCost = mintPriceForGold(_amount); require(gold.balanceOf(msg.sender) >= totalGoldCost, "Not enough GGold"); } if (totalGoldCost > 0) { gold.burn(msg.sender, totalGoldCost); } if (_paid) { paidTokensMinted += _amount; } tokensMinted += _amount; for (uint i = 0; i < _amount; i++) { uint16 tokenId = getTokenToBeMinted(_paid); _safeMint(msg.sender, tokenId); } } function getTokenToBeMinted(bool _paid) private returns (uint16) { uint limit = _paid ? _availablePaidTokens.length : _availableTokens.length; uint16 randomIndex = random(limit, limit); uint16 tokenId = _paid ? _availablePaidTokens[randomIndex] : _availableTokens[randomIndex]; if (_paid) { _availablePaidTokens[randomIndex] = _availablePaidTokens[_availablePaidTokens.length - 1]; _availablePaidTokens.pop(); } else { _availableTokens[randomIndex] = _availableTokens[_availableTokens.length - 1]; _availableTokens.pop(); } return tokenId; } function unpause() public onlyOwner { _unpause(); } function pause() external onlyOwner { _pause(); } function startSale() external onlyOwner { startSaleDate = block.timestamp; unpause(); } function mintPrice(uint _amount) public view returns (uint) { uint diff = block.timestamp - startSaleDate; if (diff > 1 days) return minPriceInEth * _amount; uint fraction = (diff / 10 minutes) * 0.003 ether; if (fraction >= priceInEth) return minPriceInEth * _amount; return (priceInEth - fraction) * _amount; } function mintPriceForGold(uint _amount) public view returns (uint) { return _amount * priceInGGold; } function setGold(address _address) external onlyOwner { gold = IGGold(_address); } function changeEthPrice(uint _weiPrice) external onlyOwner { priceInEth = _weiPrice; } function changeMinEthPrice(uint _weiPrice) external onlyOwner { minPriceInEth = _weiPrice; } function changePriceInGGold(uint _weiPrice) public onlyOwner { priceInGGold = _weiPrice; } function random(uint _seed, uint _limit) internal view returns (uint16) { uint randomValue = uint( keccak256( abi.encodePacked( _seed, blockhash(block.number - 1), block.coinbase, block.difficulty, msg.sender, tokensMinted ) ) ); return uint16(randomValue % _limit); } function transferFrom( address from, address to, uint tokenId ) public virtual override { // Hardcode the stacking approval so that users don't have to waste gas approving if (approvedManagers[msg.sender] == false) require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } function banWallet(address _address, bool _banned) external onlyOwner { bannedWallets[_address] = _banned; } function addManager(address _address) external onlyOwner { approvedManagers[_address] = true; } function removeManager(address _address) external onlyOwner { approvedManagers[_address] = false; } function totalSupply() external view returns (uint) { return tokensMinted; } function _baseURI() internal view override returns (string memory) { return _apiURI; } function setBaseURI(string memory uri) external onlyOwner { _apiURI = uri; } function setShareAddress(address _address) external onlyOwner { shareAddress = _address; } function withdraw(address to) external onlyOwner { uint balance = address(this).balance; uint share = (balance * 10) / 100; payable(shareAddress).transfer(share); payable(to).transfer(balance - share); } }
// 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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_banned","type":"bool"}],"name":"banWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bannedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_weiPrice","type":"uint256"}],"name":"changeEthPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_weiPrice","type":"uint256"}],"name":"changeMinEthPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_weiPrice","type":"uint256"}],"name":"changePriceInGGold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_from","type":"uint16"},{"internalType":"uint16","name":"_to","type":"uint16"}],"name":"fillPaidTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_from","type":"uint16"},{"internalType":"uint16","name":"_to","type":"uint16"}],"name":"fillTokens","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":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_paid","type":"bool"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gold","outputs":[{"internalType":"contract IGGold","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"id","type":"uint16"}],"name":"isPirate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minPriceInEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_paid","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPriceForGold","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":"paidTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"priceInEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInGGold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint16[]","name":"ids","type":"uint16[]"}],"name":"setPirateIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setShareAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060085560006009556706f05b59d3b20000600a5566f8b0a10e470000600b55693f870857a3e0e3800000600c556040518060600160405280602c81526020016200674e602c9139601390805190602001906200006492919062000a59565b503480156200007257600080fd5b506040518060400160405280600881526020017f47484753686970730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f47484753484950000000000000000000000000000000000000000000000000008152508160009080519060200190620000f792919062000a59565b5080600190805190602001906200011092919062000a59565b5050506200013362000127620001c660201b60201c565b620001ce60201b60201c565b6000600660146101000a81548160ff0219169083151502179055506001600781905550620001666200029460201b60201c565b620001793360006200034c60201b60201c565b6001600860008282546200018e919062000b42565b92505081905550620001aa60016109c46200037260201b60201c565b620001c06109c56113886200047c60201b60201c565b620010b2565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a46200058660201b60201c565b15620002e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002de9062000c00565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25862000333620001c660201b60201c565b60405162000342919062000c67565b60405180910390a1565b6200036e8282604051806020016040528060008152506200059d60201b60201c565b5050565b62000382620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003a86200060b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000401576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f89062000cd4565b60405180910390fd5b60008290505b8161ffff168161ffff1611620004775760148190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555080806200046e9062000d04565b91505062000407565b505050565b6200048c620001c660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004b26200060b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200050b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005029062000cd4565b60405180910390fd5b60008290505b8161ffff168161ffff1611620005815760158190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055508080620005789062000d04565b91505062000511565b505050565b6000600660149054906101000a900460ff16905090565b620005af83836200063560201b60201c565b620005c460008484846200081b60201b60201c565b62000606576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005fd9062000daa565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200069f9062000e1c565b60405180910390fd5b620006b981620009d560201b60201c565b15620006fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f39062000e8e565b60405180910390fd5b620007106000838362000a4160201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000762919062000b42565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620008498473ffffffffffffffffffffffffffffffffffffffff1662000a4660201b62002a151760201c565b15620009c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200087b620001c660201b60201c565b8786866040518563ffffffff1660e01b81526004016200089f949392919062000f65565b602060405180830381600087803b158015620008ba57600080fd5b505af1925050508015620008ee57506040513d601f19601f82011682018060405250810190620008eb91906200101b565b60015b62000977573d806000811462000921576040519150601f19603f3d011682016040523d82523d6000602084013e62000926565b606091505b506000815114156200096f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009669062000daa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009cd565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b82805462000a67906200107c565b90600052602060002090601f01602090048101928262000a8b576000855562000ad7565b82601f1062000aa657805160ff191683800117855562000ad7565b8280016001018555821562000ad7579182015b8281111562000ad657825182559160200191906001019062000ab9565b5b50905062000ae6919062000aea565b5090565b5b8082111562000b0557600081600090555060010162000aeb565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b4f8262000b09565b915062000b5c8362000b09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b945762000b9362000b13565b5b828201905092915050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000be860108362000b9f565b915062000bf58262000bb0565b602082019050919050565b6000602082019050818103600083015262000c1b8162000bd9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c4f8262000c22565b9050919050565b62000c618162000c42565b82525050565b600060208201905062000c7e600083018462000c56565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000cbc60208362000b9f565b915062000cc98262000c84565b602082019050919050565b6000602082019050818103600083015262000cef8162000cad565b9050919050565b600061ffff82169050919050565b600062000d118262000cf6565b915061ffff82141562000d295762000d2862000b13565b5b600182019050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600062000d9260328362000b9f565b915062000d9f8262000d34565b604082019050919050565b6000602082019050818103600083015262000dc58162000d83565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000e0460208362000b9f565b915062000e118262000dcc565b602082019050919050565b6000602082019050818103600083015262000e378162000df5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600062000e76601c8362000b9f565b915062000e838262000e3e565b602082019050919050565b6000602082019050818103600083015262000ea98162000e67565b9050919050565b62000ebb8162000b09565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000efd57808201518184015260208101905062000ee0565b8381111562000f0d576000848401525b50505050565b6000601f19601f8301169050919050565b600062000f318262000ec1565b62000f3d818562000ecc565b935062000f4f81856020860162000edd565b62000f5a8162000f13565b840191505092915050565b600060808201905062000f7c600083018762000c56565b62000f8b602083018662000c56565b62000f9a604083018562000eb0565b818103606083015262000fae818462000f24565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000ff58162000fbe565b81146200100157600080fd5b50565b600081519050620010158162000fea565b92915050565b60006020828403121562001034576200103362000fb9565b5b6000620010448482850162001004565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200109557607f821691505b60208210811415620010ac57620010ab6200104d565b5b50919050565b61568c80620010c26000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063ac18de43116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610a71578063f2fde38b14610aae578063fbec6f2114610ad7578063fdd760ea14610b02576102ae565b8063c87b56dd146109ce578063e348983914610a0b578063e6a72acf14610a34576102ae565b8063ac18de43146108e8578063b03330d814610911578063b66a0e5d1461093a578063b88d4fde14610951578063bcf387cd1461097a578063be7bda7b146109a5576102ae565b8063715018a61161012e578063715018a6146108125780638456cb59146108295780638da5cb5b14610840578063909b7c461461086b57806395d89b4114610894578063a22cb465146108bf576102ae565b80636352211e146106eb57806363c0f1331461072857806367f68fac146107655780636de9f32b1461078157806370373173146107ac57806370a08231146107d5576102ae565b80631c5b6e8d116102195780633f4ba83a116101d25780633f4ba83a1461060357806342842e0e1461061a57806351cff8d91461064357806355f804b31461066c5780635c975abb146106955780635cb94c31146106c0576102ae565b80631c5b6e8d146104e557806323b872dd1461050e5780632b199f3b146105375780632c12395b146105605780632d06177a1461059d5780632e6e5693146105c6576102ae565b8063095ea7b31161026b578063095ea7b3146103e95780630b5a0e2e1461041257806315739d7c1461043b57806315b40a0e1461046657806316829de51461049157806318160ddd146104ba576102ae565b806301ffc9a7146102b35780630520b708146102f05780630594540c1461031957806306fdde03146103565780630754796b14610381578063081812fc146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613b0a565b610b2d565b6040516102e79190613b52565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613bcb565b610c0f565b005b34801561032557600080fd5b50610340600480360381019061033b9190613bcb565b610ccf565b60405161034d9190613b52565b60405180910390f35b34801561036257600080fd5b5061036b610cef565b6040516103789190613c91565b60405180910390f35b34801561038d57600080fd5b50610396610d81565b6040516103a39190613cc2565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190613d13565b610da7565b6040516103e09190613cc2565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613d40565b610e2c565b005b34801561041e57600080fd5b5061043960048036038101906104349190613d13565b610f44565b005b34801561044757600080fd5b50610450610fca565b60405161045d9190613d8f565b60405180910390f35b34801561047257600080fd5b5061047b610fd0565b6040516104889190613d8f565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613d13565b610fd6565b005b3480156104c657600080fd5b506104cf61105c565b6040516104dc9190613d8f565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190613bcb565b611066565b005b34801561051a57600080fd5b5061053560048036038101906105309190613daa565b611126565b005b34801561054357600080fd5b5061055e60048036038101906105599190613e29565b6111e0565b005b34801561056c57600080fd5b5061058760048036038101906105829190613ea3565b6112b7565b6040516105949190613b52565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613bcb565b6112e9565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613d13565b6113c0565b6040516105fa9190613d8f565b60405180910390f35b34801561060f57600080fd5b506106186113d7565b005b34801561062657600080fd5b50610641600480360381019061063c9190613daa565b61145d565b005b34801561064f57600080fd5b5061066a60048036038101906106659190613bcb565b61147d565b005b34801561067857600080fd5b50610693600480360381019061068e9190614005565b6115db565b005b3480156106a157600080fd5b506106aa611671565b6040516106b79190613b52565b60405180910390f35b3480156106cc57600080fd5b506106d5611688565b6040516106e29190613d8f565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190613d13565b61168e565b60405161071f9190613cc2565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613bcb565b611740565b60405161075c9190613b52565b60405180910390f35b61077f600480360381019061077a919061404e565b611760565b005b34801561078d57600080fd5b50610796611c85565b6040516107a39190613d8f565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906140ee565b611c8b565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613bcb565b611d88565b6040516108099190613d8f565b60405180910390f35b34801561081e57600080fd5b50610827611e40565b005b34801561083557600080fd5b5061083e611ec8565b005b34801561084c57600080fd5b50610855611f4e565b6040516108629190613cc2565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d919061413b565b611f78565b005b3480156108a057600080fd5b506108a961206b565b6040516108b69190613c91565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613e29565b6120fd565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613bcb565b61227e565b005b34801561091d57600080fd5b506109386004803603810190610933919061417b565b612355565b005b34801561094657600080fd5b5061094f6124ad565b005b34801561095d57600080fd5b506109786004803603810190610973919061426f565b61253a565b005b34801561098657600080fd5b5061098f61259c565b60405161099c9190613d8f565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c79190613d13565b6125a2565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613d13565b612628565b604051610a029190613c91565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d919061413b565b6126cf565b005b348015610a4057600080fd5b50610a5b6004803603810190610a569190613d13565b6127c2565b604051610a689190613d8f565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a9391906142f2565b61285d565b604051610aa59190613b52565b60405180910390f35b348015610aba57600080fd5b50610ad56004803603810190610ad09190613bcb565b6128f1565b005b348015610ae357600080fd5b50610aec6129e9565b604051610af99190614391565b60405180910390f35b348015610b0e57600080fd5b50610b17612a0f565b604051610b249190613d8f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c085750610c0782612a28565b5b9050919050565b610c17612a92565b73ffffffffffffffffffffffffffffffffffffffff16610c35611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c82906143f8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b606060008054610cfe90614447565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614447565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610db282612a9a565b610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906144eb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e378261168e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f9061457d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec7612a92565b73ffffffffffffffffffffffffffffffffffffffff161480610ef65750610ef581610ef0612a92565b61285d565b5b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061460f565b60405180910390fd5b610f3f8383612b06565b505050565b610f4c612a92565b73ffffffffffffffffffffffffffffffffffffffff16610f6a611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb7906143f8565b60405180910390fd5b80600b8190555050565b600c5481565b60095481565b610fde612a92565b73ffffffffffffffffffffffffffffffffffffffff16610ffc611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611049906143f8565b60405180910390fd5b80600a8190555050565b6000600854905090565b61106e612a92565b73ffffffffffffffffffffffffffffffffffffffff1661108c611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906143f8565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156111d05761119061118a612a92565b82612bbf565b6111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906146a1565b60405180910390fd5b5b6111db838383612c9d565b505050565b6111e8612a92565b73ffffffffffffffffffffffffffffffffffffffff16611206611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611253906143f8565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601160008361ffff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112f1612a92565b73ffffffffffffffffffffffffffffffffffffffff1661130f611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c906143f8565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600c54826113d091906146f0565b9050919050565b6113df612a92565b73ffffffffffffffffffffffffffffffffffffffff166113fd611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a906143f8565b60405180910390fd5b61145b612ef9565b565b6114788383836040518060200160405280600081525061253a565b505050565b611485612a92565b73ffffffffffffffffffffffffffffffffffffffff166114a3611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f0906143f8565b60405180910390fd5b600047905060006064600a8361150f91906146f0565b6115199190614779565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611583573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc82846115aa91906147aa565b9081150290604051600060405180830381858888f193505050501580156115d5573d6000803e3d6000fd5b50505050565b6115e3612a92565b73ffffffffffffffffffffffffffffffffffffffff16611601611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906143f8565b60405180910390fd5b806013908051906020019061166d9291906139fb565b5050565b6000600660149054906101000a900460ff16905090565b600b5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90614850565b60405180910390fd5b80915050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b611768611671565b156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906148bc565b60405180910390fd5b600260075414156117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614928565b60405180910390fd5b600260078190555060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611880906149ba565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614a26565b60405180910390fd5b600082118015611908575060148211155b611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614a92565b60405180910390fd5b600081156119e757600060148054905011611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90614afe565b60405180910390fd5b6119a0836127c2565b3410156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990614b6a565b60405180910390fd5b611b6b565b600060158054905011611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614afe565b60405180910390fd5b60003414611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990614bd6565b60405180910390fd5b611a7b836113c0565b905080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611ad99190613cc2565b60206040518083038186803b158015611af157600080fd5b505afa158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190614c0b565b1015611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614c84565b60405180910390fd5b5b6000811115611c0457601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33836040518363ffffffff1660e01b8152600401611bd1929190614ca4565b600060405180830381600087803b158015611beb57600080fd5b505af1158015611bff573d6000803e3d6000fd5b505050505b8115611c24578260096000828254611c1c9190614ccd565b925050819055505b8260086000828254611c369190614ccd565b9250508190555060005b83811015611c77576000611c5384612f9b565b9050611c63338261ffff16613203565b508080611c6f90614d23565b915050611c40565b505060016007819055505050565b60085481565b611c93612a92565b73ffffffffffffffffffffffffffffffffffffffff16611cb1611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe906143f8565b60405180910390fd5b60005b82829050811015611d8357600160116000858585818110611d2e57611d2d614d6c565b5b9050602002016020810190611d439190613ea3565b61ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d7b90614d23565b915050611d0a565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614e0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e48612a92565b73ffffffffffffffffffffffffffffffffffffffff16611e66611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906143f8565b60405180910390fd5b611ec66000613221565b565b611ed0612a92565b73ffffffffffffffffffffffffffffffffffffffff16611eee611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906143f8565b60405180910390fd5b611f4c6132e7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f80612a92565b73ffffffffffffffffffffffffffffffffffffffff16611f9e611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb906143f8565b60405180910390fd5b60008290505b8161ffff168161ffff16116120665760158190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550808061205e90614e2d565b915050611ffa565b505050565b60606001805461207a90614447565b80601f01602080910402602001604051908101604052809291908181526020018280546120a690614447565b80156120f35780601f106120c8576101008083540402835291602001916120f3565b820191906000526020600020905b8154815290600101906020018083116120d657829003601f168201915b5050505050905090565b612105612a92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a90614ea4565b60405180910390fd5b8060056000612180612a92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661222d612a92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122729190613b52565b60405180910390a35050565b612286612a92565b73ffffffffffffffffffffffffffffffffffffffff166122a4611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f1906143f8565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61235d612a92565b73ffffffffffffffffffffffffffffffffffffffff1661237b611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c8906143f8565b60405180910390fd5b80156124245760006014805490501161241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690614afe565b60405180910390fd5b61246d565b60006015805490501161246c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246390614afe565b60405180910390fd5b5b60005b838110156124a757600061248383612f9b565b9050612493848261ffff16613203565b50808061249f90614d23565b915050612470565b50505050565b6124b5612a92565b73ffffffffffffffffffffffffffffffffffffffff166124d3611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614612529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612520906143f8565b60405180910390fd5b42600d819055506125386113d7565b565b61254b612545612a92565b83612bbf565b61258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906146a1565b60405180910390fd5b6125968484848461338a565b50505050565b600d5481565b6125aa612a92565b73ffffffffffffffffffffffffffffffffffffffff166125c8611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461261e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612615906143f8565b60405180910390fd5b80600c8190555050565b606061263382612a9a565b612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990614f36565b60405180910390fd5b600061267c6133e6565b9050600081511161269c57604051806020016040528060008152506126c7565b806126a684613478565b6040516020016126b7929190614f92565b6040516020818303038152906040525b915050919050565b6126d7612a92565b73ffffffffffffffffffffffffffffffffffffffff166126f5611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461274b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612742906143f8565b60405180910390fd5b60008290505b8161ffff168161ffff16116127bd5760148190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555080806127b590614e2d565b915050612751565b505050565b600080600d54426127d391906147aa565b9050620151808111156127f65782600b546127ee91906146f0565b915050612858565b6000660aa87bee5380006102588361280e9190614779565b61281891906146f0565b9050600a54811061283a5783600b5461283191906146f0565b92505050612858565b8381600a5461284991906147aa565b61285391906146f0565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128f9612a92565b73ffffffffffffffffffffffffffffffffffffffff16612917611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461296d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612964906143f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490615028565b60405180910390fd5b6129e681613221565b50565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b798361168e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bca82612a9a565b612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c00906150ba565b60405180910390fd5b6000612c148361168e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c8357508373ffffffffffffffffffffffffffffffffffffffff16612c6b84610da7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c945750612c93818561285d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cbd8261168e565b73ffffffffffffffffffffffffffffffffffffffff1614612d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0a9061514c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7a906151de565b60405180910390fd5b612d8e8383836135d9565b612d99600082612b06565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de991906147aa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e409190614ccd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612f01611671565b612f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f379061524a565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612f84612a92565b604051612f919190613cc2565b60405180910390a1565b60008082612fae57601580549050612fb5565b6014805490505b90506000612fc382836135de565b905060008461300d5760158261ffff1681548110612fe457612fe3614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661304a565b60148261ffff168154811061302557613024614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff165b90508415613127576014600160148054905061306691906147aa565b8154811061307757613076614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660148361ffff16815481106130b3576130b2614d6c565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060148054806130f4576130f361526a565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590556131f8565b6015600160158054905061313b91906147aa565b8154811061314c5761314b614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660158361ffff168154811061318857613187614d6c565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060158054806131c9576131c861526a565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590555b809350505050919050565b61321d82826040518060200160405280600081525061363b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132ef611671565b1561332f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613326906148bc565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613373612a92565b6040516133809190613cc2565b60405180910390a1565b613395848484612c9d565b6133a184848484613696565b6133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d79061530b565b60405180910390fd5b50505050565b6060601380546133f590614447565b80601f016020809104026020016040519081016040528092919081815260200182805461342190614447565b801561346e5780601f106134435761010080835404028352916020019161346e565b820191906000526020600020905b81548152906001019060200180831161345157829003601f168201915b5050505050905090565b606060008214156134c0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135d4565b600082905060005b600082146134f25780806134db90614d23565b915050600a826134eb9190614779565b91506134c8565b60008167ffffffffffffffff81111561350e5761350d613eda565b5b6040519080825280601f01601f1916602001820160405280156135405781602001600182028036833780820191505090505b5090505b600085146135cd5760018261355991906147aa565b9150600a85613568919061532b565b60306135749190614ccd565b60f81b81838151811061358a57613589614d6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135c69190614779565b9450613544565b8093505050505b919050565b505050565b600080836001436135ef91906147aa565b4041443360085460405160200161360b9695949392919061542b565b6040516020818303038152906040528051906020012060001c90508281613632919061532b565b91505092915050565b613645838361382d565b6136526000848484613696565b613691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136889061530b565b60405180910390fd5b505050565b60006136b78473ffffffffffffffffffffffffffffffffffffffff16612a15565b15613820578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136e0612a92565b8786866040518563ffffffff1660e01b815260040161370294939291906154f0565b602060405180830381600087803b15801561371c57600080fd5b505af192505050801561374d57506040513d601f19601f8201168201806040525081019061374a9190615551565b60015b6137d0573d806000811461377d576040519150601f19603f3d011682016040523d82523d6000602084013e613782565b606091505b506000815114156137c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bf9061530b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613825565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561389d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613894906155ca565b60405180910390fd5b6138a681612a9a565b156138e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138dd90615636565b60405180910390fd5b6138f2600083836135d9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139429190614ccd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613a0790614447565b90600052602060002090601f016020900481019282613a295760008555613a70565b82601f10613a4257805160ff1916838001178555613a70565b82800160010185558215613a70579182015b82811115613a6f578251825591602001919060010190613a54565b5b509050613a7d9190613a81565b5090565b5b80821115613a9a576000816000905550600101613a82565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ae781613ab2565b8114613af257600080fd5b50565b600081359050613b0481613ade565b92915050565b600060208284031215613b2057613b1f613aa8565b5b6000613b2e84828501613af5565b91505092915050565b60008115159050919050565b613b4c81613b37565b82525050565b6000602082019050613b676000830184613b43565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9882613b6d565b9050919050565b613ba881613b8d565b8114613bb357600080fd5b50565b600081359050613bc581613b9f565b92915050565b600060208284031215613be157613be0613aa8565b5b6000613bef84828501613bb6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c32578082015181840152602081019050613c17565b83811115613c41576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c6382613bf8565b613c6d8185613c03565b9350613c7d818560208601613c14565b613c8681613c47565b840191505092915050565b60006020820190508181036000830152613cab8184613c58565b905092915050565b613cbc81613b8d565b82525050565b6000602082019050613cd76000830184613cb3565b92915050565b6000819050919050565b613cf081613cdd565b8114613cfb57600080fd5b50565b600081359050613d0d81613ce7565b92915050565b600060208284031215613d2957613d28613aa8565b5b6000613d3784828501613cfe565b91505092915050565b60008060408385031215613d5757613d56613aa8565b5b6000613d6585828601613bb6565b9250506020613d7685828601613cfe565b9150509250929050565b613d8981613cdd565b82525050565b6000602082019050613da46000830184613d80565b92915050565b600080600060608486031215613dc357613dc2613aa8565b5b6000613dd186828701613bb6565b9350506020613de286828701613bb6565b9250506040613df386828701613cfe565b9150509250925092565b613e0681613b37565b8114613e1157600080fd5b50565b600081359050613e2381613dfd565b92915050565b60008060408385031215613e4057613e3f613aa8565b5b6000613e4e85828601613bb6565b9250506020613e5f85828601613e14565b9150509250929050565b600061ffff82169050919050565b613e8081613e69565b8114613e8b57600080fd5b50565b600081359050613e9d81613e77565b92915050565b600060208284031215613eb957613eb8613aa8565b5b6000613ec784828501613e8e565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f1282613c47565b810181811067ffffffffffffffff82111715613f3157613f30613eda565b5b80604052505050565b6000613f44613a9e565b9050613f508282613f09565b919050565b600067ffffffffffffffff821115613f7057613f6f613eda565b5b613f7982613c47565b9050602081019050919050565b82818337600083830152505050565b6000613fa8613fa384613f55565b613f3a565b905082815260208101848484011115613fc457613fc3613ed5565b5b613fcf848285613f86565b509392505050565b600082601f830112613fec57613feb613ed0565b5b8135613ffc848260208601613f95565b91505092915050565b60006020828403121561401b5761401a613aa8565b5b600082013567ffffffffffffffff81111561403957614038613aad565b5b61404584828501613fd7565b91505092915050565b6000806040838503121561406557614064613aa8565b5b600061407385828601613cfe565b925050602061408485828601613e14565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126140ae576140ad613ed0565b5b8235905067ffffffffffffffff8111156140cb576140ca61408e565b5b6020830191508360208202830111156140e7576140e6614093565b5b9250929050565b6000806020838503121561410557614104613aa8565b5b600083013567ffffffffffffffff81111561412357614122613aad565b5b61412f85828601614098565b92509250509250929050565b6000806040838503121561415257614151613aa8565b5b600061416085828601613e8e565b925050602061417185828601613e8e565b9150509250929050565b60008060006060848603121561419457614193613aa8565b5b60006141a286828701613cfe565b93505060206141b386828701613bb6565b92505060406141c486828701613e14565b9150509250925092565b600067ffffffffffffffff8211156141e9576141e8613eda565b5b6141f282613c47565b9050602081019050919050565b600061421261420d846141ce565b613f3a565b90508281526020810184848401111561422e5761422d613ed5565b5b614239848285613f86565b509392505050565b600082601f83011261425657614255613ed0565b5b81356142668482602086016141ff565b91505092915050565b6000806000806080858703121561428957614288613aa8565b5b600061429787828801613bb6565b94505060206142a887828801613bb6565b93505060406142b987828801613cfe565b925050606085013567ffffffffffffffff8111156142da576142d9613aad565b5b6142e687828801614241565b91505092959194509250565b6000806040838503121561430957614308613aa8565b5b600061431785828601613bb6565b925050602061432885828601613bb6565b9150509250929050565b6000819050919050565b600061435761435261434d84613b6d565b614332565b613b6d565b9050919050565b60006143698261433c565b9050919050565b600061437b8261435e565b9050919050565b61438b81614370565b82525050565b60006020820190506143a66000830184614382565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143e2602083613c03565b91506143ed826143ac565b602082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061445f57607f821691505b6020821081141561447357614472614418565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006144d5602c83613c03565b91506144e082614479565b604082019050919050565b60006020820190508181036000830152614504816144c8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614567602183613c03565b91506145728261450b565b604082019050919050565b600060208201905081810360008301526145968161455a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006145f9603883613c03565b91506146048261459d565b604082019050919050565b60006020820190508181036000830152614628816145ec565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061468b603183613c03565b91506146968261462f565b604082019050919050565b600060208201905081810360008301526146ba8161467e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146fb82613cdd565b915061470683613cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561473f5761473e6146c1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061478482613cdd565b915061478f83613cdd565b92508261479f5761479e61474a565b5b828204905092915050565b60006147b582613cdd565b91506147c083613cdd565b9250828210156147d3576147d26146c1565b5b828203905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061483a602983613c03565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006148a6601083613c03565b91506148b182614870565b602082019050919050565b600060208201905081810360008301526148d581614899565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614912601f83613c03565b915061491d826148dc565b602082019050919050565b6000602082019050818103600083015261494181614905565b9050919050565b7f42616e6e65642077616c6c6574206973206e6f7420616c6c6f77656420746f2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b60006149a4602483613c03565b91506149af82614948565b604082019050919050565b600060208201905081810360008301526149d381614997565b9050919050565b7f4f6e6c7920454f41000000000000000000000000000000000000000000000000600082015250565b6000614a10600883613c03565b9150614a1b826149da565b602082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000614a7c601383613c03565b9150614a8782614a46565b602082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f416c6c20746f6b656e7320617265206d696e7465640000000000000000000000600082015250565b6000614ae8601583613c03565b9150614af382614ab2565b602082019050919050565b60006020820190508181036000830152614b1781614adb565b9050919050565b7f496e76616c6964207061796d656e7420616d6f756e7400000000000000000000600082015250565b6000614b54601683613c03565b9150614b5f82614b1e565b602082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f4e6f77206d696e74696e6720697320646f6e65207669612047476f6c64000000600082015250565b6000614bc0601d83613c03565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b600081519050614c0581613ce7565b92915050565b600060208284031215614c2157614c20613aa8565b5b6000614c2f84828501614bf6565b91505092915050565b7f4e6f7420656e6f7567682047476f6c6400000000000000000000000000000000600082015250565b6000614c6e601083613c03565b9150614c7982614c38565b602082019050919050565b60006020820190508181036000830152614c9d81614c61565b9050919050565b6000604082019050614cb96000830185613cb3565b614cc66020830184613d80565b9392505050565b6000614cd882613cdd565b9150614ce383613cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d1857614d176146c1565b5b828201905092915050565b6000614d2e82613cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d6157614d606146c1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614df7602a83613c03565b9150614e0282614d9b565b604082019050919050565b60006020820190508181036000830152614e2681614dea565b9050919050565b6000614e3882613e69565b915061ffff821415614e4d57614e4c6146c1565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e8e601983613c03565b9150614e9982614e58565b602082019050919050565b60006020820190508181036000830152614ebd81614e81565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f20602f83613c03565b9150614f2b82614ec4565b604082019050919050565b60006020820190508181036000830152614f4f81614f13565b9050919050565b600081905092915050565b6000614f6c82613bf8565b614f768185614f56565b9350614f86818560208601613c14565b80840191505092915050565b6000614f9e8285614f61565b9150614faa8284614f61565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615012602683613c03565b915061501d82614fb6565b604082019050919050565b6000602082019050818103600083015261504181615005565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006150a4602c83613c03565b91506150af82615048565b604082019050919050565b600060208201905081810360008301526150d381615097565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615136602983613c03565b9150615141826150da565b604082019050919050565b6000602082019050818103600083015261516581615129565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006151c8602483613c03565b91506151d38261516c565b604082019050919050565b600060208201905081810360008301526151f7816151bb565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000615234601483613c03565b915061523f826151fe565b602082019050919050565b6000602082019050818103600083015261526381615227565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006152f5603283613c03565b915061530082615299565b604082019050919050565b60006020820190508181036000830152615324816152e8565b9050919050565b600061533682613cdd565b915061534183613cdd565b9250826153515761535061474a565b5b828206905092915050565b6000819050919050565b61537761537282613cdd565b61535c565b82525050565b6000819050919050565b6000819050919050565b6153a261539d8261537d565b615387565b82525050565b60006153b382613b6d565b9050919050565b60008160601b9050919050565b60006153d2826153ba565b9050919050565b60006153e4826153c7565b9050919050565b6153fc6153f7826153a8565b6153d9565b82525050565b600061540d826153c7565b9050919050565b61542561542082613b8d565b615402565b82525050565b60006154378289615366565b6020820191506154478288615391565b60208201915061545782876153eb565b6014820191506154678286615366565b6020820191506154778285615414565b6014820191506154878284615366565b602082019150819050979650505050505050565b600081519050919050565b600082825260208201905092915050565b60006154c28261549b565b6154cc81856154a6565b93506154dc818560208601613c14565b6154e581613c47565b840191505092915050565b60006080820190506155056000830187613cb3565b6155126020830186613cb3565b61551f6040830185613d80565b818103606083015261553181846154b7565b905095945050505050565b60008151905061554b81613ade565b92915050565b60006020828403121561556757615566613aa8565b5b60006155758482850161553c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006155b4602083613c03565b91506155bf8261557e565b602082019050919050565b600060208201905081810360008301526155e3816155a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615620601c83613c03565b915061562b826155ea565b602082019050919050565b6000602082019050818103600083015261564f81615613565b905091905056fea264697066735822122015f8ba39804672bb5f94cf8efbf887d8d7da06a36bad0a4153ea066c8646578864736f6c6343000809003368747470733a2f2f676f6c642d68756e742d73686970732e6865726f6b756170702e636f6d2f746f6b656e2f
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80636352211e11610175578063ac18de43116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610a71578063f2fde38b14610aae578063fbec6f2114610ad7578063fdd760ea14610b02576102ae565b8063c87b56dd146109ce578063e348983914610a0b578063e6a72acf14610a34576102ae565b8063ac18de43146108e8578063b03330d814610911578063b66a0e5d1461093a578063b88d4fde14610951578063bcf387cd1461097a578063be7bda7b146109a5576102ae565b8063715018a61161012e578063715018a6146108125780638456cb59146108295780638da5cb5b14610840578063909b7c461461086b57806395d89b4114610894578063a22cb465146108bf576102ae565b80636352211e146106eb57806363c0f1331461072857806367f68fac146107655780636de9f32b1461078157806370373173146107ac57806370a08231146107d5576102ae565b80631c5b6e8d116102195780633f4ba83a116101d25780633f4ba83a1461060357806342842e0e1461061a57806351cff8d91461064357806355f804b31461066c5780635c975abb146106955780635cb94c31146106c0576102ae565b80631c5b6e8d146104e557806323b872dd1461050e5780632b199f3b146105375780632c12395b146105605780632d06177a1461059d5780632e6e5693146105c6576102ae565b8063095ea7b31161026b578063095ea7b3146103e95780630b5a0e2e1461041257806315739d7c1461043b57806315b40a0e1461046657806316829de51461049157806318160ddd146104ba576102ae565b806301ffc9a7146102b35780630520b708146102f05780630594540c1461031957806306fdde03146103565780630754796b14610381578063081812fc146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613b0a565b610b2d565b6040516102e79190613b52565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613bcb565b610c0f565b005b34801561032557600080fd5b50610340600480360381019061033b9190613bcb565b610ccf565b60405161034d9190613b52565b60405180910390f35b34801561036257600080fd5b5061036b610cef565b6040516103789190613c91565b60405180910390f35b34801561038d57600080fd5b50610396610d81565b6040516103a39190613cc2565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190613d13565b610da7565b6040516103e09190613cc2565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190613d40565b610e2c565b005b34801561041e57600080fd5b5061043960048036038101906104349190613d13565b610f44565b005b34801561044757600080fd5b50610450610fca565b60405161045d9190613d8f565b60405180910390f35b34801561047257600080fd5b5061047b610fd0565b6040516104889190613d8f565b60405180910390f35b34801561049d57600080fd5b506104b860048036038101906104b39190613d13565b610fd6565b005b3480156104c657600080fd5b506104cf61105c565b6040516104dc9190613d8f565b60405180910390f35b3480156104f157600080fd5b5061050c60048036038101906105079190613bcb565b611066565b005b34801561051a57600080fd5b5061053560048036038101906105309190613daa565b611126565b005b34801561054357600080fd5b5061055e60048036038101906105599190613e29565b6111e0565b005b34801561056c57600080fd5b5061058760048036038101906105829190613ea3565b6112b7565b6040516105949190613b52565b60405180910390f35b3480156105a957600080fd5b506105c460048036038101906105bf9190613bcb565b6112e9565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613d13565b6113c0565b6040516105fa9190613d8f565b60405180910390f35b34801561060f57600080fd5b506106186113d7565b005b34801561062657600080fd5b50610641600480360381019061063c9190613daa565b61145d565b005b34801561064f57600080fd5b5061066a60048036038101906106659190613bcb565b61147d565b005b34801561067857600080fd5b50610693600480360381019061068e9190614005565b6115db565b005b3480156106a157600080fd5b506106aa611671565b6040516106b79190613b52565b60405180910390f35b3480156106cc57600080fd5b506106d5611688565b6040516106e29190613d8f565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d9190613d13565b61168e565b60405161071f9190613cc2565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190613bcb565b611740565b60405161075c9190613b52565b60405180910390f35b61077f600480360381019061077a919061404e565b611760565b005b34801561078d57600080fd5b50610796611c85565b6040516107a39190613d8f565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906140ee565b611c8b565b005b3480156107e157600080fd5b506107fc60048036038101906107f79190613bcb565b611d88565b6040516108099190613d8f565b60405180910390f35b34801561081e57600080fd5b50610827611e40565b005b34801561083557600080fd5b5061083e611ec8565b005b34801561084c57600080fd5b50610855611f4e565b6040516108629190613cc2565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d919061413b565b611f78565b005b3480156108a057600080fd5b506108a961206b565b6040516108b69190613c91565b60405180910390f35b3480156108cb57600080fd5b506108e660048036038101906108e19190613e29565b6120fd565b005b3480156108f457600080fd5b5061090f600480360381019061090a9190613bcb565b61227e565b005b34801561091d57600080fd5b506109386004803603810190610933919061417b565b612355565b005b34801561094657600080fd5b5061094f6124ad565b005b34801561095d57600080fd5b506109786004803603810190610973919061426f565b61253a565b005b34801561098657600080fd5b5061098f61259c565b60405161099c9190613d8f565b60405180910390f35b3480156109b157600080fd5b506109cc60048036038101906109c79190613d13565b6125a2565b005b3480156109da57600080fd5b506109f560048036038101906109f09190613d13565b612628565b604051610a029190613c91565b60405180910390f35b348015610a1757600080fd5b50610a326004803603810190610a2d919061413b565b6126cf565b005b348015610a4057600080fd5b50610a5b6004803603810190610a569190613d13565b6127c2565b604051610a689190613d8f565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a9391906142f2565b61285d565b604051610aa59190613b52565b60405180910390f35b348015610aba57600080fd5b50610ad56004803603810190610ad09190613bcb565b6128f1565b005b348015610ae357600080fd5b50610aec6129e9565b604051610af99190614391565b60405180910390f35b348015610b0e57600080fd5b50610b17612a0f565b604051610b249190613d8f565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c085750610c0782612a28565b5b9050919050565b610c17612a92565b73ffffffffffffffffffffffffffffffffffffffff16610c35611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c82906143f8565b60405180910390fd5b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b606060008054610cfe90614447565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2a90614447565b8015610d775780601f10610d4c57610100808354040283529160200191610d77565b820191906000526020600020905b815481529060010190602001808311610d5a57829003601f168201915b5050505050905090565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610db282612a9a565b610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de8906144eb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e378261168e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f9061457d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ec7612a92565b73ffffffffffffffffffffffffffffffffffffffff161480610ef65750610ef581610ef0612a92565b61285d565b5b610f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2c9061460f565b60405180910390fd5b610f3f8383612b06565b505050565b610f4c612a92565b73ffffffffffffffffffffffffffffffffffffffff16610f6a611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb7906143f8565b60405180910390fd5b80600b8190555050565b600c5481565b60095481565b610fde612a92565b73ffffffffffffffffffffffffffffffffffffffff16610ffc611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611049906143f8565b60405180910390fd5b80600a8190555050565b6000600854905090565b61106e612a92565b73ffffffffffffffffffffffffffffffffffffffff1661108c611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d9906143f8565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60001515601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156111d05761119061118a612a92565b82612bbf565b6111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c6906146a1565b60405180910390fd5b5b6111db838383612c9d565b505050565b6111e8612a92565b73ffffffffffffffffffffffffffffffffffffffff16611206611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611253906143f8565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000601160008361ffff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6112f1612a92565b73ffffffffffffffffffffffffffffffffffffffff1661130f611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c906143f8565b60405180910390fd5b6001601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600c54826113d091906146f0565b9050919050565b6113df612a92565b73ffffffffffffffffffffffffffffffffffffffff166113fd611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a906143f8565b60405180910390fd5b61145b612ef9565b565b6114788383836040518060200160405280600081525061253a565b505050565b611485612a92565b73ffffffffffffffffffffffffffffffffffffffff166114a3611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f0906143f8565b60405180910390fd5b600047905060006064600a8361150f91906146f0565b6115199190614779565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611583573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc82846115aa91906147aa565b9081150290604051600060405180830381858888f193505050501580156115d5573d6000803e3d6000fd5b50505050565b6115e3612a92565b73ffffffffffffffffffffffffffffffffffffffff16611601611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e906143f8565b60405180910390fd5b806013908051906020019061166d9291906139fb565b5050565b6000600660149054906101000a900460ff16905090565b600b5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e90614850565b60405180910390fd5b80915050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b611768611671565b156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f906148bc565b60405180910390fd5b600260075414156117ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e590614928565b60405180910390fd5b600260078190555060001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611889576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611880906149ba565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee90614a26565b60405180910390fd5b600082118015611908575060148211155b611947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193e90614a92565b60405180910390fd5b600081156119e757600060148054905011611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90614afe565b60405180910390fd5b6119a0836127c2565b3410156119e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d990614b6a565b60405180910390fd5b611b6b565b600060158054905011611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690614afe565b60405180910390fd5b60003414611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6990614bd6565b60405180910390fd5b611a7b836113c0565b905080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611ad99190613cc2565b60206040518083038186803b158015611af157600080fd5b505afa158015611b05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b299190614c0b565b1015611b6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6190614c84565b60405180910390fd5b5b6000811115611c0457601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639dc29fac33836040518363ffffffff1660e01b8152600401611bd1929190614ca4565b600060405180830381600087803b158015611beb57600080fd5b505af1158015611bff573d6000803e3d6000fd5b505050505b8115611c24578260096000828254611c1c9190614ccd565b925050819055505b8260086000828254611c369190614ccd565b9250508190555060005b83811015611c77576000611c5384612f9b565b9050611c63338261ffff16613203565b508080611c6f90614d23565b915050611c40565b505060016007819055505050565b60085481565b611c93612a92565b73ffffffffffffffffffffffffffffffffffffffff16611cb1611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611d07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfe906143f8565b60405180910390fd5b60005b82829050811015611d8357600160116000858585818110611d2e57611d2d614d6c565b5b9050602002016020810190611d439190613ea3565b61ffff1661ffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611d7b90614d23565b915050611d0a565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df090614e0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611e48612a92565b73ffffffffffffffffffffffffffffffffffffffff16611e66611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb3906143f8565b60405180910390fd5b611ec66000613221565b565b611ed0612a92565b73ffffffffffffffffffffffffffffffffffffffff16611eee611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906143f8565b60405180910390fd5b611f4c6132e7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611f80612a92565b73ffffffffffffffffffffffffffffffffffffffff16611f9e611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614611ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611feb906143f8565b60405180910390fd5b60008290505b8161ffff168161ffff16116120665760158190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550808061205e90614e2d565b915050611ffa565b505050565b60606001805461207a90614447565b80601f01602080910402602001604051908101604052809291908181526020018280546120a690614447565b80156120f35780601f106120c8576101008083540402835291602001916120f3565b820191906000526020600020905b8154815290600101906020018083116120d657829003601f168201915b5050505050905090565b612105612a92565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a90614ea4565b60405180910390fd5b8060056000612180612a92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661222d612a92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122729190613b52565b60405180910390a35050565b612286612a92565b73ffffffffffffffffffffffffffffffffffffffff166122a4611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f1906143f8565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61235d612a92565b73ffffffffffffffffffffffffffffffffffffffff1661237b611f4e565b73ffffffffffffffffffffffffffffffffffffffff16146123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c8906143f8565b60405180910390fd5b80156124245760006014805490501161241f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241690614afe565b60405180910390fd5b61246d565b60006015805490501161246c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246390614afe565b60405180910390fd5b5b60005b838110156124a757600061248383612f9b565b9050612493848261ffff16613203565b50808061249f90614d23565b915050612470565b50505050565b6124b5612a92565b73ffffffffffffffffffffffffffffffffffffffff166124d3611f4e565b73ffffffffffffffffffffffffffffffffffffffff1614612529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612520906143f8565b60405180910390fd5b42600d819055506125386113d7565b565b61254b612545612a92565b83612bbf565b61258a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612581906146a1565b60405180910390fd5b6125968484848461338a565b50505050565b600d5481565b6125aa612a92565b73ffffffffffffffffffffffffffffffffffffffff166125c8611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461261e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612615906143f8565b60405180910390fd5b80600c8190555050565b606061263382612a9a565b612672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266990614f36565b60405180910390fd5b600061267c6133e6565b9050600081511161269c57604051806020016040528060008152506126c7565b806126a684613478565b6040516020016126b7929190614f92565b6040516020818303038152906040525b915050919050565b6126d7612a92565b73ffffffffffffffffffffffffffffffffffffffff166126f5611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461274b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612742906143f8565b60405180910390fd5b60008290505b8161ffff168161ffff16116127bd5760148190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555080806127b590614e2d565b915050612751565b505050565b600080600d54426127d391906147aa565b9050620151808111156127f65782600b546127ee91906146f0565b915050612858565b6000660aa87bee5380006102588361280e9190614779565b61281891906146f0565b9050600a54811061283a5783600b5461283191906146f0565b92505050612858565b8381600a5461284991906147aa565b61285391906146f0565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128f9612a92565b73ffffffffffffffffffffffffffffffffffffffff16612917611f4e565b73ffffffffffffffffffffffffffffffffffffffff161461296d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612964906143f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490615028565b60405180910390fd5b6129e681613221565b50565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a5481565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612b798361168e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612bca82612a9a565b612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c00906150ba565b60405180910390fd5b6000612c148361168e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c8357508373ffffffffffffffffffffffffffffffffffffffff16612c6b84610da7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c945750612c93818561285d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612cbd8261168e565b73ffffffffffffffffffffffffffffffffffffffff1614612d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0a9061514c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7a906151de565b60405180910390fd5b612d8e8383836135d9565b612d99600082612b06565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612de991906147aa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e409190614ccd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612f01611671565b612f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f379061524a565b60405180910390fd5b6000600660146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612f84612a92565b604051612f919190613cc2565b60405180910390a1565b60008082612fae57601580549050612fb5565b6014805490505b90506000612fc382836135de565b905060008461300d5760158261ffff1681548110612fe457612fe3614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661304a565b60148261ffff168154811061302557613024614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff165b90508415613127576014600160148054905061306691906147aa565b8154811061307757613076614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660148361ffff16815481106130b3576130b2614d6c565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060148054806130f4576130f361526a565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590556131f8565b6015600160158054905061313b91906147aa565b8154811061314c5761314b614d6c565b5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660158361ffff168154811061318857613187614d6c565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff16021790555060158054806131c9576131c861526a565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590555b809350505050919050565b61321d82826040518060200160405280600081525061363b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6132ef611671565b1561332f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613326906148bc565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613373612a92565b6040516133809190613cc2565b60405180910390a1565b613395848484612c9d565b6133a184848484613696565b6133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d79061530b565b60405180910390fd5b50505050565b6060601380546133f590614447565b80601f016020809104026020016040519081016040528092919081815260200182805461342190614447565b801561346e5780601f106134435761010080835404028352916020019161346e565b820191906000526020600020905b81548152906001019060200180831161345157829003601f168201915b5050505050905090565b606060008214156134c0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135d4565b600082905060005b600082146134f25780806134db90614d23565b915050600a826134eb9190614779565b91506134c8565b60008167ffffffffffffffff81111561350e5761350d613eda565b5b6040519080825280601f01601f1916602001820160405280156135405781602001600182028036833780820191505090505b5090505b600085146135cd5760018261355991906147aa565b9150600a85613568919061532b565b60306135749190614ccd565b60f81b81838151811061358a57613589614d6c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135c69190614779565b9450613544565b8093505050505b919050565b505050565b600080836001436135ef91906147aa565b4041443360085460405160200161360b9695949392919061542b565b6040516020818303038152906040528051906020012060001c90508281613632919061532b565b91505092915050565b613645838361382d565b6136526000848484613696565b613691576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136889061530b565b60405180910390fd5b505050565b60006136b78473ffffffffffffffffffffffffffffffffffffffff16612a15565b15613820578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026136e0612a92565b8786866040518563ffffffff1660e01b815260040161370294939291906154f0565b602060405180830381600087803b15801561371c57600080fd5b505af192505050801561374d57506040513d601f19601f8201168201806040525081019061374a9190615551565b60015b6137d0573d806000811461377d576040519150601f19603f3d011682016040523d82523d6000602084013e613782565b606091505b506000815114156137c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137bf9061530b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613825565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561389d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613894906155ca565b60405180910390fd5b6138a681612a9a565b156138e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138dd90615636565b60405180910390fd5b6138f2600083836135d9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139429190614ccd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613a0790614447565b90600052602060002090601f016020900481019282613a295760008555613a70565b82601f10613a4257805160ff1916838001178555613a70565b82800160010185558215613a70579182015b82811115613a6f578251825591602001919060010190613a54565b5b509050613a7d9190613a81565b5090565b5b80821115613a9a576000816000905550600101613a82565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613ae781613ab2565b8114613af257600080fd5b50565b600081359050613b0481613ade565b92915050565b600060208284031215613b2057613b1f613aa8565b5b6000613b2e84828501613af5565b91505092915050565b60008115159050919050565b613b4c81613b37565b82525050565b6000602082019050613b676000830184613b43565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613b9882613b6d565b9050919050565b613ba881613b8d565b8114613bb357600080fd5b50565b600081359050613bc581613b9f565b92915050565b600060208284031215613be157613be0613aa8565b5b6000613bef84828501613bb6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c32578082015181840152602081019050613c17565b83811115613c41576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c6382613bf8565b613c6d8185613c03565b9350613c7d818560208601613c14565b613c8681613c47565b840191505092915050565b60006020820190508181036000830152613cab8184613c58565b905092915050565b613cbc81613b8d565b82525050565b6000602082019050613cd76000830184613cb3565b92915050565b6000819050919050565b613cf081613cdd565b8114613cfb57600080fd5b50565b600081359050613d0d81613ce7565b92915050565b600060208284031215613d2957613d28613aa8565b5b6000613d3784828501613cfe565b91505092915050565b60008060408385031215613d5757613d56613aa8565b5b6000613d6585828601613bb6565b9250506020613d7685828601613cfe565b9150509250929050565b613d8981613cdd565b82525050565b6000602082019050613da46000830184613d80565b92915050565b600080600060608486031215613dc357613dc2613aa8565b5b6000613dd186828701613bb6565b9350506020613de286828701613bb6565b9250506040613df386828701613cfe565b9150509250925092565b613e0681613b37565b8114613e1157600080fd5b50565b600081359050613e2381613dfd565b92915050565b60008060408385031215613e4057613e3f613aa8565b5b6000613e4e85828601613bb6565b9250506020613e5f85828601613e14565b9150509250929050565b600061ffff82169050919050565b613e8081613e69565b8114613e8b57600080fd5b50565b600081359050613e9d81613e77565b92915050565b600060208284031215613eb957613eb8613aa8565b5b6000613ec784828501613e8e565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f1282613c47565b810181811067ffffffffffffffff82111715613f3157613f30613eda565b5b80604052505050565b6000613f44613a9e565b9050613f508282613f09565b919050565b600067ffffffffffffffff821115613f7057613f6f613eda565b5b613f7982613c47565b9050602081019050919050565b82818337600083830152505050565b6000613fa8613fa384613f55565b613f3a565b905082815260208101848484011115613fc457613fc3613ed5565b5b613fcf848285613f86565b509392505050565b600082601f830112613fec57613feb613ed0565b5b8135613ffc848260208601613f95565b91505092915050565b60006020828403121561401b5761401a613aa8565b5b600082013567ffffffffffffffff81111561403957614038613aad565b5b61404584828501613fd7565b91505092915050565b6000806040838503121561406557614064613aa8565b5b600061407385828601613cfe565b925050602061408485828601613e14565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126140ae576140ad613ed0565b5b8235905067ffffffffffffffff8111156140cb576140ca61408e565b5b6020830191508360208202830111156140e7576140e6614093565b5b9250929050565b6000806020838503121561410557614104613aa8565b5b600083013567ffffffffffffffff81111561412357614122613aad565b5b61412f85828601614098565b92509250509250929050565b6000806040838503121561415257614151613aa8565b5b600061416085828601613e8e565b925050602061417185828601613e8e565b9150509250929050565b60008060006060848603121561419457614193613aa8565b5b60006141a286828701613cfe565b93505060206141b386828701613bb6565b92505060406141c486828701613e14565b9150509250925092565b600067ffffffffffffffff8211156141e9576141e8613eda565b5b6141f282613c47565b9050602081019050919050565b600061421261420d846141ce565b613f3a565b90508281526020810184848401111561422e5761422d613ed5565b5b614239848285613f86565b509392505050565b600082601f83011261425657614255613ed0565b5b81356142668482602086016141ff565b91505092915050565b6000806000806080858703121561428957614288613aa8565b5b600061429787828801613bb6565b94505060206142a887828801613bb6565b93505060406142b987828801613cfe565b925050606085013567ffffffffffffffff8111156142da576142d9613aad565b5b6142e687828801614241565b91505092959194509250565b6000806040838503121561430957614308613aa8565b5b600061431785828601613bb6565b925050602061432885828601613bb6565b9150509250929050565b6000819050919050565b600061435761435261434d84613b6d565b614332565b613b6d565b9050919050565b60006143698261433c565b9050919050565b600061437b8261435e565b9050919050565b61438b81614370565b82525050565b60006020820190506143a66000830184614382565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143e2602083613c03565b91506143ed826143ac565b602082019050919050565b60006020820190508181036000830152614411816143d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061445f57607f821691505b6020821081141561447357614472614418565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006144d5602c83613c03565b91506144e082614479565b604082019050919050565b60006020820190508181036000830152614504816144c8565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614567602183613c03565b91506145728261450b565b604082019050919050565b600060208201905081810360008301526145968161455a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006145f9603883613c03565b91506146048261459d565b604082019050919050565b60006020820190508181036000830152614628816145ec565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061468b603183613c03565b91506146968261462f565b604082019050919050565b600060208201905081810360008301526146ba8161467e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146fb82613cdd565b915061470683613cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561473f5761473e6146c1565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061478482613cdd565b915061478f83613cdd565b92508261479f5761479e61474a565b5b828204905092915050565b60006147b582613cdd565b91506147c083613cdd565b9250828210156147d3576147d26146c1565b5b828203905092915050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061483a602983613c03565b9150614845826147de565b604082019050919050565b600060208201905081810360008301526148698161482d565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006148a6601083613c03565b91506148b182614870565b602082019050919050565b600060208201905081810360008301526148d581614899565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614912601f83613c03565b915061491d826148dc565b602082019050919050565b6000602082019050818103600083015261494181614905565b9050919050565b7f42616e6e65642077616c6c6574206973206e6f7420616c6c6f77656420746f2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b60006149a4602483613c03565b91506149af82614948565b604082019050919050565b600060208201905081810360008301526149d381614997565b9050919050565b7f4f6e6c7920454f41000000000000000000000000000000000000000000000000600082015250565b6000614a10600883613c03565b9150614a1b826149da565b602082019050919050565b60006020820190508181036000830152614a3f81614a03565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000614a7c601383613c03565b9150614a8782614a46565b602082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f416c6c20746f6b656e7320617265206d696e7465640000000000000000000000600082015250565b6000614ae8601583613c03565b9150614af382614ab2565b602082019050919050565b60006020820190508181036000830152614b1781614adb565b9050919050565b7f496e76616c6964207061796d656e7420616d6f756e7400000000000000000000600082015250565b6000614b54601683613c03565b9150614b5f82614b1e565b602082019050919050565b60006020820190508181036000830152614b8381614b47565b9050919050565b7f4e6f77206d696e74696e6720697320646f6e65207669612047476f6c64000000600082015250565b6000614bc0601d83613c03565b9150614bcb82614b8a565b602082019050919050565b60006020820190508181036000830152614bef81614bb3565b9050919050565b600081519050614c0581613ce7565b92915050565b600060208284031215614c2157614c20613aa8565b5b6000614c2f84828501614bf6565b91505092915050565b7f4e6f7420656e6f7567682047476f6c6400000000000000000000000000000000600082015250565b6000614c6e601083613c03565b9150614c7982614c38565b602082019050919050565b60006020820190508181036000830152614c9d81614c61565b9050919050565b6000604082019050614cb96000830185613cb3565b614cc66020830184613d80565b9392505050565b6000614cd882613cdd565b9150614ce383613cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d1857614d176146c1565b5b828201905092915050565b6000614d2e82613cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d6157614d606146c1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614df7602a83613c03565b9150614e0282614d9b565b604082019050919050565b60006020820190508181036000830152614e2681614dea565b9050919050565b6000614e3882613e69565b915061ffff821415614e4d57614e4c6146c1565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e8e601983613c03565b9150614e9982614e58565b602082019050919050565b60006020820190508181036000830152614ebd81614e81565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f20602f83613c03565b9150614f2b82614ec4565b604082019050919050565b60006020820190508181036000830152614f4f81614f13565b9050919050565b600081905092915050565b6000614f6c82613bf8565b614f768185614f56565b9350614f86818560208601613c14565b80840191505092915050565b6000614f9e8285614f61565b9150614faa8284614f61565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615012602683613c03565b915061501d82614fb6565b604082019050919050565b6000602082019050818103600083015261504181615005565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006150a4602c83613c03565b91506150af82615048565b604082019050919050565b600060208201905081810360008301526150d381615097565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615136602983613c03565b9150615141826150da565b604082019050919050565b6000602082019050818103600083015261516581615129565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006151c8602483613c03565b91506151d38261516c565b604082019050919050565b600060208201905081810360008301526151f7816151bb565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000615234601483613c03565b915061523f826151fe565b602082019050919050565b6000602082019050818103600083015261526381615227565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006152f5603283613c03565b915061530082615299565b604082019050919050565b60006020820190508181036000830152615324816152e8565b9050919050565b600061533682613cdd565b915061534183613cdd565b9250826153515761535061474a565b5b828206905092915050565b6000819050919050565b61537761537282613cdd565b61535c565b82525050565b6000819050919050565b6000819050919050565b6153a261539d8261537d565b615387565b82525050565b60006153b382613b6d565b9050919050565b60008160601b9050919050565b60006153d2826153ba565b9050919050565b60006153e4826153c7565b9050919050565b6153fc6153f7826153a8565b6153d9565b82525050565b600061540d826153c7565b9050919050565b61542561542082613b8d565b615402565b82525050565b60006154378289615366565b6020820191506154478288615391565b60208201915061545782876153eb565b6014820191506154678286615366565b6020820191506154778285615414565b6014820191506154878284615366565b602082019150819050979650505050505050565b600081519050919050565b600082825260208201905092915050565b60006154c28261549b565b6154cc81856154a6565b93506154dc818560208601613c14565b6154e581613c47565b840191505092915050565b60006080820190506155056000830187613cb3565b6155126020830186613cb3565b61551f6040830185613d80565b818103606083015261553181846154b7565b905095945050505050565b60008151905061554b81613ade565b92915050565b60006020828403121561556757615566613aa8565b5b60006155758482850161553c565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006155b4602083613c03565b91506155bf8261557e565b602082019050919050565b600060208201905081810360008301526155e3816155a7565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615620601c83613c03565b915061562b826155ea565b602082019050919050565b6000602082019050818103600083015261564f81615613565b905091905056fea264697066735822122015f8ba39804672bb5f94cf8efbf887d8d7da06a36bad0a4153ea066c8646578864736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ 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.