Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 8 from a total of 8 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer From | 16879378 | 719 days ago | IN | 0 ETH | 0.00124411 | ||||
Safe Transfer Fr... | 16872224 | 720 days ago | IN | 0 ETH | 0.00133893 | ||||
Set Approval For... | 16872152 | 720 days ago | IN | 0 ETH | 0.00074563 | ||||
Transfer From | 16634400 | 753 days ago | IN | 0 ETH | 0.00311839 | ||||
Airdrop Mint | 15948981 | 849 days ago | IN | 0 ETH | 0.00306838 | ||||
Airdrop Mint | 15948978 | 849 days ago | IN | 0 ETH | 0.00301769 | ||||
Airdrop Mint | 15822582 | 866 days ago | IN | 0 ETH | 0.00174975 | ||||
Grant Admin Role | 15747119 | 877 days ago | IN | 0 ETH | 0.00104681 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CarkayousTatcorn
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "../LushLinkCronosUnlimitedDrop.sol"; contract CarkayousTatcorn is LushLinkCronosUnlimitedDrop { mapping(uint => string) private overrideIds; /////////////////////////// // Constructor ////////////////////////// constructor(address _ownerAddress) LushLinkCronosUnlimitedDrop( "Carkayous Tatcorn", "TATCORN", "https://www.lushlink.io/collection/VHB4VFMxV29BTk5YTzV2dWI3c0QwZz09/nft", _ownerAddress ){ setMemberCost(0 ether); setRegularCost(0 ether); setDefaultRoyalty(0x02E7da2Fb19469EC942321CcF40A2AC54bf69057, 750); } /////////////////////////// // Metadata ////////////////////////// function setTokenUri(uint _token, string memory _uri) external { require(_exists(_token), "nonexistent token"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); overrideIds[_token] = _uri; } function deleteTokenUri(uint _token) external { require(_exists(_token), "nonexistent token"); require(bytes(overrideIds[_token]).length == 0, "already empty"); require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); delete overrideIds[_token]; } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { if(bytes(overrideIds[_tokenId]).length > 0){ return overrideIds[_tokenId]; } else { return super.tokenURI(_tokenId); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "./utils/Hierarchy.sol"; import "./utils/SafePct.sol"; contract LushLinkCronosUnlimitedDrop is Pausable, ERC721Enumerable, ERC2981, Hierarchy { using Strings for uint256; using SafePct for uint256; using SafeMathLite for uint256; string public baseURI; // Costs. uint256 public regularCost; uint256 public memberCost; //Restrictions. address ownerAddress; // Rev Split. address[] private payees; uint16[] private shares; // Drop Timing. uint256 publicStartTime; address immutable FACTORY_ADDRESS; // struct Infos { uint256 regularCost; uint256 memberCost; uint256 totalSupply; uint256 maxMintPerAddress; uint256 maxMintPerTx; } constructor( string memory name_, string memory symbol_, string memory baseURI_, address ownerAddress_ ) ERC721(name_, symbol_) Hierarchy(ownerAddress_) { setBaseURI(baseURI_); ownerAddress = ownerAddress_; FACTORY_ADDRESS = msg.sender; } function getInfo() public view returns (Infos memory) { Infos memory allInfos; allInfos.regularCost = regularCost; allInfos.memberCost = memberCost; allInfos.totalSupply = totalSupply(); return allInfos; } // Pricing. function mintCost(address _address) public view returns (uint256) { require(_address != address(0), "not address 0"); return regularCost; } function setRegularCost(uint256 _cost) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); regularCost = _cost; } function setMemberCost(uint256 _cost) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); memberCost = _cost; } // Minting. function mint(uint256 _mintAmount) public payable whenNotPaused { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to mint"); require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 cost = mintCost(msg.sender); uint256 totalCost = cost.mul(_mintAmount); require(totalCost <= msg.value, "Insufficient Funds"); for (uint256 i = 1; i <= _mintAmount; i++) { _mintNextId(msg.sender); } } function airdropMint(address _to, uint256 _amount) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to airdrop"); for (uint256 i = 1; i <= _amount; i++) { _mintNextId(_to); } } function airdropMintBatch(address[] memory destinations) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to airdrop"); for (uint i=0; i<destinations.length; i++) { _mintNextId(destinations[i]); } } function _mintNextId(address to) private { uint256 id = totalSupply() + 1; _safeMint(to, id); } // Burn. function burn(uint256 tokenId) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } // Metadata. function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = string(abi.encodePacked(baseURI, "/", Strings.toString(_tokenId),".json")); return _tokenURI; } function setBaseURI(string memory _newBaseURI) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to set base uri"); baseURI = _newBaseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // Pausing. function pause() public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to pause contract"); _pause(); } function unpause() public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); _unpause(); } // Access function grantAdminRole(address account) public { grantRole(DEFAULT_ADMIN_ROLE, account); } function removeAdminRole(address account) public { revokeRole(DEFAULT_ADMIN_ROLE, account); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view override returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); } // Royalties function setDefaultRoyalty(address receiver, uint96 feeNumerator) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to set royalty"); _setDefaultRoyalty(receiver, feeNumerator); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, AccessControl, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/access/AccessControl.sol"; /** * @title Hierarchy * @author Alberto Cuesta Canada * @notice Implements a dynamic role structure for Roles */ contract Hierarchy is AccessControl { event AdminRoleSet(bytes32 roleId, bytes32 adminRoleId); /// @dev Add `root` as a member of the root role. constructor (address root) { _setupRole(DEFAULT_ADMIN_ROLE, root); } /// @dev Restricted to members of the role passed as a parameter. modifier onlyMember(bytes32 roleId) { require(hasRole(roleId, msg.sender), "Restricted to members."); _; } /// @dev Create a new role with the specified admin role. function addRole(bytes32 roleId, bytes32 adminRoleId) public onlyMember(adminRoleId) { _setRoleAdmin(roleId, adminRoleId); emit AdminRoleSet(roleId, adminRoleId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./SafeMathLite.sol"; /** * @dev Compute percentages safely without phantom overflows. * * Intermediate operations can overflow even when the result will always * fit into computed type. Developers usually * assume that overflows raise errors. `SafePct` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafePct { using SafeMathLite for uint256; /** * Requirements: * * - intermediate operations must revert on overflow */ function mulDiv(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { require(z > 0, "Division by zero"); if (x == 0) return 0; uint256 xy = x * y; if (xy / x == y) { // no overflow happened - same as in SafeMath mul return xy / z; } //slither-disable-next-line divide-before-multiply uint256 a = x / z; uint256 b = x % z; // x = a * z + b //slither-disable-next-line divide-before-multiply uint256 c = y / z; uint256 d = y % z; // y = c * z + d return (a.mul(c).mul(z)).add(a.mul(d)).add(b.mul(c)).add(b.mul(d).div(z)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; library SafeMathLite{ /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_ownerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"roleId","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"adminRoleId","type":"bytes32"}],"name":"AdminRoleSet","type":"event"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"roleId","type":"bytes32"},{"internalType":"bytes32","name":"adminRoleId","type":"bytes32"}],"name":"addRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"destinations","type":"address[]"}],"name":"airdropMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token","type":"uint256"}],"name":"deleteTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInfo","outputs":[{"components":[{"internalType":"uint256","name":"regularCost","type":"uint256"},{"internalType":"uint256","name":"memberCost","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxMintPerAddress","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"internalType":"struct LushLinkCronosUnlimitedDrop.Infos","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memberCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"regularCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setMemberCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setRegularCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_token","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200680638038062006806833981810160405281019062000037919062000763565b6040518060400160405280601181526020017f4361726b61796f757320546174636f726e0000000000000000000000000000008152506040518060400160405280600781526020017f544154434f524e00000000000000000000000000000000000000000000000000815250604051806080016040528060478152602001620067bf604791398380848460008060006101000a81548160ff0219169083151502179055508160019080519060200190620000f39291906200069c565b5080600290805190602001906200010c9291906200069c565b505050620001246000801b826200020560201b60201c565b5062000136826200021b60201b60201c565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b8152505050505050620001c460006200029d60201b60201c565b620001d66000620002d560201b60201c565b620001fe7302e7da2fb19469ec942321ccf40a2ac54bf690576102ee6200030d60201b60201c565b5062000a98565b6200021782826200038960201b60201c565b5050565b6200023f6000801b620002336200047b60201b60201c565b6200048360201b60201c565b62000281576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002789062000897565b60405180910390fd5b80600e9080519060200190620002999291906200069c565b5050565b620002c16000801b620002b56200047b60201b60201c565b6200048360201b60201c565b620002cb57600080fd5b8060108190555050565b620002f96000801b620002ed6200047b60201b60201c565b6200048360201b60201c565b6200030357600080fd5b80600f8190555050565b620003316000801b620003256200047b60201b60201c565b6200048360201b60201c565b62000373576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036a9062000853565b60405180910390fd5b620003858282620004ee60201b60201c565b5050565b6200039b82826200048360201b60201c565b62000477576001600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200041c6200047b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b6000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b620004fe6200069260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200055f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005569062000831565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005c99062000875565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b828054620006aa90620008fe565b90600052602060002090601f016020900481019282620006ce57600085556200071a565b82601f10620006e957805160ff19168380011785556200071a565b828001600101855582156200071a579182015b8281111562000719578251825591602001919060010190620006fc565b5b5090506200072991906200072d565b5090565b5b80821115620007485760008160009055506001016200072e565b5090565b6000815190506200075d8162000a7e565b92915050565b6000602082840312156200077c576200077b62000963565b5b60006200078c848285016200074c565b91505092915050565b6000620007a4602a83620008b9565b9150620007b18262000968565b604082019050919050565b6000620007cb602483620008b9565b9150620007d882620009b7565b604082019050919050565b6000620007f2601983620008b9565b9150620007ff8262000a06565b602082019050919050565b600062000819602583620008b9565b9150620008268262000a2f565b604082019050919050565b600060208201905081810360008301526200084c8162000795565b9050919050565b600060208201905081810360008301526200086e81620007bc565b9050919050565b600060208201905081810360008301526200089081620007e3565b9050919050565b60006020820190508181036000830152620008b2816200080a565b9050919050565b600082825260208201905092915050565b6000620008d782620008de565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200091757607f821691505b602082108114156200092e576200092d62000934565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2073657420726f7960008201527f616c747900000000000000000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742062617360008201527f6520757269000000000000000000000000000000000000000000000000000000602082015250565b62000a8981620008ca565b811462000a9557600080fd5b50565b60805160601c615d0b62000ab460003960005050615d0b6000f3fe6080604052600436106102675760003560e01c80635a9b0b8911610144578063a22cb465116100b6578063d547741f1161007a578063d547741f1461093e578063dc09e92314610967578063dccfe31014610990578063e1ec6294146109b9578063e985e9c5146109e2578063ea798c6d14610a1f57610267565b8063a22cb4651461085b578063b42fa83d14610884578063b88d4fde146108af578063c634b78e146108d8578063c87b56dd1461090157610267565b80638456cb59116101085780638456cb591461076c57806391d148541461078357806395d89b41146107c0578063a0712d68146107eb578063a123e64014610807578063a217fddf1461083057610267565b80635a9b0b89146106715780635c975abb1461069c5780636352211e146106c75780636c0360eb1461070457806370a082311461072f57610267565b80632acc659e116101dd57806342842e0e116101a157806342842e0e1461056757806342966c68146105905780634f6ccce7146105b957806351511cb4146105f657806355f804b31461061f57806357f7789e1461064857610267565b80632acc659e146104845780632f2ff15d146104c15780632f745c59146104ea57806336568abe146105275780633f4ba83a1461055057610267565b8063095ea7b31161022f578063095ea7b31461036357806318160ddd1461038c57806322ad0670146103b757806323b872dd146103e0578063248a9ca3146104095780632a55205a1461044657610267565b806301ffc9a71461026c57806304634d8d146102a957806306323f8d146102d257806306fdde03146102fb578063081812fc14610326575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613fb2565b610a4a565b6040516102a09190614929565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613e7c565b610a5c565b005b3480156102de57600080fd5b506102f960048036038101906102f49190613f72565b610abd565b005b34801561030757600080fd5b50610310610b4f565b60405161031d9190614988565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190614055565b610be1565b60405161035a9190614899565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190613e3c565b610c66565b005b34801561039857600080fd5b506103a1610d7e565b6040516103ae9190614e05565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190613e3c565b610d8b565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613d26565b610e0d565b005b34801561041557600080fd5b50610430600480360381019061042b9190613f05565b610e6d565b60405161043d9190614944565b60405180910390f35b34801561045257600080fd5b5061046d600480360381019061046891906140de565b610e8d565b60405161047b929190614900565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190613cb9565b611078565b6040516104b89190614e05565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190613f32565b6110f3565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613e3c565b611114565b60405161051e9190614e05565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613f32565b6111b9565b005b34801561055c57600080fd5b5061056561123c565b005b34801561057357600080fd5b5061058e60048036038101906105899190613d26565b611263565b005b34801561059c57600080fd5b506105b760048036038101906105b29190614055565b611283565b005b3480156105c557600080fd5b506105e060048036038101906105db9190614055565b6112df565b6040516105ed9190614e05565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613ebc565b611350565b005b34801561062b57600080fd5b506106466004803603810190610641919061400c565b6113e9565b005b34801561065457600080fd5b5061066f600480360381019061066a9190614082565b611456565b005b34801561067d57600080fd5b506106866114e7565b6040516106939190614dea565b60405180910390f35b3480156106a857600080fd5b506106b1611527565b6040516106be9190614929565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190614055565b61153d565b6040516106fb9190614899565b60405180910390f35b34801561071057600080fd5b506107196115ef565b6040516107269190614988565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613cb9565b61167d565b6040516107639190614e05565b60405180910390f35b34801561077857600080fd5b50610781611735565b005b34801561078f57600080fd5b506107aa60048036038101906107a59190613f32565b611792565b6040516107b79190614929565b60405180910390f35b3480156107cc57600080fd5b506107d56117fd565b6040516107e29190614988565b60405180910390f35b61080560048036038101906108009190614055565b61188f565b005b34801561081357600080fd5b5061082e60048036038101906108299190614055565b611a04565b005b34801561083c57600080fd5b50610845611aed565b6040516108529190614944565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613dfc565b611af4565b005b34801561089057600080fd5b50610899611b0a565b6040516108a69190614e05565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d19190613d79565b611b10565b005b3480156108e457600080fd5b506108ff60048036038101906108fa9190613cb9565b611b72565b005b34801561090d57600080fd5b5061092860048036038101906109239190614055565b611b82565b6040516109359190614988565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613f32565b611c60565b005b34801561097357600080fd5b5061098e60048036038101906109899190614055565b611c81565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613cb9565b611ca8565b005b3480156109c557600080fd5b506109e060048036038101906109db9190614055565b611cb8565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613ce6565b611cdf565b604051610a169190614929565b60405180910390f35b348015610a2b57600080fd5b50610a34611d73565b604051610a419190614e05565b60405180910390f35b6000610a5582611d79565b9050919050565b610a706000801b610a6b611df3565b611792565b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690614d2a565b60405180910390fd5b610ab98282611dfb565b5050565b80610ac88133611792565b610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90614a0a565b60405180910390fd5b610b118383611f91565b7fe4723ce431fe464957aed6348016e9a32871bf3e3781d3642ea487276e6a68b68383604051610b4292919061495f565b60405180910390a1505050565b606060018054610b5e90615142565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8a90615142565b8015610bd75780601f10610bac57610100808354040283529160200191610bd7565b820191906000526020600020905b815481529060010190602001808311610bba57829003601f168201915b5050505050905090565b6000610bec82611fed565b610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290614bea565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c718261153d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990614c6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d01611df3565b73ffffffffffffffffffffffffffffffffffffffff161480610d305750610d2f81610d2a611df3565b611cdf565b5b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690614b6a565b60405180910390fd5b610d798383612059565b505050565b6000600980549050905090565b610d9f6000801b610d9a611df3565b611792565b610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590614d0a565b60405180910390fd5b6000600190505b818111610e0857610df583612112565b8080610e00906151a5565b915050610de5565b505050565b610e1e610e18611df3565b82612138565b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490614caa565b60405180910390fd5b610e688383836121e2565b505050565b6000600d6000838152602001908152602001600020600101549050919050565b6000806000600c60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561102357600b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061102d612449565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110599190614fb2565b6110639190614f81565b90508160000151819350935050509250929050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090614c4a565b60405180910390fd5b600f549050919050565b6110fc82610e6d565b61110581612453565b61110f8383612467565b505050565b600061111f8361167d565b8210611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906149ea565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111c1611df3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614daa565b60405180910390fd5b6112388282612548565b5050565b6112506000801b61124b611df3565b611792565b61125957600080fd5b61126161262a565b565b61127e83838360405180602001604052806000815250611b10565b505050565b61129461128e611df3565b82612138565b6112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90614d4a565b60405180910390fd5b6112dc816126cb565b50565b60006112e9610d7e565b821061132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190614cca565b60405180910390fd5b6009828154811061133e5761133d6152db565b5b90600052602060002001549050919050565b6113646000801b61135f611df3565b611792565b6113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90614d0a565b60405180910390fd5b60005b81518110156113e5576113d28282815181106113c5576113c46152db565b5b6020026020010151612112565b80806113dd906151a5565b9150506113a6565b5050565b6113fd6000801b6113f8611df3565b611792565b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614dca565b60405180910390fd5b80600e9080519060200190611452929190613996565b5050565b61145f82611fed565b61149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590614c0a565b60405180910390fd5b6114b26000801b6114ad611df3565b611792565b6114bb57600080fd5b806015600084815260200190815260200160002090805190602001906114e2929190613996565b505050565b6114ef613a1c565b6114f7613a1c565b600f54816000018181525050601054816020018181525050611517610d7e565b8160400181815250508091505090565b60008060009054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614baa565b60405180910390fd5b80915050919050565b600e80546115fc90615142565b80601f016020809104026020016040519081016040528092919081815260200182805461162890615142565b80156116755780601f1061164a57610100808354040283529160200191611675565b820191906000526020600020905b81548152906001019060200180831161165857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590614b8a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117496000801b611744611df3565b611792565b611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90614c8a565b60405180910390fd5b6117906127e8565b565b6000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606002805461180c90615142565b80601f016020809104026020016040519081016040528092919081815260200182805461183890615142565b80156118855780601f1061185a57610100808354040283529160200191611885565b820191906000526020600020905b81548152906001019060200180831161186857829003601f168201915b5050505050905090565b611897611527565b156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614b4a565b60405180910390fd5b6118eb6000801b6118e6611df3565b611792565b61192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614a4a565b60405180910390fd5b6000811161196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490614d8a565b60405180910390fd5b600061197833611078565b9050600061198f838361288a90919063ffffffff16565b9050348111156119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90614aaa565b60405180910390fd5b6000600190505b8381116119fe576119eb33612112565b80806119f6906151a5565b9150506119db565b50505050565b611a0d81611fed565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4390614c0a565b60405180910390fd5b6000601560008381526020019081526020016000208054611a6c90615142565b905014611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590614b0a565b60405180910390fd5b611ac26000801b611abd611df3565b611792565b611acb57600080fd5b601560008281526020019081526020016000206000611aea9190613a4b565b50565b6000801b81565b611b06611aff611df3565b83836128a0565b5050565b60105481565b611b21611b1b611df3565b83612138565b611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614caa565b60405180910390fd5b611b6c84848484612a0d565b50505050565b611b7f6000801b826110f3565b50565b60606000601560008481526020019081526020016000208054611ba490615142565b90501115611c4f57601560008381526020019081526020016000208054611bca90615142565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf690615142565b8015611c435780601f10611c1857610100808354040283529160200191611c43565b820191906000526020600020905b815481529060010190602001808311611c2657829003601f168201915b50505050509050611c5b565b611c5882612a69565b90505b919050565b611c6982610e6d565b611c7281612453565b611c7c8383612548565b505050565b611c956000801b611c90611df3565b611792565b611c9e57600080fd5b8060108190555050565b611cb56000801b82611c60565b50565b611ccc6000801b611cc7611df3565b611792565b611cd557600080fd5b80600f8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dec5750611deb82612aeb565b5b9050919050565b600033905090565b611e03612449565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614cea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614d6a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000611f9c83610e6d565b905081600d6000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120cc8361153d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600161211e610d7e565b6121289190614f2b565b90506121348282612b65565b5050565b600061214382611fed565b612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614b2a565b60405180910390fd5b600061218d8361153d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121d957506121d86000801b6121d3611df3565b611792565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122028261153d565b73ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90614a6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf90614aca565b60405180910390fd5b6122d3838383612b83565b6122de600082612059565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232e919061500c565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123859190614f2b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612444838383612c97565b505050565b6000612710905090565b6124648161245f611df3565b612c9c565b50565b6124718282611792565b612544576001600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506124e9611df3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6125528282611792565b15612626576000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125cb611df3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612632611527565b612671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612668906149ca565b60405180910390fd5b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126b4611df3565b6040516126c19190614899565b60405180910390a1565b60006126d68261153d565b90506126e481600084612b83565b6126ef600083612059565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273f919061500c565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127e481600084612c97565b5050565b6127f0611527565b15612830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282790614b4a565b60405180910390fd5b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612873611df3565b6040516128809190614899565b60405180910390a1565b600081836128989190614fb2565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614aea565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a009190614929565b60405180910390a3505050565b612a188484846121e2565b612a2484848484612d39565b612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90614a2a565b60405180910390fd5b50505050565b6060612a7482611fed565b612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90614c2a565b60405180910390fd5b6000600e612ac084612ed0565b604051602001612ad1929190614825565b604051602081830303815290604052905080915050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5e5750612b5d82613031565b5b9050919050565b612b7f8282604051806020016040528060008152506130ab565b5050565b612b8e838383613106565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bd157612bcc8161310b565b612c10565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c0f57612c0e8382613154565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5357612c4e816132c1565b612c92565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c9157612c908282613392565b5b5b505050565b505050565b612ca68282611792565b612d3557612ccb8173ffffffffffffffffffffffffffffffffffffffff166014613411565b612cd98360001c6020613411565b604051602001612cea92919061485f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c9190614988565b60405180910390fd5b5050565b6000612d5a8473ffffffffffffffffffffffffffffffffffffffff1661364d565b15612ec3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d83611df3565b8786866040518563ffffffff1660e01b8152600401612da594939291906148b4565b602060405180830381600087803b158015612dbf57600080fd5b505af1925050508015612df057506040513d601f19601f82011682018060405250810190612ded9190613fdf565b60015b612e73573d8060008114612e20576040519150601f19603f3d011682016040523d82523d6000602084013e612e25565b606091505b50600081511415612e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6290614a2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ec8565b600190505b949350505050565b60606000821415612f18576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061302c565b600082905060005b60008214612f4a578080612f33906151a5565b915050600a82612f439190614f81565b9150612f20565b60008167ffffffffffffffff811115612f6657612f6561530a565b5b6040519080825280601f01601f191660200182016040528015612f985781602001600182028036833780820191505090505b5090505b6000851461302557600182612fb1919061500c565b9150600a85612fc091906151ee565b6030612fcc9190614f2b565b60f81b818381518110612fe257612fe16152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561301e9190614f81565b9450612f9c565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130a457506130a382613670565b5b9050919050565b6130b58383613752565b6130c26000848484612d39565b613101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f890614a2a565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131618461167d565b61316b919061500c565b9050600060086000848152602001908152602001600020549050818114613250576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506132d5919061500c565b90506000600a6000848152602001908152602001600020549050600060098381548110613305576133046152db565b5b906000526020600020015490508060098381548110613327576133266152db565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613376576133756152ac565b5b6001900381819060005260206000200160009055905550505050565b600061339d8361167d565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6060600060028360026134249190614fb2565b61342e9190614f2b565b67ffffffffffffffff8111156134475761344661530a565b5b6040519080825280601f01601f1916602001820160405280156134795781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134b1576134b06152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613515576135146152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135559190614fb2565b61355f9190614f2b565b90505b60018111156135ff577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135a1576135a06152db565b5b1a60f81b8282815181106135b8576135b76152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135f890615118565b9050613562565b5060008414613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a906149aa565b60405180910390fd5b8091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061373b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061374b575061374a8261392c565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b990614bca565b60405180910390fd5b6137cb81611fed565b1561380b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380290614a8a565b60405180910390fd5b61381760008383612b83565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138679190614f2b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461392860008383612c97565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546139a290615142565b90600052602060002090601f0160209004810192826139c45760008555613a0b565b82601f106139dd57805160ff1916838001178555613a0b565b82800160010185558215613a0b579182015b82811115613a0a5782518255916020019190600101906139ef565b5b509050613a189190613a8b565b5090565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b508054613a5790615142565b6000825580601f10613a695750613a88565b601f016020900490600052602060002090810190613a879190613a8b565b5b50565b5b80821115613aa4576000816000905550600101613a8c565b5090565b6000613abb613ab684614e45565b614e20565b90508083825260208201905082856020860282011115613ade57613add61533e565b5b60005b85811015613b0e5781613af48882613b9c565b845260208401935060208301925050600181019050613ae1565b5050509392505050565b6000613b2b613b2684614e71565b614e20565b905082815260208101848484011115613b4757613b46615343565b5b613b528482856150d6565b509392505050565b6000613b6d613b6884614ea2565b614e20565b905082815260208101848484011115613b8957613b88615343565b5b613b948482856150d6565b509392505050565b600081359050613bab81615c4b565b92915050565b600082601f830112613bc657613bc5615339565b5b8135613bd6848260208601613aa8565b91505092915050565b600081359050613bee81615c62565b92915050565b600081359050613c0381615c79565b92915050565b600081359050613c1881615c90565b92915050565b600081519050613c2d81615c90565b92915050565b600082601f830112613c4857613c47615339565b5b8135613c58848260208601613b18565b91505092915050565b600082601f830112613c7657613c75615339565b5b8135613c86848260208601613b5a565b91505092915050565b600081359050613c9e81615ca7565b92915050565b600081359050613cb381615cbe565b92915050565b600060208284031215613ccf57613cce61534d565b5b6000613cdd84828501613b9c565b91505092915050565b60008060408385031215613cfd57613cfc61534d565b5b6000613d0b85828601613b9c565b9250506020613d1c85828601613b9c565b9150509250929050565b600080600060608486031215613d3f57613d3e61534d565b5b6000613d4d86828701613b9c565b9350506020613d5e86828701613b9c565b9250506040613d6f86828701613c8f565b9150509250925092565b60008060008060808587031215613d9357613d9261534d565b5b6000613da187828801613b9c565b9450506020613db287828801613b9c565b9350506040613dc387828801613c8f565b925050606085013567ffffffffffffffff811115613de457613de3615348565b5b613df087828801613c33565b91505092959194509250565b60008060408385031215613e1357613e1261534d565b5b6000613e2185828601613b9c565b9250506020613e3285828601613bdf565b9150509250929050565b60008060408385031215613e5357613e5261534d565b5b6000613e6185828601613b9c565b9250506020613e7285828601613c8f565b9150509250929050565b60008060408385031215613e9357613e9261534d565b5b6000613ea185828601613b9c565b9250506020613eb285828601613ca4565b9150509250929050565b600060208284031215613ed257613ed161534d565b5b600082013567ffffffffffffffff811115613ef057613eef615348565b5b613efc84828501613bb1565b91505092915050565b600060208284031215613f1b57613f1a61534d565b5b6000613f2984828501613bf4565b91505092915050565b60008060408385031215613f4957613f4861534d565b5b6000613f5785828601613bf4565b9250506020613f6885828601613b9c565b9150509250929050565b60008060408385031215613f8957613f8861534d565b5b6000613f9785828601613bf4565b9250506020613fa885828601613bf4565b9150509250929050565b600060208284031215613fc857613fc761534d565b5b6000613fd684828501613c09565b91505092915050565b600060208284031215613ff557613ff461534d565b5b600061400384828501613c1e565b91505092915050565b6000602082840312156140225761402161534d565b5b600082013567ffffffffffffffff8111156140405761403f615348565b5b61404c84828501613c61565b91505092915050565b60006020828403121561406b5761406a61534d565b5b600061407984828501613c8f565b91505092915050565b600080604083850312156140995761409861534d565b5b60006140a785828601613c8f565b925050602083013567ffffffffffffffff8111156140c8576140c7615348565b5b6140d485828601613c61565b9150509250929050565b600080604083850312156140f5576140f461534d565b5b600061410385828601613c8f565b925050602061411485828601613c8f565b9150509250929050565b61412781615040565b82525050565b61413681615052565b82525050565b6141458161505e565b82525050565b600061415682614ee8565b6141608185614efe565b93506141708185602086016150e5565b61417981615352565b840191505092915050565b600061418f82614ef3565b6141998185614f0f565b93506141a98185602086016150e5565b6141b281615352565b840191505092915050565b60006141c882614ef3565b6141d28185614f20565b93506141e28185602086016150e5565b80840191505092915050565b600081546141fb81615142565b6142058186614f20565b94506001821660008114614220576001811461423157614264565b60ff19831686528186019350614264565b61423a85614ed3565b60005b8381101561425c5781548189015260018201915060208101905061423d565b838801955050505b50505092915050565b600061427a602083614f0f565b915061428582615363565b602082019050919050565b600061429d601483614f0f565b91506142a88261538c565b602082019050919050565b60006142c0602b83614f0f565b91506142cb826153b5565b604082019050919050565b60006142e3601683614f0f565b91506142ee82615404565b602082019050919050565b6000614306603283614f0f565b91506143118261542d565b604082019050919050565b6000614329601d83614f0f565b91506143348261547c565b602082019050919050565b600061434c602583614f0f565b9150614357826154a5565b604082019050919050565b600061436f601c83614f0f565b915061437a826154f4565b602082019050919050565b6000614392601283614f0f565b915061439d8261551d565b602082019050919050565b60006143b5602483614f0f565b91506143c082615546565b604082019050919050565b60006143d8601983614f0f565b91506143e382615595565b602082019050919050565b60006143fb600d83614f0f565b9150614406826155be565b602082019050919050565b600061441e602c83614f0f565b9150614429826155e7565b604082019050919050565b6000614441601083614f0f565b915061444c82615636565b602082019050919050565b6000614464603883614f0f565b915061446f8261565f565b604082019050919050565b6000614487602a83614f0f565b9150614492826156ae565b604082019050919050565b60006144aa602983614f0f565b91506144b5826156fd565b604082019050919050565b60006144cd602083614f0f565b91506144d88261574c565b602082019050919050565b60006144f0602c83614f0f565b91506144fb82615775565b604082019050919050565b6000614513601183614f0f565b915061451e826157c4565b602082019050919050565b6000614536600583614f20565b9150614541826157ed565b600582019050919050565b6000614559602f83614f0f565b915061456482615816565b604082019050919050565b600061457c600d83614f0f565b915061458782615865565b602082019050919050565b600061459f602183614f0f565b91506145aa8261588e565b604082019050919050565b60006145c2602783614f0f565b91506145cd826158dd565b604082019050919050565b60006145e5603183614f0f565b91506145f08261592c565b604082019050919050565b6000614608602c83614f0f565b91506146138261597b565b604082019050919050565b600061462b601783614f20565b9150614636826159ca565b601782019050919050565b600061464e602a83614f0f565b9150614659826159f3565b604082019050919050565b6000614671602083614f0f565b915061467c82615a42565b602082019050919050565b6000614694602483614f0f565b915061469f82615a6b565b604082019050919050565b60006146b7603083614f0f565b91506146c282615aba565b604082019050919050565b60006146da601983614f0f565b91506146e582615b09565b602082019050919050565b60006146fd601b83614f0f565b915061470882615b32565b602082019050919050565b6000614720601183614f20565b915061472b82615b5b565b601182019050919050565b6000614743602f83614f0f565b915061474e82615b84565b604082019050919050565b6000614766600183614f20565b915061477182615bd3565b600182019050919050565b6000614789602583614f0f565b915061479482615bfc565b604082019050919050565b60a0820160008201516147b56000850182614807565b5060208201516147c86020850182614807565b5060408201516147db6040850182614807565b5060608201516147ee6060850182614807565b5060808201516148016080850182614807565b50505050565b614810816150b4565b82525050565b61481f816150b4565b82525050565b600061483182856141ee565b915061483c82614759565b915061484882846141bd565b915061485382614529565b91508190509392505050565b600061486a8261461e565b915061487682856141bd565b915061488182614713565b915061488d82846141bd565b91508190509392505050565b60006020820190506148ae600083018461411e565b92915050565b60006080820190506148c9600083018761411e565b6148d6602083018661411e565b6148e36040830185614816565b81810360608301526148f5818461414b565b905095945050505050565b6000604082019050614915600083018561411e565b6149226020830184614816565b9392505050565b600060208201905061493e600083018461412d565b92915050565b6000602082019050614959600083018461413c565b92915050565b6000604082019050614974600083018561413c565b614981602083018461413c565b9392505050565b600060208201905081810360008301526149a28184614184565b905092915050565b600060208201905081810360008301526149c38161426d565b9050919050565b600060208201905081810360008301526149e381614290565b9050919050565b60006020820190508181036000830152614a03816142b3565b9050919050565b60006020820190508181036000830152614a23816142d6565b9050919050565b60006020820190508181036000830152614a43816142f9565b9050919050565b60006020820190508181036000830152614a638161431c565b9050919050565b60006020820190508181036000830152614a838161433f565b9050919050565b60006020820190508181036000830152614aa381614362565b9050919050565b60006020820190508181036000830152614ac381614385565b9050919050565b60006020820190508181036000830152614ae3816143a8565b9050919050565b60006020820190508181036000830152614b03816143cb565b9050919050565b60006020820190508181036000830152614b23816143ee565b9050919050565b60006020820190508181036000830152614b4381614411565b9050919050565b60006020820190508181036000830152614b6381614434565b9050919050565b60006020820190508181036000830152614b8381614457565b9050919050565b60006020820190508181036000830152614ba38161447a565b9050919050565b60006020820190508181036000830152614bc38161449d565b9050919050565b60006020820190508181036000830152614be3816144c0565b9050919050565b60006020820190508181036000830152614c03816144e3565b9050919050565b60006020820190508181036000830152614c2381614506565b9050919050565b60006020820190508181036000830152614c438161454c565b9050919050565b60006020820190508181036000830152614c638161456f565b9050919050565b60006020820190508181036000830152614c8381614592565b9050919050565b60006020820190508181036000830152614ca3816145b5565b9050919050565b60006020820190508181036000830152614cc3816145d8565b9050919050565b60006020820190508181036000830152614ce3816145fb565b9050919050565b60006020820190508181036000830152614d0381614641565b9050919050565b60006020820190508181036000830152614d2381614664565b9050919050565b60006020820190508181036000830152614d4381614687565b9050919050565b60006020820190508181036000830152614d63816146aa565b9050919050565b60006020820190508181036000830152614d83816146cd565b9050919050565b60006020820190508181036000830152614da3816146f0565b9050919050565b60006020820190508181036000830152614dc381614736565b9050919050565b60006020820190508181036000830152614de38161477c565b9050919050565b600060a082019050614dff600083018461479f565b92915050565b6000602082019050614e1a6000830184614816565b92915050565b6000614e2a614e3b565b9050614e368282615174565b919050565b6000604051905090565b600067ffffffffffffffff821115614e6057614e5f61530a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e8c57614e8b61530a565b5b614e9582615352565b9050602081019050919050565b600067ffffffffffffffff821115614ebd57614ebc61530a565b5b614ec682615352565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f36826150b4565b9150614f41836150b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f7657614f7561521f565b5b828201905092915050565b6000614f8c826150b4565b9150614f97836150b4565b925082614fa757614fa661524e565b5b828204905092915050565b6000614fbd826150b4565b9150614fc8836150b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150015761500061521f565b5b828202905092915050565b6000615017826150b4565b9150615022836150b4565b9250828210156150355761503461521f565b5b828203905092915050565b600061504b82615094565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156151035780820151818401526020810190506150e8565b83811115615112576000848401525b50505050565b6000615123826150b4565b915060008214156151375761513661521f565b5b600182039050919050565b6000600282049050600182168061515a57607f821691505b6020821081141561516e5761516d61527d565b5b50919050565b61517d82615352565b810181811067ffffffffffffffff8211171561519c5761519b61530a565b5b80604052505050565b60006151b0826150b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151e3576151e261521f565b5b600182019050919050565b60006151f9826150b4565b9150615204836150b4565b9250826152145761521361524e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f5265737472696374656420746f206d656d626572732e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f206d696e74000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f616c726561647920656d70747900000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207061757365206360008201527f6f6e747261637400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2061697264726f70600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2073657420726f7960008201527f616c747900000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742062617360008201527f6520757269000000000000000000000000000000000000000000000000000000602082015250565b615c5481615040565b8114615c5f57600080fd5b50565b615c6b81615052565b8114615c7657600080fd5b50565b615c828161505e565b8114615c8d57600080fd5b50565b615c9981615068565b8114615ca457600080fd5b50565b615cb0816150b4565b8114615cbb57600080fd5b50565b615cc7816150be565b8114615cd257600080fd5b5056fea2646970667358221220c6c17f2ec4ce0d0c7a8ece5208848c6410062ba5eaee0a671d797230dc141bdb64736f6c6343000807003368747470733a2f2f7777772e6c7573686c696e6b2e696f2f636f6c6c656374696f6e2f5648423456464d7856323942546b3559547a563264574933633051775a7a30392f6e667400000000000000000000000024462722e63ca1bab3a2311dffa4a3a21665647a
Deployed Bytecode
0x6080604052600436106102675760003560e01c80635a9b0b8911610144578063a22cb465116100b6578063d547741f1161007a578063d547741f1461093e578063dc09e92314610967578063dccfe31014610990578063e1ec6294146109b9578063e985e9c5146109e2578063ea798c6d14610a1f57610267565b8063a22cb4651461085b578063b42fa83d14610884578063b88d4fde146108af578063c634b78e146108d8578063c87b56dd1461090157610267565b80638456cb59116101085780638456cb591461076c57806391d148541461078357806395d89b41146107c0578063a0712d68146107eb578063a123e64014610807578063a217fddf1461083057610267565b80635a9b0b89146106715780635c975abb1461069c5780636352211e146106c75780636c0360eb1461070457806370a082311461072f57610267565b80632acc659e116101dd57806342842e0e116101a157806342842e0e1461056757806342966c68146105905780634f6ccce7146105b957806351511cb4146105f657806355f804b31461061f57806357f7789e1461064857610267565b80632acc659e146104845780632f2ff15d146104c15780632f745c59146104ea57806336568abe146105275780633f4ba83a1461055057610267565b8063095ea7b31161022f578063095ea7b31461036357806318160ddd1461038c57806322ad0670146103b757806323b872dd146103e0578063248a9ca3146104095780632a55205a1461044657610267565b806301ffc9a71461026c57806304634d8d146102a957806306323f8d146102d257806306fdde03146102fb578063081812fc14610326575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613fb2565b610a4a565b6040516102a09190614929565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613e7c565b610a5c565b005b3480156102de57600080fd5b506102f960048036038101906102f49190613f72565b610abd565b005b34801561030757600080fd5b50610310610b4f565b60405161031d9190614988565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190614055565b610be1565b60405161035a9190614899565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190613e3c565b610c66565b005b34801561039857600080fd5b506103a1610d7e565b6040516103ae9190614e05565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190613e3c565b610d8b565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613d26565b610e0d565b005b34801561041557600080fd5b50610430600480360381019061042b9190613f05565b610e6d565b60405161043d9190614944565b60405180910390f35b34801561045257600080fd5b5061046d600480360381019061046891906140de565b610e8d565b60405161047b929190614900565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a69190613cb9565b611078565b6040516104b89190614e05565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190613f32565b6110f3565b005b3480156104f657600080fd5b50610511600480360381019061050c9190613e3c565b611114565b60405161051e9190614e05565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613f32565b6111b9565b005b34801561055c57600080fd5b5061056561123c565b005b34801561057357600080fd5b5061058e60048036038101906105899190613d26565b611263565b005b34801561059c57600080fd5b506105b760048036038101906105b29190614055565b611283565b005b3480156105c557600080fd5b506105e060048036038101906105db9190614055565b6112df565b6040516105ed9190614e05565b60405180910390f35b34801561060257600080fd5b5061061d60048036038101906106189190613ebc565b611350565b005b34801561062b57600080fd5b506106466004803603810190610641919061400c565b6113e9565b005b34801561065457600080fd5b5061066f600480360381019061066a9190614082565b611456565b005b34801561067d57600080fd5b506106866114e7565b6040516106939190614dea565b60405180910390f35b3480156106a857600080fd5b506106b1611527565b6040516106be9190614929565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190614055565b61153d565b6040516106fb9190614899565b60405180910390f35b34801561071057600080fd5b506107196115ef565b6040516107269190614988565b60405180910390f35b34801561073b57600080fd5b5061075660048036038101906107519190613cb9565b61167d565b6040516107639190614e05565b60405180910390f35b34801561077857600080fd5b50610781611735565b005b34801561078f57600080fd5b506107aa60048036038101906107a59190613f32565b611792565b6040516107b79190614929565b60405180910390f35b3480156107cc57600080fd5b506107d56117fd565b6040516107e29190614988565b60405180910390f35b61080560048036038101906108009190614055565b61188f565b005b34801561081357600080fd5b5061082e60048036038101906108299190614055565b611a04565b005b34801561083c57600080fd5b50610845611aed565b6040516108529190614944565b60405180910390f35b34801561086757600080fd5b50610882600480360381019061087d9190613dfc565b611af4565b005b34801561089057600080fd5b50610899611b0a565b6040516108a69190614e05565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d19190613d79565b611b10565b005b3480156108e457600080fd5b506108ff60048036038101906108fa9190613cb9565b611b72565b005b34801561090d57600080fd5b5061092860048036038101906109239190614055565b611b82565b6040516109359190614988565b60405180910390f35b34801561094a57600080fd5b5061096560048036038101906109609190613f32565b611c60565b005b34801561097357600080fd5b5061098e60048036038101906109899190614055565b611c81565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613cb9565b611ca8565b005b3480156109c557600080fd5b506109e060048036038101906109db9190614055565b611cb8565b005b3480156109ee57600080fd5b50610a096004803603810190610a049190613ce6565b611cdf565b604051610a169190614929565b60405180910390f35b348015610a2b57600080fd5b50610a34611d73565b604051610a419190614e05565b60405180910390f35b6000610a5582611d79565b9050919050565b610a706000801b610a6b611df3565b611792565b610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690614d2a565b60405180910390fd5b610ab98282611dfb565b5050565b80610ac88133611792565b610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90614a0a565b60405180910390fd5b610b118383611f91565b7fe4723ce431fe464957aed6348016e9a32871bf3e3781d3642ea487276e6a68b68383604051610b4292919061495f565b60405180910390a1505050565b606060018054610b5e90615142565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8a90615142565b8015610bd75780601f10610bac57610100808354040283529160200191610bd7565b820191906000526020600020905b815481529060010190602001808311610bba57829003601f168201915b5050505050905090565b6000610bec82611fed565b610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290614bea565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c718261153d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd990614c6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d01611df3565b73ffffffffffffffffffffffffffffffffffffffff161480610d305750610d2f81610d2a611df3565b611cdf565b5b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690614b6a565b60405180910390fd5b610d798383612059565b505050565b6000600980549050905090565b610d9f6000801b610d9a611df3565b611792565b610dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd590614d0a565b60405180910390fd5b6000600190505b818111610e0857610df583612112565b8080610e00906151a5565b915050610de5565b505050565b610e1e610e18611df3565b82612138565b610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490614caa565b60405180910390fd5b610e688383836121e2565b505050565b6000600d6000838152602001908152602001600020600101549050919050565b6000806000600c60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561102357600b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061102d612449565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110599190614fb2565b6110639190614f81565b90508160000151819350935050509250929050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e090614c4a565b60405180910390fd5b600f549050919050565b6110fc82610e6d565b61110581612453565b61110f8383612467565b505050565b600061111f8361167d565b8210611160576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611157906149ea565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111c1611df3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614daa565b60405180910390fd5b6112388282612548565b5050565b6112506000801b61124b611df3565b611792565b61125957600080fd5b61126161262a565b565b61127e83838360405180602001604052806000815250611b10565b505050565b61129461128e611df3565b82612138565b6112d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ca90614d4a565b60405180910390fd5b6112dc816126cb565b50565b60006112e9610d7e565b821061132a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132190614cca565b60405180910390fd5b6009828154811061133e5761133d6152db565b5b90600052602060002001549050919050565b6113646000801b61135f611df3565b611792565b6113a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139a90614d0a565b60405180910390fd5b60005b81518110156113e5576113d28282815181106113c5576113c46152db565b5b6020026020010151612112565b80806113dd906151a5565b9150506113a6565b5050565b6113fd6000801b6113f8611df3565b611792565b61143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614dca565b60405180910390fd5b80600e9080519060200190611452929190613996565b5050565b61145f82611fed565b61149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590614c0a565b60405180910390fd5b6114b26000801b6114ad611df3565b611792565b6114bb57600080fd5b806015600084815260200190815260200160002090805190602001906114e2929190613996565b505050565b6114ef613a1c565b6114f7613a1c565b600f54816000018181525050601054816020018181525050611517610d7e565b8160400181815250508091505090565b60008060009054906101000a900460ff16905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd90614baa565b60405180910390fd5b80915050919050565b600e80546115fc90615142565b80601f016020809104026020016040519081016040528092919081815260200182805461162890615142565b80156116755780601f1061164a57610100808354040283529160200191611675565b820191906000526020600020905b81548152906001019060200180831161165857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e590614b8a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117496000801b611744611df3565b611792565b611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90614c8a565b60405180910390fd5b6117906127e8565b565b6000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606002805461180c90615142565b80601f016020809104026020016040519081016040528092919081815260200182805461183890615142565b80156118855780601f1061185a57610100808354040283529160200191611885565b820191906000526020600020905b81548152906001019060200180831161186857829003601f168201915b5050505050905090565b611897611527565b156118d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ce90614b4a565b60405180910390fd5b6118eb6000801b6118e6611df3565b611792565b61192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190614a4a565b60405180910390fd5b6000811161196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490614d8a565b60405180910390fd5b600061197833611078565b9050600061198f838361288a90919063ffffffff16565b9050348111156119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90614aaa565b60405180910390fd5b6000600190505b8381116119fe576119eb33612112565b80806119f6906151a5565b9150506119db565b50505050565b611a0d81611fed565b611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4390614c0a565b60405180910390fd5b6000601560008381526020019081526020016000208054611a6c90615142565b905014611aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa590614b0a565b60405180910390fd5b611ac26000801b611abd611df3565b611792565b611acb57600080fd5b601560008281526020019081526020016000206000611aea9190613a4b565b50565b6000801b81565b611b06611aff611df3565b83836128a0565b5050565b60105481565b611b21611b1b611df3565b83612138565b611b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5790614caa565b60405180910390fd5b611b6c84848484612a0d565b50505050565b611b7f6000801b826110f3565b50565b60606000601560008481526020019081526020016000208054611ba490615142565b90501115611c4f57601560008381526020019081526020016000208054611bca90615142565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf690615142565b8015611c435780601f10611c1857610100808354040283529160200191611c43565b820191906000526020600020905b815481529060010190602001808311611c2657829003601f168201915b50505050509050611c5b565b611c5882612a69565b90505b919050565b611c6982610e6d565b611c7281612453565b611c7c8383612548565b505050565b611c956000801b611c90611df3565b611792565b611c9e57600080fd5b8060108190555050565b611cb56000801b82611c60565b50565b611ccc6000801b611cc7611df3565b611792565b611cd557600080fd5b80600f8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f5481565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dec5750611deb82612aeb565b5b9050919050565b600033905090565b611e03612449565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5890614cea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614d6a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000611f9c83610e6d565b905081600d6000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120cc8361153d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000600161211e610d7e565b6121289190614f2b565b90506121348282612b65565b5050565b600061214382611fed565b612182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217990614b2a565b60405180910390fd5b600061218d8361153d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121d957506121d86000801b6121d3611df3565b611792565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122028261153d565b73ffffffffffffffffffffffffffffffffffffffff1614612258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224f90614a6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bf90614aca565b60405180910390fd5b6122d3838383612b83565b6122de600082612059565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232e919061500c565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123859190614f2b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612444838383612c97565b505050565b6000612710905090565b6124648161245f611df3565b612c9c565b50565b6124718282611792565b612544576001600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506124e9611df3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6125528282611792565b15612626576000600d600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125cb611df3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612632611527565b612671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612668906149ca565b60405180910390fd5b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126b4611df3565b6040516126c19190614899565b60405180910390a1565b60006126d68261153d565b90506126e481600084612b83565b6126ef600083612059565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461273f919061500c565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127e481600084612c97565b5050565b6127f0611527565b15612830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282790614b4a565b60405180910390fd5b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612873611df3565b6040516128809190614899565b60405180910390a1565b600081836128989190614fb2565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561290f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290690614aea565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612a009190614929565b60405180910390a3505050565b612a188484846121e2565b612a2484848484612d39565b612a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5a90614a2a565b60405180910390fd5b50505050565b6060612a7482611fed565b612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa90614c2a565b60405180910390fd5b6000600e612ac084612ed0565b604051602001612ad1929190614825565b604051602081830303815290604052905080915050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5e5750612b5d82613031565b5b9050919050565b612b7f8282604051806020016040528060008152506130ab565b5050565b612b8e838383613106565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bd157612bcc8161310b565b612c10565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c0f57612c0e8382613154565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5357612c4e816132c1565b612c92565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c9157612c908282613392565b5b5b505050565b505050565b612ca68282611792565b612d3557612ccb8173ffffffffffffffffffffffffffffffffffffffff166014613411565b612cd98360001c6020613411565b604051602001612cea92919061485f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c9190614988565b60405180910390fd5b5050565b6000612d5a8473ffffffffffffffffffffffffffffffffffffffff1661364d565b15612ec3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d83611df3565b8786866040518563ffffffff1660e01b8152600401612da594939291906148b4565b602060405180830381600087803b158015612dbf57600080fd5b505af1925050508015612df057506040513d601f19601f82011682018060405250810190612ded9190613fdf565b60015b612e73573d8060008114612e20576040519150601f19603f3d011682016040523d82523d6000602084013e612e25565b606091505b50600081511415612e6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6290614a2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ec8565b600190505b949350505050565b60606000821415612f18576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061302c565b600082905060005b60008214612f4a578080612f33906151a5565b915050600a82612f439190614f81565b9150612f20565b60008167ffffffffffffffff811115612f6657612f6561530a565b5b6040519080825280601f01601f191660200182016040528015612f985781602001600182028036833780820191505090505b5090505b6000851461302557600182612fb1919061500c565b9150600a85612fc091906151ee565b6030612fcc9190614f2b565b60f81b818381518110612fe257612fe16152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561301e9190614f81565b9450612f9c565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130a457506130a382613670565b5b9050919050565b6130b58383613752565b6130c26000848484612d39565b613101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f890614a2a565b60405180910390fd5b505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016131618461167d565b61316b919061500c565b9050600060086000848152602001908152602001600020549050818114613250576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506132d5919061500c565b90506000600a6000848152602001908152602001600020549050600060098381548110613305576133046152db565b5b906000526020600020015490508060098381548110613327576133266152db565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480613376576133756152ac565b5b6001900381819060005260206000200160009055905550505050565b600061339d8361167d565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b6060600060028360026134249190614fb2565b61342e9190614f2b565b67ffffffffffffffff8111156134475761344661530a565b5b6040519080825280601f01601f1916602001820160405280156134795781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106134b1576134b06152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613515576135146152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026135559190614fb2565b61355f9190614f2b565b90505b60018111156135ff577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106135a1576135a06152db565b5b1a60f81b8282815181106135b8576135b76152db565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806135f890615118565b9050613562565b5060008414613643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363a906149aa565b60405180910390fd5b8091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061373b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061374b575061374a8261392c565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137b990614bca565b60405180910390fd5b6137cb81611fed565b1561380b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380290614a8a565b60405180910390fd5b61381760008383612b83565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138679190614f2b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461392860008383612c97565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546139a290615142565b90600052602060002090601f0160209004810192826139c45760008555613a0b565b82601f106139dd57805160ff1916838001178555613a0b565b82800160010185558215613a0b579182015b82811115613a0a5782518255916020019190600101906139ef565b5b509050613a189190613a8b565b5090565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600081525090565b508054613a5790615142565b6000825580601f10613a695750613a88565b601f016020900490600052602060002090810190613a879190613a8b565b5b50565b5b80821115613aa4576000816000905550600101613a8c565b5090565b6000613abb613ab684614e45565b614e20565b90508083825260208201905082856020860282011115613ade57613add61533e565b5b60005b85811015613b0e5781613af48882613b9c565b845260208401935060208301925050600181019050613ae1565b5050509392505050565b6000613b2b613b2684614e71565b614e20565b905082815260208101848484011115613b4757613b46615343565b5b613b528482856150d6565b509392505050565b6000613b6d613b6884614ea2565b614e20565b905082815260208101848484011115613b8957613b88615343565b5b613b948482856150d6565b509392505050565b600081359050613bab81615c4b565b92915050565b600082601f830112613bc657613bc5615339565b5b8135613bd6848260208601613aa8565b91505092915050565b600081359050613bee81615c62565b92915050565b600081359050613c0381615c79565b92915050565b600081359050613c1881615c90565b92915050565b600081519050613c2d81615c90565b92915050565b600082601f830112613c4857613c47615339565b5b8135613c58848260208601613b18565b91505092915050565b600082601f830112613c7657613c75615339565b5b8135613c86848260208601613b5a565b91505092915050565b600081359050613c9e81615ca7565b92915050565b600081359050613cb381615cbe565b92915050565b600060208284031215613ccf57613cce61534d565b5b6000613cdd84828501613b9c565b91505092915050565b60008060408385031215613cfd57613cfc61534d565b5b6000613d0b85828601613b9c565b9250506020613d1c85828601613b9c565b9150509250929050565b600080600060608486031215613d3f57613d3e61534d565b5b6000613d4d86828701613b9c565b9350506020613d5e86828701613b9c565b9250506040613d6f86828701613c8f565b9150509250925092565b60008060008060808587031215613d9357613d9261534d565b5b6000613da187828801613b9c565b9450506020613db287828801613b9c565b9350506040613dc387828801613c8f565b925050606085013567ffffffffffffffff811115613de457613de3615348565b5b613df087828801613c33565b91505092959194509250565b60008060408385031215613e1357613e1261534d565b5b6000613e2185828601613b9c565b9250506020613e3285828601613bdf565b9150509250929050565b60008060408385031215613e5357613e5261534d565b5b6000613e6185828601613b9c565b9250506020613e7285828601613c8f565b9150509250929050565b60008060408385031215613e9357613e9261534d565b5b6000613ea185828601613b9c565b9250506020613eb285828601613ca4565b9150509250929050565b600060208284031215613ed257613ed161534d565b5b600082013567ffffffffffffffff811115613ef057613eef615348565b5b613efc84828501613bb1565b91505092915050565b600060208284031215613f1b57613f1a61534d565b5b6000613f2984828501613bf4565b91505092915050565b60008060408385031215613f4957613f4861534d565b5b6000613f5785828601613bf4565b9250506020613f6885828601613b9c565b9150509250929050565b60008060408385031215613f8957613f8861534d565b5b6000613f9785828601613bf4565b9250506020613fa885828601613bf4565b9150509250929050565b600060208284031215613fc857613fc761534d565b5b6000613fd684828501613c09565b91505092915050565b600060208284031215613ff557613ff461534d565b5b600061400384828501613c1e565b91505092915050565b6000602082840312156140225761402161534d565b5b600082013567ffffffffffffffff8111156140405761403f615348565b5b61404c84828501613c61565b91505092915050565b60006020828403121561406b5761406a61534d565b5b600061407984828501613c8f565b91505092915050565b600080604083850312156140995761409861534d565b5b60006140a785828601613c8f565b925050602083013567ffffffffffffffff8111156140c8576140c7615348565b5b6140d485828601613c61565b9150509250929050565b600080604083850312156140f5576140f461534d565b5b600061410385828601613c8f565b925050602061411485828601613c8f565b9150509250929050565b61412781615040565b82525050565b61413681615052565b82525050565b6141458161505e565b82525050565b600061415682614ee8565b6141608185614efe565b93506141708185602086016150e5565b61417981615352565b840191505092915050565b600061418f82614ef3565b6141998185614f0f565b93506141a98185602086016150e5565b6141b281615352565b840191505092915050565b60006141c882614ef3565b6141d28185614f20565b93506141e28185602086016150e5565b80840191505092915050565b600081546141fb81615142565b6142058186614f20565b94506001821660008114614220576001811461423157614264565b60ff19831686528186019350614264565b61423a85614ed3565b60005b8381101561425c5781548189015260018201915060208101905061423d565b838801955050505b50505092915050565b600061427a602083614f0f565b915061428582615363565b602082019050919050565b600061429d601483614f0f565b91506142a88261538c565b602082019050919050565b60006142c0602b83614f0f565b91506142cb826153b5565b604082019050919050565b60006142e3601683614f0f565b91506142ee82615404565b602082019050919050565b6000614306603283614f0f565b91506143118261542d565b604082019050919050565b6000614329601d83614f0f565b91506143348261547c565b602082019050919050565b600061434c602583614f0f565b9150614357826154a5565b604082019050919050565b600061436f601c83614f0f565b915061437a826154f4565b602082019050919050565b6000614392601283614f0f565b915061439d8261551d565b602082019050919050565b60006143b5602483614f0f565b91506143c082615546565b604082019050919050565b60006143d8601983614f0f565b91506143e382615595565b602082019050919050565b60006143fb600d83614f0f565b9150614406826155be565b602082019050919050565b600061441e602c83614f0f565b9150614429826155e7565b604082019050919050565b6000614441601083614f0f565b915061444c82615636565b602082019050919050565b6000614464603883614f0f565b915061446f8261565f565b604082019050919050565b6000614487602a83614f0f565b9150614492826156ae565b604082019050919050565b60006144aa602983614f0f565b91506144b5826156fd565b604082019050919050565b60006144cd602083614f0f565b91506144d88261574c565b602082019050919050565b60006144f0602c83614f0f565b91506144fb82615775565b604082019050919050565b6000614513601183614f0f565b915061451e826157c4565b602082019050919050565b6000614536600583614f20565b9150614541826157ed565b600582019050919050565b6000614559602f83614f0f565b915061456482615816565b604082019050919050565b600061457c600d83614f0f565b915061458782615865565b602082019050919050565b600061459f602183614f0f565b91506145aa8261588e565b604082019050919050565b60006145c2602783614f0f565b91506145cd826158dd565b604082019050919050565b60006145e5603183614f0f565b91506145f08261592c565b604082019050919050565b6000614608602c83614f0f565b91506146138261597b565b604082019050919050565b600061462b601783614f20565b9150614636826159ca565b601782019050919050565b600061464e602a83614f0f565b9150614659826159f3565b604082019050919050565b6000614671602083614f0f565b915061467c82615a42565b602082019050919050565b6000614694602483614f0f565b915061469f82615a6b565b604082019050919050565b60006146b7603083614f0f565b91506146c282615aba565b604082019050919050565b60006146da601983614f0f565b91506146e582615b09565b602082019050919050565b60006146fd601b83614f0f565b915061470882615b32565b602082019050919050565b6000614720601183614f20565b915061472b82615b5b565b601182019050919050565b6000614743602f83614f0f565b915061474e82615b84565b604082019050919050565b6000614766600183614f20565b915061477182615bd3565b600182019050919050565b6000614789602583614f0f565b915061479482615bfc565b604082019050919050565b60a0820160008201516147b56000850182614807565b5060208201516147c86020850182614807565b5060408201516147db6040850182614807565b5060608201516147ee6060850182614807565b5060808201516148016080850182614807565b50505050565b614810816150b4565b82525050565b61481f816150b4565b82525050565b600061483182856141ee565b915061483c82614759565b915061484882846141bd565b915061485382614529565b91508190509392505050565b600061486a8261461e565b915061487682856141bd565b915061488182614713565b915061488d82846141bd565b91508190509392505050565b60006020820190506148ae600083018461411e565b92915050565b60006080820190506148c9600083018761411e565b6148d6602083018661411e565b6148e36040830185614816565b81810360608301526148f5818461414b565b905095945050505050565b6000604082019050614915600083018561411e565b6149226020830184614816565b9392505050565b600060208201905061493e600083018461412d565b92915050565b6000602082019050614959600083018461413c565b92915050565b6000604082019050614974600083018561413c565b614981602083018461413c565b9392505050565b600060208201905081810360008301526149a28184614184565b905092915050565b600060208201905081810360008301526149c38161426d565b9050919050565b600060208201905081810360008301526149e381614290565b9050919050565b60006020820190508181036000830152614a03816142b3565b9050919050565b60006020820190508181036000830152614a23816142d6565b9050919050565b60006020820190508181036000830152614a43816142f9565b9050919050565b60006020820190508181036000830152614a638161431c565b9050919050565b60006020820190508181036000830152614a838161433f565b9050919050565b60006020820190508181036000830152614aa381614362565b9050919050565b60006020820190508181036000830152614ac381614385565b9050919050565b60006020820190508181036000830152614ae3816143a8565b9050919050565b60006020820190508181036000830152614b03816143cb565b9050919050565b60006020820190508181036000830152614b23816143ee565b9050919050565b60006020820190508181036000830152614b4381614411565b9050919050565b60006020820190508181036000830152614b6381614434565b9050919050565b60006020820190508181036000830152614b8381614457565b9050919050565b60006020820190508181036000830152614ba38161447a565b9050919050565b60006020820190508181036000830152614bc38161449d565b9050919050565b60006020820190508181036000830152614be3816144c0565b9050919050565b60006020820190508181036000830152614c03816144e3565b9050919050565b60006020820190508181036000830152614c2381614506565b9050919050565b60006020820190508181036000830152614c438161454c565b9050919050565b60006020820190508181036000830152614c638161456f565b9050919050565b60006020820190508181036000830152614c8381614592565b9050919050565b60006020820190508181036000830152614ca3816145b5565b9050919050565b60006020820190508181036000830152614cc3816145d8565b9050919050565b60006020820190508181036000830152614ce3816145fb565b9050919050565b60006020820190508181036000830152614d0381614641565b9050919050565b60006020820190508181036000830152614d2381614664565b9050919050565b60006020820190508181036000830152614d4381614687565b9050919050565b60006020820190508181036000830152614d63816146aa565b9050919050565b60006020820190508181036000830152614d83816146cd565b9050919050565b60006020820190508181036000830152614da3816146f0565b9050919050565b60006020820190508181036000830152614dc381614736565b9050919050565b60006020820190508181036000830152614de38161477c565b9050919050565b600060a082019050614dff600083018461479f565b92915050565b6000602082019050614e1a6000830184614816565b92915050565b6000614e2a614e3b565b9050614e368282615174565b919050565b6000604051905090565b600067ffffffffffffffff821115614e6057614e5f61530a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e8c57614e8b61530a565b5b614e9582615352565b9050602081019050919050565b600067ffffffffffffffff821115614ebd57614ebc61530a565b5b614ec682615352565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f36826150b4565b9150614f41836150b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f7657614f7561521f565b5b828201905092915050565b6000614f8c826150b4565b9150614f97836150b4565b925082614fa757614fa661524e565b5b828204905092915050565b6000614fbd826150b4565b9150614fc8836150b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156150015761500061521f565b5b828202905092915050565b6000615017826150b4565b9150615022836150b4565b9250828210156150355761503461521f565b5b828203905092915050565b600061504b82615094565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156151035780820151818401526020810190506150e8565b83811115615112576000848401525b50505050565b6000615123826150b4565b915060008214156151375761513661521f565b5b600182039050919050565b6000600282049050600182168061515a57607f821691505b6020821081141561516e5761516d61527d565b5b50919050565b61517d82615352565b810181811067ffffffffffffffff8211171561519c5761519b61530a565b5b80604052505050565b60006151b0826150b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151e3576151e261521f565b5b600182019050919050565b60006151f9826150b4565b9150615204836150b4565b9250826152145761521361524e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f5265737472696374656420746f206d656d626572732e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f206d696e74000000600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f616c726561647920656d70747900000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207061757365206360008201527f6f6e747261637400000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2061697264726f70600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2073657420726f7960008201527f616c747900000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742062617360008201527f6520757269000000000000000000000000000000000000000000000000000000602082015250565b615c5481615040565b8114615c5f57600080fd5b50565b615c6b81615052565b8114615c7657600080fd5b50565b615c828161505e565b8114615c8d57600080fd5b50565b615c9981615068565b8114615ca457600080fd5b50565b615cb0816150b4565b8114615cbb57600080fd5b50565b615cc7816150be565b8114615cd257600080fd5b5056fea2646970667358221220c6c17f2ec4ce0d0c7a8ece5208848c6410062ba5eaee0a671d797230dc141bdb64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000024462722e63ca1bab3a2311dffa4a3a21665647a
-----Decoded View---------------
Arg [0] : _ownerAddress (address): 0x24462722e63Ca1BAb3a2311DFfa4A3a21665647a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000024462722e63ca1bab3a2311dffa4a3a21665647a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.