ERC-721
Overview
Max Total Supply
138 CCNFT
Holders
18
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CCNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RoswellNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-25 */ /** *Submitted for verification at Etherscan.io on 2022-03-08 */ /** *Submitted for verification at Etherscan.io on 2022-02-21 */ /** *Submitted for verification at Etherscan.io on 2022-01-24 */ /** *Submitted for verification at Etherscan.io on 2022-01-22 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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()); } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @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); } /** * @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; } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @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); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } library Strings { /** * @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 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, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; // 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 _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() internal view returns (string memory) { return _baseURI; } /** * @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 || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } /** * @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(); } } contract RoswellNFT is ERC721Enumerable, Ownable, Pausable { constructor(string memory baseURI, string memory name, string memory symbol) ERC721(name, symbol) { _setBaseURI(baseURI); } bool private revealed = false; uint256 private maxSupply = 11111; uint256 private preSaleSupply = 2000; string private notRevealURI; uint256 private preSaleStartDate; uint256 private preSaleEndDate; uint256 private publicSaleDate; uint256 private publicSaleEndDate; uint256 private preSalePrice; uint256 private publicSalePrice; mapping(address => uint256) private ownedToken; mapping(address => bool) private whitelistUsers; event PreSaleMint(address user, uint256 count, uint256 amount, uint256 time); event PublicSaleMint(address user, uint256 count, uint256 time); event Mint(address user, uint256 tokenId); function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function preSaleMint(address _to) public payable whenNotPaused{ require(preSaleStartDate <= block.timestamp && preSaleEndDate > block.timestamp, "Presale ended or not started yet"); require(isWhitelisted(_to), "User is not whitelisted"); require(totalSupply() <= preSaleSupply, "Supply limit reached!"); require(ownedToken[_to] == 0, "You can't pre-buy more tokens"); _safeMint(_to, totalSupply() + 1); ownedToken[_to]++; emit PreSaleMint(_to, 1, msg.value, block.timestamp); } function publicSaleMint(address _to ,uint256 _mintAmount) public onlyOwner{ uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "Supply limit reached!"); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(_to, supply + i); } emit PublicSaleMint(_to, _mintAmount, block.timestamp); } function adminMint(address _to ,uint256 _tokenId) public onlyOwner{ _safeMint(_to, _tokenId); emit Mint (_to, _tokenId); } function setNotRevealedURI(string memory _newURI) public onlyOwner { notRevealURI = _newURI; } function setBaseURI(string memory _baseURI) public onlyOwner { _setBaseURI(_baseURI); } function setPresalePrice(uint256 _newPrice) public onlyOwner { preSalePrice = _newPrice; } function setPublicSalePrice(uint256 _newPrice) public onlyOwner { publicSalePrice = _newPrice; } function setPresaleStartTime(uint256 _time) public onlyOwner { preSaleStartDate = _time; } function setPresaleEndTime(uint256 _time) public onlyOwner { preSaleEndDate = _time; } function setPublicSaleTime(uint256 _time) public onlyOwner { publicSaleDate = _time; } function setPublicSaleEndTime(uint256 _time) public onlyOwner { publicSaleEndDate = _time; } function whitelist(address _account) public onlyOwner { whitelistUsers[_account] = true; } function burn(uint256 _tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), _tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(_tokenId); } function removeWhitelistedUsers(address _account) public onlyOwner { whitelistUsers[_account] = false; } function getPreSalePrice() public view returns (uint256) { return preSalePrice; } function getPublicSalePrice() public view returns (uint256) { return publicSalePrice; } function getPreSaleStartTime() public view returns (uint256) { return preSaleStartDate; } function getPreSaleEndTime() public view returns (uint256) { return preSaleEndDate; } function getPublicSaleTime() public view returns (uint256) { return publicSaleDate; } function getPublicSaleEndTime() public view returns (uint256) { return publicSaleEndDate; } function getNotRevealedURI() public view returns (string memory) { return notRevealURI; } function tokenOwner(address _user) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_user); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_user, i); } return tokenIds; } function isWhitelisted(address _user) public view returns (bool) { return whitelistUsers[_user]; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return notRevealURI; }else { return super.tokenURI(_tokenId); } } function getReveal() public view returns (bool){ return revealed; } function reveal() public onlyOwner { require (revealed == false, "NFTs already revealed"); revealed = true; } function unReveal() public onlyOwner { require (revealed == true, "NFTs already UNrevealed"); revealed = false; } function getOwnerToken(address _user) public view returns (uint256){ return ownedToken[_user]; } function withdraw() public onlyOwner { payable(owner()).transfer(address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"PreSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"PublicSaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","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":"getNotRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getOwnerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReveal","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeWhitelistedUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPresaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPresaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPublicSaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPublicSaleTime","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":"address","name":"_user","type":"address"}],"name":"tokenOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600c805460ff60a81b19169055612b67600d556107d0600e553480156200002a57600080fd5b506040516200322f3803806200322f8339810160408190526200004d916200027a565b815182908290620000669060009060208501906200011d565b5080516200007c9060019060208401906200011d565b5050506000620000916200010060201b60201c565b600c80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c805460ff60a01b19169055620000f78362000104565b5050506200035e565b3390565b8051620001199060039060208401906200011d565b5050565b8280546200012b906200030b565b90600052602060002090601f0160209004810192826200014f57600085556200019a565b82601f106200016a57805160ff19168380011785556200019a565b828001600101855582156200019a579182015b828111156200019a5782518255916020019190600101906200017d565b50620001a8929150620001ac565b5090565b5b80821115620001a85760008155600101620001ad565b600082601f830112620001d557600080fd5b81516001600160401b0380821115620001f257620001f262000348565b604051601f8301601f19908116603f011681019082821181831017156200021d576200021d62000348565b816040528381526020925086838588010111156200023a57600080fd5b600091505b838210156200025e57858201830151818301840152908201906200023f565b83821115620002705760008385830101525b9695505050505050565b6000806000606084860312156200029057600080fd5b83516001600160401b0380821115620002a857600080fd5b620002b687838801620001c3565b94506020860151915080821115620002cd57600080fd5b620002db87838801620001c3565b93506040860151915080821115620002f257600080fd5b506200030186828701620001c3565b9150509250925092565b600181811c908216806200032057607f821691505b602082108114156200034257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ec1806200036e6000396000f3fe6080604052600436106102c95760003560e01c80637aef860f11610175578063a9d41dd5116100dc578063cfa0136f11610095578063e985e9c51161006f578063e985e9c51461085a578063f2c4ce1e146108a3578063f2fde38b146108c3578063f793c0cd146108e357600080fd5b8063cfa0136f14610805578063d22f76cf14610825578063e58306f91461083a57600080fd5b8063a9d41dd51461075d578063ac5ae11b1461077d578063b4199b8c1461079d578063b88d4fde146107b2578063bde7321b146107d2578063c87b56dd146107e557600080fd5b8063966c05741161012e578063966c05741461069d57806397d17b96146106d35780639b19251a146106e8578063a1ef0e5414610708578063a22cb46514610728578063a475b5dd1461074857600080fd5b80637aef860f14610616578063816d6a5d1461062b5780638456cb59146106405780638da5cb5b146106555780638e8bdd0d1461067357806395d89b411461068857600080fd5b80633af32abf1161023457806355f804b3116101ed5780636352211e116101c75780636352211e146105a157806370a08231146105c1578063715018a6146105e1578063791a2519146105f657600080fd5b806355f804b3146105435780635af97082146105635780635c975abb1461058257600080fd5b80633af32abf146104805780633ccfd60b146104b95780633f4ba83a146104ce57806342842e0e146104e357806342966c68146105035780634f6ccce71461052357600080fd5b806318160ddd1161028657806318160ddd146103b457806323b872dd146103d3578063296cab55146103f35780632f745c59146104135780633549345e146104335780633ab69b621461045357600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d57806311b7e5e71461037f57806315edf5f31461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046129e8565b6108f8565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610923565b6040516102fa9190612bf4565b34801561033157600080fd5b50610345610340366004612a6b565b6109b5565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d6103783660046129be565b610a4f565b005b34801561038b57600080fd5b5061037d61039a366004612a6b565b610b65565b3480156103ab57600080fd5b5061037d610b94565b3480156103c057600080fd5b50600a545b6040519081526020016102fa565b3480156103df57600080fd5b5061037d6103ee3660046128ca565b610c2b565b3480156103ff57600080fd5b5061037d61040e366004612a6b565b610c5d565b34801561041f57600080fd5b506103c561042e3660046129be565b610c8c565b34801561043f57600080fd5b5061037d61044e366004612a6b565b610d22565b34801561045f57600080fd5b5061047361046e366004612875565b610d51565b6040516102fa9190612bb0565b34801561048c57600080fd5b506102ee61049b366004612875565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104c557600080fd5b5061037d610df3565b3480156104da57600080fd5b5061037d610e59565b3480156104ef57600080fd5b5061037d6104fe3660046128ca565b610e8d565b34801561050f57600080fd5b5061037d61051e366004612a6b565b610ea8565b34801561052f57600080fd5b506103c561053e366004612a6b565b610f1f565b34801561054f57600080fd5b5061037d61055e366004612a22565b610fb2565b34801561056f57600080fd5b50600c54600160a81b900460ff166102ee565b34801561058e57600080fd5b50600c54600160a01b900460ff166102ee565b3480156105ad57600080fd5b506103456105bc366004612a6b565b610fe5565b3480156105cd57600080fd5b506103c56105dc366004612875565b61105c565b3480156105ed57600080fd5b5061037d6110e3565b34801561060257600080fd5b5061037d610611366004612a6b565b611157565b34801561062257600080fd5b506012546103c5565b34801561063757600080fd5b506014546103c5565b34801561064c57600080fd5b5061037d611186565b34801561066157600080fd5b50600c546001600160a01b0316610345565b34801561067f57600080fd5b506015546103c5565b34801561069457600080fd5b506103186111b8565b3480156106a957600080fd5b506103c56106b8366004612875565b6001600160a01b031660009081526016602052604090205490565b3480156106df57600080fd5b506010546103c5565b3480156106f457600080fd5b5061037d610703366004612875565b6111c7565b34801561071457600080fd5b5061037d610723366004612a6b565b611215565b34801561073457600080fd5b5061037d610743366004612982565b611244565b34801561075457600080fd5b5061037d611309565b34801561076957600080fd5b5061037d610778366004612875565b61139a565b34801561078957600080fd5b5061037d6107983660046129be565b6113e5565b3480156107a957600080fd5b506103186114ed565b3480156107be57600080fd5b5061037d6107cd366004612906565b6114fc565b61037d6107e0366004612875565b611534565b3480156107f157600080fd5b50610318610800366004612a6b565b61178c565b34801561081157600080fd5b5061037d610820366004612a6b565b611874565b34801561083157600080fd5b506011546103c5565b34801561084657600080fd5b5061037d6108553660046129be565b6118a3565b34801561086657600080fd5b506102ee610875366004612897565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108af57600080fd5b5061037d6108be366004612a22565b61191d565b3480156108cf57600080fd5b5061037d6108de366004612875565b61195e565b3480156108ef57600080fd5b506013546103c5565b60006001600160e01b0319821663780e9d6360e01b148061091d575061091d82611a49565b92915050565b60606000805461093290612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612d9d565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610a335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a5a82610fe5565b9050806001600160a01b0316836001600160a01b03161415610ac85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a2a565b336001600160a01b0382161480610ae45750610ae48133610875565b610b565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a2a565b610b608383611a99565b505050565b600c546001600160a01b03163314610b8f5760405162461bcd60e51b8152600401610a2a90612c59565b601255565b600c546001600160a01b03163314610bbe5760405162461bcd60e51b8152600401610a2a90612c59565b600c54600160a81b900460ff161515600114610c1c5760405162461bcd60e51b815260206004820152601760248201527f4e46547320616c726561647920554e72657665616c65640000000000000000006044820152606401610a2a565b600c805460ff60a81b19169055565b610c36335b82611b07565b610c525760405162461bcd60e51b8152600401610a2a90612cdd565b610b60838383611bfe565b600c546001600160a01b03163314610c875760405162461bcd60e51b8152600401610a2a90612c59565b601055565b6000610c978361105c565b8210610cf95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a2a565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b600c546001600160a01b03163314610d4c5760405162461bcd60e51b8152600401610a2a90612c59565b601455565b60606000610d5e8361105c565b905060008167ffffffffffffffff811115610d7b57610d7b612e5f565b604051908082528060200260200182016040528015610da4578160200160208202803683370190505b50905060005b82811015610deb57610dbc8582610c8c565b828281518110610dce57610dce612e49565b602090810291909101015280610de381612dd8565b915050610daa565b509392505050565b600c546001600160a01b03163314610e1d5760405162461bcd60e51b8152600401610a2a90612c59565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e56573d6000803e3d6000fd5b50565b600c546001600160a01b03163314610e835760405162461bcd60e51b8152600401610a2a90612c59565b610e8b611da9565b565b610b60838383604051806020016040528060008152506114fc565b610eb133610c30565b610f165760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a2a565b610e5681611e46565b6000610f2a600a5490565b8210610f8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a2a565b600a8281548110610fa057610fa0612e49565b90600052602060002001549050919050565b600c546001600160a01b03163314610fdc5760405162461bcd60e51b8152600401610a2a90612c59565b610e5681611f24565b6000818152600460205260408120546001600160a01b03168061091d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a2a565b60006001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a2a565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610a2a90612c59565b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600c546001600160a01b031633146111815760405162461bcd60e51b8152600401610a2a90612c59565b601555565b600c546001600160a01b031633146111b05760405162461bcd60e51b8152600401610a2a90612c59565b610e8b611f37565b60606001805461093290612d9d565b600c546001600160a01b031633146111f15760405162461bcd60e51b8152600401610a2a90612c59565b6001600160a01b03166000908152601760205260409020805460ff19166001179055565b600c546001600160a01b0316331461123f5760405162461bcd60e51b8152600401610a2a90612c59565b601355565b6001600160a01b03821633141561129d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a2a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b031633146113335760405162461bcd60e51b8152600401610a2a90612c59565b600c54600160a81b900460ff16156113855760405162461bcd60e51b81526020600482015260156024820152741391951cc8185b1c9958591e481c995d99585b1959605a1b6044820152606401610a2a565b600c805460ff60a81b1916600160a81b179055565b600c546001600160a01b031633146113c45760405162461bcd60e51b8152600401610a2a90612c59565b6001600160a01b03166000908152601760205260409020805460ff19169055565b600c546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610a2a90612c59565b600061141a600a5490565b600d5490915061142a8383612d2e565b11156114705760405162461bcd60e51b8152602060048201526015602482015274537570706c79206c696d697420726561636865642160581b6044820152606401610a2a565b60015b82811161149f5761148d846114888385612d2e565b611fbf565b8061149781612dd8565b915050611473565b50604080516001600160a01b038516815260208101849052428183015290517f2c7d174a64b49c17bcea3a44c1ba1547c9a3f4997b68952c5dd3fcc1f17f7d6d9181900360600190a1505050565b6060600f805461093290612d9d565b6115063383611b07565b6115225760405162461bcd60e51b8152600401610a2a90612cdd565b61152e84848484611fd9565b50505050565b600c54600160a01b900460ff16156115815760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a2a565b4260105411158015611594575042601154115b6115e05760405162461bcd60e51b815260206004820181905260248201527f50726573616c6520656e646564206f72206e6f742073746172746564207965746044820152606401610a2a565b6001600160a01b03811660009081526017602052604090205460ff166116485760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610a2a565b600e54600a5411156116945760405162461bcd60e51b8152602060048201526015602482015274537570706c79206c696d697420726561636865642160581b6044820152606401610a2a565b6001600160a01b038116600090815260166020526040902054156116fa5760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e2774207072652d627579206d6f726520746f6b656e730000006044820152606401610a2a565b61171281611707600a5490565b611488906001612d2e565b6001600160a01b038116600090815260166020526040812080549161173683612dd8565b9091555050604080516001600160a01b038316815260016020820152348183015242606082015290517f6fddf4c7ef42bb2270408a1ac69251571fe3108080513c71a183b9f0fdc291de9181900360800190a150565b6000818152600460205260409020546060906001600160a01b03166117c35760405162461bcd60e51b8152600401610a2a90612c8e565b600c54600160a81b900460ff1661186657600f80546117e190612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461180d90612d9d565b801561185a5780601f1061182f5761010080835404028352916020019161185a565b820191906000526020600020905b81548152906001019060200180831161183d57829003601f168201915b50505050509050919050565b61091d8261200c565b919050565b600c546001600160a01b0316331461189e5760405162461bcd60e51b8152600401610a2a90612c59565b601155565b600c546001600160a01b031633146118cd5760405162461bcd60e51b8152600401610a2a90612c59565b6118d78282611fbf565b604080516001600160a01b0384168152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a15050565b600c546001600160a01b031633146119475760405162461bcd60e51b8152600401610a2a90612c59565b805161195a90600f906020840190612719565b5050565b600c546001600160a01b031633146119885760405162461bcd60e51b8152600401610a2a90612c59565b6001600160a01b0381166119ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2a565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611a7a57506001600160e01b03198216635b5e139f60e01b145b8061091d57506301ffc9a760e01b6001600160e01b031983161461091d565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ace82610fe5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316611b805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a2a565b6000611b8b83610fe5565b9050806001600160a01b0316846001600160a01b03161480611bc65750836001600160a01b0316611bbb846109b5565b6001600160a01b0316145b80611bf657506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c1182610fe5565b6001600160a01b031614611c795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a2a565b6001600160a01b038216611cdb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2a565b611ce6838383612145565b611cf1600082611a99565b6001600160a01b0383166000908152600560205260408120805460019290611d1a908490612d5a565b90915550506001600160a01b0382166000908152600560205260408120805460019290611d48908490612d2e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c54600160a01b900460ff16611df95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a2a565b600c805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611e5182610fe5565b9050611e5f81600084612145565b611e6a600083611a99565b60008281526002602052604090208054611e8390612d9d565b159050611ea1576000828152600260205260408120611ea19161279d565b6001600160a01b0381166000908152600560205260408120805460019290611eca908490612d5a565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b805161195a906003906020840190612719565b600c54600160a01b900460ff1615611f845760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a2a565b600c805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e293390565b61195a8282604051806020016040528060008152506121fd565b611fe4848484611bfe565b611ff084848484612230565b61152e5760405162461bcd60e51b8152600401610a2a90612c07565b6000818152600460205260409020546060906001600160a01b03166120435760405162461bcd60e51b8152600401610a2a90612c8e565b6000828152600260205260408120805461205c90612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461208890612d9d565b80156120d55780601f106120aa576101008083540402835291602001916120d5565b820191906000526020600020905b8154815290600101906020018083116120b857829003601f168201915b50505050509050600380546120e990612d9d565b151590506120f75792915050565b80511561212957600381604051602001612112929190612acc565b604051602081830303815290604052915050919050565b60036121348461233d565b604051602001612112929190612acc565b6001600160a01b0383166121a05761219b81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6121c3565b816001600160a01b0316836001600160a01b0316146121c3576121c3838261243b565b6001600160a01b0382166121da57610b60816124d8565b826001600160a01b0316826001600160a01b031614610b6057610b608282612587565b61220783836125cb565b6122146000848484612230565b610b605760405162461bcd60e51b8152600401610a2a90612c07565b60006001600160a01b0384163b1561233257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612274903390899088908890600401612b73565b602060405180830381600087803b15801561228e57600080fd5b505af19250505080156122be575060408051601f3d908101601f191682019092526122bb91810190612a05565b60015b612318573d8080156122ec576040519150601f19603f3d011682016040523d82523d6000602084013e6122f1565b606091505b5080516123105760405162461bcd60e51b8152600401610a2a90612c07565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bf6565b506001949350505050565b6060816123615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561238b578061237581612dd8565b91506123849050600a83612d46565b9150612365565b60008167ffffffffffffffff8111156123a6576123a6612e5f565b6040519080825280601f01601f1916602001820160405280156123d0576020820181803683370190505b5090505b8415611bf6576123e5600183612d5a565b91506123f2600a86612df3565b6123fd906030612d2e565b60f81b81838151811061241257612412612e49565b60200101906001600160f81b031916908160001a905350612434600a86612d46565b94506123d4565b600060016124488461105c565b6124529190612d5a565b6000838152600960205260409020549091508082146124a5576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906124ea90600190612d5a565b6000838152600b6020526040812054600a805493945090928490811061251257612512612e49565b9060005260206000200154905080600a838154811061253357612533612e49565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061256b5761256b612e33565b6001900381819060005260206000200160009055905550505050565b60006125928361105c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160a01b0382166126215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a2a565b6000818152600460205260409020546001600160a01b0316156126865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a2a565b61269260008383612145565b6001600160a01b03821660009081526005602052604081208054600192906126bb908490612d2e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461272590612d9d565b90600052602060002090601f016020900481019282612747576000855561278d565b82601f1061276057805160ff191683800117855561278d565b8280016001018555821561278d579182015b8281111561278d578251825591602001919060010190612772565b506127999291506127d3565b5090565b5080546127a990612d9d565b6000825580601f106127b9575050565b601f016020900490600052602060002090810190610e5691905b5b8082111561279957600081556001016127d4565b600067ffffffffffffffff8084111561280357612803612e5f565b604051601f8501601f19908116603f0116810190828211818310171561282b5761282b612e5f565b8160405280935085815286868601111561284457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461186f57600080fd5b60006020828403121561288757600080fd5b6128908261285e565b9392505050565b600080604083850312156128aa57600080fd5b6128b38361285e565b91506128c16020840161285e565b90509250929050565b6000806000606084860312156128df57600080fd5b6128e88461285e565b92506128f66020850161285e565b9150604084013590509250925092565b6000806000806080858703121561291c57600080fd5b6129258561285e565b93506129336020860161285e565b925060408501359150606085013567ffffffffffffffff81111561295657600080fd5b8501601f8101871361296757600080fd5b612976878235602084016127e8565b91505092959194509250565b6000806040838503121561299557600080fd5b61299e8361285e565b9150602083013580151581146129b357600080fd5b809150509250929050565b600080604083850312156129d157600080fd5b6129da8361285e565b946020939093013593505050565b6000602082840312156129fa57600080fd5b813561289081612e75565b600060208284031215612a1757600080fd5b815161289081612e75565b600060208284031215612a3457600080fd5b813567ffffffffffffffff811115612a4b57600080fd5b8201601f81018413612a5c57600080fd5b611bf6848235602084016127e8565b600060208284031215612a7d57600080fd5b5035919050565b60008151808452612a9c816020860160208601612d71565b601f01601f19169290920160200192915050565b60008151612ac2818560208601612d71565b9290920192915050565b600080845481600182811c915080831680612ae857607f831692505b6020808410821415612b0857634e487b7160e01b86526022600452602486fd5b818015612b1c5760018114612b2d57612b5a565b60ff19861689528489019650612b5a565b60008b81526020902060005b86811015612b525781548b820152908501908301612b39565b505084890196505b505050505050612b6a8185612ab0565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba690830184612a84565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612be857835183529284019291840191600101612bcc565b50909695505050505050565b6020815260006128906020830184612a84565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d4157612d41612e07565b500190565b600082612d5557612d55612e1d565b500490565b600082821015612d6c57612d6c612e07565b500390565b60005b83811015612d8c578181015183820152602001612d74565b8381111561152e5750506000910152565b600181811c90821680612db157607f821691505b60208210811415612dd257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dec57612dec612e07565b5060010190565b600082612e0257612e02612e1d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e5657600080fdfea2646970667358221220cf8e379edd42c9da4168771df0a7779abf2a1713546ab447c7ab88a4cef0c1ec64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f726f732d77656c6c2e6d7970696e6174612e636c6f75642f697066732f516d614178396e544d775171326b483778694272436f50376b655a4d6e554a4a4d7153345044724c665a626f67522f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000012436f736d696320436861726c6965204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543434e4654000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102c95760003560e01c80637aef860f11610175578063a9d41dd5116100dc578063cfa0136f11610095578063e985e9c51161006f578063e985e9c51461085a578063f2c4ce1e146108a3578063f2fde38b146108c3578063f793c0cd146108e357600080fd5b8063cfa0136f14610805578063d22f76cf14610825578063e58306f91461083a57600080fd5b8063a9d41dd51461075d578063ac5ae11b1461077d578063b4199b8c1461079d578063b88d4fde146107b2578063bde7321b146107d2578063c87b56dd146107e557600080fd5b8063966c05741161012e578063966c05741461069d57806397d17b96146106d35780639b19251a146106e8578063a1ef0e5414610708578063a22cb46514610728578063a475b5dd1461074857600080fd5b80637aef860f14610616578063816d6a5d1461062b5780638456cb59146106405780638da5cb5b146106555780638e8bdd0d1461067357806395d89b411461068857600080fd5b80633af32abf1161023457806355f804b3116101ed5780636352211e116101c75780636352211e146105a157806370a08231146105c1578063715018a6146105e1578063791a2519146105f657600080fd5b806355f804b3146105435780635af97082146105635780635c975abb1461058257600080fd5b80633af32abf146104805780633ccfd60b146104b95780633f4ba83a146104ce57806342842e0e146104e357806342966c68146105035780634f6ccce71461052357600080fd5b806318160ddd1161028657806318160ddd146103b457806323b872dd146103d3578063296cab55146103f35780632f745c59146104135780633549345e146104335780633ab69b621461045357600080fd5b806301ffc9a7146102ce57806306fdde0314610303578063081812fc14610325578063095ea7b31461035d57806311b7e5e71461037f57806315edf5f31461039f575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046129e8565b6108f8565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b50610318610923565b6040516102fa9190612bf4565b34801561033157600080fd5b50610345610340366004612a6b565b6109b5565b6040516001600160a01b0390911681526020016102fa565b34801561036957600080fd5b5061037d6103783660046129be565b610a4f565b005b34801561038b57600080fd5b5061037d61039a366004612a6b565b610b65565b3480156103ab57600080fd5b5061037d610b94565b3480156103c057600080fd5b50600a545b6040519081526020016102fa565b3480156103df57600080fd5b5061037d6103ee3660046128ca565b610c2b565b3480156103ff57600080fd5b5061037d61040e366004612a6b565b610c5d565b34801561041f57600080fd5b506103c561042e3660046129be565b610c8c565b34801561043f57600080fd5b5061037d61044e366004612a6b565b610d22565b34801561045f57600080fd5b5061047361046e366004612875565b610d51565b6040516102fa9190612bb0565b34801561048c57600080fd5b506102ee61049b366004612875565b6001600160a01b031660009081526017602052604090205460ff1690565b3480156104c557600080fd5b5061037d610df3565b3480156104da57600080fd5b5061037d610e59565b3480156104ef57600080fd5b5061037d6104fe3660046128ca565b610e8d565b34801561050f57600080fd5b5061037d61051e366004612a6b565b610ea8565b34801561052f57600080fd5b506103c561053e366004612a6b565b610f1f565b34801561054f57600080fd5b5061037d61055e366004612a22565b610fb2565b34801561056f57600080fd5b50600c54600160a81b900460ff166102ee565b34801561058e57600080fd5b50600c54600160a01b900460ff166102ee565b3480156105ad57600080fd5b506103456105bc366004612a6b565b610fe5565b3480156105cd57600080fd5b506103c56105dc366004612875565b61105c565b3480156105ed57600080fd5b5061037d6110e3565b34801561060257600080fd5b5061037d610611366004612a6b565b611157565b34801561062257600080fd5b506012546103c5565b34801561063757600080fd5b506014546103c5565b34801561064c57600080fd5b5061037d611186565b34801561066157600080fd5b50600c546001600160a01b0316610345565b34801561067f57600080fd5b506015546103c5565b34801561069457600080fd5b506103186111b8565b3480156106a957600080fd5b506103c56106b8366004612875565b6001600160a01b031660009081526016602052604090205490565b3480156106df57600080fd5b506010546103c5565b3480156106f457600080fd5b5061037d610703366004612875565b6111c7565b34801561071457600080fd5b5061037d610723366004612a6b565b611215565b34801561073457600080fd5b5061037d610743366004612982565b611244565b34801561075457600080fd5b5061037d611309565b34801561076957600080fd5b5061037d610778366004612875565b61139a565b34801561078957600080fd5b5061037d6107983660046129be565b6113e5565b3480156107a957600080fd5b506103186114ed565b3480156107be57600080fd5b5061037d6107cd366004612906565b6114fc565b61037d6107e0366004612875565b611534565b3480156107f157600080fd5b50610318610800366004612a6b565b61178c565b34801561081157600080fd5b5061037d610820366004612a6b565b611874565b34801561083157600080fd5b506011546103c5565b34801561084657600080fd5b5061037d6108553660046129be565b6118a3565b34801561086657600080fd5b506102ee610875366004612897565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156108af57600080fd5b5061037d6108be366004612a22565b61191d565b3480156108cf57600080fd5b5061037d6108de366004612875565b61195e565b3480156108ef57600080fd5b506013546103c5565b60006001600160e01b0319821663780e9d6360e01b148061091d575061091d82611a49565b92915050565b60606000805461093290612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612d9d565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b0316610a335760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a5a82610fe5565b9050806001600160a01b0316836001600160a01b03161415610ac85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a2a565b336001600160a01b0382161480610ae45750610ae48133610875565b610b565760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a2a565b610b608383611a99565b505050565b600c546001600160a01b03163314610b8f5760405162461bcd60e51b8152600401610a2a90612c59565b601255565b600c546001600160a01b03163314610bbe5760405162461bcd60e51b8152600401610a2a90612c59565b600c54600160a81b900460ff161515600114610c1c5760405162461bcd60e51b815260206004820152601760248201527f4e46547320616c726561647920554e72657665616c65640000000000000000006044820152606401610a2a565b600c805460ff60a81b19169055565b610c36335b82611b07565b610c525760405162461bcd60e51b8152600401610a2a90612cdd565b610b60838383611bfe565b600c546001600160a01b03163314610c875760405162461bcd60e51b8152600401610a2a90612c59565b601055565b6000610c978361105c565b8210610cf95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a2a565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b600c546001600160a01b03163314610d4c5760405162461bcd60e51b8152600401610a2a90612c59565b601455565b60606000610d5e8361105c565b905060008167ffffffffffffffff811115610d7b57610d7b612e5f565b604051908082528060200260200182016040528015610da4578160200160208202803683370190505b50905060005b82811015610deb57610dbc8582610c8c565b828281518110610dce57610dce612e49565b602090810291909101015280610de381612dd8565b915050610daa565b509392505050565b600c546001600160a01b03163314610e1d5760405162461bcd60e51b8152600401610a2a90612c59565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610e56573d6000803e3d6000fd5b50565b600c546001600160a01b03163314610e835760405162461bcd60e51b8152600401610a2a90612c59565b610e8b611da9565b565b610b60838383604051806020016040528060008152506114fc565b610eb133610c30565b610f165760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a2a565b610e5681611e46565b6000610f2a600a5490565b8210610f8d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a2a565b600a8281548110610fa057610fa0612e49565b90600052602060002001549050919050565b600c546001600160a01b03163314610fdc5760405162461bcd60e51b8152600401610a2a90612c59565b610e5681611f24565b6000818152600460205260408120546001600160a01b03168061091d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a2a565b60006001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a2a565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610a2a90612c59565b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600c546001600160a01b031633146111815760405162461bcd60e51b8152600401610a2a90612c59565b601555565b600c546001600160a01b031633146111b05760405162461bcd60e51b8152600401610a2a90612c59565b610e8b611f37565b60606001805461093290612d9d565b600c546001600160a01b031633146111f15760405162461bcd60e51b8152600401610a2a90612c59565b6001600160a01b03166000908152601760205260409020805460ff19166001179055565b600c546001600160a01b0316331461123f5760405162461bcd60e51b8152600401610a2a90612c59565b601355565b6001600160a01b03821633141561129d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a2a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c546001600160a01b031633146113335760405162461bcd60e51b8152600401610a2a90612c59565b600c54600160a81b900460ff16156113855760405162461bcd60e51b81526020600482015260156024820152741391951cc8185b1c9958591e481c995d99585b1959605a1b6044820152606401610a2a565b600c805460ff60a81b1916600160a81b179055565b600c546001600160a01b031633146113c45760405162461bcd60e51b8152600401610a2a90612c59565b6001600160a01b03166000908152601760205260409020805460ff19169055565b600c546001600160a01b0316331461140f5760405162461bcd60e51b8152600401610a2a90612c59565b600061141a600a5490565b600d5490915061142a8383612d2e565b11156114705760405162461bcd60e51b8152602060048201526015602482015274537570706c79206c696d697420726561636865642160581b6044820152606401610a2a565b60015b82811161149f5761148d846114888385612d2e565b611fbf565b8061149781612dd8565b915050611473565b50604080516001600160a01b038516815260208101849052428183015290517f2c7d174a64b49c17bcea3a44c1ba1547c9a3f4997b68952c5dd3fcc1f17f7d6d9181900360600190a1505050565b6060600f805461093290612d9d565b6115063383611b07565b6115225760405162461bcd60e51b8152600401610a2a90612cdd565b61152e84848484611fd9565b50505050565b600c54600160a01b900460ff16156115815760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a2a565b4260105411158015611594575042601154115b6115e05760405162461bcd60e51b815260206004820181905260248201527f50726573616c6520656e646564206f72206e6f742073746172746564207965746044820152606401610a2a565b6001600160a01b03811660009081526017602052604090205460ff166116485760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610a2a565b600e54600a5411156116945760405162461bcd60e51b8152602060048201526015602482015274537570706c79206c696d697420726561636865642160581b6044820152606401610a2a565b6001600160a01b038116600090815260166020526040902054156116fa5760405162461bcd60e51b815260206004820152601d60248201527f596f752063616e2774207072652d627579206d6f726520746f6b656e730000006044820152606401610a2a565b61171281611707600a5490565b611488906001612d2e565b6001600160a01b038116600090815260166020526040812080549161173683612dd8565b9091555050604080516001600160a01b038316815260016020820152348183015242606082015290517f6fddf4c7ef42bb2270408a1ac69251571fe3108080513c71a183b9f0fdc291de9181900360800190a150565b6000818152600460205260409020546060906001600160a01b03166117c35760405162461bcd60e51b8152600401610a2a90612c8e565b600c54600160a81b900460ff1661186657600f80546117e190612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461180d90612d9d565b801561185a5780601f1061182f5761010080835404028352916020019161185a565b820191906000526020600020905b81548152906001019060200180831161183d57829003601f168201915b50505050509050919050565b61091d8261200c565b919050565b600c546001600160a01b0316331461189e5760405162461bcd60e51b8152600401610a2a90612c59565b601155565b600c546001600160a01b031633146118cd5760405162461bcd60e51b8152600401610a2a90612c59565b6118d78282611fbf565b604080516001600160a01b0384168152602081018390527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a15050565b600c546001600160a01b031633146119475760405162461bcd60e51b8152600401610a2a90612c59565b805161195a90600f906020840190612719565b5050565b600c546001600160a01b031633146119885760405162461bcd60e51b8152600401610a2a90612c59565b6001600160a01b0381166119ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a2a565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611a7a57506001600160e01b03198216635b5e139f60e01b145b8061091d57506301ffc9a760e01b6001600160e01b031983161461091d565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ace82610fe5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b0316611b805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a2a565b6000611b8b83610fe5565b9050806001600160a01b0316846001600160a01b03161480611bc65750836001600160a01b0316611bbb846109b5565b6001600160a01b0316145b80611bf657506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c1182610fe5565b6001600160a01b031614611c795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a2a565b6001600160a01b038216611cdb5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a2a565b611ce6838383612145565b611cf1600082611a99565b6001600160a01b0383166000908152600560205260408120805460019290611d1a908490612d5a565b90915550506001600160a01b0382166000908152600560205260408120805460019290611d48908490612d2e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600c54600160a01b900460ff16611df95760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a2a565b600c805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611e5182610fe5565b9050611e5f81600084612145565b611e6a600083611a99565b60008281526002602052604090208054611e8390612d9d565b159050611ea1576000828152600260205260408120611ea19161279d565b6001600160a01b0381166000908152600560205260408120805460019290611eca908490612d5a565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b805161195a906003906020840190612719565b600c54600160a01b900460ff1615611f845760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610a2a565b600c805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e293390565b61195a8282604051806020016040528060008152506121fd565b611fe4848484611bfe565b611ff084848484612230565b61152e5760405162461bcd60e51b8152600401610a2a90612c07565b6000818152600460205260409020546060906001600160a01b03166120435760405162461bcd60e51b8152600401610a2a90612c8e565b6000828152600260205260408120805461205c90612d9d565b80601f016020809104026020016040519081016040528092919081815260200182805461208890612d9d565b80156120d55780601f106120aa576101008083540402835291602001916120d5565b820191906000526020600020905b8154815290600101906020018083116120b857829003601f168201915b50505050509050600380546120e990612d9d565b151590506120f75792915050565b80511561212957600381604051602001612112929190612acc565b604051602081830303815290604052915050919050565b60036121348461233d565b604051602001612112929190612acc565b6001600160a01b0383166121a05761219b81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6121c3565b816001600160a01b0316836001600160a01b0316146121c3576121c3838261243b565b6001600160a01b0382166121da57610b60816124d8565b826001600160a01b0316826001600160a01b031614610b6057610b608282612587565b61220783836125cb565b6122146000848484612230565b610b605760405162461bcd60e51b8152600401610a2a90612c07565b60006001600160a01b0384163b1561233257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612274903390899088908890600401612b73565b602060405180830381600087803b15801561228e57600080fd5b505af19250505080156122be575060408051601f3d908101601f191682019092526122bb91810190612a05565b60015b612318573d8080156122ec576040519150601f19603f3d011682016040523d82523d6000602084013e6122f1565b606091505b5080516123105760405162461bcd60e51b8152600401610a2a90612c07565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bf6565b506001949350505050565b6060816123615750506040805180820190915260018152600360fc1b602082015290565b8160005b811561238b578061237581612dd8565b91506123849050600a83612d46565b9150612365565b60008167ffffffffffffffff8111156123a6576123a6612e5f565b6040519080825280601f01601f1916602001820160405280156123d0576020820181803683370190505b5090505b8415611bf6576123e5600183612d5a565b91506123f2600a86612df3565b6123fd906030612d2e565b60f81b81838151811061241257612412612e49565b60200101906001600160f81b031916908160001a905350612434600a86612d46565b94506123d4565b600060016124488461105c565b6124529190612d5a565b6000838152600960205260409020549091508082146124a5576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906124ea90600190612d5a565b6000838152600b6020526040812054600a805493945090928490811061251257612512612e49565b9060005260206000200154905080600a838154811061253357612533612e49565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061256b5761256b612e33565b6001900381819060005260206000200160009055905550505050565b60006125928361105c565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160a01b0382166126215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a2a565b6000818152600460205260409020546001600160a01b0316156126865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a2a565b61269260008383612145565b6001600160a01b03821660009081526005602052604081208054600192906126bb908490612d2e565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461272590612d9d565b90600052602060002090601f016020900481019282612747576000855561278d565b82601f1061276057805160ff191683800117855561278d565b8280016001018555821561278d579182015b8281111561278d578251825591602001919060010190612772565b506127999291506127d3565b5090565b5080546127a990612d9d565b6000825580601f106127b9575050565b601f016020900490600052602060002090810190610e5691905b5b8082111561279957600081556001016127d4565b600067ffffffffffffffff8084111561280357612803612e5f565b604051601f8501601f19908116603f0116810190828211818310171561282b5761282b612e5f565b8160405280935085815286868601111561284457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461186f57600080fd5b60006020828403121561288757600080fd5b6128908261285e565b9392505050565b600080604083850312156128aa57600080fd5b6128b38361285e565b91506128c16020840161285e565b90509250929050565b6000806000606084860312156128df57600080fd5b6128e88461285e565b92506128f66020850161285e565b9150604084013590509250925092565b6000806000806080858703121561291c57600080fd5b6129258561285e565b93506129336020860161285e565b925060408501359150606085013567ffffffffffffffff81111561295657600080fd5b8501601f8101871361296757600080fd5b612976878235602084016127e8565b91505092959194509250565b6000806040838503121561299557600080fd5b61299e8361285e565b9150602083013580151581146129b357600080fd5b809150509250929050565b600080604083850312156129d157600080fd5b6129da8361285e565b946020939093013593505050565b6000602082840312156129fa57600080fd5b813561289081612e75565b600060208284031215612a1757600080fd5b815161289081612e75565b600060208284031215612a3457600080fd5b813567ffffffffffffffff811115612a4b57600080fd5b8201601f81018413612a5c57600080fd5b611bf6848235602084016127e8565b600060208284031215612a7d57600080fd5b5035919050565b60008151808452612a9c816020860160208601612d71565b601f01601f19169290920160200192915050565b60008151612ac2818560208601612d71565b9290920192915050565b600080845481600182811c915080831680612ae857607f831692505b6020808410821415612b0857634e487b7160e01b86526022600452602486fd5b818015612b1c5760018114612b2d57612b5a565b60ff19861689528489019650612b5a565b60008b81526020902060005b86811015612b525781548b820152908501908301612b39565b505084890196505b505050505050612b6a8185612ab0565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba690830184612a84565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612be857835183529284019291840191600101612bcc565b50909695505050505050565b6020815260006128906020830184612a84565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612d4157612d41612e07565b500190565b600082612d5557612d55612e1d565b500490565b600082821015612d6c57612d6c612e07565b500390565b60005b83811015612d8c578181015183820152602001612d74565b8381111561152e5750506000910152565b600181811c90821680612db157607f821691505b60208210811415612dd257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612dec57612dec612e07565b5060010190565b600082612e0257612e02612e1d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e5657600080fdfea2646970667358221220cf8e379edd42c9da4168771df0a7779abf2a1713546ab447c7ab88a4cef0c1ec64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f726f732d77656c6c2e6d7970696e6174612e636c6f75642f697066732f516d614178396e544d775171326b483778694272436f50376b655a4d6e554a4a4d7153345044724c665a626f67522f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000012436f736d696320436861726c6965204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543434e4654000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://ros-well.mypinata.cloud/ipfs/QmaAx9nTMwQq2kH7xiBrCoP7keZMnUJJMqS4PDrLfZbogR/
Arg [1] : name (string): Cosmic Charlie NFT
Arg [2] : symbol (string): CCNFT
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [4] : 68747470733a2f2f726f732d77656c6c2e6d7970696e6174612e636c6f75642f
Arg [5] : 697066732f516d614178396e544d775171326b483778694272436f50376b655a
Arg [6] : 4d6e554a4a4d7153345044724c665a626f67522f000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [8] : 436f736d696320436861726c6965204e46540000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 43434e4654000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
37542:5803:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31415:237;;;;;;;;;;-1:-1:-1;31415:237:0;;;;;:::i;:::-;;:::i;:::-;;;8236:14:1;;8229:22;8211:41;;8199:2;8184:18;31415:237:0;;;;;;;;18363:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21037:221::-;;;;;;;;;;-1:-1:-1;21037:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5838:32:1;;;5820:51;;5808:2;5793:18;21037:221:0;5674:203:1;20567:404:0;;;;;;;;;;-1:-1:-1;20567:404:0;;;;;:::i;:::-;;:::i;:::-;;40440:100;;;;;;;;;;-1:-1:-1;40440:100:0;;;;;:::i;:::-;;:::i;42976:136::-;;;;;;;;;;;;;:::i;32068:113::-;;;;;;;;;;-1:-1:-1;32156:10:0;:17;32068:113;;;19074:25:1;;;19062:2;19047:18;32068:113:0;18928:177:1;21927:305:0;;;;;;;;;;-1:-1:-1;21927:305:0;;;;;:::i;:::-;;:::i;40220:104::-;;;;;;;;;;-1:-1:-1;40220:104:0;;;;;:::i;:::-;;:::i;31736:256::-;;;;;;;;;;-1:-1:-1;31736:256:0;;;;;:::i;:::-;;:::i;39988:104::-;;;;;;;;;;-1:-1:-1;39988:104:0;;;;;:::i;:::-;;:::i;41931:357::-;;;;;;;;;;-1:-1:-1;41931:357:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42296:111::-;;;;;;;;;;-1:-1:-1;42296:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;42378:21:0;42355:4;42378:21;;;:14;:21;;;;;;;;;42296:111;43238:104;;;;;;;;;;;;;:::i;38543:65::-;;;;;;;;;;;;;:::i;22303:151::-;;;;;;;;;;-1:-1:-1;22303:151:0;;;;;:::i;:::-;;:::i;40782:248::-;;;;;;;;;;-1:-1:-1;40782:248:0;;;;;:::i;:::-;;:::i;32258:233::-;;;;;;;;;;-1:-1:-1;32258:233:0;;;;;:::i;:::-;;:::i;39877:101::-;;;;;;;;;;-1:-1:-1;39877:101:0;;;;;:::i;:::-;;:::i;42747:81::-;;;;;;;;;;-1:-1:-1;42812:8:0;;-1:-1:-1;;;42812:8:0;;;;42747:81;;2219:86;;;;;;;;;;-1:-1:-1;2290:7:0;;-1:-1:-1;;;2290:7:0;;;;2219:86;;18057:239;;;;;;;;;;-1:-1:-1;18057:239:0;;;;;:::i;:::-;;:::i;17787:208::-;;;;;;;;;;-1:-1:-1;17787:208:0;;;;;:::i;:::-;;:::i;5064:148::-;;;;;;;;;;;;;:::i;40100:110::-;;;;;;;;;;-1:-1:-1;40100:110:0;;;;;:::i;:::-;;:::i;41600:99::-;;;;;;;;;;-1:-1:-1;41677:14:0;;41600:99;;41170:95;;;;;;;;;;-1:-1:-1;41245:12:0;;41170:95;;38474:61;;;;;;;;;;;;;:::i;4413:87::-;;;;;;;;;;-1:-1:-1;4486:6:0;;-1:-1:-1;;;;;4486:6:0;4413:87;;41273:101;;;;;;;;;;-1:-1:-1;41351:15:0;;41273:101;;18532:104;;;;;;;;;;;;;:::i;43120:110::-;;;;;;;;;;-1:-1:-1;43120:110:0;;;;;:::i;:::-;-1:-1:-1;;;;;43205:17:0;43179:7;43205:17;;;:10;:17;;;;;;;43120:110;41382:103;;;;;;;;;;-1:-1:-1;41461:16:0;;41382:103;;40662:112;;;;;;;;;;-1:-1:-1;40662:112:0;;;;;:::i;:::-;;:::i;40548:106::-;;;;;;;;;;-1:-1:-1;40548:106:0;;;;;:::i;:::-;;:::i;21330:295::-;;;;;;;;;;-1:-1:-1;21330:295:0;;;;;:::i;:::-;;:::i;42836:132::-;;;;;;;;;;;;;:::i;41038:124::-;;;;;;;;;;-1:-1:-1;41038:124:0;;;;;:::i;:::-;;:::i;39204:379::-;;;;;;;;;;-1:-1:-1;39204:379:0;;;;;:::i;:::-;;:::i;41820:103::-;;;;;;;;;;;;;:::i;22525:285::-;;;;;;;;;;-1:-1:-1;22525:285:0;;;;;:::i;:::-;;:::i;38616:580::-;;;;;;:::i;:::-;;:::i;42415:324::-;;;;;;;;;;-1:-1:-1;42415:324:0;;;;;:::i;:::-;;:::i;40332:100::-;;;;;;;;;;-1:-1:-1;40332:100:0;;;;;:::i;:::-;;:::i;41493:99::-;;;;;;;;;;-1:-1:-1;41570:14:0;;41493:99;;39591:158;;;;;;;;;;-1:-1:-1;39591:158:0;;;;;:::i;:::-;;:::i;21696:164::-;;;;;;;;;;-1:-1:-1;21696:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;21817:25:0;;;21793:4;21817:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21696:164;39757:108;;;;;;;;;;-1:-1:-1;39757:108:0;;;;;:::i;:::-;;:::i;5367:244::-;;;;;;;;;;-1:-1:-1;5367:244:0;;;;;:::i;:::-;;:::i;41707:105::-;;;;;;;;;;-1:-1:-1;41787:17:0;;41707:105;;31415:237;31517:4;-1:-1:-1;;;;;;31541:50:0;;-1:-1:-1;;;31541:50:0;;:103;;;31608:36;31632:11;31608:23;:36::i;:::-;31534:110;31415:237;-1:-1:-1;;31415:237:0:o;18363:100::-;18417:13;18450:5;18443:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18363:100;:::o;21037:221::-;21113:7;24366:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24366:16:0;21133:73;;;;-1:-1:-1;;;21133:73:0;;14461:2:1;21133:73:0;;;14443:21:1;14500:2;14480:18;;;14473:30;14539:34;14519:18;;;14512:62;-1:-1:-1;;;14590:18:1;;;14583:42;14642:19;;21133:73:0;;;;;;;;;-1:-1:-1;21226:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21226:24:0;;21037:221::o;20567:404::-;20648:13;20664:23;20679:7;20664:14;:23::i;:::-;20648:39;;20712:5;-1:-1:-1;;;;;20706:11:0;:2;-1:-1:-1;;;;;20706:11:0;;;20698:57;;;;-1:-1:-1;;;20698:57:0;;16411:2:1;20698:57:0;;;16393:21:1;16450:2;16430:18;;;16423:30;16489:34;16469:18;;;16462:62;-1:-1:-1;;;16540:18:1;;;16533:31;16581:19;;20698:57:0;16209:397:1;20698:57:0;967:10;-1:-1:-1;;;;;20776:21:0;;;;:69;;-1:-1:-1;20801:44:0;20825:5;967:10;21696:164;:::i;20801:44::-;20768:161;;;;-1:-1:-1;;;20768:161:0;;12854:2:1;20768:161:0;;;12836:21:1;12893:2;12873:18;;;12866:30;12932:34;12912:18;;;12905:62;13003:26;12983:18;;;12976:54;13047:19;;20768:161:0;12652:420:1;20768:161:0;20942:21;20951:2;20955:7;20942:8;:21::i;:::-;20637:334;20567:404;;:::o;40440:100::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;40510:14:::1;:22:::0;40440:100::o;42976:136::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;43033:8:::1;::::0;-1:-1:-1;;;43033:8:0;::::1;;;:16;;43045:4;43033:16;43024:53;;;::::0;-1:-1:-1;;;43024:53:0;;11805:2:1;43024:53:0::1;::::0;::::1;11787:21:1::0;11844:2;11824:18;;;11817:30;11883:25;11863:18;;;11856:53;11926:18;;43024:53:0::1;11603:347:1::0;43024:53:0::1;43088:8;:16:::0;;-1:-1:-1;;;;43088:16:0::1;::::0;;42976:136::o;21927:305::-;22088:41;967:10;22107:12;22121:7;22088:18;:41::i;:::-;22080:103;;;;-1:-1:-1;;;22080:103:0;;;;;;;:::i;:::-;22196:28;22206:4;22212:2;22216:7;22196:9;:28::i;40220:104::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;40292:16:::1;:24:::0;40220:104::o;31736:256::-;31833:7;31869:23;31886:5;31869:16;:23::i;:::-;31861:5;:31;31853:87;;;;-1:-1:-1;;;31853:87:0;;9038:2:1;31853:87:0;;;9020:21:1;9077:2;9057:18;;;9050:30;9116:34;9096:18;;;9089:62;-1:-1:-1;;;9167:18:1;;;9160:41;9218:19;;31853:87:0;8836:407:1;31853:87:0;-1:-1:-1;;;;;;31958:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;31736:256::o;39988:104::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;40060:12:::1;:24:::0;39988:104::o;41931:357::-;41987:16;42021:23;42047:16;42057:5;42047:9;:16::i;:::-;42021:42;;42074:25;42116:15;42102:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42102:30:0;;42074:58;;42148:9;42143:112;42163:15;42159:1;:19;42143:112;;;42214:29;42234:5;42241:1;42214:19;:29::i;:::-;42200:8;42209:1;42200:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;42180:3;;;;:::i;:::-;;;;42143:112;;;-1:-1:-1;42272:8:0;41931:357;-1:-1:-1;;;41931:357:0:o;43238:104::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;4486:6;;43286:48:::1;::::0;-1:-1:-1;;;;;4486:6:0;;;;43312:21:::1;43286:48:::0;::::1;;;::::0;::::1;::::0;;;43312:21;4486:6;43286:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43238:104::o:0;38543:65::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;38590:10:::1;:8;:10::i;:::-;38543:65::o:0;22303:151::-;22407:39;22424:4;22430:2;22434:7;22407:39;;;;;;;;;;;;:16;:39::i;40782:248::-;40893:42;967:10;40912:12;887:98;40893:42;40885:103;;;;-1:-1:-1;;;40885:103:0;;18355:2:1;40885:103:0;;;18337:21:1;18394:2;18374:18;;;18367:30;18433:34;18413:18;;;18406:62;-1:-1:-1;;;18484:18:1;;;18477:46;18540:19;;40885:103:0;18153:412:1;40885:103:0;40999:15;41005:8;40999:5;:15::i;32258:233::-;32333:7;32369:30;32156:10;:17;;32068:113;32369:30;32361:5;:38;32353:95;;;;-1:-1:-1;;;32353:95:0;;17942:2:1;32353:95:0;;;17924:21:1;17981:2;17961:18;;;17954:30;18020:34;18000:18;;;17993:62;-1:-1:-1;;;18071:18:1;;;18064:42;18123:19;;32353:95:0;17740:408:1;32353:95:0;32466:10;32477:5;32466:17;;;;;;;;:::i;:::-;;;;;;;;;32459:24;;32258:233;;;:::o;39877:101::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;39949:21:::1;39961:8;39949:11;:21::i;18057:239::-:0;18129:7;18165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18165:16:0;18200:19;18192:73;;;;-1:-1:-1;;;18192:73:0;;13690:2:1;18192:73:0;;;13672:21:1;13729:2;13709:18;;;13702:30;13768:34;13748:18;;;13741:62;-1:-1:-1;;;13819:18:1;;;13812:39;13868:19;;18192:73:0;13488:405:1;17787:208:0;17859:7;-1:-1:-1;;;;;17887:19:0;;17879:74;;;;-1:-1:-1;;;17879:74:0;;13279:2:1;17879:74:0;;;13261:21:1;13318:2;13298:18;;;13291:30;13357:34;13337:18;;;13330:62;-1:-1:-1;;;13408:18:1;;;13401:40;13458:19;;17879:74:0;13077:406:1;17879:74:0;-1:-1:-1;;;;;;17971:16:0;;;;;:9;:16;;;;;;;17787:208::o;5064:148::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;5155:6:::1;::::0;5134:40:::1;::::0;5171:1:::1;::::0;-1:-1:-1;;;;;5155:6:0::1;::::0;5134:40:::1;::::0;5171:1;;5134:40:::1;5185:6;:19:::0;;-1:-1:-1;;;;;;5185:19:0::1;::::0;;5064:148::o;40100:110::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;40175:15:::1;:27:::0;40100:110::o;38474:61::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;38519:8:::1;:6;:8::i;18532:104::-:0;18588:13;18621:7;18614:14;;;;;:::i;40662:112::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40735:24:0::1;;::::0;;;:14:::1;:24;::::0;;;;:31;;-1:-1:-1;;40735:31:0::1;40762:4;40735:31;::::0;;40662:112::o;40548:106::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;40621:17:::1;:25:::0;40548:106::o;21330:295::-;-1:-1:-1;;;;;21433:24:0;;967:10;21433:24;;21425:62;;;;-1:-1:-1;;;21425:62:0;;11038:2:1;21425:62:0;;;11020:21:1;11077:2;11057:18;;;11050:30;11116:27;11096:18;;;11089:55;11161:18;;21425:62:0;10836:349:1;21425:62:0;967:10;21500:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21500:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21500:53:0;;;;;;;;;;21569:48;;8211:41:1;;;21500:42:0;;967:10;21569:48;;8184:18:1;21569:48:0;;;;;;;21330:295;;:::o;42836:132::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;42891:8:::1;::::0;-1:-1:-1;;;42891:8:0;::::1;;;:17;42882:52;;;::::0;-1:-1:-1;;;42882:52:0;;17174:2:1;42882:52:0::1;::::0;::::1;17156:21:1::0;17213:2;17193:18;;;17186:30;-1:-1:-1;;;17232:18:1;;;17225:51;17293:18;;42882:52:0::1;16972:345:1::0;42882:52:0::1;42945:8;:15:::0;;-1:-1:-1;;;;42945:15:0::1;-1:-1:-1::0;;;42945:15:0::1;::::0;;42836:132::o;41038:124::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41122:24:0::1;41149:5;41122:24:::0;;;:14:::1;:24;::::0;;;;:32;;-1:-1:-1;;41122:32:0::1;::::0;;41038:124::o;39204:379::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;39289:14:::1;39306:13;32156:10:::0;:17;;32068:113;39306:13:::1;39362:9;::::0;39289:30;;-1:-1:-1;39338:20:0::1;39347:11:::0;39289:30;39338:20:::1;:::i;:::-;:33;;39330:67;;;::::0;-1:-1:-1;;;39330:67:0;;16061:2:1;39330:67:0::1;::::0;::::1;16043:21:1::0;16100:2;16080:18;;;16073:30;-1:-1:-1;;;16119:18:1;;;16112:51;16180:18;;39330:67:0::1;15859:345:1::0;39330:67:0::1;39432:1;39415:96;39440:11;39435:1;:16;39415:96;;39473:26;39483:3:::0;39488:10:::1;39497:1:::0;39488:6;:10:::1;:::i;:::-;39473:9;:26::i;:::-;39453:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39415:96;;;-1:-1:-1::0;39526:49:0::1;::::0;;-1:-1:-1;;;;;7304:32:1;;7286:51;;7368:2;7353:18;;7346:34;;;39559:15:0::1;7396:18:1::0;;;7389:34;39526:49:0;;::::1;::::0;;;;7274:2:1;39526:49:0;;::::1;39278:305;39204:379:::0;;:::o;41820:103::-;41870:13;41903:12;41896:19;;;;;:::i;22525:285::-;22657:41;967:10;22690:7;22657:18;:41::i;:::-;22649:103;;;;-1:-1:-1;;;22649:103:0;;;;;;;:::i;:::-;22763:39;22777:4;22783:2;22787:7;22796:5;22763:13;:39::i;:::-;22525:285;;;;:::o;38616:580::-;2290:7;;-1:-1:-1;;;2290:7:0;;;;2544:9;2536:38;;;;-1:-1:-1;;;2536:38:0;;12157:2:1;2536:38:0;;;12139:21:1;12196:2;12176:18;;;12169:30;-1:-1:-1;;;12215:18:1;;;12208:46;12271:18;;2536:38:0;11955:340:1;2536:38:0;38717:15:::1;38697:16;;:35;;:71;;;;;38753:15;38736:14;;:32;38697:71;38689:116;;;::::0;-1:-1:-1;;;38689:116:0;;16813:2:1;38689:116:0::1;::::0;::::1;16795:21:1::0;;;16832:18;;;16825:30;16891:34;16871:18;;;16864:62;16943:18;;38689:116:0::1;16611:356:1::0;38689:116:0::1;-1:-1:-1::0;;;;;42378:21:0;;42355:4;42378:21;;;:14;:21;;;;;;;;38816:54:::1;;;::::0;-1:-1:-1;;;38816:54:0;;12502:2:1;38816:54:0::1;::::0;::::1;12484:21:1::0;12541:2;12521:18;;;12514:30;12580:25;12560:18;;;12553:53;12623:18;;38816:54:0::1;12300:347:1::0;38816:54:0::1;38911:13;::::0;32156:10;:17;38894:30:::1;;38886:64;;;::::0;-1:-1:-1;;;38886:64:0;;16061:2:1;38886:64:0::1;::::0;::::1;16043:21:1::0;16100:2;16080:18;;;16073:30;-1:-1:-1;;;16119:18:1;;;16112:51;16180:18;;38886:64:0::1;15859:345:1::0;38886:64:0::1;-1:-1:-1::0;;;;;38981:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;;:20;38973:62:::1;;;::::0;-1:-1:-1;;;38973:62:0;;18772:2:1;38973:62:0::1;::::0;::::1;18754:21:1::0;18811:2;18791:18;;;18784:30;18850:31;18830:18;;;18823:59;18899:18;;38973:62:0::1;18570:353:1::0;38973:62:0::1;39057:33;39067:3;39072:13;32156:10:::0;:17;;32068:113;39072:13:::1;:17;::::0;39088:1:::1;39072:17;:::i;39057:33::-;-1:-1:-1::0;;;;;39108:15:0;::::1;;::::0;;;:10:::1;:15;::::0;;;;:17;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;39141:47:0::1;::::0;;-1:-1:-1;;;;;6632:32:1;;6614:51;;39158:1:0::1;6696:2:1::0;6681:18;;6674:34;39161:9:0::1;6724:18:1::0;;;6717:34;39172:15:0::1;6782:2:1::0;6767:18;;6760:34;39141:47:0;;::::1;::::0;;;;6601:3:1;39141:47:0;;::::1;38616:580:::0;:::o;42415:324::-;24342:4;24366:16;;;:7;:16;;;;;;42482:13;;-1:-1:-1;;;;;24366:16:0;42513:77;;;;-1:-1:-1;;;42513:77:0;;;;;;;:::i;:::-;42604:8;;-1:-1:-1;;;42604:8:0;;;;42601:131;;42645:12;42638:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42415:324;;;:::o;42601:131::-;42696:24;42711:8;42696:14;:24::i;42601:131::-;42415:324;;;:::o;40332:100::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;40402:14:::1;:22:::0;40332:100::o;39591:158::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;39674:24:::1;39684:3;39689:8;39674:9;:24::i;:::-;39716:20;::::0;;-1:-1:-1;;;;;6997:32:1;;6979:51;;7061:2;7046:18;;7039:34;;;39716:20:0::1;::::0;6952:18:1;39716:20:0::1;;;;;;;39591:158:::0;;:::o;39757:108::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;39835:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39757:108:::0;:::o;5367:244::-;4486:6;;-1:-1:-1;;;;;4486:6:0;967:10;4633:23;4625:68;;;;-1:-1:-1;;;4625:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5456:22:0;::::1;5448:73;;;::::0;-1:-1:-1;;;5448:73:0;;9869:2:1;5448:73:0::1;::::0;::::1;9851:21:1::0;9908:2;9888:18;;;9881:30;9947:34;9927:18;;;9920:62;-1:-1:-1;;;9998:18:1;;;9991:36;10044:19;;5448:73:0::1;9667:402:1::0;5448:73:0::1;5558:6;::::0;5537:38:::1;::::0;-1:-1:-1;;;;;5537:38:0;;::::1;::::0;5558:6:::1;::::0;5537:38:::1;::::0;5558:6:::1;::::0;5537:38:::1;5586:6;:17:::0;;-1:-1:-1;;;;;;5586:17:0::1;-1:-1:-1::0;;;;;5586:17:0;;;::::1;::::0;;;::::1;::::0;;5367:244::o;17431:292::-;17533:4;-1:-1:-1;;;;;;17557:40:0;;-1:-1:-1;;;17557:40:0;;:105;;-1:-1:-1;;;;;;;17614:48:0;;-1:-1:-1;;;17614:48:0;17557:105;:158;;;-1:-1:-1;;;;;;;;;;7179:40:0;;;17679:36;7070:157;28304:174;28379:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;28379:29:0;-1:-1:-1;;;;;28379:29:0;;;;;;;;:24;;28433:23;28379:24;28433:14;:23::i;:::-;-1:-1:-1;;;;;28424:46:0;;;;;;;;;;;28304:174;;:::o;24571:355::-;24664:4;24366:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24366:16:0;24681:73;;;;-1:-1:-1;;;24681:73:0;;11392:2:1;24681:73:0;;;11374:21:1;11431:2;11411:18;;;11404:30;11470:34;11450:18;;;11443:62;-1:-1:-1;;;11521:18:1;;;11514:42;11573:19;;24681:73:0;11190:408:1;24681:73:0;24765:13;24781:23;24796:7;24781:14;:23::i;:::-;24765:39;;24834:5;-1:-1:-1;;;;;24823:16:0;:7;-1:-1:-1;;;;;24823:16:0;;:51;;;;24867:7;-1:-1:-1;;;;;24843:31:0;:20;24855:7;24843:11;:20::i;:::-;-1:-1:-1;;;;;24843:31:0;;24823:51;:94;;;-1:-1:-1;;;;;;21817:25:0;;;21793:4;21817:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;24878:39;24815:103;24571:355;-1:-1:-1;;;;24571:355:0:o;27642:544::-;27767:4;-1:-1:-1;;;;;27740:31:0;:23;27755:7;27740:14;:23::i;:::-;-1:-1:-1;;;;;27740:31:0;;27732:85;;;;-1:-1:-1;;;27732:85:0;;15235:2:1;27732:85:0;;;15217:21:1;15274:2;15254:18;;;15247:30;15313:34;15293:18;;;15286:62;-1:-1:-1;;;15364:18:1;;;15357:39;15413:19;;27732:85:0;15033:405:1;27732:85:0;-1:-1:-1;;;;;27836:16:0;;27828:65;;;;-1:-1:-1;;;27828:65:0;;10633:2:1;27828:65:0;;;10615:21:1;10672:2;10652:18;;;10645:30;10711:34;10691:18;;;10684:62;-1:-1:-1;;;10762:18:1;;;10755:34;10806:19;;27828:65:0;10431:400:1;27828:65:0;27906:39;27927:4;27933:2;27937:7;27906:20;:39::i;:::-;28010:29;28027:1;28031:7;28010:8;:29::i;:::-;-1:-1:-1;;;;;28052:15:0;;;;;;:9;:15;;;;;:20;;28071:1;;28052:15;:20;;28071:1;;28052:20;:::i;:::-;;;;-1:-1:-1;;;;;;;28083:13:0;;;;;;:9;:13;;;;;:18;;28100:1;;28083:13;:18;;28100:1;;28083:18;:::i;:::-;;;;-1:-1:-1;;28112:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28112:21:0;-1:-1:-1;;;;;28112:21:0;;;;;;;;;28151:27;;28112:16;;28151:27;;;;;;;27642:544;;;:::o;3278:120::-;2290:7;;-1:-1:-1;;;2290:7:0;;;;2814:41;;;;-1:-1:-1;;;2814:41:0;;8689:2:1;2814:41:0;;;8671:21:1;8728:2;8708:18;;;8701:30;-1:-1:-1;;;8747:18:1;;;8740:50;8807:18;;2814:41:0;8487:344:1;2814:41:0;3337:7:::1;:15:::0;;-1:-1:-1;;;;3337:15:0::1;::::0;;3368:22:::1;967:10:::0;3377:12:::1;3368:22;::::0;-1:-1:-1;;;;;5838:32:1;;;5820:51;;5808:2;5793:18;3368:22:0::1;;;;;;;3278:120::o:0;26802:503::-;26862:13;26878:23;26893:7;26878:14;:23::i;:::-;26862:39;;26914:48;26935:5;26950:1;26954:7;26914:20;:48::i;:::-;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27091:19;;;;:10;:19;;;;;27085:33;;;;;:::i;:::-;:38;;-1:-1:-1;27081:97:0;;27147:19;;;;:10;:19;;;;;27140:26;;;:::i;:::-;-1:-1:-1;;;;;27188:16:0;;;;;;:9;:16;;;;;:21;;27208:1;;27188:16;:21;;27208:1;;27188:21;:::i;:::-;;;;-1:-1:-1;;27227:16:0;;;;:7;:16;;;;;;27220:23;;-1:-1:-1;;;;;;27220:23:0;;;27261:36;27235:7;;27227:16;-1:-1:-1;;;;;27261:36:0;;;;;27227:16;;27261:36;26851:454;26802:503;:::o;20074:100::-;20147:19;;;;:8;;:19;;;;;:::i;3019:118::-;2290:7;;-1:-1:-1;;;2290:7:0;;;;2544:9;2536:38;;;;-1:-1:-1;;;2536:38:0;;12157:2:1;2536:38:0;;;12139:21:1;12196:2;12176:18;;;12169:30;-1:-1:-1;;;12215:18:1;;;12208:46;12271:18;;2536:38:0;11955:340:1;2536:38:0;3079:7:::1;:14:::0;;-1:-1:-1;;;;3079:14:0::1;-1:-1:-1::0;;;3079:14:0::1;::::0;;3109:20:::1;3116:12;967:10:::0;;887:98;25268:110;25344:26;25354:2;25358:7;25344:26;;;;;;;;;;;;:9;:26::i;23692:272::-;23806:28;23816:4;23822:2;23826:7;23806:9;:28::i;:::-;23853:48;23876:4;23882:2;23886:7;23895:5;23853:22;:48::i;:::-;23845:111;;;;-1:-1:-1;;;23845:111:0;;;;;;;:::i;18709:763::-;24342:4;24366:16;;;:7;:16;;;;;;18782:13;;-1:-1:-1;;;;;24366:16:0;18808:76;;;;-1:-1:-1;;;18808:76:0;;;;;;;:::i;:::-;18897:23;18923:19;;;:10;:19;;;;;18897:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19024:8;19018:22;;;;;:::i;:::-;:27;19014:76;;-1:-1:-1;19014:76:0;;19069:9;18709:763;-1:-1:-1;;18709:763:0:o;19014:76::-;19194:23;;:27;19190:112;;19269:8;19279:9;19252:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19238:52;;;18709:763;;;:::o;19190:112::-;19434:8;19444:18;:7;:16;:18::i;:::-;19417:46;;;;;;;;;:::i;33104:555::-;-1:-1:-1;;;;;33276:18:0;;33272:187;;33311:40;33343:7;34486:10;:17;;34459:24;;;;:15;:24;;;;;:44;;;34514:24;;;;;;;;;;;;34382:164;33311:40;33272:187;;;33381:2;-1:-1:-1;;;;;33373:10:0;:4;-1:-1:-1;;;;;33373:10:0;;33369:90;;33400:47;33433:4;33439:7;33400:32;:47::i;:::-;-1:-1:-1;;;;;33473:16:0;;33469:183;;33506:45;33543:7;33506:36;:45::i;33469:183::-;33579:4;-1:-1:-1;;;;;33573:10:0;:2;-1:-1:-1;;;;;33573:10:0;;33569:83;;33600:40;33628:2;33632:7;33600:27;:40::i;25605:250::-;25701:18;25707:2;25711:7;25701:5;:18::i;:::-;25738:54;25769:1;25773:2;25777:7;25786:5;25738:22;:54::i;:::-;25730:117;;;;-1:-1:-1;;;25730:117:0;;;;;;;:::i;29043:843::-;29164:4;-1:-1:-1;;;;;29190:13:0;;15146:20;15185:8;29186:693;;29226:72;;-1:-1:-1;;;29226:72:0;;-1:-1:-1;;;;;29226:36:0;;;;;:72;;967:10;;29277:4;;29283:7;;29292:5;;29226:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29226:72:0;;;;;;;;-1:-1:-1;;29226:72:0;;;;;;;;;;;;:::i;:::-;;;29222:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29472:13:0;;29468:341;;29515:60;;-1:-1:-1;;;29515:60:0;;;;;;;:::i;29468:341::-;29759:6;29753:13;29744:6;29740:2;29736:15;29729:38;29222:602;-1:-1:-1;;;;;;29349:55:0;-1:-1:-1;;;29349:55:0;;-1:-1:-1;29342:62:0;;29186:693;-1:-1:-1;29863:4:0;29043:843;;;;;;:::o;15329:723::-;15385:13;15606:10;15602:53;;-1:-1:-1;;15633:10:0;;;;;;;;;;;;-1:-1:-1;;;15633:10:0;;;;;15329:723::o;15602:53::-;15680:5;15665:12;15721:78;15728:9;;15721:78;;15754:8;;;;:::i;:::-;;-1:-1:-1;15777:10:0;;-1:-1:-1;15785:2:0;15777:10;;:::i;:::-;;;15721:78;;;15809:19;15841:6;15831:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15831:17:0;;15809:39;;15859:154;15866:10;;15859:154;;15893:11;15903:1;15893:11;;:::i;:::-;;-1:-1:-1;15962:10:0;15970:2;15962:5;:10;:::i;:::-;15949:24;;:2;:24;:::i;:::-;15936:39;;15919:6;15926;15919:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;15919:56:0;;;;;;;;-1:-1:-1;15990:11:0;15999:2;15990:11;;:::i;:::-;;;15859:154;;35173:988;35439:22;35489:1;35464:22;35481:4;35464:16;:22::i;:::-;:26;;;;:::i;:::-;35501:18;35522:26;;;:17;:26;;;;;;35439:51;;-1:-1:-1;35655:28:0;;;35651:328;;-1:-1:-1;;;;;35722:18:0;;35700:19;35722:18;;;:12;:18;;;;;;;;:34;;;;;;;;;35773:30;;;;;;:44;;;35890:30;;:17;:30;;;;;:43;;;35651:328;-1:-1:-1;36075:26:0;;;;:17;:26;;;;;;;;36068:33;;;-1:-1:-1;;;;;36119:18:0;;;;;:12;:18;;;;;:34;;;;;;;36112:41;35173:988::o;36456:1079::-;36734:10;:17;36709:22;;36734:21;;36754:1;;36734:21;:::i;:::-;36766:18;36787:24;;;:15;:24;;;;;;37160:10;:26;;36709:46;;-1:-1:-1;36787:24:0;;36709:46;;37160:26;;;;;;:::i;:::-;;;;;;;;;37138:48;;37224:11;37199:10;37210;37199:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;37304:28;;;:15;:28;;;;;;;:41;;;37476:24;;;;;37469:31;37511:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;36527:1008;;;36456:1079;:::o;33960:221::-;34045:14;34062:20;34079:2;34062:16;:20::i;:::-;-1:-1:-1;;;;;34093:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;34138:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;33960:221:0:o;26191:382::-;-1:-1:-1;;;;;26271:16:0;;26263:61;;;;-1:-1:-1;;;26263:61:0;;14100:2:1;26263:61:0;;;14082:21:1;;;14119:18;;;14112:30;14178:34;14158:18;;;14151:62;14230:18;;26263:61:0;13898:356:1;26263:61:0;24342:4;24366:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24366:16:0;:30;26335:58;;;;-1:-1:-1;;;26335:58:0;;10276:2:1;26335:58:0;;;10258:21:1;10315:2;10295:18;;;10288:30;10354;10334:18;;;10327:58;10402:18;;26335:58:0;10074:352:1;26335:58:0;26406:45;26435:1;26439:2;26443:7;26406:20;:45::i;:::-;-1:-1:-1;;;;;26464:13:0;;;;;;:9;:13;;;;;:18;;26481:1;;26464:13;:18;;26481:1;;26464:18;:::i;:::-;;;;-1:-1:-1;;26493:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;26493:21:0;-1:-1:-1;;;;;26493:21:0;;;;;;;;26532:33;;26493:16;;;26532:33;;26493:16;;26532:33;26191:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4495:1174::-;4671:3;4700:1;4733:6;4727:13;4763:3;4785:1;4813:9;4809:2;4805:18;4795:28;;4873:2;4862:9;4858:18;4895;4885:61;;4939:4;4931:6;4927:17;4917:27;;4885:61;4965:2;5013;5005:6;5002:14;4982:18;4979:38;4976:165;;;-1:-1:-1;;;5040:33:1;;5096:4;5093:1;5086:15;5126:4;5047:3;5114:17;4976:165;5157:18;5184:104;;;;5302:1;5297:320;;;;5150:467;;5184:104;-1:-1:-1;;5217:24:1;;5205:37;;5262:16;;;;-1:-1:-1;5184:104:1;;5297:320;19183:1;19176:14;;;19220:4;19207:18;;5392:1;5406:165;5420:6;5417:1;5414:13;5406:165;;;5498:14;;5485:11;;;5478:35;5541:16;;;;5435:10;;5406:165;;;5410:3;;5600:6;5595:3;5591:16;5584:23;;5150:467;;;;;;;5633:30;5659:3;5651:6;5633:30;:::i;:::-;5626:37;4495:1174;-1:-1:-1;;;;;4495:1174:1:o;5882:488::-;-1:-1:-1;;;;;6151:15:1;;;6133:34;;6203:15;;6198:2;6183:18;;6176:43;6250:2;6235:18;;6228:34;;;6298:3;6293:2;6278:18;;6271:31;;;6076:4;;6319:45;;6344:19;;6336:6;6319:45;:::i;:::-;6311:53;5882:488;-1:-1:-1;;;;;;5882:488:1:o;7434:632::-;7605:2;7657:21;;;7727:13;;7630:18;;;7749:22;;;7576:4;;7605:2;7828:15;;;;7802:2;7787:18;;;7576:4;7871:169;7885:6;7882:1;7879:13;7871:169;;;7946:13;;7934:26;;8015:15;;;;7980:12;;;;7907:1;7900:9;7871:169;;;-1:-1:-1;8057:3:1;;7434:632;-1:-1:-1;;;;;;7434:632:1:o;8263:219::-;8412:2;8401:9;8394:21;8375:4;8432:44;8472:2;8461:9;8457:18;8449:6;8432:44;:::i;9248:414::-;9450:2;9432:21;;;9489:2;9469:18;;;9462:30;9528:34;9523:2;9508:18;;9501:62;-1:-1:-1;;;9594:2:1;9579:18;;9572:48;9652:3;9637:19;;9248:414::o;14672:356::-;14874:2;14856:21;;;14893:18;;;14886:30;14952:34;14947:2;14932:18;;14925:62;15019:2;15004:18;;14672:356::o;15443:411::-;15645:2;15627:21;;;15684:2;15664:18;;;15657:30;15723:34;15718:2;15703:18;;15696:62;-1:-1:-1;;;15789:2:1;15774:18;;15767:45;15844:3;15829:19;;15443:411::o;17322:413::-;17524:2;17506:21;;;17563:2;17543:18;;;17536:30;17602:34;17597:2;17582:18;;17575:62;-1:-1:-1;;;17668:2:1;17653:18;;17646:47;17725:3;17710:19;;17322:413::o;19236:128::-;19276:3;19307:1;19303:6;19300:1;19297:13;19294:39;;;19313:18;;:::i;:::-;-1:-1:-1;19349:9:1;;19236:128::o;19369:120::-;19409:1;19435;19425:35;;19440:18;;:::i;:::-;-1:-1:-1;19474:9:1;;19369:120::o;19494:125::-;19534:4;19562:1;19559;19556:8;19553:34;;;19567:18;;:::i;:::-;-1:-1:-1;19604:9:1;;19494:125::o;19624:258::-;19696:1;19706:113;19720:6;19717:1;19714:13;19706:113;;;19796:11;;;19790:18;19777:11;;;19770:39;19742:2;19735:10;19706:113;;;19837:6;19834:1;19831:13;19828:48;;;-1:-1:-1;;19872:1:1;19854:16;;19847:27;19624:258::o;19887:380::-;19966:1;19962:12;;;;20009;;;20030:61;;20084:4;20076:6;20072:17;20062:27;;20030:61;20137:2;20129:6;20126:14;20106:18;20103:38;20100:161;;;20183:10;20178:3;20174:20;20171:1;20164:31;20218:4;20215:1;20208:15;20246:4;20243:1;20236:15;20100:161;;19887:380;;;:::o;20272:135::-;20311:3;-1:-1:-1;;20332:17:1;;20329:43;;;20352:18;;:::i;:::-;-1:-1:-1;20399:1:1;20388:13;;20272:135::o;20412:112::-;20444:1;20470;20460:35;;20475:18;;:::i;:::-;-1:-1:-1;20509:9:1;;20412:112::o;20529:127::-;20590:10;20585:3;20581:20;20578:1;20571:31;20621:4;20618:1;20611:15;20645:4;20642:1;20635:15;20661:127;20722:10;20717:3;20713:20;20710:1;20703:31;20753:4;20750:1;20743:15;20777:4;20774:1;20767:15;20793:127;20854:10;20849:3;20845:20;20842:1;20835:31;20885:4;20882:1;20875:15;20909:4;20906:1;20899:15;20925:127;20986:10;20981:3;20977:20;20974:1;20967:31;21017:4;21014:1;21007:15;21041:4;21038:1;21031:15;21057:127;21118:10;21113:3;21109:20;21106:1;21099:31;21149:4;21146:1;21139:15;21173:4;21170:1;21163:15;21189:131;-1:-1:-1;;;;;;21263:32:1;;21253:43;;21243:71;;21310:1;21307;21300:12
Swarm Source
ipfs://cf8e379edd42c9da4168771df0a7779abf2a1713546ab447c7ab88a4cef0c1ec
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.