ERC-721
Overview
Max Total Supply
1,254 FFLABZ
Holders
475
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 FFLABZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FarFetchedLabs
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; //SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; abstract contract VIAL { function burnFrom(address account, uint256 amount) public virtual; function burn(address from, uint256 amount) external virtual; } contract FarFetchedLabs is ERC721, Ownable { using Strings for uint256; uint256 public nameChangePrice = 1 ether; mapping(uint256 => string) private _tokenName; mapping(string => bool) private _nameReserved; uint256 public _mintPrice = 0.0333 ether; uint256 public _maxMintPerTx = 25; uint256 public MAX_SUPPLY = 4614; bool public _changeNameFeature = false; bool public _saleIsActive = false; uint256 public startTimeSale = 1640816400; address[] private _team; uint256[] private _shares; mapping(address => uint256) private _claimed; string private baseURI; IERC1155 private _nft; VIAL public _token; uint256 private _t = 0; uint256 public _pass = 0; constructor( string memory uriBASE, address[] memory team, uint256[] memory teamShares, address nft ) ERC721("Far Fetched Labs", "FFLABZ") { baseURI = uriBASE; _team = team; _shares = teamShares; _nft = IERC1155(nft); } function _mint(uint256 toMint, address to) internal { uint256 t = _t; for (uint256 i = 0; i < toMint; i++) { _t += 1; _safeMint(to, t + i + 1); } delete t; } function mint(uint256 toMint) external payable { require(_saleIsActive, "Sale is not active"); require(toMint <= _maxMintPerTx, "You requested too many Apes"); require(block.timestamp >= startTimeSale, "Sale did not start yet"); require(_mintPrice * toMint <= msg.value, "ETH value not correct"); require(_t + toMint <= MAX_SUPPLY, "Purchase exceeds max supply"); _mint(toMint, _msgSender()); } function collab(uint256 toMint) external { uint256 balance = _nft.balanceOf(_msgSender(), 420); require(balance > 0, "You need to hold a Chumpass"); require(_saleIsActive, "Sale is not active"); require( _claimed[_msgSender()] + toMint <= balance, "You request to many mints" ); require(block.timestamp >= startTimeSale, "Sale did not start yet"); require(_t + toMint <= MAX_SUPPLY, "Purchase exceeds max supply"); require(_pass + toMint <= 699, "No more free mints"); _pass += toMint; _claimed[_msgSender()] = toMint; _mint(toMint, _msgSender()); } function reserve(uint256 toMint, address to) external onlyOwner { require(_t + toMint <= MAX_SUPPLY, "Purchase exceeds max supply"); _mint(toMint, to); } function setSaleState(bool val) external onlyOwner { _saleIsActive = val; } function setChangeNameFeature(bool val) external onlyOwner { _changeNameFeature = val; } function setPrice(uint256 price) external onlyOwner { _mintPrice = price; } function setPriceNameChange(uint256 price) external onlyOwner { nameChangePrice = price; } function setMaxPerTX(uint256 maxValue) external onlyOwner { _maxMintPerTx = maxValue; } function setStartTimeSale(uint256 startSale) external onlyOwner { startTimeSale = startSale; } function setBaseURI(string memory newURI) public onlyOwner { baseURI = newURI; } function cut(uint256 max) external onlyOwner { uint256 previous = MAX_SUPPLY; if (max < previous) { MAX_SUPPLY = max; } } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; for (uint256 i = 0; i < _shares.length; i++) { address wallet = _team[i]; uint256 share = _shares[i]; payable(wallet).transfer((balance * share) / 1000); } } function setShares(address[] memory team, uint256[] memory teamShares) public onlyOwner { _team = team; _shares = teamShares; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function totalSupply() external view returns (uint256) { return _t; } function setShitToken(address tokenAddress) external onlyOwner { _token = VIAL(tokenAddress); } function changeName(uint256 tokenId, string memory newName) public { require(_changeNameFeature, "The Change Name Function is blocked"); _token.burnFrom(msg.sender, nameChangePrice); address owner = ownerOf(tokenId); require(_msgSender() == owner, "You are not the owner"); require(validateName(newName) == true, "Not a valid new name"); require( sha256(bytes(newName)) != sha256(bytes(_tokenName[tokenId])), "New name is same as the current one" ); require(isNameReserved(newName) == false, "Name already reserved"); // If already named, dereserve old name if (bytes(_tokenName[tokenId]).length > 0) { toggleReserveName(_tokenName[tokenId], false); } toggleReserveName(newName, true); _tokenName[tokenId] = newName; } function toggleReserveName(string memory str, bool isReserve) internal { _nameReserved[toLower(str)] = isReserve; } function isNameReserved(string memory nameString) public view returns (bool) { return _nameReserved[toLower(nameString)]; } function validateName(string memory str) public pure returns (bool) { bytes memory b = bytes(str); if (b.length < 1) return false; if (b.length > 25) return false; // Cannot be longer than 25 characters if (b[0] == 0x20) return false; // Leading space if (b[b.length - 1] == 0x20) return false; // Trailing space bytes1 lastChar = b[0]; for (uint256 i; i < b.length; i++) { bytes1 char = b[i]; if (char == 0x20 && lastChar == 0x20) return false; // Cannot contain continous spaces if ( !(char >= 0x30 && char <= 0x39) && //9-0 !(char >= 0x41 && char <= 0x5A) && //A-Z !(char >= 0x61 && char <= 0x7A) && //a-z !(char == 0x20) //space ) return false; lastChar = char; } return true; } function toLower(string memory str) public pure returns (string memory) { bytes memory bStr = bytes(str); bytes memory bLower = new bytes(bStr.length); for (uint256 i = 0; i < bStr.length; i++) { // Uppercase character if ((uint8(bStr[i]) >= 65) && (uint8(bStr[i]) <= 90)) { bLower[i] = bytes1(uint8(bStr[i]) + 32); } else { bLower[i] = bStr[i]; } } return string(bLower); } function nameOf(uint256 tokenId) public view returns (string memory) { string memory name = _tokenName[tokenId]; return bytes(name).length > 0 ? name : string(abi.encodePacked("Scientist #", tokenId.toString())); } function getAllNames() public view returns (string[] memory) { string[] memory ret = new string[](_t); for (uint256 i = 0; i < _t; i++) { ret[i] = nameOf(i); } return ret; } function emergencyWithdraw() public onlyOwner { uint256 balance = address(this).balance; payable(owner()).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) 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 { _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"uriBASE","type":"string"},{"internalType":"address[]","name":"team","type":"address[]"},{"internalType":"uint256[]","name":"teamShares","type":"uint256[]"},{"internalType":"address","name":"nft","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_changeNameFeature","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_pass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_token","outputs":[{"internalType":"contract VIAL","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newName","type":"string"}],"name":"changeName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toMint","type":"uint256"}],"name":"collab","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"cut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllNames","outputs":[{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"nameString","type":"string"}],"name":"isNameReserved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"toMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"nameOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"toMint","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"reserve","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":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setChangeNameFeature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxValue","type":"uint256"}],"name":"setMaxPerTX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceNameChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"team","type":"address[]"},{"internalType":"uint256[]","name":"teamShares","type":"uint256[]"}],"name":"setShares","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"setShitToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startSale","type":"uint256"}],"name":"setStartTimeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimeSale","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":"string","name":"str","type":"string"}],"name":"toLower","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"validateName","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052670de0b6b3a764000060075566764e2c6f054000600a556019600b55611206600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506361ccdf10600e55600060155560006016553480156200007b57600080fd5b5060405162006735380380620067358339818101604052810190620000a191906200063a565b6040518060400160405280601081526020017f4661722046657463686564204c616273000000000000000000000000000000008152506040518060400160405280600681526020017f46464c41425a0000000000000000000000000000000000000000000000000000815250816000908051906020019062000125929190620002c5565b5080600190805190602001906200013e929190620002c5565b5050506200016162000155620001f760201b60201c565b620001ff60201b60201c565b836012908051906020019062000179929190620002c5565b5082600f90805190602001906200019292919062000356565b508160109080519060200190620001ab929190620003e5565b5080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000931565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d39062000822565b90600052602060002090601f016020900481019282620002f7576000855562000343565b82601f106200031257805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034257825182559160200191906001019062000325565b5b50905062000352919062000437565b5090565b828054828255906000526020600020908101928215620003d2579160200282015b82811115620003d15782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000377565b5b509050620003e1919062000437565b5090565b82805482825590600052602060002090810192821562000424579160200282015b828111156200042357825182559160200191906001019062000406565b5b50905062000433919062000437565b5090565b5b808211156200045257600081600090555060010162000438565b5090565b60006200046d62000467846200071a565b620006f1565b905080838252602082019050828560208602820111156200048d57600080fd5b60005b85811015620004c15781620004a6888262000585565b84526020840193506020830192505060018101905062000490565b5050509392505050565b6000620004e2620004dc8462000749565b620006f1565b905080838252602082019050828560208602820111156200050257600080fd5b60005b858110156200053657816200051b888262000623565b84526020840193506020830192505060018101905062000505565b5050509392505050565b600062000557620005518462000778565b620006f1565b9050828152602081018484840111156200057057600080fd5b6200057d848285620007ec565b509392505050565b6000815190506200059681620008fd565b92915050565b600082601f830112620005ae57600080fd5b8151620005c084826020860162000456565b91505092915050565b600082601f830112620005db57600080fd5b8151620005ed848260208601620004cb565b91505092915050565b600082601f8301126200060857600080fd5b81516200061a84826020860162000540565b91505092915050565b600081519050620006348162000917565b92915050565b600080600080608085870312156200065157600080fd5b600085015167ffffffffffffffff8111156200066c57600080fd5b6200067a87828801620005f6565b945050602085015167ffffffffffffffff8111156200069857600080fd5b620006a6878288016200059c565b935050604085015167ffffffffffffffff811115620006c457600080fd5b620006d287828801620005c9565b9250506060620006e58782880162000585565b91505092959194509250565b6000620006fd62000710565b90506200070b828262000858565b919050565b6000604051905090565b600067ffffffffffffffff821115620007385762000737620008bd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620007675762000766620008bd565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620007965762000795620008bd565b5b620007a182620008ec565b9050602081019050919050565b6000620007bb82620007c2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200080c578082015181840152602081019050620007ef565b838111156200081c576000848401525b50505050565b600060028204905060018216806200083b57607f821691505b602082108114156200085257620008516200088e565b5b50919050565b6200086382620008ec565b810181811067ffffffffffffffff82111715620008855762000884620008bd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200090881620007ae565b81146200091457600080fd5b50565b6200092281620007e2565b81146200092e57600080fd5b50565b615df480620009416000396000f3fe6080604052600436106102885760003560e01c806375854a251161015a578063b88d4fde116100c1578063e5a4756c1161007a578063e5a4756c146109a7578063e985e9c5146109d0578063ecd0c0c314610a0d578063f2fde38b14610a38578063fb825e5f14610a61578063fd636b2614610a8c57610288565b8063b88d4fde146108ad578063c39cbef1146108d6578063c4e37095146108ff578063c87b56dd14610928578063db2e21bc14610965578063de314a591461097c57610288565b806391b7f5ed1161011357806391b7f5ed1461079a5780639416b423146107c357806395d89b41146108005780639ffdb65a1461082b578063a0712d6814610868578063a22cb4651461088457610288565b806375854a25146106b2578063774dd4be146106db5780638131cf5714610704578063853828b61461072d5780638da5cb5b146107445780638da7878c1461076f57610288565b806323b872dd116101fe57806355f804b3116101b757806355f804b3146105a25780635d893ba0146105cb5780636352211e146105f657806365a131711461063357806370a082311461065e578063715018a61461069b57610288565b806323b872dd146104a65780632f26ded4146104cf57806332cb6b0c146104fa57806342842e0e1461052557806345ca77381461054e5780634a41734b1461057957610288565b8063081812fc11610250578063081812fc1461038657806309260db7146103c3578063095ea7b3146103ec5780631316589e1461041557806315b56d101461043e57806318160ddd1461047b57610288565b806301ffc9a71461028d57806303339bcb146102ca5780630387da42146102f3578063051a26641461031e57806306fdde031461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af919061437c565b610ab5565b6040516102c19190614cd1565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190614461565b610b97565b005b3480156102ff57600080fd5b50610308610c73565b60405161031591906150c9565b60405180910390f35b34801561032a57600080fd5b506103456004803603810190610340919061440f565b610c79565b6040516103529190614d07565b60405180910390f35b34801561036757600080fd5b50610370610d5b565b60405161037d9190614d07565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061440f565b610ded565b6040516103ba9190614bf6565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e5919061440f565b610e72565b005b3480156103f857600080fd5b50610413600480360381019061040e9190614282565b610f09565b005b34801561042157600080fd5b5061043c6004803603810190610437919061440f565b611021565b005b34801561044a57600080fd5b50610465600480360381019061046091906143ce565b6110a7565b6040516104729190614cd1565b60405180910390f35b34801561048757600080fd5b506104906110e4565b60405161049d91906150c9565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c8919061417c565b6110ee565b005b3480156104db57600080fd5b506104e461114e565b6040516104f19190614cd1565b60405180910390f35b34801561050657600080fd5b5061050f611161565b60405161051c91906150c9565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061417c565b611167565b005b34801561055a57600080fd5b50610563611187565b60405161057091906150c9565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190614117565b61118d565b005b3480156105ae57600080fd5b506105c960048036038101906105c491906143ce565b61124d565b005b3480156105d757600080fd5b506105e06112e3565b6040516105ed9190614cd1565b60405180910390f35b34801561060257600080fd5b5061061d6004803603810190610618919061440f565b6112f6565b60405161062a9190614bf6565b60405180910390f35b34801561063f57600080fd5b506106486113a8565b60405161065591906150c9565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190614117565b6113ae565b60405161069291906150c9565b60405180910390f35b3480156106a757600080fd5b506106b0611466565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061440f565b6114ee565b005b3480156106e757600080fd5b5061070260048036038101906106fd919061440f565b61182f565b005b34801561071057600080fd5b5061072b6004803603810190610726919061432a565b6118b5565b005b34801561073957600080fd5b5061074261194e565b005b34801561075057600080fd5b50610759611b09565b6040516107669190614bf6565b60405180910390f35b34801561077b57600080fd5b50610784611b33565b60405161079191906150c9565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc919061440f565b611b39565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906143ce565b611bbf565b6040516107f79190614d07565b60405180910390f35b34801561080c57600080fd5b50610815611e81565b6040516108229190614d07565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906143ce565b611f13565b60405161085f9190614cd1565b60405180910390f35b610882600480360381019061087d919061440f565b6122dd565b005b34801561089057600080fd5b506108ab60048036038101906108a69190614246565b61246c565b005b3480156108b957600080fd5b506108d460048036038101906108cf91906141cb565b612482565b005b3480156108e257600080fd5b506108fd60048036038101906108f8919061449d565b6124e4565b005b34801561090b57600080fd5b506109266004803603810190610921919061432a565b6128de565b005b34801561093457600080fd5b5061094f600480360381019061094a919061440f565b612977565b60405161095c9190614d07565b60405180910390f35b34801561097157600080fd5b5061097a612a1e565b005b34801561098857600080fd5b50610991612af0565b60405161099e91906150c9565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061440f565b612af6565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190614140565b612b7c565b604051610a049190614cd1565b60405180910390f35b348015610a1957600080fd5b50610a22612c10565b604051610a2f9190614cec565b60405180910390f35b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614117565b612c36565b005b348015610a6d57600080fd5b50610a76612d2e565b604051610a839190614caf565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906142be565b612e1f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f82612ecd565b5b9050919050565b610b9f612f37565b73ffffffffffffffffffffffffffffffffffffffff16610bbd611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90614f69565b60405180910390fd5b600c5482601554610c249190615270565b1115610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90614f89565b60405180910390fd5b610c6f8282612f3f565b5050565b600a5481565b60606000600860008481526020019081526020016000208054610c9b906154bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc7906154bf565b8015610d145780601f10610ce957610100808354040283529160200191610d14565b820191906000526020600020905b815481529060010190602001808311610cf757829003601f168201915b505050505090506000815111610d5157610d2d83612fa9565b604051602001610d3d9190614bd4565b604051602081830303815290604052610d53565b805b915050919050565b606060008054610d6a906154bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d96906154bf565b8015610de35780601f10610db857610100808354040283529160200191610de3565b820191906000526020600020905b815481529060010190602001808311610dc657829003601f168201915b5050505050905090565b6000610df882613156565b610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90614f29565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e7a612f37565b73ffffffffffffffffffffffffffffffffffffffff16610e98611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614f69565b60405180910390fd5b6000600c54905080821015610f055781600c819055505b5050565b6000610f14826112f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90615009565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fa4612f37565b73ffffffffffffffffffffffffffffffffffffffff161480610fd35750610fd281610fcd612f37565b612b7c565b5b611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990614e89565b60405180910390fd5b61101c83836131c2565b505050565b611029612f37565b73ffffffffffffffffffffffffffffffffffffffff16611047611b09565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614f69565b60405180910390fd5b8060078190555050565b600060096110b483611bbf565b6040516110c19190614b99565b908152602001604051809103902060009054906101000a900460ff169050919050565b6000601554905090565b6110ff6110f9612f37565b8261327b565b61113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590615049565b60405180910390fd5b611149838383613359565b505050565b600d60009054906101000a900460ff1681565b600c5481565b61118283838360405180602001604052806000815250612482565b505050565b60075481565b611195612f37565b73ffffffffffffffffffffffffffffffffffffffff166111b3611b09565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614f69565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611255612f37565b73ffffffffffffffffffffffffffffffffffffffff16611273611b09565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090614f69565b60405180910390fd5b80601290805190602001906112df929190613d0e565b5050565b600d60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614ec9565b60405180910390fd5b80915050919050565b60165481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614ea9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146e612f37565b73ffffffffffffffffffffffffffffffffffffffff1661148c611b09565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990614f69565b60405180910390fd5b6114ec60006135b5565b565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e611535612f37565b6101a46040518363ffffffff1660e01b8152600401611555929190614c5d565b60206040518083038186803b15801561156d57600080fd5b505afa158015611581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a59190614438565b9050600081116115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190614f49565b60405180910390fd5b600d60019054906101000a900460ff16611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090614de9565b60405180910390fd5b808260116000611647612f37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461168c9190615270565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490614e69565b60405180910390fd5b600e54421015611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990615029565b60405180910390fd5b600c54826015546117239190615270565b1115611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614f89565b60405180910390fd5b6102bb826016546117759190615270565b11156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90615069565b60405180910390fd5b81601660008282546117c89190615270565b9250508190555081601160006117dc612f37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061182b82611826612f37565b612f3f565b5050565b611837612f37565b73ffffffffffffffffffffffffffffffffffffffff16611855611b09565b73ffffffffffffffffffffffffffffffffffffffff16146118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290614f69565b60405180910390fd5b80600e8190555050565b6118bd612f37565b73ffffffffffffffffffffffffffffffffffffffff166118db611b09565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890614f69565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b611956612f37565b73ffffffffffffffffffffffffffffffffffffffff16611974611b09565b73ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190614f69565b60405180910390fd5b600047905060005b601080549050811015611b05576000600f8281548110611a1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600060108381548110611a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508173ffffffffffffffffffffffffffffffffffffffff166108fc6103e88387611aba919061532e565b611ac491906152fd565b9081150290604051600060405180830381858888f19350505050158015611aef573d6000803e3d6000fd5b5050508080611afd90615522565b9150506119d2565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b611b41612f37565b73ffffffffffffffffffffffffffffffffffffffff16611b5f611b09565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90614f69565b60405180910390fd5b80600a8190555050565b606060008290506000815167ffffffffffffffff811115611c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c3b5781602001600182028036833780820191505090505b50905060005b8251811015611e76576041838281518110611c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611cee5750605a838281518110611cda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611db6576020838281518110611d2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611d4691906152c6565b60f81b828281518110611d82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e63565b828181518110611def577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611e6e90615522565b915050611c41565b508092505050919050565b606060018054611e90906154bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc906154bf565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b5050505050905090565b600080829050600181511015611f2d5760009150506122d8565b601981511115611f415760009150506122d8565b602060f81b81600081518110611f80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611fbd5760009150506122d8565b602060f81b8160018351611fd19190615388565b81518110612008577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156120455760009150506122d8565b600081600081518110612081577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b905060005b82518110156122d05760008382815181106120d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614801561213c5750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561214e5760009450505050506122d8565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121aa5750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b1580156122105750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161015801561220e5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122755750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156122735750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122a75750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156122b95760009450505050506122d8565b8092505080806122c890615522565b915050612091565b506001925050505b919050565b600d60019054906101000a900460ff1661232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390614de9565b60405180910390fd5b600b54811115612371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236890615089565b60405180910390fd5b600e544210156123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90615029565b60405180910390fd5b3481600a546123c5919061532e565b1115612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90614e49565b60405180910390fd5b600c54816015546124179190615270565b1115612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90614f89565b60405180910390fd5b61246981612464612f37565b612f3f565b50565b61247e612477612f37565b838361367b565b5050565b61249361248d612f37565b8361327b565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990615049565b60405180910390fd5b6124de848484846137e8565b50505050565b600d60009054906101000a900460ff16612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614d89565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc6790336007546040518363ffffffff1660e01b8152600401612592929190614c86565b600060405180830381600087803b1580156125ac57600080fd5b505af11580156125c0573d6000803e3d6000fd5b5050505060006125cf836112f6565b90508073ffffffffffffffffffffffffffffffffffffffff166125f0612f37565b73ffffffffffffffffffffffffffffffffffffffff1614612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90614e09565b60405180910390fd5b6001151561265383611f13565b151514612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c906150a9565b60405180910390fd5b6002600860008581526020019081526020016000206040516126b79190614b82565b602060405180830381855afa1580156126d4573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906126f79190614353565b6002836040516127079190614b6b565b602060405180830381855afa158015612724573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906127479190614353565b1415612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277f90614fe9565b60405180910390fd5b60001515612795836110a7565b1515146127d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ce90614f09565b60405180910390fd5b60006008600085815260200190815260200160002080546127f7906154bf565b905011156128a6576128a5600860008581526020019081526020016000208054612820906154bf565b80601f016020809104026020016040519081016040528092919081815260200182805461284c906154bf565b80156128995780601f1061286e57610100808354040283529160200191612899565b820191906000526020600020905b81548152906001019060200180831161287c57829003601f168201915b50505050506000613844565b5b6128b1826001613844565b816008600085815260200190815260200160002090805190602001906128d8929190613d0e565b50505050565b6128e6612f37565b73ffffffffffffffffffffffffffffffffffffffff16612904611b09565b73ffffffffffffffffffffffffffffffffffffffff161461295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614f69565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b606061298282613156565b6129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890614fc9565b60405180910390fd5b60006129cb613886565b905060008151116129eb5760405180602001604052806000815250612a16565b806129f584612fa9565b604051602001612a06929190614bb0565b6040516020818303038152906040525b915050919050565b612a26612f37565b73ffffffffffffffffffffffffffffffffffffffff16612a44611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9190614f69565b60405180910390fd5b6000479050612aa7611b09565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612aec573d6000803e3d6000fd5b5050565b600b5481565b612afe612f37565b73ffffffffffffffffffffffffffffffffffffffff16612b1c611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6990614f69565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612c3e612f37565b73ffffffffffffffffffffffffffffffffffffffff16612c5c611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca990614f69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1990614d49565b60405180910390fd5b612d2b816135b5565b50565b6060600060155467ffffffffffffffff811115612d74577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612da757816020015b6060815260200190600190039081612d925790505b50905060005b601554811015612e1757612dc081610c79565b828281518110612df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080612e0f90615522565b915050612dad565b508091505090565b612e27612f37565b73ffffffffffffffffffffffffffffffffffffffff16612e45611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290614f69565b60405180910390fd5b81600f9080519060200190612eb1929190613d94565b508060109080519060200190612ec8929190613e1e565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000601554905060005b83811015612f9f57600160156000828254612f649190615270565b92505081905550612f8c8360018385612f7d9190615270565b612f879190615270565b613918565b8080612f9790615522565b915050612f49565b5060009050505050565b60606000821415612ff1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613151565b600082905060005b6000821461302357808061300c90615522565b915050600a8261301c91906152fd565b9150612ff9565b60008167ffffffffffffffff811115613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130975781602001600182028036833780820191505090505b5090505b6000851461314a576001826130b09190615388565b9150600a856130bf919061556b565b60306130cb9190615270565b60f81b818381518110613107577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561314391906152fd565b945061309b565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613235836112f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061328682613156565b6132c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bc90614e29565b60405180910390fd5b60006132d0836112f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061333f57508373ffffffffffffffffffffffffffffffffffffffff1661332784610ded565b73ffffffffffffffffffffffffffffffffffffffff16145b80613350575061334f8185612b7c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613379826112f6565b73ffffffffffffffffffffffffffffffffffffffff16146133cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c690614fa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343690614da9565b60405180910390fd5b61344a838383613936565b6134556000826131c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134a59190615388565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134fc9190615270565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e190614dc9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516137db9190614cd1565b60405180910390a3505050565b6137f3848484613359565b6137ff8484848461393b565b61383e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383590614d29565b60405180910390fd5b50505050565b80600961385084611bbf565b60405161385d9190614b99565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b606060128054613895906154bf565b80601f01602080910402602001604051908101604052809291908181526020018280546138c1906154bf565b801561390e5780601f106138e35761010080835404028352916020019161390e565b820191906000526020600020905b8154815290600101906020018083116138f157829003601f168201915b5050505050905090565b613932828260405180602001604052806000815250613ad2565b5050565b505050565b600061395c8473ffffffffffffffffffffffffffffffffffffffff16613b2d565b15613ac5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613985612f37565b8786866040518563ffffffff1660e01b81526004016139a79493929190614c11565b602060405180830381600087803b1580156139c157600080fd5b505af19250505080156139f257506040513d601f19601f820116820180604052508101906139ef91906143a5565b60015b613a75573d8060008114613a22576040519150601f19603f3d011682016040523d82523d6000602084013e613a27565b606091505b50600081511415613a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6490614d29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613aca565b600190505b949350505050565b613adc8383613b40565b613ae9600084848461393b565b613b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1f90614d29565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba790614ee9565b60405180910390fd5b613bb981613156565b15613bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf090614d69565b60405180910390fd5b613c0560008383613936565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c559190615270565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613d1a906154bf565b90600052602060002090601f016020900481019282613d3c5760008555613d83565b82601f10613d5557805160ff1916838001178555613d83565b82800160010185558215613d83579182015b82811115613d82578251825591602001919060010190613d67565b5b509050613d909190613e6b565b5090565b828054828255906000526020600020908101928215613e0d579160200282015b82811115613e0c5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613db4565b5b509050613e1a9190613e6b565b5090565b828054828255906000526020600020908101928215613e5a579160200282015b82811115613e59578251825591602001919060010190613e3e565b5b509050613e679190613e6b565b5090565b5b80821115613e84576000816000905550600101613e6c565b5090565b6000613e9b613e9684615109565b6150e4565b90508083825260208201905082856020860282011115613eba57600080fd5b60005b85811015613eea5781613ed08882613fdc565b845260208401935060208301925050600181019050613ebd565b5050509392505050565b6000613f07613f0284615135565b6150e4565b90508083825260208201905082856020860282011115613f2657600080fd5b60005b85811015613f565781613f3c88826140ed565b845260208401935060208301925050600181019050613f29565b5050509392505050565b6000613f73613f6e84615161565b6150e4565b905082815260208101848484011115613f8b57600080fd5b613f9684828561547d565b509392505050565b6000613fb1613fac84615192565b6150e4565b905082815260208101848484011115613fc957600080fd5b613fd484828561547d565b509392505050565b600081359050613feb81615d4b565b92915050565b600082601f83011261400257600080fd5b8135614012848260208601613e88565b91505092915050565b600082601f83011261402c57600080fd5b813561403c848260208601613ef4565b91505092915050565b60008135905061405481615d62565b92915050565b60008151905061406981615d79565b92915050565b60008135905061407e81615d90565b92915050565b60008151905061409381615d90565b92915050565b600082601f8301126140aa57600080fd5b81356140ba848260208601613f60565b91505092915050565b600082601f8301126140d457600080fd5b81356140e4848260208601613f9e565b91505092915050565b6000813590506140fc81615da7565b92915050565b60008151905061411181615da7565b92915050565b60006020828403121561412957600080fd5b600061413784828501613fdc565b91505092915050565b6000806040838503121561415357600080fd5b600061416185828601613fdc565b925050602061417285828601613fdc565b9150509250929050565b60008060006060848603121561419157600080fd5b600061419f86828701613fdc565b93505060206141b086828701613fdc565b92505060406141c1868287016140ed565b9150509250925092565b600080600080608085870312156141e157600080fd5b60006141ef87828801613fdc565b945050602061420087828801613fdc565b9350506040614211878288016140ed565b925050606085013567ffffffffffffffff81111561422e57600080fd5b61423a87828801614099565b91505092959194509250565b6000806040838503121561425957600080fd5b600061426785828601613fdc565b925050602061427885828601614045565b9150509250929050565b6000806040838503121561429557600080fd5b60006142a385828601613fdc565b92505060206142b4858286016140ed565b9150509250929050565b600080604083850312156142d157600080fd5b600083013567ffffffffffffffff8111156142eb57600080fd5b6142f785828601613ff1565b925050602083013567ffffffffffffffff81111561431457600080fd5b6143208582860161401b565b9150509250929050565b60006020828403121561433c57600080fd5b600061434a84828501614045565b91505092915050565b60006020828403121561436557600080fd5b60006143738482850161405a565b91505092915050565b60006020828403121561438e57600080fd5b600061439c8482850161406f565b91505092915050565b6000602082840312156143b757600080fd5b60006143c584828501614084565b91505092915050565b6000602082840312156143e057600080fd5b600082013567ffffffffffffffff8111156143fa57600080fd5b614406848285016140c3565b91505092915050565b60006020828403121561442157600080fd5b600061442f848285016140ed565b91505092915050565b60006020828403121561444a57600080fd5b600061445884828501614102565b91505092915050565b6000806040838503121561447457600080fd5b6000614482858286016140ed565b925050602061449385828601613fdc565b9150509250929050565b600080604083850312156144b057600080fd5b60006144be858286016140ed565b925050602083013567ffffffffffffffff8111156144db57600080fd5b6144e7858286016140c3565b9150509250929050565b60006144fd838361469f565b905092915050565b61450e816153bc565b82525050565b600061451f826151e8565b6145298185615216565b93508360208202850161453b856151c3565b8060005b85811015614577578484038952815161455885826144f1565b945061456383615209565b925060208a0199505060018101905061453f565b50829750879550505050505092915050565b614592816153ce565b82525050565b60006145a3826151f3565b6145ad8185615227565b93506145bd81856020860161548c565b6145c681615658565b840191505092915050565b60006145dc826151f3565b6145e68185615238565b93506145f681856020860161548c565b80840191505092915050565b6000815461460f816154bf565b6146198186615238565b94506001821660008114614634576001811461464557614678565b60ff19831686528186019350614678565b61464e856151d3565b60005b8381101561467057815481890152600182019150602081019050614651565b838801955050505b50505092915050565b61468a81615447565b82525050565b6146998161546b565b82525050565b60006146aa826151fe565b6146b48185615243565b93506146c481856020860161548c565b6146cd81615658565b840191505092915050565b60006146e3826151fe565b6146ed8185615254565b93506146fd81856020860161548c565b61470681615658565b840191505092915050565b600061471c826151fe565b6147268185615265565b935061473681856020860161548c565b80840191505092915050565b600061474f603283615254565b915061475a82615669565b604082019050919050565b6000614772602683615254565b915061477d826156b8565b604082019050919050565b6000614795601c83615254565b91506147a082615707565b602082019050919050565b60006147b8602383615254565b91506147c382615730565b604082019050919050565b60006147db602483615254565b91506147e68261577f565b604082019050919050565b60006147fe601983615254565b9150614809826157ce565b602082019050919050565b6000614821601283615254565b915061482c826157f7565b602082019050919050565b6000614844600b83615265565b915061484f82615820565b600b82019050919050565b6000614867601583615254565b915061487282615849565b602082019050919050565b600061488a602c83615254565b915061489582615872565b604082019050919050565b60006148ad601583615254565b91506148b8826158c1565b602082019050919050565b60006148d0601983615254565b91506148db826158ea565b602082019050919050565b60006148f3603883615254565b91506148fe82615913565b604082019050919050565b6000614916602a83615254565b915061492182615962565b604082019050919050565b6000614939602983615254565b9150614944826159b1565b604082019050919050565b600061495c602083615254565b915061496782615a00565b602082019050919050565b600061497f601583615254565b915061498a82615a29565b602082019050919050565b60006149a2602c83615254565b91506149ad82615a52565b604082019050919050565b60006149c5601b83615254565b91506149d082615aa1565b602082019050919050565b60006149e8602083615254565b91506149f382615aca565b602082019050919050565b6000614a0b601b83615254565b9150614a1682615af3565b602082019050919050565b6000614a2e602983615254565b9150614a3982615b1c565b604082019050919050565b6000614a51602f83615254565b9150614a5c82615b6b565b604082019050919050565b6000614a74602383615254565b9150614a7f82615bba565b604082019050919050565b6000614a97602183615254565b9150614aa282615c09565b604082019050919050565b6000614aba601683615254565b9150614ac582615c58565b602082019050919050565b6000614add603183615254565b9150614ae882615c81565b604082019050919050565b6000614b00601283615254565b9150614b0b82615cd0565b602082019050919050565b6000614b23601b83615254565b9150614b2e82615cf9565b602082019050919050565b6000614b46601483615254565b9150614b5182615d22565b602082019050919050565b614b6581615430565b82525050565b6000614b7782846145d1565b915081905092915050565b6000614b8e8284614602565b915081905092915050565b6000614ba58284614711565b915081905092915050565b6000614bbc8285614711565b9150614bc88284614711565b91508190509392505050565b6000614bdf82614837565b9150614beb8284614711565b915081905092915050565b6000602082019050614c0b6000830184614505565b92915050565b6000608082019050614c266000830187614505565b614c336020830186614505565b614c406040830185614b5c565b8181036060830152614c528184614598565b905095945050505050565b6000604082019050614c726000830185614505565b614c7f6020830184614690565b9392505050565b6000604082019050614c9b6000830185614505565b614ca86020830184614b5c565b9392505050565b60006020820190508181036000830152614cc98184614514565b905092915050565b6000602082019050614ce66000830184614589565b92915050565b6000602082019050614d016000830184614681565b92915050565b60006020820190508181036000830152614d2181846146d8565b905092915050565b60006020820190508181036000830152614d4281614742565b9050919050565b60006020820190508181036000830152614d6281614765565b9050919050565b60006020820190508181036000830152614d8281614788565b9050919050565b60006020820190508181036000830152614da2816147ab565b9050919050565b60006020820190508181036000830152614dc2816147ce565b9050919050565b60006020820190508181036000830152614de2816147f1565b9050919050565b60006020820190508181036000830152614e0281614814565b9050919050565b60006020820190508181036000830152614e228161485a565b9050919050565b60006020820190508181036000830152614e428161487d565b9050919050565b60006020820190508181036000830152614e62816148a0565b9050919050565b60006020820190508181036000830152614e82816148c3565b9050919050565b60006020820190508181036000830152614ea2816148e6565b9050919050565b60006020820190508181036000830152614ec281614909565b9050919050565b60006020820190508181036000830152614ee28161492c565b9050919050565b60006020820190508181036000830152614f028161494f565b9050919050565b60006020820190508181036000830152614f2281614972565b9050919050565b60006020820190508181036000830152614f4281614995565b9050919050565b60006020820190508181036000830152614f62816149b8565b9050919050565b60006020820190508181036000830152614f82816149db565b9050919050565b60006020820190508181036000830152614fa2816149fe565b9050919050565b60006020820190508181036000830152614fc281614a21565b9050919050565b60006020820190508181036000830152614fe281614a44565b9050919050565b6000602082019050818103600083015261500281614a67565b9050919050565b6000602082019050818103600083015261502281614a8a565b9050919050565b6000602082019050818103600083015261504281614aad565b9050919050565b6000602082019050818103600083015261506281614ad0565b9050919050565b6000602082019050818103600083015261508281614af3565b9050919050565b600060208201905081810360008301526150a281614b16565b9050919050565b600060208201905081810360008301526150c281614b39565b9050919050565b60006020820190506150de6000830184614b5c565b92915050565b60006150ee6150ff565b90506150fa82826154f1565b919050565b6000604051905090565b600067ffffffffffffffff82111561512457615123615629565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151505761514f615629565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561517c5761517b615629565b5b61518582615658565b9050602081019050919050565b600067ffffffffffffffff8211156151ad576151ac615629565b5b6151b682615658565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061527b82615430565b915061528683615430565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152bb576152ba61559c565b5b828201905092915050565b60006152d18261543a565b91506152dc8361543a565b92508260ff038211156152f2576152f161559c565b5b828201905092915050565b600061530882615430565b915061531383615430565b925082615323576153226155cb565b5b828204905092915050565b600061533982615430565b915061534483615430565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561537d5761537c61559c565b5b828202905092915050565b600061539382615430565b915061539e83615430565b9250828210156153b1576153b061559c565b5b828203905092915050565b60006153c782615410565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061545282615459565b9050919050565b600061546482615410565b9050919050565b600061547682615430565b9050919050565b82818337600083830152505050565b60005b838110156154aa57808201518184015260208101905061548f565b838111156154b9576000848401525b50505050565b600060028204905060018216806154d757607f821691505b602082108114156154eb576154ea6155fa565b5b50919050565b6154fa82615658565b810181811067ffffffffffffffff8211171561551957615518615629565b5b80604052505050565b600061552d82615430565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155605761555f61559c565b5b600182019050919050565b600061557682615430565b915061558183615430565b925082615591576155906155cb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546865204368616e6765204e616d652046756e6374696f6e20697320626c6f6360008201527f6b65640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f536369656e746973742023000000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4554482076616c7565206e6f7420636f72726563740000000000000000000000600082015250565b7f596f75207265717565737420746f206d616e79206d696e747300000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e616d6520616c72656164792072657365727665640000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f20686f6c642061204368756d706173730000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50757263686173652065786365656473206d617820737570706c790000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6577206e616d652069732073616d65206173207468652063757272656e742060008201527f6f6e650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520646964206e6f742073746172742079657400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f206d6f72652066726565206d696e74730000000000000000000000000000600082015250565b7f596f752072657175657374656420746f6f206d616e7920417065730000000000600082015250565b7f4e6f7420612076616c6964206e6577206e616d65000000000000000000000000600082015250565b615d54816153bc565b8114615d5f57600080fd5b50565b615d6b816153ce565b8114615d7657600080fd5b50565b615d82816153da565b8114615d8d57600080fd5b50565b615d99816153e4565b8114615da457600080fd5b50565b615db081615430565b8114615dbb57600080fd5b5056fea26469706673582212206a0a4f2e2972336097bade059e8a8b31459ea17871940c6dd096c1c3958a868c64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000beb13ac6a46fea17a3244966b4163895e389da49000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f75732d63656e7472616c312d666172666574636865646c6162732d33666438392e636c6f756466756e6374696f6e732e6e65742f6170692f000000000000000000000000000000000000000000000000000000000000000700000000000000000000000003eedba3a574f610022493e7a88602a2f4883d340000000000000000000000006912b3052ff909b801c17294532e4300e1a4d17600000000000000000000000006a6f7341fb29a390d83250d66dad91b6aba6c000000000000000000000000008147c04cb5c13b482820064e2bdd8a41ab9a4b51000000000000000000000000ad17bdffd0805f6d871016964a29f910e564ccd70000000000000000000000004bca5f46db7af63cb3ffd73e68cb3a09b8410b6e0000000000000000000000004a51aa187af2814d945a1a6c5211bd873bc6abfd000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode
0x6080604052600436106102885760003560e01c806375854a251161015a578063b88d4fde116100c1578063e5a4756c1161007a578063e5a4756c146109a7578063e985e9c5146109d0578063ecd0c0c314610a0d578063f2fde38b14610a38578063fb825e5f14610a61578063fd636b2614610a8c57610288565b8063b88d4fde146108ad578063c39cbef1146108d6578063c4e37095146108ff578063c87b56dd14610928578063db2e21bc14610965578063de314a591461097c57610288565b806391b7f5ed1161011357806391b7f5ed1461079a5780639416b423146107c357806395d89b41146108005780639ffdb65a1461082b578063a0712d6814610868578063a22cb4651461088457610288565b806375854a25146106b2578063774dd4be146106db5780638131cf5714610704578063853828b61461072d5780638da5cb5b146107445780638da7878c1461076f57610288565b806323b872dd116101fe57806355f804b3116101b757806355f804b3146105a25780635d893ba0146105cb5780636352211e146105f657806365a131711461063357806370a082311461065e578063715018a61461069b57610288565b806323b872dd146104a65780632f26ded4146104cf57806332cb6b0c146104fa57806342842e0e1461052557806345ca77381461054e5780634a41734b1461057957610288565b8063081812fc11610250578063081812fc1461038657806309260db7146103c3578063095ea7b3146103ec5780631316589e1461041557806315b56d101461043e57806318160ddd1461047b57610288565b806301ffc9a71461028d57806303339bcb146102ca5780630387da42146102f3578063051a26641461031e57806306fdde031461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af919061437c565b610ab5565b6040516102c19190614cd1565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190614461565b610b97565b005b3480156102ff57600080fd5b50610308610c73565b60405161031591906150c9565b60405180910390f35b34801561032a57600080fd5b506103456004803603810190610340919061440f565b610c79565b6040516103529190614d07565b60405180910390f35b34801561036757600080fd5b50610370610d5b565b60405161037d9190614d07565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a8919061440f565b610ded565b6040516103ba9190614bf6565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e5919061440f565b610e72565b005b3480156103f857600080fd5b50610413600480360381019061040e9190614282565b610f09565b005b34801561042157600080fd5b5061043c6004803603810190610437919061440f565b611021565b005b34801561044a57600080fd5b50610465600480360381019061046091906143ce565b6110a7565b6040516104729190614cd1565b60405180910390f35b34801561048757600080fd5b506104906110e4565b60405161049d91906150c9565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c8919061417c565b6110ee565b005b3480156104db57600080fd5b506104e461114e565b6040516104f19190614cd1565b60405180910390f35b34801561050657600080fd5b5061050f611161565b60405161051c91906150c9565b60405180910390f35b34801561053157600080fd5b5061054c6004803603810190610547919061417c565b611167565b005b34801561055a57600080fd5b50610563611187565b60405161057091906150c9565b60405180910390f35b34801561058557600080fd5b506105a0600480360381019061059b9190614117565b61118d565b005b3480156105ae57600080fd5b506105c960048036038101906105c491906143ce565b61124d565b005b3480156105d757600080fd5b506105e06112e3565b6040516105ed9190614cd1565b60405180910390f35b34801561060257600080fd5b5061061d6004803603810190610618919061440f565b6112f6565b60405161062a9190614bf6565b60405180910390f35b34801561063f57600080fd5b506106486113a8565b60405161065591906150c9565b60405180910390f35b34801561066a57600080fd5b5061068560048036038101906106809190614117565b6113ae565b60405161069291906150c9565b60405180910390f35b3480156106a757600080fd5b506106b0611466565b005b3480156106be57600080fd5b506106d960048036038101906106d4919061440f565b6114ee565b005b3480156106e757600080fd5b5061070260048036038101906106fd919061440f565b61182f565b005b34801561071057600080fd5b5061072b6004803603810190610726919061432a565b6118b5565b005b34801561073957600080fd5b5061074261194e565b005b34801561075057600080fd5b50610759611b09565b6040516107669190614bf6565b60405180910390f35b34801561077b57600080fd5b50610784611b33565b60405161079191906150c9565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc919061440f565b611b39565b005b3480156107cf57600080fd5b506107ea60048036038101906107e591906143ce565b611bbf565b6040516107f79190614d07565b60405180910390f35b34801561080c57600080fd5b50610815611e81565b6040516108229190614d07565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906143ce565b611f13565b60405161085f9190614cd1565b60405180910390f35b610882600480360381019061087d919061440f565b6122dd565b005b34801561089057600080fd5b506108ab60048036038101906108a69190614246565b61246c565b005b3480156108b957600080fd5b506108d460048036038101906108cf91906141cb565b612482565b005b3480156108e257600080fd5b506108fd60048036038101906108f8919061449d565b6124e4565b005b34801561090b57600080fd5b506109266004803603810190610921919061432a565b6128de565b005b34801561093457600080fd5b5061094f600480360381019061094a919061440f565b612977565b60405161095c9190614d07565b60405180910390f35b34801561097157600080fd5b5061097a612a1e565b005b34801561098857600080fd5b50610991612af0565b60405161099e91906150c9565b60405180910390f35b3480156109b357600080fd5b506109ce60048036038101906109c9919061440f565b612af6565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190614140565b612b7c565b604051610a049190614cd1565b60405180910390f35b348015610a1957600080fd5b50610a22612c10565b604051610a2f9190614cec565b60405180910390f35b348015610a4457600080fd5b50610a5f6004803603810190610a5a9190614117565b612c36565b005b348015610a6d57600080fd5b50610a76612d2e565b604051610a839190614caf565b60405180910390f35b348015610a9857600080fd5b50610ab36004803603810190610aae91906142be565b612e1f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b8057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f82612ecd565b5b9050919050565b610b9f612f37565b73ffffffffffffffffffffffffffffffffffffffff16610bbd611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90614f69565b60405180910390fd5b600c5482601554610c249190615270565b1115610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90614f89565b60405180910390fd5b610c6f8282612f3f565b5050565b600a5481565b60606000600860008481526020019081526020016000208054610c9b906154bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc7906154bf565b8015610d145780601f10610ce957610100808354040283529160200191610d14565b820191906000526020600020905b815481529060010190602001808311610cf757829003601f168201915b505050505090506000815111610d5157610d2d83612fa9565b604051602001610d3d9190614bd4565b604051602081830303815290604052610d53565b805b915050919050565b606060008054610d6a906154bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610d96906154bf565b8015610de35780601f10610db857610100808354040283529160200191610de3565b820191906000526020600020905b815481529060010190602001808311610dc657829003601f168201915b5050505050905090565b6000610df882613156565b610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e90614f29565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610e7a612f37565b73ffffffffffffffffffffffffffffffffffffffff16610e98611b09565b73ffffffffffffffffffffffffffffffffffffffff1614610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590614f69565b60405180910390fd5b6000600c54905080821015610f055781600c819055505b5050565b6000610f14826112f6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7c90615009565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fa4612f37565b73ffffffffffffffffffffffffffffffffffffffff161480610fd35750610fd281610fcd612f37565b612b7c565b5b611012576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100990614e89565b60405180910390fd5b61101c83836131c2565b505050565b611029612f37565b73ffffffffffffffffffffffffffffffffffffffff16611047611b09565b73ffffffffffffffffffffffffffffffffffffffff161461109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614f69565b60405180910390fd5b8060078190555050565b600060096110b483611bbf565b6040516110c19190614b99565b908152602001604051809103902060009054906101000a900460ff169050919050565b6000601554905090565b6110ff6110f9612f37565b8261327b565b61113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590615049565b60405180910390fd5b611149838383613359565b505050565b600d60009054906101000a900460ff1681565b600c5481565b61118283838360405180602001604052806000815250612482565b505050565b60075481565b611195612f37565b73ffffffffffffffffffffffffffffffffffffffff166111b3611b09565b73ffffffffffffffffffffffffffffffffffffffff1614611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614f69565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611255612f37565b73ffffffffffffffffffffffffffffffffffffffff16611273611b09565b73ffffffffffffffffffffffffffffffffffffffff16146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090614f69565b60405180910390fd5b80601290805190602001906112df929190613d0e565b5050565b600d60019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614ec9565b60405180910390fd5b80915050919050565b60165481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561141f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141690614ea9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146e612f37565b73ffffffffffffffffffffffffffffffffffffffff1661148c611b09565b73ffffffffffffffffffffffffffffffffffffffff16146114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990614f69565b60405180910390fd5b6114ec60006135b5565b565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662fdd58e611535612f37565b6101a46040518363ffffffff1660e01b8152600401611555929190614c5d565b60206040518083038186803b15801561156d57600080fd5b505afa158015611581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a59190614438565b9050600081116115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e190614f49565b60405180910390fd5b600d60019054906101000a900460ff16611639576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163090614de9565b60405180910390fd5b808260116000611647612f37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461168c9190615270565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490614e69565b60405180910390fd5b600e54421015611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990615029565b60405180910390fd5b600c54826015546117239190615270565b1115611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90614f89565b60405180910390fd5b6102bb826016546117759190615270565b11156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90615069565b60405180910390fd5b81601660008282546117c89190615270565b9250508190555081601160006117dc612f37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061182b82611826612f37565b612f3f565b5050565b611837612f37565b73ffffffffffffffffffffffffffffffffffffffff16611855611b09565b73ffffffffffffffffffffffffffffffffffffffff16146118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a290614f69565b60405180910390fd5b80600e8190555050565b6118bd612f37565b73ffffffffffffffffffffffffffffffffffffffff166118db611b09565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192890614f69565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b611956612f37565b73ffffffffffffffffffffffffffffffffffffffff16611974611b09565b73ffffffffffffffffffffffffffffffffffffffff16146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190614f69565b60405180910390fd5b600047905060005b601080549050811015611b05576000600f8281548110611a1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600060108381548110611a84577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508173ffffffffffffffffffffffffffffffffffffffff166108fc6103e88387611aba919061532e565b611ac491906152fd565b9081150290604051600060405180830381858888f19350505050158015611aef573d6000803e3d6000fd5b5050508080611afd90615522565b9150506119d2565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b611b41612f37565b73ffffffffffffffffffffffffffffffffffffffff16611b5f611b09565b73ffffffffffffffffffffffffffffffffffffffff1614611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac90614f69565b60405180910390fd5b80600a8190555050565b606060008290506000815167ffffffffffffffff811115611c09577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c3b5781602001600182028036833780820191505090505b50905060005b8251811015611e76576041838281518110611c85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1610158015611cee5750605a838281518110611cda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c60ff1611155b15611db6576020838281518110611d2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b60f81c611d4691906152c6565b60f81b828281518110611d82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611e63565b828181518110611def577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b828281518110611e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b8080611e6e90615522565b915050611c41565b508092505050919050565b606060018054611e90906154bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611ebc906154bf565b8015611f095780601f10611ede57610100808354040283529160200191611f09565b820191906000526020600020905b815481529060010190602001808311611eec57829003601f168201915b5050505050905090565b600080829050600181511015611f2d5760009150506122d8565b601981511115611f415760009150506122d8565b602060f81b81600081518110611f80577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415611fbd5760009150506122d8565b602060f81b8160018351611fd19190615388565b81518110612008577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156120455760009150506122d8565b600081600081518110612081577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b905060005b82518110156122d05760008382815181106120d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b9050602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614801561213c5750602060f81b837effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b1561214e5760009450505050506122d8565b603060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156121aa5750603960f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b1580156122105750604160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161015801561220e5750605a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122755750606160f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916101580156122735750607a60f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b155b80156122a75750602060f81b817effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b156122b95760009450505050506122d8565b8092505080806122c890615522565b915050612091565b506001925050505b919050565b600d60019054906101000a900460ff1661232c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232390614de9565b60405180910390fd5b600b54811115612371576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236890615089565b60405180910390fd5b600e544210156123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90615029565b60405180910390fd5b3481600a546123c5919061532e565b1115612406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fd90614e49565b60405180910390fd5b600c54816015546124179190615270565b1115612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90614f89565b60405180910390fd5b61246981612464612f37565b612f3f565b50565b61247e612477612f37565b838361367b565b5050565b61249361248d612f37565b8361327b565b6124d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c990615049565b60405180910390fd5b6124de848484846137e8565b50505050565b600d60009054906101000a900460ff16612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614d89565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc6790336007546040518363ffffffff1660e01b8152600401612592929190614c86565b600060405180830381600087803b1580156125ac57600080fd5b505af11580156125c0573d6000803e3d6000fd5b5050505060006125cf836112f6565b90508073ffffffffffffffffffffffffffffffffffffffff166125f0612f37565b73ffffffffffffffffffffffffffffffffffffffff1614612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90614e09565b60405180910390fd5b6001151561265383611f13565b151514612695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268c906150a9565b60405180910390fd5b6002600860008581526020019081526020016000206040516126b79190614b82565b602060405180830381855afa1580156126d4573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906126f79190614353565b6002836040516127079190614b6b565b602060405180830381855afa158015612724573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906127479190614353565b1415612788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277f90614fe9565b60405180910390fd5b60001515612795836110a7565b1515146127d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ce90614f09565b60405180910390fd5b60006008600085815260200190815260200160002080546127f7906154bf565b905011156128a6576128a5600860008581526020019081526020016000208054612820906154bf565b80601f016020809104026020016040519081016040528092919081815260200182805461284c906154bf565b80156128995780601f1061286e57610100808354040283529160200191612899565b820191906000526020600020905b81548152906001019060200180831161287c57829003601f168201915b50505050506000613844565b5b6128b1826001613844565b816008600085815260200190815260200160002090805190602001906128d8929190613d0e565b50505050565b6128e6612f37565b73ffffffffffffffffffffffffffffffffffffffff16612904611b09565b73ffffffffffffffffffffffffffffffffffffffff161461295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614f69565b60405180910390fd5b80600d60016101000a81548160ff02191690831515021790555050565b606061298282613156565b6129c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b890614fc9565b60405180910390fd5b60006129cb613886565b905060008151116129eb5760405180602001604052806000815250612a16565b806129f584612fa9565b604051602001612a06929190614bb0565b6040516020818303038152906040525b915050919050565b612a26612f37565b73ffffffffffffffffffffffffffffffffffffffff16612a44611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9190614f69565b60405180910390fd5b6000479050612aa7611b09565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015612aec573d6000803e3d6000fd5b5050565b600b5481565b612afe612f37565b73ffffffffffffffffffffffffffffffffffffffff16612b1c611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6990614f69565b60405180910390fd5b80600b8190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612c3e612f37565b73ffffffffffffffffffffffffffffffffffffffff16612c5c611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca990614f69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1990614d49565b60405180910390fd5b612d2b816135b5565b50565b6060600060155467ffffffffffffffff811115612d74577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612da757816020015b6060815260200190600190039081612d925790505b50905060005b601554811015612e1757612dc081610c79565b828281518110612df9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080612e0f90615522565b915050612dad565b508091505090565b612e27612f37565b73ffffffffffffffffffffffffffffffffffffffff16612e45611b09565b73ffffffffffffffffffffffffffffffffffffffff1614612e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9290614f69565b60405180910390fd5b81600f9080519060200190612eb1929190613d94565b508060109080519060200190612ec8929190613e1e565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000601554905060005b83811015612f9f57600160156000828254612f649190615270565b92505081905550612f8c8360018385612f7d9190615270565b612f879190615270565b613918565b8080612f9790615522565b915050612f49565b5060009050505050565b60606000821415612ff1576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613151565b600082905060005b6000821461302357808061300c90615522565b915050600a8261301c91906152fd565b9150612ff9565b60008167ffffffffffffffff811115613065577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130975781602001600182028036833780820191505090505b5090505b6000851461314a576001826130b09190615388565b9150600a856130bf919061556b565b60306130cb9190615270565b60f81b818381518110613107577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561314391906152fd565b945061309b565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16613235836112f6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061328682613156565b6132c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bc90614e29565b60405180910390fd5b60006132d0836112f6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061333f57508373ffffffffffffffffffffffffffffffffffffffff1661332784610ded565b73ffffffffffffffffffffffffffffffffffffffff16145b80613350575061334f8185612b7c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613379826112f6565b73ffffffffffffffffffffffffffffffffffffffff16146133cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c690614fa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343690614da9565b60405180910390fd5b61344a838383613936565b6134556000826131c2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134a59190615388565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134fc9190615270565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156136ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e190614dc9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516137db9190614cd1565b60405180910390a3505050565b6137f3848484613359565b6137ff8484848461393b565b61383e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383590614d29565b60405180910390fd5b50505050565b80600961385084611bbf565b60405161385d9190614b99565b908152602001604051809103902060006101000a81548160ff0219169083151502179055505050565b606060128054613895906154bf565b80601f01602080910402602001604051908101604052809291908181526020018280546138c1906154bf565b801561390e5780601f106138e35761010080835404028352916020019161390e565b820191906000526020600020905b8154815290600101906020018083116138f157829003601f168201915b5050505050905090565b613932828260405180602001604052806000815250613ad2565b5050565b505050565b600061395c8473ffffffffffffffffffffffffffffffffffffffff16613b2d565b15613ac5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613985612f37565b8786866040518563ffffffff1660e01b81526004016139a79493929190614c11565b602060405180830381600087803b1580156139c157600080fd5b505af19250505080156139f257506040513d601f19601f820116820180604052508101906139ef91906143a5565b60015b613a75573d8060008114613a22576040519150601f19603f3d011682016040523d82523d6000602084013e613a27565b606091505b50600081511415613a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a6490614d29565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613aca565b600190505b949350505050565b613adc8383613b40565b613ae9600084848461393b565b613b28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1f90614d29565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ba790614ee9565b60405180910390fd5b613bb981613156565b15613bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bf090614d69565b60405180910390fd5b613c0560008383613936565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c559190615270565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613d1a906154bf565b90600052602060002090601f016020900481019282613d3c5760008555613d83565b82601f10613d5557805160ff1916838001178555613d83565b82800160010185558215613d83579182015b82811115613d82578251825591602001919060010190613d67565b5b509050613d909190613e6b565b5090565b828054828255906000526020600020908101928215613e0d579160200282015b82811115613e0c5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613db4565b5b509050613e1a9190613e6b565b5090565b828054828255906000526020600020908101928215613e5a579160200282015b82811115613e59578251825591602001919060010190613e3e565b5b509050613e679190613e6b565b5090565b5b80821115613e84576000816000905550600101613e6c565b5090565b6000613e9b613e9684615109565b6150e4565b90508083825260208201905082856020860282011115613eba57600080fd5b60005b85811015613eea5781613ed08882613fdc565b845260208401935060208301925050600181019050613ebd565b5050509392505050565b6000613f07613f0284615135565b6150e4565b90508083825260208201905082856020860282011115613f2657600080fd5b60005b85811015613f565781613f3c88826140ed565b845260208401935060208301925050600181019050613f29565b5050509392505050565b6000613f73613f6e84615161565b6150e4565b905082815260208101848484011115613f8b57600080fd5b613f9684828561547d565b509392505050565b6000613fb1613fac84615192565b6150e4565b905082815260208101848484011115613fc957600080fd5b613fd484828561547d565b509392505050565b600081359050613feb81615d4b565b92915050565b600082601f83011261400257600080fd5b8135614012848260208601613e88565b91505092915050565b600082601f83011261402c57600080fd5b813561403c848260208601613ef4565b91505092915050565b60008135905061405481615d62565b92915050565b60008151905061406981615d79565b92915050565b60008135905061407e81615d90565b92915050565b60008151905061409381615d90565b92915050565b600082601f8301126140aa57600080fd5b81356140ba848260208601613f60565b91505092915050565b600082601f8301126140d457600080fd5b81356140e4848260208601613f9e565b91505092915050565b6000813590506140fc81615da7565b92915050565b60008151905061411181615da7565b92915050565b60006020828403121561412957600080fd5b600061413784828501613fdc565b91505092915050565b6000806040838503121561415357600080fd5b600061416185828601613fdc565b925050602061417285828601613fdc565b9150509250929050565b60008060006060848603121561419157600080fd5b600061419f86828701613fdc565b93505060206141b086828701613fdc565b92505060406141c1868287016140ed565b9150509250925092565b600080600080608085870312156141e157600080fd5b60006141ef87828801613fdc565b945050602061420087828801613fdc565b9350506040614211878288016140ed565b925050606085013567ffffffffffffffff81111561422e57600080fd5b61423a87828801614099565b91505092959194509250565b6000806040838503121561425957600080fd5b600061426785828601613fdc565b925050602061427885828601614045565b9150509250929050565b6000806040838503121561429557600080fd5b60006142a385828601613fdc565b92505060206142b4858286016140ed565b9150509250929050565b600080604083850312156142d157600080fd5b600083013567ffffffffffffffff8111156142eb57600080fd5b6142f785828601613ff1565b925050602083013567ffffffffffffffff81111561431457600080fd5b6143208582860161401b565b9150509250929050565b60006020828403121561433c57600080fd5b600061434a84828501614045565b91505092915050565b60006020828403121561436557600080fd5b60006143738482850161405a565b91505092915050565b60006020828403121561438e57600080fd5b600061439c8482850161406f565b91505092915050565b6000602082840312156143b757600080fd5b60006143c584828501614084565b91505092915050565b6000602082840312156143e057600080fd5b600082013567ffffffffffffffff8111156143fa57600080fd5b614406848285016140c3565b91505092915050565b60006020828403121561442157600080fd5b600061442f848285016140ed565b91505092915050565b60006020828403121561444a57600080fd5b600061445884828501614102565b91505092915050565b6000806040838503121561447457600080fd5b6000614482858286016140ed565b925050602061449385828601613fdc565b9150509250929050565b600080604083850312156144b057600080fd5b60006144be858286016140ed565b925050602083013567ffffffffffffffff8111156144db57600080fd5b6144e7858286016140c3565b9150509250929050565b60006144fd838361469f565b905092915050565b61450e816153bc565b82525050565b600061451f826151e8565b6145298185615216565b93508360208202850161453b856151c3565b8060005b85811015614577578484038952815161455885826144f1565b945061456383615209565b925060208a0199505060018101905061453f565b50829750879550505050505092915050565b614592816153ce565b82525050565b60006145a3826151f3565b6145ad8185615227565b93506145bd81856020860161548c565b6145c681615658565b840191505092915050565b60006145dc826151f3565b6145e68185615238565b93506145f681856020860161548c565b80840191505092915050565b6000815461460f816154bf565b6146198186615238565b94506001821660008114614634576001811461464557614678565b60ff19831686528186019350614678565b61464e856151d3565b60005b8381101561467057815481890152600182019150602081019050614651565b838801955050505b50505092915050565b61468a81615447565b82525050565b6146998161546b565b82525050565b60006146aa826151fe565b6146b48185615243565b93506146c481856020860161548c565b6146cd81615658565b840191505092915050565b60006146e3826151fe565b6146ed8185615254565b93506146fd81856020860161548c565b61470681615658565b840191505092915050565b600061471c826151fe565b6147268185615265565b935061473681856020860161548c565b80840191505092915050565b600061474f603283615254565b915061475a82615669565b604082019050919050565b6000614772602683615254565b915061477d826156b8565b604082019050919050565b6000614795601c83615254565b91506147a082615707565b602082019050919050565b60006147b8602383615254565b91506147c382615730565b604082019050919050565b60006147db602483615254565b91506147e68261577f565b604082019050919050565b60006147fe601983615254565b9150614809826157ce565b602082019050919050565b6000614821601283615254565b915061482c826157f7565b602082019050919050565b6000614844600b83615265565b915061484f82615820565b600b82019050919050565b6000614867601583615254565b915061487282615849565b602082019050919050565b600061488a602c83615254565b915061489582615872565b604082019050919050565b60006148ad601583615254565b91506148b8826158c1565b602082019050919050565b60006148d0601983615254565b91506148db826158ea565b602082019050919050565b60006148f3603883615254565b91506148fe82615913565b604082019050919050565b6000614916602a83615254565b915061492182615962565b604082019050919050565b6000614939602983615254565b9150614944826159b1565b604082019050919050565b600061495c602083615254565b915061496782615a00565b602082019050919050565b600061497f601583615254565b915061498a82615a29565b602082019050919050565b60006149a2602c83615254565b91506149ad82615a52565b604082019050919050565b60006149c5601b83615254565b91506149d082615aa1565b602082019050919050565b60006149e8602083615254565b91506149f382615aca565b602082019050919050565b6000614a0b601b83615254565b9150614a1682615af3565b602082019050919050565b6000614a2e602983615254565b9150614a3982615b1c565b604082019050919050565b6000614a51602f83615254565b9150614a5c82615b6b565b604082019050919050565b6000614a74602383615254565b9150614a7f82615bba565b604082019050919050565b6000614a97602183615254565b9150614aa282615c09565b604082019050919050565b6000614aba601683615254565b9150614ac582615c58565b602082019050919050565b6000614add603183615254565b9150614ae882615c81565b604082019050919050565b6000614b00601283615254565b9150614b0b82615cd0565b602082019050919050565b6000614b23601b83615254565b9150614b2e82615cf9565b602082019050919050565b6000614b46601483615254565b9150614b5182615d22565b602082019050919050565b614b6581615430565b82525050565b6000614b7782846145d1565b915081905092915050565b6000614b8e8284614602565b915081905092915050565b6000614ba58284614711565b915081905092915050565b6000614bbc8285614711565b9150614bc88284614711565b91508190509392505050565b6000614bdf82614837565b9150614beb8284614711565b915081905092915050565b6000602082019050614c0b6000830184614505565b92915050565b6000608082019050614c266000830187614505565b614c336020830186614505565b614c406040830185614b5c565b8181036060830152614c528184614598565b905095945050505050565b6000604082019050614c726000830185614505565b614c7f6020830184614690565b9392505050565b6000604082019050614c9b6000830185614505565b614ca86020830184614b5c565b9392505050565b60006020820190508181036000830152614cc98184614514565b905092915050565b6000602082019050614ce66000830184614589565b92915050565b6000602082019050614d016000830184614681565b92915050565b60006020820190508181036000830152614d2181846146d8565b905092915050565b60006020820190508181036000830152614d4281614742565b9050919050565b60006020820190508181036000830152614d6281614765565b9050919050565b60006020820190508181036000830152614d8281614788565b9050919050565b60006020820190508181036000830152614da2816147ab565b9050919050565b60006020820190508181036000830152614dc2816147ce565b9050919050565b60006020820190508181036000830152614de2816147f1565b9050919050565b60006020820190508181036000830152614e0281614814565b9050919050565b60006020820190508181036000830152614e228161485a565b9050919050565b60006020820190508181036000830152614e428161487d565b9050919050565b60006020820190508181036000830152614e62816148a0565b9050919050565b60006020820190508181036000830152614e82816148c3565b9050919050565b60006020820190508181036000830152614ea2816148e6565b9050919050565b60006020820190508181036000830152614ec281614909565b9050919050565b60006020820190508181036000830152614ee28161492c565b9050919050565b60006020820190508181036000830152614f028161494f565b9050919050565b60006020820190508181036000830152614f2281614972565b9050919050565b60006020820190508181036000830152614f4281614995565b9050919050565b60006020820190508181036000830152614f62816149b8565b9050919050565b60006020820190508181036000830152614f82816149db565b9050919050565b60006020820190508181036000830152614fa2816149fe565b9050919050565b60006020820190508181036000830152614fc281614a21565b9050919050565b60006020820190508181036000830152614fe281614a44565b9050919050565b6000602082019050818103600083015261500281614a67565b9050919050565b6000602082019050818103600083015261502281614a8a565b9050919050565b6000602082019050818103600083015261504281614aad565b9050919050565b6000602082019050818103600083015261506281614ad0565b9050919050565b6000602082019050818103600083015261508281614af3565b9050919050565b600060208201905081810360008301526150a281614b16565b9050919050565b600060208201905081810360008301526150c281614b39565b9050919050565b60006020820190506150de6000830184614b5c565b92915050565b60006150ee6150ff565b90506150fa82826154f1565b919050565b6000604051905090565b600067ffffffffffffffff82111561512457615123615629565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151505761514f615629565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561517c5761517b615629565b5b61518582615658565b9050602081019050919050565b600067ffffffffffffffff8211156151ad576151ac615629565b5b6151b682615658565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061527b82615430565b915061528683615430565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152bb576152ba61559c565b5b828201905092915050565b60006152d18261543a565b91506152dc8361543a565b92508260ff038211156152f2576152f161559c565b5b828201905092915050565b600061530882615430565b915061531383615430565b925082615323576153226155cb565b5b828204905092915050565b600061533982615430565b915061534483615430565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561537d5761537c61559c565b5b828202905092915050565b600061539382615430565b915061539e83615430565b9250828210156153b1576153b061559c565b5b828203905092915050565b60006153c782615410565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061545282615459565b9050919050565b600061546482615410565b9050919050565b600061547682615430565b9050919050565b82818337600083830152505050565b60005b838110156154aa57808201518184015260208101905061548f565b838111156154b9576000848401525b50505050565b600060028204905060018216806154d757607f821691505b602082108114156154eb576154ea6155fa565b5b50919050565b6154fa82615658565b810181811067ffffffffffffffff8211171561551957615518615629565b5b80604052505050565b600061552d82615430565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156155605761555f61559c565b5b600182019050919050565b600061557682615430565b915061558183615430565b925082615591576155906155cb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546865204368616e6765204e616d652046756e6374696f6e20697320626c6f6360008201527f6b65640000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f536369656e746973742023000000000000000000000000000000000000000000600082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4554482076616c7565206e6f7420636f72726563740000000000000000000000600082015250565b7f596f75207265717565737420746f206d616e79206d696e747300000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e616d6520616c72656164792072657365727665640000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f75206e65656420746f20686f6c642061204368756d706173730000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50757263686173652065786365656473206d617820737570706c790000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6577206e616d652069732073616d65206173207468652063757272656e742060008201527f6f6e650000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c6520646964206e6f742073746172742079657400000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f206d6f72652066726565206d696e74730000000000000000000000000000600082015250565b7f596f752072657175657374656420746f6f206d616e7920417065730000000000600082015250565b7f4e6f7420612076616c6964206e6577206e616d65000000000000000000000000600082015250565b615d54816153bc565b8114615d5f57600080fd5b50565b615d6b816153ce565b8114615d7657600080fd5b50565b615d82816153da565b8114615d8d57600080fd5b50565b615d99816153e4565b8114615da457600080fd5b50565b615db081615430565b8114615dbb57600080fd5b5056fea26469706673582212206a0a4f2e2972336097bade059e8a8b31459ea17871940c6dd096c1c3958a868c64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000beb13ac6a46fea17a3244966b4163895e389da49000000000000000000000000000000000000000000000000000000000000004068747470733a2f2f75732d63656e7472616c312d666172666574636865646c6162732d33666438392e636c6f756466756e6374696f6e732e6e65742f6170692f000000000000000000000000000000000000000000000000000000000000000700000000000000000000000003eedba3a574f610022493e7a88602a2f4883d340000000000000000000000006912b3052ff909b801c17294532e4300e1a4d17600000000000000000000000006a6f7341fb29a390d83250d66dad91b6aba6c000000000000000000000000008147c04cb5c13b482820064e2bdd8a41ab9a4b51000000000000000000000000ad17bdffd0805f6d871016964a29f910e564ccd70000000000000000000000004bca5f46db7af63cb3ffd73e68cb3a09b8410b6e0000000000000000000000004a51aa187af2814d945a1a6c5211bd873bc6abfd000000000000000000000000000000000000000000000000000000000000000700000000000000000000000000000000000000000000000000000000000000fa00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000c800000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064
-----Decoded View---------------
Arg [0] : uriBASE (string): https://us-central1-farfetchedlabs-3fd89.cloudfunctions.net/api/
Arg [1] : team (address[]): 0x03eeDba3a574F610022493E7a88602A2F4883d34,0x6912b3052FF909B801C17294532e4300E1a4d176,0x06A6f7341fb29A390d83250D66dAD91b6aBa6c00,0x8147c04cb5c13b482820064e2BdD8A41Ab9A4B51,0xAd17BdfFD0805f6d871016964a29F910e564CcD7,0x4bCA5f46dB7AF63CB3FfD73E68CB3A09B8410b6e,0x4A51aA187Af2814D945a1A6C5211BD873bc6AbfD
Arg [2] : teamShares (uint256[]): 250,200,20,30,200,200,100
Arg [3] : nft (address): 0xBEb13ac6A46FEA17A3244966b4163895e389DA49
-----Encoded View---------------
23 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [3] : 000000000000000000000000beb13ac6a46fea17a3244966b4163895e389da49
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [5] : 68747470733a2f2f75732d63656e7472616c312d666172666574636865646c61
Arg [6] : 62732d33666438392e636c6f756466756e6374696f6e732e6e65742f6170692f
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 00000000000000000000000003eedba3a574f610022493e7a88602a2f4883d34
Arg [9] : 0000000000000000000000006912b3052ff909b801c17294532e4300e1a4d176
Arg [10] : 00000000000000000000000006a6f7341fb29a390d83250d66dad91b6aba6c00
Arg [11] : 0000000000000000000000008147c04cb5c13b482820064e2bdd8a41ab9a4b51
Arg [12] : 000000000000000000000000ad17bdffd0805f6d871016964a29f910e564ccd7
Arg [13] : 0000000000000000000000004bca5f46db7af63cb3ffd73e68cb3a09b8410b6e
Arg [14] : 0000000000000000000000004a51aa187af2814d945a1a6c5211bd873bc6abfd
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [16] : 00000000000000000000000000000000000000000000000000000000000000fa
Arg [17] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [19] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [20] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [21] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000064
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.