ERC-721
Overview
Max Total Supply
8,021 CTRIPPY
Holders
1,228
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CTRIPPYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CosmicTrippies
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-15 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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; } } pragma solidity ^0.8.0; interface IParadise { function ownerOf(uint256 tokenId) external view returns (address); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); function balanceOf(address owner) external view returns (uint256 balance); } contract CosmicTrippies is ERC721Enumerable, Ownable { IParadise private TOKEN = IParadise(0x4cA4d3B5B01207FfCe9beA2Db9857d4804Aa89F3); uint256 public maxSupply = 10000; bool public claimingActive = false; string private baseURI; constructor() ERC721("CosmicTrippies", "CTRIPPY") { } function isMinted(uint256 tokenId) external view returns (bool) { return _exists(tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setClaimingActive(bool value) public onlyOwner { claimingActive = value; } function teamMint(address recipient, uint256 tokenId) public onlyOwner { require(!_exists(tokenId), "Token exists"); require(totalSupply() + 1 <= maxSupply, "Max supply reached"); _safeMint(recipient, tokenId); } function teamMintBatch(address[] memory targets, uint256[] memory tokenIds) public onlyOwner { require(targets.length == tokenIds.length, "Length mismatch"); require(totalSupply() + tokenIds.length <= maxSupply, "Max supply reached"); for (uint256 i = 0; i < tokenIds.length; i++) { require(!_exists(tokenIds[i]), "Token exists"); _safeMint(targets[i], tokenIds[i]); } } function mint(uint256 tokenId) public { require(claimingActive, "Claiming is not currently active"); require(totalSupply() + 1 <= maxSupply, "Exceeds max supply"); require(!_exists(tokenId), "Token already exists"); require(tokenId < maxSupply, "Requested tokenId is out of range"); require(TOKEN.ownerOf(tokenId) == msg.sender, "You do not own the corresponding token"); _safeMint(msg.sender, tokenId); } function mintBatch(uint256 quantity) public { require(claimingActive, "Claiming is not currently active"); require(quantity > 0, "Must mint at least 1 token"); uint256 balance = TOKEN.balanceOf(msg.sender); require(balance > 0, "Must hold at least 1 Trippy"); require(balance >= quantity, "Quantity exceeds balance"); for(uint256 i = 0; i < balance && i < quantity; i++) { require(totalSupply() < maxSupply, "Exceeds max supply"); uint256 tokenId = TOKEN.tokenOfOwnerByIndex(msg.sender, i); if (!_exists(tokenId)) { _safeMint(msg.sender, tokenId); } } } function mintBatch() public { require(claimingActive, "Claiming is not currently active"); uint256 balance = TOKEN.balanceOf(msg.sender); require(balance > 0, "Must hold at least 1 Trippie"); for(uint256 i = 0; i < balance; i++) { require(totalSupply() + 1 <= maxSupply, "Exceeds max supply"); uint256 tokenId = TOKEN.tokenOfOwnerByIndex(msg.sender, i); if (!_exists(tokenId)) { _safeMint(msg.sender, tokenId); } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setClaimingActive","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":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"teamMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b80546001600160a01b031916734ca4d3b5b01207ffce9bea2db9857d4804aa89f3179055612710600c55600d805460ff191690553480156200004757600080fd5b50604080518082018252600e81526d436f736d6963547269707069657360901b6020808301918252835180850190945260078452664354524950505960c81b9084015281519192916200009d9160009162000120565b508051620000b390600190602084019062000120565b5050506000620000c86200011c60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000203565b3390565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600181811c90821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b6126e280620002136000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e11610104578063a0712d68116100a2578063c87b56dd11610071578063c87b56dd146103b6578063d5abeb01146103c9578063e985e9c5146103d2578063f2fde38b1461040e57600080fd5b8063a0712d681461036a578063a22cb4651461037d578063add5a4fa14610390578063b88d4fde146103a357600080fd5b806370a08231116100de57806370a0823114610336578063715018a6146103495780638da5cb5b1461035157806395d89b411461036257600080fd5b80636352211e1461030e5780636ccd5e50146103215780636ecf11d71461032e57600080fd5b806323b872dd1161017157806333c41a901161014b57806333c41a90146102c257806342842e0e146102d55780634f6ccce7146102e857806355f804b3146102fb57600080fd5b806323b872dd146102895780632f745c591461029c57806330ea4199146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c578063173441a41461025157806318160ddd1461026457806320e409b41461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004611f18565b610421565b60405190151581526020015b60405180910390f35b61020461044c565b6040516101f39190611f8d565b61022461021f366004611fa0565b6104de565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004611fce565b61056b565b005b61024f61025f3660046120d0565b610681565b6008545b6040519081526020016101f3565b61024f610284366004611fa0565b6107fb565b61024f610297366004612192565b610a55565b6102686102aa366004611fce565b610a86565b61024f6102bd3660046121e8565b610b1c565b6101e76102d0366004611fa0565b610b59565b61024f6102e3366004612192565b610b64565b6102686102f6366004611fa0565b610b7f565b61024f61030936600461225b565b610c12565b61022461031c366004611fa0565b610c53565b600d546101e79060ff1681565b61024f610cca565b6102686103443660046122a4565b610e85565b61024f610f0c565b600a546001600160a01b0316610224565b610204610f80565b61024f610378366004611fa0565b610f8f565b61024f61038b3660046122c1565b611167565b61024f61039e366004611fce565b61122c565b61024f6103b13660046122f6565b6112f9565b6102046103c4366004611fa0565b611331565b610268600c5481565b6101e76103e0366004612376565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f61041c3660046122a4565b6113fc565b60006001600160e01b0319821663780e9d6360e01b14806104465750610446826114e7565b92915050565b60606000805461045b906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610487906123af565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b60006104e982611537565b61054f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061057682610c53565b9050806001600160a01b0316836001600160a01b031614156105e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610546565b336001600160a01b0382161480610600575061060081336103e0565b6106725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610546565b61067c8383611554565b505050565b600a546001600160a01b031633146106ab5760405162461bcd60e51b8152600401610546906123ea565b80518251146106ee5760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610546565b600c5481516008546107009190612435565b11156107435760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610546565b60005b815181101561067c576107718282815181106107645761076461244d565b6020026020010151611537565b156107ad5760405162461bcd60e51b815260206004820152600c60248201526b546f6b656e2065786973747360a01b6044820152606401610546565b6107e98382815181106107c2576107c261244d565b60200260200101518383815181106107dc576107dc61244d565b60200260200101516115c2565b806107f381612463565b915050610746565b600d5460ff1661081d5760405162461bcd60e51b81526004016105469061247e565b6000811161086d5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610546565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108da91906124b3565b90506000811161092c5760405162461bcd60e51b815260206004820152601b60248201527f4d75737420686f6c64206174206c6561737420312054726970707900000000006044820152606401610546565b8181101561097c5760405162461bcd60e51b815260206004820152601860248201527f5175616e7469747920657863656564732062616c616e636500000000000000006044820152606401610546565b60005b818110801561098d57508281105b1561067c57600c54600854106109b55760405162461bcd60e51b8152600401610546906124cc565b600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c5990604401602060405180830381865afa158015610a05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2991906124b3565b9050610a3481611537565b610a4257610a4233826115c2565b5080610a4d81612463565b91505061097f565b610a5f33826115dc565b610a7b5760405162461bcd60e51b8152600401610546906124f8565b61067c8383836116c6565b6000610a9183610e85565b8210610af35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610546565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b465760405162461bcd60e51b8152600401610546906123ea565b600d805460ff1916911515919091179055565b600061044682611537565b61067c838383604051806020016040528060008152506112f9565b6000610b8a60085490565b8210610bed5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610546565b60088281548110610c0057610c0061244d565b90600052602060002001549050919050565b600a546001600160a01b03163314610c3c5760405162461bcd60e51b8152600401610546906123ea565b8051610c4f90600e906020840190611e69565b5050565b6000818152600260205260408120546001600160a01b0316806104465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610546565b600d5460ff16610cec5760405162461bcd60e51b81526004016105469061247e565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610d35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5991906124b3565b905060008111610dab5760405162461bcd60e51b815260206004820152601c60248201527f4d75737420686f6c64206174206c6561737420312054726970706965000000006044820152606401610546565b60005b81811015610c4f57600c54600854610dc7906001612435565b1115610de55760405162461bcd60e51b8152600401610546906124cc565b600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c5990604401602060405180830381865afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5991906124b3565b9050610e6481611537565b610e7257610e7233826115c2565b5080610e7d81612463565b915050610dae565b60006001600160a01b038216610ef05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610546565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f365760405162461bcd60e51b8152600401610546906123ea565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461045b906123af565b600d5460ff16610fb15760405162461bcd60e51b81526004016105469061247e565b600c54600854610fc2906001612435565b1115610fe05760405162461bcd60e51b8152600401610546906124cc565b610fe981611537565b1561102d5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e20616c72656164792065786973747360601b6044820152606401610546565b600c5481106110885760405162461bcd60e51b815260206004820152602160248201527f52657175657374656420746f6b656e4964206973206f7574206f662072616e676044820152606560f81b6064820152608401610546565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f59190612549565b6001600160a01b03161461115a5760405162461bcd60e51b815260206004820152602660248201527f596f7520646f206e6f74206f776e2074686520636f72726573706f6e64696e67604482015265103a37b5b2b760d11b6064820152608401610546565b61116433826115c2565b50565b6001600160a01b0382163314156111c05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610546565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112565760405162461bcd60e51b8152600401610546906123ea565b61125f81611537565b1561129b5760405162461bcd60e51b815260206004820152600c60248201526b546f6b656e2065786973747360a01b6044820152606401610546565b600c546008546112ac906001612435565b11156112ef5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610546565b610c4f82826115c2565b61130333836115dc565b61131f5760405162461bcd60e51b8152600401610546906124f8565b61132b84848484611871565b50505050565b606061133c82611537565b6113a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610546565b60006113aa6118a4565b905060008151116113ca57604051806020016040528060008152506113f5565b806113d4846118b3565b6040516020016113e5929190612566565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114265760405162461bcd60e51b8152600401610546906123ea565b6001600160a01b03811661148b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061151857506001600160e01b03198216635b5e139f60e01b145b8061044657506301ffc9a760e01b6001600160e01b0319831614610446565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061158982610c53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c4f8282604051806020016040528060008152506119b1565b60006115e782611537565b6116485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610546565b600061165383610c53565b9050806001600160a01b0316846001600160a01b0316148061168e5750836001600160a01b0316611683846104de565b6001600160a01b0316145b806116be57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116d982610c53565b6001600160a01b0316146117415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610546565b6001600160a01b0382166117a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6117ae8383836119e4565b6117b9600082611554565b6001600160a01b03831660009081526003602052604081208054600192906117e2908490612595565b90915550506001600160a01b0382166000908152600360205260408120805460019290611810908490612435565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61187c8484846116c6565b61188884848484611a9c565b61132b5760405162461bcd60e51b8152600401610546906125ac565b6060600e805461045b906123af565b6060816118d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190157806118eb81612463565b91506118fa9050600a83612614565b91506118db565b60008167ffffffffffffffff81111561191c5761191c611ffa565b6040519080825280601f01601f191660200182016040528015611946576020820181803683370190505b5090505b84156116be5761195b600183612595565b9150611968600a86612628565b611973906030612435565b60f81b8183815181106119885761198861244d565b60200101906001600160f81b031916908160001a9053506119aa600a86612614565b945061194a565b6119bb8383611b9a565b6119c86000848484611a9c565b61067c5760405162461bcd60e51b8152600401610546906125ac565b6001600160a01b038316611a3f57611a3a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a62565b816001600160a01b0316836001600160a01b031614611a6257611a628382611cd9565b6001600160a01b038216611a795761067c81611d76565b826001600160a01b0316826001600160a01b03161461067c5761067c8282611e25565b60006001600160a01b0384163b15611b8f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ae090339089908890889060040161263c565b6020604051808303816000875af1925050508015611b1b575060408051601f3d908101601f19168201909252611b1891810190612679565b60015b611b75573d808015611b49576040519150601f19603f3d011682016040523d82523d6000602084013e611b4e565b606091505b508051611b6d5760405162461bcd60e51b8152600401610546906125ac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116be565b506001949350505050565b6001600160a01b038216611bf05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610546565b611bf981611537565b15611c465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610546565b611c52600083836119e4565b6001600160a01b0382166000908152600360205260408120805460019290611c7b908490612435565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ce684610e85565b611cf09190612595565b600083815260076020526040902054909150808214611d43576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8890600190612595565b60008381526009602052604081205460088054939450909284908110611db057611db061244d565b906000526020600020015490508060088381548110611dd157611dd161244d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0957611e09612696565b6001900381819060005260206000200160009055905550505050565b6000611e3083610e85565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e75906123af565b90600052602060002090601f016020900481019282611e975760008555611edd565b82601f10611eb057805160ff1916838001178555611edd565b82800160010185558215611edd579182015b82811115611edd578251825591602001919060010190611ec2565b50611ee9929150611eed565b5090565b5b80821115611ee95760008155600101611eee565b6001600160e01b03198116811461116457600080fd5b600060208284031215611f2a57600080fd5b81356113f581611f02565b60005b83811015611f50578181015183820152602001611f38565b8381111561132b5750506000910152565b60008151808452611f79816020860160208601611f35565b601f01601f19169290920160200192915050565b6020815260006113f56020830184611f61565b600060208284031215611fb257600080fd5b5035919050565b6001600160a01b038116811461116457600080fd5b60008060408385031215611fe157600080fd5b8235611fec81611fb9565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561203957612039611ffa565b604052919050565b600067ffffffffffffffff82111561205b5761205b611ffa565b5060051b60200190565b600082601f83011261207657600080fd5b8135602061208b61208683612041565b612010565b82815260059290921b840181019181810190868411156120aa57600080fd5b8286015b848110156120c557803583529183019183016120ae565b509695505050505050565b600080604083850312156120e357600080fd5b823567ffffffffffffffff808211156120fb57600080fd5b818501915085601f83011261210f57600080fd5b8135602061211f61208683612041565b82815260059290921b8401810191818101908984111561213e57600080fd5b948201945b8386101561216557853561215681611fb9565b82529482019490820190612143565b9650508601359250508082111561217b57600080fd5b5061218885828601612065565b9150509250929050565b6000806000606084860312156121a757600080fd5b83356121b281611fb9565b925060208401356121c281611fb9565b929592945050506040919091013590565b803580151581146121e357600080fd5b919050565b6000602082840312156121fa57600080fd5b6113f5826121d3565b600067ffffffffffffffff83111561221d5761221d611ffa565b612230601f8401601f1916602001612010565b905082815283838301111561224457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561226d57600080fd5b813567ffffffffffffffff81111561228457600080fd5b8201601f8101841361229557600080fd5b6116be84823560208401612203565b6000602082840312156122b657600080fd5b81356113f581611fb9565b600080604083850312156122d457600080fd5b82356122df81611fb9565b91506122ed602084016121d3565b90509250929050565b6000806000806080858703121561230c57600080fd5b843561231781611fb9565b9350602085013561232781611fb9565b925060408501359150606085013567ffffffffffffffff81111561234a57600080fd5b8501601f8101871361235b57600080fd5b61236a87823560208401612203565b91505092959194509250565b6000806040838503121561238957600080fd5b823561239481611fb9565b915060208301356123a481611fb9565b809150509250929050565b600181811c908216806123c357607f821691505b602082108114156123e457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124485761244861241f565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156124775761247761241f565b5060010190565b6020808252818101527f436c61696d696e67206973206e6f742063757272656e746c7920616374697665604082015260600190565b6000602082840312156124c557600080fd5b5051919050565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006020828403121561255b57600080fd5b81516113f581611fb9565b60008351612578818460208801611f35565b83519083019061258c818360208801611f35565b01949350505050565b6000828210156125a7576125a761241f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612623576126236125fe565b500490565b600082612637576126376125fe565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266f90830184611f61565b9695505050505050565b60006020828403121561268b57600080fd5b81516113f581611f02565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205ffeba413dac9a0709b45181cded93826ef4225ce42918b4ae9418bb696b360a64736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636352211e11610104578063a0712d68116100a2578063c87b56dd11610071578063c87b56dd146103b6578063d5abeb01146103c9578063e985e9c5146103d2578063f2fde38b1461040e57600080fd5b8063a0712d681461036a578063a22cb4651461037d578063add5a4fa14610390578063b88d4fde146103a357600080fd5b806370a08231116100de57806370a0823114610336578063715018a6146103495780638da5cb5b1461035157806395d89b411461036257600080fd5b80636352211e1461030e5780636ccd5e50146103215780636ecf11d71461032e57600080fd5b806323b872dd1161017157806333c41a901161014b57806333c41a90146102c257806342842e0e146102d55780634f6ccce7146102e857806355f804b3146102fb57600080fd5b806323b872dd146102895780632f745c591461029c57806330ea4199146102af57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c578063173441a41461025157806318160ddd1461026457806320e409b41461027657600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004611f18565b610421565b60405190151581526020015b60405180910390f35b61020461044c565b6040516101f39190611f8d565b61022461021f366004611fa0565b6104de565b6040516001600160a01b0390911681526020016101f3565b61024f61024a366004611fce565b61056b565b005b61024f61025f3660046120d0565b610681565b6008545b6040519081526020016101f3565b61024f610284366004611fa0565b6107fb565b61024f610297366004612192565b610a55565b6102686102aa366004611fce565b610a86565b61024f6102bd3660046121e8565b610b1c565b6101e76102d0366004611fa0565b610b59565b61024f6102e3366004612192565b610b64565b6102686102f6366004611fa0565b610b7f565b61024f61030936600461225b565b610c12565b61022461031c366004611fa0565b610c53565b600d546101e79060ff1681565b61024f610cca565b6102686103443660046122a4565b610e85565b61024f610f0c565b600a546001600160a01b0316610224565b610204610f80565b61024f610378366004611fa0565b610f8f565b61024f61038b3660046122c1565b611167565b61024f61039e366004611fce565b61122c565b61024f6103b13660046122f6565b6112f9565b6102046103c4366004611fa0565b611331565b610268600c5481565b6101e76103e0366004612376565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f61041c3660046122a4565b6113fc565b60006001600160e01b0319821663780e9d6360e01b14806104465750610446826114e7565b92915050565b60606000805461045b906123af565b80601f0160208091040260200160405190810160405280929190818152602001828054610487906123af565b80156104d45780601f106104a9576101008083540402835291602001916104d4565b820191906000526020600020905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b60006104e982611537565b61054f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061057682610c53565b9050806001600160a01b0316836001600160a01b031614156105e45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610546565b336001600160a01b0382161480610600575061060081336103e0565b6106725760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610546565b61067c8383611554565b505050565b600a546001600160a01b031633146106ab5760405162461bcd60e51b8152600401610546906123ea565b80518251146106ee5760405162461bcd60e51b815260206004820152600f60248201526e098cadccee8d040dad2e6dac2e8c6d608b1b6044820152606401610546565b600c5481516008546107009190612435565b11156107435760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610546565b60005b815181101561067c576107718282815181106107645761076461244d565b6020026020010151611537565b156107ad5760405162461bcd60e51b815260206004820152600c60248201526b546f6b656e2065786973747360a01b6044820152606401610546565b6107e98382815181106107c2576107c261244d565b60200260200101518383815181106107dc576107dc61244d565b60200260200101516115c2565b806107f381612463565b915050610746565b600d5460ff1661081d5760405162461bcd60e51b81526004016105469061247e565b6000811161086d5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610546565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108da91906124b3565b90506000811161092c5760405162461bcd60e51b815260206004820152601b60248201527f4d75737420686f6c64206174206c6561737420312054726970707900000000006044820152606401610546565b8181101561097c5760405162461bcd60e51b815260206004820152601860248201527f5175616e7469747920657863656564732062616c616e636500000000000000006044820152606401610546565b60005b818110801561098d57508281105b1561067c57600c54600854106109b55760405162461bcd60e51b8152600401610546906124cc565b600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c5990604401602060405180830381865afa158015610a05573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a2991906124b3565b9050610a3481611537565b610a4257610a4233826115c2565b5080610a4d81612463565b91505061097f565b610a5f33826115dc565b610a7b5760405162461bcd60e51b8152600401610546906124f8565b61067c8383836116c6565b6000610a9183610e85565b8210610af35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610546565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b465760405162461bcd60e51b8152600401610546906123ea565b600d805460ff1916911515919091179055565b600061044682611537565b61067c838383604051806020016040528060008152506112f9565b6000610b8a60085490565b8210610bed5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610546565b60088281548110610c0057610c0061244d565b90600052602060002001549050919050565b600a546001600160a01b03163314610c3c5760405162461bcd60e51b8152600401610546906123ea565b8051610c4f90600e906020840190611e69565b5050565b6000818152600260205260408120546001600160a01b0316806104465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610546565b600d5460ff16610cec5760405162461bcd60e51b81526004016105469061247e565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa158015610d35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d5991906124b3565b905060008111610dab5760405162461bcd60e51b815260206004820152601c60248201527f4d75737420686f6c64206174206c6561737420312054726970706965000000006044820152606401610546565b60005b81811015610c4f57600c54600854610dc7906001612435565b1115610de55760405162461bcd60e51b8152600401610546906124cc565b600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c5990604401602060405180830381865afa158015610e35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e5991906124b3565b9050610e6481611537565b610e7257610e7233826115c2565b5080610e7d81612463565b915050610dae565b60006001600160a01b038216610ef05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610546565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f365760405162461bcd60e51b8152600401610546906123ea565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461045b906123af565b600d5460ff16610fb15760405162461bcd60e51b81526004016105469061247e565b600c54600854610fc2906001612435565b1115610fe05760405162461bcd60e51b8152600401610546906124cc565b610fe981611537565b1561102d5760405162461bcd60e51b8152602060048201526014602482015273546f6b656e20616c72656164792065786973747360601b6044820152606401610546565b600c5481106110885760405162461bcd60e51b815260206004820152602160248201527f52657175657374656420746f6b656e4964206973206f7574206f662072616e676044820152606560f81b6064820152608401610546565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa1580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f59190612549565b6001600160a01b03161461115a5760405162461bcd60e51b815260206004820152602660248201527f596f7520646f206e6f74206f776e2074686520636f72726573706f6e64696e67604482015265103a37b5b2b760d11b6064820152608401610546565b61116433826115c2565b50565b6001600160a01b0382163314156111c05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610546565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112565760405162461bcd60e51b8152600401610546906123ea565b61125f81611537565b1561129b5760405162461bcd60e51b815260206004820152600c60248201526b546f6b656e2065786973747360a01b6044820152606401610546565b600c546008546112ac906001612435565b11156112ef5760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b6044820152606401610546565b610c4f82826115c2565b61130333836115dc565b61131f5760405162461bcd60e51b8152600401610546906124f8565b61132b84848484611871565b50505050565b606061133c82611537565b6113a05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610546565b60006113aa6118a4565b905060008151116113ca57604051806020016040528060008152506113f5565b806113d4846118b3565b6040516020016113e5929190612566565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114265760405162461bcd60e51b8152600401610546906123ea565b6001600160a01b03811661148b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610546565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061151857506001600160e01b03198216635b5e139f60e01b145b8061044657506301ffc9a760e01b6001600160e01b0319831614610446565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061158982610c53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610c4f8282604051806020016040528060008152506119b1565b60006115e782611537565b6116485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610546565b600061165383610c53565b9050806001600160a01b0316846001600160a01b0316148061168e5750836001600160a01b0316611683846104de565b6001600160a01b0316145b806116be57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116d982610c53565b6001600160a01b0316146117415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610546565b6001600160a01b0382166117a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610546565b6117ae8383836119e4565b6117b9600082611554565b6001600160a01b03831660009081526003602052604081208054600192906117e2908490612595565b90915550506001600160a01b0382166000908152600360205260408120805460019290611810908490612435565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61187c8484846116c6565b61188884848484611a9c565b61132b5760405162461bcd60e51b8152600401610546906125ac565b6060600e805461045b906123af565b6060816118d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561190157806118eb81612463565b91506118fa9050600a83612614565b91506118db565b60008167ffffffffffffffff81111561191c5761191c611ffa565b6040519080825280601f01601f191660200182016040528015611946576020820181803683370190505b5090505b84156116be5761195b600183612595565b9150611968600a86612628565b611973906030612435565b60f81b8183815181106119885761198861244d565b60200101906001600160f81b031916908160001a9053506119aa600a86612614565b945061194a565b6119bb8383611b9a565b6119c86000848484611a9c565b61067c5760405162461bcd60e51b8152600401610546906125ac565b6001600160a01b038316611a3f57611a3a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a62565b816001600160a01b0316836001600160a01b031614611a6257611a628382611cd9565b6001600160a01b038216611a795761067c81611d76565b826001600160a01b0316826001600160a01b03161461067c5761067c8282611e25565b60006001600160a01b0384163b15611b8f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ae090339089908890889060040161263c565b6020604051808303816000875af1925050508015611b1b575060408051601f3d908101601f19168201909252611b1891810190612679565b60015b611b75573d808015611b49576040519150601f19603f3d011682016040523d82523d6000602084013e611b4e565b606091505b508051611b6d5760405162461bcd60e51b8152600401610546906125ac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116be565b506001949350505050565b6001600160a01b038216611bf05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610546565b611bf981611537565b15611c465760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610546565b611c52600083836119e4565b6001600160a01b0382166000908152600360205260408120805460019290611c7b908490612435565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ce684610e85565b611cf09190612595565b600083815260076020526040902054909150808214611d43576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d8890600190612595565b60008381526009602052604081205460088054939450909284908110611db057611db061244d565b906000526020600020015490508060088381548110611dd157611dd161244d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e0957611e09612696565b6001900381819060005260206000200160009055905550505050565b6000611e3083610e85565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e75906123af565b90600052602060002090601f016020900481019282611e975760008555611edd565b82601f10611eb057805160ff1916838001178555611edd565b82800160010185558215611edd579182015b82811115611edd578251825591602001919060010190611ec2565b50611ee9929150611eed565b5090565b5b80821115611ee95760008155600101611eee565b6001600160e01b03198116811461116457600080fd5b600060208284031215611f2a57600080fd5b81356113f581611f02565b60005b83811015611f50578181015183820152602001611f38565b8381111561132b5750506000910152565b60008151808452611f79816020860160208601611f35565b601f01601f19169290920160200192915050565b6020815260006113f56020830184611f61565b600060208284031215611fb257600080fd5b5035919050565b6001600160a01b038116811461116457600080fd5b60008060408385031215611fe157600080fd5b8235611fec81611fb9565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561203957612039611ffa565b604052919050565b600067ffffffffffffffff82111561205b5761205b611ffa565b5060051b60200190565b600082601f83011261207657600080fd5b8135602061208b61208683612041565b612010565b82815260059290921b840181019181810190868411156120aa57600080fd5b8286015b848110156120c557803583529183019183016120ae565b509695505050505050565b600080604083850312156120e357600080fd5b823567ffffffffffffffff808211156120fb57600080fd5b818501915085601f83011261210f57600080fd5b8135602061211f61208683612041565b82815260059290921b8401810191818101908984111561213e57600080fd5b948201945b8386101561216557853561215681611fb9565b82529482019490820190612143565b9650508601359250508082111561217b57600080fd5b5061218885828601612065565b9150509250929050565b6000806000606084860312156121a757600080fd5b83356121b281611fb9565b925060208401356121c281611fb9565b929592945050506040919091013590565b803580151581146121e357600080fd5b919050565b6000602082840312156121fa57600080fd5b6113f5826121d3565b600067ffffffffffffffff83111561221d5761221d611ffa565b612230601f8401601f1916602001612010565b905082815283838301111561224457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561226d57600080fd5b813567ffffffffffffffff81111561228457600080fd5b8201601f8101841361229557600080fd5b6116be84823560208401612203565b6000602082840312156122b657600080fd5b81356113f581611fb9565b600080604083850312156122d457600080fd5b82356122df81611fb9565b91506122ed602084016121d3565b90509250929050565b6000806000806080858703121561230c57600080fd5b843561231781611fb9565b9350602085013561232781611fb9565b925060408501359150606085013567ffffffffffffffff81111561234a57600080fd5b8501601f8101871361235b57600080fd5b61236a87823560208401612203565b91505092959194509250565b6000806040838503121561238957600080fd5b823561239481611fb9565b915060208301356123a481611fb9565b809150509250929050565b600181811c908216806123c357607f821691505b602082108114156123e457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156124485761244861241f565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156124775761247761241f565b5060010190565b6020808252818101527f436c61696d696e67206973206e6f742063757272656e746c7920616374697665604082015260600190565b6000602082840312156124c557600080fd5b5051919050565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60006020828403121561255b57600080fd5b81516113f581611fb9565b60008351612578818460208801611f35565b83519083019061258c818360208801611f35565b01949350505050565b6000828210156125a7576125a761241f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612623576126236125fe565b500490565b600082612637576126376125fe565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061266f90830184611f61565b9695505050505050565b60006020828403121561268b57600080fd5b81516113f581611f02565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205ffeba413dac9a0709b45181cded93826ef4225ce42918b4ae9418bb696b360a64736f6c634300080b0033
Deployed Bytecode Sourcemap
45684:3178:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36614:300;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36614:300:0;;;;;;;;22767:100;;;:::i;:::-;;;;;;;:::i;24349:308::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;24349:308:0;1528:203:1;23872:411:0;;;;;;:::i;:::-;;:::i;:::-;;46695:441;;;;;;:::i;:::-;;:::i;37417:113::-;37505:10;:17;37417:113;;;4825:25:1;;;4813:2;4798:18;37417:113:0;4679:177:1;47618:694:0;;;;;;:::i;:::-;;:::i;25408:376::-;;;;;;:::i;:::-;;:::i;36998:343::-;;;;;;:::i;:::-;;:::i;46336:97::-;;;;;;:::i;:::-;;:::i;46018:106::-;;;;;;:::i;:::-;;:::i;25855:185::-;;;;;;:::i;:::-;;:::i;37607:320::-;;;;;;:::i;:::-;;:::i;46240:88::-;;;;;;:::i;:::-;;:::i;22374:326::-;;;;;;:::i;:::-;;:::i;45880:34::-;;;;;;;;;48320:539;;;:::i;22017:295::-;;;;;;:::i;:::-;;:::i;44789:148::-;;;:::i;44138:87::-;44211:6;;-1:-1:-1;;;;;44211:6:0;44138:87;;22936:104;;;:::i;47144:466::-;;;;;;:::i;:::-;;:::i;24729:327::-;;;;;;:::i;:::-;;:::i;46441:246::-;;;;;;:::i;:::-;;:::i;26111:365::-;;;;;;:::i;:::-;;:::i;23111:468::-;;;;;;:::i;:::-;;:::i;45841:32::-;;;;;;25127:214;;;;;;:::i;:::-;-1:-1:-1;;;;;25298:25:0;;;25269:4;25298:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25127:214;45092:281;;;;;;:::i;:::-;;:::i;36614:300::-;36761:4;-1:-1:-1;;;;;;36803:50:0;;-1:-1:-1;;;36803:50:0;;:103;;;36870:36;36894:11;36870:23;:36::i;:::-;36783:123;36614:300;-1:-1:-1;;36614:300:0:o;22767:100::-;22821:13;22854:5;22847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22767:100;:::o;24349:308::-;24470:7;24517:16;24525:7;24517;:16::i;:::-;24495:110;;;;-1:-1:-1;;;24495:110:0;;8892:2:1;24495:110:0;;;8874:21:1;8931:2;8911:18;;;8904:30;8970:34;8950:18;;;8943:62;-1:-1:-1;;;9021:18:1;;;9014:42;9073:19;;24495:110:0;;;;;;;;;-1:-1:-1;24625:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24625:24:0;;24349:308::o;23872:411::-;23953:13;23969:23;23984:7;23969:14;:23::i;:::-;23953:39;;24017:5;-1:-1:-1;;;;;24011:11:0;:2;-1:-1:-1;;;;;24011:11:0;;;24003:57;;;;-1:-1:-1;;;24003:57:0;;9305:2:1;24003:57:0;;;9287:21:1;9344:2;9324:18;;;9317:30;9383:34;9363:18;;;9356:62;-1:-1:-1;;;9434:18:1;;;9427:31;9475:19;;24003:57:0;9103:397:1;24003:57:0;16926:10;-1:-1:-1;;;;;24095:21:0;;;;:62;;-1:-1:-1;24120:37:0;24137:5;16926:10;25127:214;:::i;24120:37::-;24073:168;;;;-1:-1:-1;;;24073:168:0;;9707:2:1;24073:168:0;;;9689:21:1;9746:2;9726:18;;;9719:30;9785:34;9765:18;;;9758:62;9856:26;9836:18;;;9829:54;9900:19;;24073:168:0;9505:420:1;24073:168:0;24254:21;24263:2;24267:7;24254:8;:21::i;:::-;23942:341;23872:411;;:::o;46695:441::-;44211:6;;-1:-1:-1;;;;;44211:6:0;16926:10;44358:23;44350:68;;;;-1:-1:-1;;;44350:68:0;;;;;;;:::i;:::-;46825:8:::1;:15;46807:7;:14;:33;46799:61;;;::::0;-1:-1:-1;;;46799:61:0;;10493:2:1;46799:61:0::1;::::0;::::1;10475:21:1::0;10532:2;10512:18;;;10505:30;-1:-1:-1;;;10551:18:1;;;10544:45;10606:18;;46799:61:0::1;10291:339:1::0;46799:61:0::1;46914:9;::::0;46895:15;;37505:10;:17;46879:31:::1;;;;:::i;:::-;:44;;46871:75;;;::::0;-1:-1:-1;;;46871:75:0;;11102:2:1;46871:75:0::1;::::0;::::1;11084:21:1::0;11141:2;11121:18;;;11114:30;-1:-1:-1;;;11160:18:1;;;11153:48;11218:18;;46871:75:0::1;10900:342:1::0;46871:75:0::1;46964:9;46959:170;46983:8;:15;46979:1;:19;46959:170;;;47029:20;47037:8;47046:1;47037:11;;;;;;;;:::i;:::-;;;;;;;47029:7;:20::i;:::-;47028:21;47020:46;;;::::0;-1:-1:-1;;;47020:46:0;;11581:2:1;47020:46:0::1;::::0;::::1;11563:21:1::0;11620:2;11600:18;;;11593:30;-1:-1:-1;;;11639:18:1;;;11632:42;11691:18;;47020:46:0::1;11379:336:1::0;47020:46:0::1;47083:34;47093:7;47101:1;47093:10;;;;;;;;:::i;:::-;;;;;;;47105:8;47114:1;47105:11;;;;;;;;:::i;:::-;;;;;;;47083:9;:34::i;:::-;47000:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46959:170;;47618:694:::0;47681:14;;;;47673:59;;;;-1:-1:-1;;;47673:59:0;;;;;;;:::i;:::-;47762:1;47751:8;:12;47743:51;;;;-1:-1:-1;;;47743:51:0;;12423:2:1;47743:51:0;;;12405:21:1;12462:2;12442:18;;;12435:30;12501:28;12481:18;;;12474:56;12547:18;;47743:51:0;12221:350:1;47743:51:0;47825:5;;:27;;-1:-1:-1;;;47825:27:0;;47841:10;47825:27;;;1674:51:1;47807:15:0;;-1:-1:-1;;;;;47825:5:0;;:15;;1647:18:1;;47825:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47807:45;;47881:1;47871:7;:11;47863:51;;;;-1:-1:-1;;;47863:51:0;;12967:2:1;47863:51:0;;;12949:21:1;13006:2;12986:18;;;12979:30;13045:29;13025:18;;;13018:57;13092:18;;47863:51:0;12765:351:1;47863:51:0;47944:8;47933:7;:19;;47925:56;;;;-1:-1:-1;;;47925:56:0;;13323:2:1;47925:56:0;;;13305:21:1;13362:2;13342:18;;;13335:30;13401:26;13381:18;;;13374:54;13445:18;;47925:56:0;13121:348:1;47925:56:0;47998:9;47994:311;48017:7;48013:1;:11;:27;;;;;48032:8;48028:1;:12;48013:27;47994:311;;;48086:9;;37505:10;:17;48070:25;48062:56;;;;-1:-1:-1;;;48062:56:0;;;;;;;:::i;:::-;48151:5;;:40;;-1:-1:-1;;;48151:40:0;;48177:10;48151:40;;;13995:51:1;14062:18;;;14055:34;;;48133:15:0;;-1:-1:-1;;;;;48151:5:0;;:25;;13968:18:1;;48151:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48133:58;;48211:16;48219:7;48211;:16::i;:::-;48206:88;;48248:30;48258:10;48270:7;48248:9;:30::i;:::-;-1:-1:-1;48042:3:0;;;;:::i;:::-;;;;47994:311;;25408:376;25617:41;16926:10;25650:7;25617:18;:41::i;:::-;25595:140;;;;-1:-1:-1;;;25595:140:0;;;;;;;:::i;:::-;25748:28;25758:4;25764:2;25768:7;25748:9;:28::i;36998:343::-;37140:7;37195:23;37212:5;37195:16;:23::i;:::-;37187:5;:31;37165:124;;;;-1:-1:-1;;;37165:124:0;;14720:2:1;37165:124:0;;;14702:21:1;14759:2;14739:18;;;14732:30;14798:34;14778:18;;;14771:62;-1:-1:-1;;;14849:18:1;;;14842:41;14900:19;;37165:124:0;14518:407:1;37165:124:0;-1:-1:-1;;;;;;37307:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36998:343::o;46336:97::-;44211:6;;-1:-1:-1;;;;;44211:6:0;16926:10;44358:23;44350:68;;;;-1:-1:-1;;;44350:68:0;;;;;;;:::i;:::-;46403:14:::1;:22:::0;;-1:-1:-1;;46403:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46336:97::o;46018:106::-;46076:4;46100:16;46108:7;46100;:16::i;25855:185::-;25993:39;26010:4;26016:2;26020:7;25993:39;;;;;;;;;;;;:16;:39::i;37607:320::-;37727:7;37782:30;37505:10;:17;;37417:113;37782:30;37774:5;:38;37752:132;;;;-1:-1:-1;;;37752:132:0;;15132:2:1;37752:132:0;;;15114:21:1;15171:2;15151:18;;;15144:30;15210:34;15190:18;;;15183:62;-1:-1:-1;;;15261:18:1;;;15254:42;15313:19;;37752:132:0;14930:408:1;37752:132:0;37902:10;37913:5;37902:17;;;;;;;;:::i;:::-;;;;;;;;;37895:24;;37607:320;;;:::o;46240:88::-;44211:6;;-1:-1:-1;;;;;44211:6:0;16926:10;44358:23;44350:68;;;;-1:-1:-1;;;44350:68:0;;;;;;;:::i;:::-;46307:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46240:88:::0;:::o;22374:326::-;22491:7;22532:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22532:16:0;22581:19;22559:110;;;;-1:-1:-1;;;22559:110:0;;15545:2:1;22559:110:0;;;15527:21:1;15584:2;15564:18;;;15557:30;15623:34;15603:18;;;15596:62;-1:-1:-1;;;15674:18:1;;;15667:39;15723:19;;22559:110:0;15343:405:1;48320:539:0;48367:14;;;;48359:59;;;;-1:-1:-1;;;48359:59:0;;;;;;;:::i;:::-;48449:5;;:27;;-1:-1:-1;;;48449:27:0;;48465:10;48449:27;;;1674:51:1;48431:15:0;;-1:-1:-1;;;;;48449:5:0;;:15;;1647:18:1;;48449:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48431:45;;48505:1;48495:7;:11;48487:52;;;;-1:-1:-1;;;48487:52:0;;15955:2:1;48487:52:0;;;15937:21:1;15994:2;15974:18;;;15967:30;16033;16013:18;;;16006:58;16081:18;;48487:52:0;15753:352:1;48487:52:0;48556:9;48552:300;48575:7;48571:1;:11;48552:300;;;48633:9;;37505:10;:17;48612;;48628:1;48612:17;:::i;:::-;:30;;48604:61;;;;-1:-1:-1;;;48604:61:0;;;;;;;:::i;:::-;48698:5;;:40;;-1:-1:-1;;;48698:40:0;;48724:10;48698:40;;;13995:51:1;14062:18;;;14055:34;;;48680:15:0;;-1:-1:-1;;;;;48698:5:0;;:25;;13968:18:1;;48698:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48680:58;;48758:16;48766:7;48758;:16::i;:::-;48753:88;;48795:30;48805:10;48817:7;48795:9;:30::i;:::-;-1:-1:-1;48584:3:0;;;;:::i;:::-;;;;48552:300;;22017:295;22134:7;-1:-1:-1;;;;;22181:19:0;;22159:111;;;;-1:-1:-1;;;22159:111:0;;16312:2:1;22159:111:0;;;16294:21:1;16351:2;16331:18;;;16324:30;16390:34;16370:18;;;16363:62;-1:-1:-1;;;16441:18:1;;;16434:40;16491:19;;22159:111:0;16110:406:1;22159:111:0;-1:-1:-1;;;;;;22288:16:0;;;;;:9;:16;;;;;;;22017:295::o;44789:148::-;44211:6;;-1:-1:-1;;;;;44211:6:0;16926:10;44358:23;44350:68;;;;-1:-1:-1;;;44350:68:0;;;;;;;:::i;:::-;44880:6:::1;::::0;44859:40:::1;::::0;44896:1:::1;::::0;-1:-1:-1;;;;;44880:6:0::1;::::0;44859:40:::1;::::0;44896:1;;44859:40:::1;44910:6;:19:::0;;-1:-1:-1;;;;;;44910:19:0::1;::::0;;44789:148::o;22936:104::-;22992:13;23025:7;23018:14;;;;;:::i;47144:466::-;47201:14;;;;47193:59;;;;-1:-1:-1;;;47193:59:0;;;;;;;:::i;:::-;47292:9;;37505:10;:17;47271;;47287:1;47271:17;:::i;:::-;:30;;47263:61;;;;-1:-1:-1;;;47263:61:0;;;;;;;:::i;:::-;47344:16;47352:7;47344;:16::i;:::-;47343:17;47335:50;;;;-1:-1:-1;;;47335:50:0;;16723:2:1;47335:50:0;;;16705:21:1;16762:2;16742:18;;;16735:30;-1:-1:-1;;;16781:18:1;;;16774:50;16841:18;;47335:50:0;16521:344:1;47335:50:0;47414:9;;47404:7;:19;47396:65;;;;-1:-1:-1;;;47396:65:0;;17072:2:1;47396:65:0;;;17054:21:1;17111:2;17091:18;;;17084:30;17150:34;17130:18;;;17123:62;-1:-1:-1;;;17201:18:1;;;17194:31;17242:19;;47396:65:0;16870:397:1;47396:65:0;47480:5;;:22;;-1:-1:-1;;;47480:22:0;;;;;4825:25:1;;;47506:10:0;;-1:-1:-1;;;;;47480:5:0;;:13;;4798:18:1;;47480:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;47480:36:0;;47472:87;;;;-1:-1:-1;;;47472:87:0;;17730:2:1;47472:87:0;;;17712:21:1;17769:2;17749:18;;;17742:30;17808:34;17788:18;;;17781:62;-1:-1:-1;;;17859:18:1;;;17852:36;17905:19;;47472:87:0;17528:402:1;47472:87:0;47572:30;47582:10;47594:7;47572:9;:30::i;:::-;47144:466;:::o;24729:327::-;-1:-1:-1;;;;;24864:24:0;;16926:10;24864:24;;24856:62;;;;-1:-1:-1;;;24856:62:0;;18137:2:1;24856:62:0;;;18119:21:1;18176:2;18156:18;;;18149:30;18215:27;18195:18;;;18188:55;18260:18;;24856:62:0;17935:349:1;24856:62:0;16926:10;24931:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24931:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24931:53:0;;;;;;;;;;25000:48;;540:41:1;;;24931:42:0;;16926:10;25000:48;;513:18:1;25000:48:0;;;;;;;24729:327;;:::o;46441:246::-;44211:6;;-1:-1:-1;;;;;44211:6:0;16926:10;44358:23;44350:68;;;;-1:-1:-1;;;44350:68:0;;;;;;;:::i;:::-;46532:16:::1;46540:7;46532;:16::i;:::-;46531:17;46523:42;;;::::0;-1:-1:-1;;;46523:42:0;;11581:2:1;46523:42:0::1;::::0;::::1;11563:21:1::0;11620:2;11600:18;;;11593:30;-1:-1:-1;;;11639:18:1;;;11632:42;11691:18;;46523:42:0::1;11379:336:1::0;46523:42:0::1;46605:9;::::0;37505:10;:17;46584::::1;::::0;46600:1:::1;46584:17;:::i;:::-;:30;;46576:61;;;::::0;-1:-1:-1;;;46576:61:0;;11102:2:1;46576:61:0::1;::::0;::::1;11084:21:1::0;11141:2;11121:18;;;11114:30;-1:-1:-1;;;11160:18:1;;;11153:48;11218:18;;46576:61:0::1;10900:342:1::0;46576:61:0::1;46650:29;46660:9;46671:7;46650:9;:29::i;26111:365::-:0;26300:41;16926:10;26333:7;26300:18;:41::i;:::-;26278:140;;;;-1:-1:-1;;;26278:140:0;;;;;;;:::i;:::-;26429:39;26443:4;26449:2;26453:7;26462:5;26429:13;:39::i;:::-;26111:365;;;;:::o;23111:468::-;23229:13;23282:16;23290:7;23282;:16::i;:::-;23260:113;;;;-1:-1:-1;;;23260:113:0;;18491:2:1;23260:113:0;;;18473:21:1;18530:2;18510:18;;;18503:30;18569:34;18549:18;;;18542:62;-1:-1:-1;;;18620:18:1;;;18613:45;18675:19;;23260:113:0;18289:411:1;23260:113:0;23386:21;23410:10;:8;:10::i;:::-;23386:34;;23475:1;23457:7;23451:21;:25;:120;;;;;;;;;;;;;;;;;23520:7;23529:18;:7;:16;:18::i;:::-;23503:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23451:120;23431:140;23111:468;-1:-1:-1;;;23111:468:0:o;45092:281::-;44211:6;;-1:-1:-1;;;;;44211:6:0;16926:10;44358:23;44350:68;;;;-1:-1:-1;;;44350:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45195:22:0;::::1;45173:110;;;::::0;-1:-1:-1;;;45173:110:0;;19382:2:1;45173:110:0::1;::::0;::::1;19364:21:1::0;19421:2;19401:18;;;19394:30;19460:34;19440:18;;;19433:62;-1:-1:-1;;;19511:18:1;;;19504:36;19557:19;;45173:110:0::1;19180:402:1::0;45173:110:0::1;45320:6;::::0;45299:38:::1;::::0;-1:-1:-1;;;;;45299:38:0;;::::1;::::0;45320:6:::1;::::0;45299:38:::1;::::0;45320:6:::1;::::0;45299:38:::1;45348:6;:17:::0;;-1:-1:-1;;;;;;45348:17:0::1;-1:-1:-1::0;;;;;45348:17:0;;;::::1;::::0;;;::::1;::::0;;45092:281::o;21598:355::-;21745:4;-1:-1:-1;;;;;;21787:40:0;;-1:-1:-1;;;21787:40:0;;:105;;-1:-1:-1;;;;;;;21844:48:0;;-1:-1:-1;;;21844:48:0;21787:105;:158;;;-1:-1:-1;;;;;;;;;;20231:40:0;;;21909:36;20072:207;28023:127;28088:4;28112:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28112:16:0;:30;;;28023:127::o;32146:174::-;32221:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32221:29:0;-1:-1:-1;;;;;32221:29:0;;;;;;;;:24;;32275:23;32221:24;32275:14;:23::i;:::-;-1:-1:-1;;;;;32266:46:0;;;;;;;;;;;32146:174;;:::o;29111:110::-;29187:26;29197:2;29201:7;29187:26;;;;;;;;;;;;:9;:26::i;28317:452::-;28446:4;28490:16;28498:7;28490;:16::i;:::-;28468:110;;;;-1:-1:-1;;;28468:110:0;;19789:2:1;28468:110:0;;;19771:21:1;19828:2;19808:18;;;19801:30;19867:34;19847:18;;;19840:62;-1:-1:-1;;;19918:18:1;;;19911:42;19970:19;;28468:110:0;19587:408:1;28468:110:0;28589:13;28605:23;28620:7;28605:14;:23::i;:::-;28589:39;;28658:5;-1:-1:-1;;;;;28647:16:0;:7;-1:-1:-1;;;;;28647:16:0;;:64;;;;28704:7;-1:-1:-1;;;;;28680:31:0;:20;28692:7;28680:11;:20::i;:::-;-1:-1:-1;;;;;28680:31:0;;28647:64;:113;;;-1:-1:-1;;;;;;25298:25:0;;;25269:4;25298:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28728:32;28639:122;28317:452;-1:-1:-1;;;;28317:452:0:o;31413:615::-;31586:4;-1:-1:-1;;;;;31559:31:0;:23;31574:7;31559:14;:23::i;:::-;-1:-1:-1;;;;;31559:31:0;;31537:122;;;;-1:-1:-1;;;31537:122:0;;20202:2:1;31537:122:0;;;20184:21:1;20241:2;20221:18;;;20214:30;20280:34;20260:18;;;20253:62;-1:-1:-1;;;20331:18:1;;;20324:39;20380:19;;31537:122:0;20000:405:1;31537:122:0;-1:-1:-1;;;;;31678:16:0;;31670:65;;;;-1:-1:-1;;;31670:65:0;;20612:2:1;31670:65:0;;;20594:21:1;20651:2;20631:18;;;20624:30;20690:34;20670:18;;;20663:62;-1:-1:-1;;;20741:18:1;;;20734:34;20785:19;;31670:65:0;20410:400:1;31670:65:0;31748:39;31769:4;31775:2;31779:7;31748:20;:39::i;:::-;31852:29;31869:1;31873:7;31852:8;:29::i;:::-;-1:-1:-1;;;;;31894:15:0;;;;;;:9;:15;;;;;:20;;31913:1;;31894:15;:20;;31913:1;;31894:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31925:13:0;;;;;;:9;:13;;;;;:18;;31942:1;;31925:13;:18;;31942:1;;31925:18;:::i;:::-;;;;-1:-1:-1;;31954:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31954:21:0;-1:-1:-1;;;;;31954:21:0;;;;;;;;;31993:27;;31954:16;;31993:27;;;;;;;31413:615;;;:::o;27358:352::-;27515:28;27525:4;27531:2;27535:7;27515:9;:28::i;:::-;27576:48;27599:4;27605:2;27609:7;27618:5;27576:22;:48::i;:::-;27554:148;;;;-1:-1:-1;;;27554:148:0;;;;;;;:::i;46132:100::-;46184:13;46217:7;46210:14;;;;;:::i;17495:723::-;17551:13;17772:10;17768:53;;-1:-1:-1;;17799:10:0;;;;;;;;;;;;-1:-1:-1;;;17799:10:0;;;;;17495:723::o;17768:53::-;17846:5;17831:12;17887:78;17894:9;;17887:78;;17920:8;;;;:::i;:::-;;-1:-1:-1;17943:10:0;;-1:-1:-1;17951:2:0;17943:10;;:::i;:::-;;;17887:78;;;17975:19;18007:6;17997:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17997:17:0;;17975:39;;18025:154;18032:10;;18025:154;;18059:11;18069:1;18059:11;;:::i;:::-;;-1:-1:-1;18128:10:0;18136:2;18128:5;:10;:::i;:::-;18115:24;;:2;:24;:::i;:::-;18102:39;;18085:6;18092;18085:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18085:56:0;;;;;;;;-1:-1:-1;18156:11:0;18165:2;18156:11;;:::i;:::-;;;18025:154;;29448:321;29578:18;29584:2;29588:7;29578:5;:18::i;:::-;29629:54;29660:1;29664:2;29668:7;29677:5;29629:22;:54::i;:::-;29607:154;;;;-1:-1:-1;;;29607:154:0;;;;;;;:::i;38540:589::-;-1:-1:-1;;;;;38746:18:0;;38742:187;;38781:40;38813:7;39956:10;:17;;39929:24;;;;:15;:24;;;;;:44;;;39984:24;;;;;;;;;;;;39852:164;38781:40;38742:187;;;38851:2;-1:-1:-1;;;;;38843:10:0;:4;-1:-1:-1;;;;;38843:10:0;;38839:90;;38870:47;38903:4;38909:7;38870:32;:47::i;:::-;-1:-1:-1;;;;;38943:16:0;;38939:183;;38976:45;39013:7;38976:36;:45::i;38939:183::-;39049:4;-1:-1:-1;;;;;39043:10:0;:2;-1:-1:-1;;;;;39043:10:0;;39039:83;;39070:40;39098:2;39102:7;39070:27;:40::i;32885:1053::-;33040:4;-1:-1:-1;;;;;33061:13:0;;8648:20;8696:8;33057:874;;33114:175;;-1:-1:-1;;;33114:175:0;;-1:-1:-1;;;;;33114:36:0;;;;;:175;;16926:10;;33208:4;;33235:7;;33265:5;;33114:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33114:175:0;;;;;;;;-1:-1:-1;;33114:175:0;;;;;;;;;;;;:::i;:::-;;;33093:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33476:13:0;;33472:389;;33519:108;;-1:-1:-1;;;33519:108:0;;;;;;;:::i;33472:389::-;33811:6;33805:13;33796:6;33792:2;33788:15;33781:38;33093:783;-1:-1:-1;;;;;;33353:55:0;-1:-1:-1;;;33353:55:0;;-1:-1:-1;33346:62:0;;33057:874;-1:-1:-1;33915:4:0;32885:1053;;;;;;:::o;30105:382::-;-1:-1:-1;;;;;30185:16:0;;30177:61;;;;-1:-1:-1;;;30177:61:0;;22688:2:1;30177:61:0;;;22670:21:1;;;22707:18;;;22700:30;22766:34;22746:18;;;22739:62;22818:18;;30177:61:0;22486:356:1;30177:61:0;30258:16;30266:7;30258;:16::i;:::-;30257:17;30249:58;;;;-1:-1:-1;;;30249:58:0;;23049:2:1;30249:58:0;;;23031:21:1;23088:2;23068:18;;;23061:30;23127;23107:18;;;23100:58;23175:18;;30249:58:0;22847:352:1;30249:58:0;30320:45;30349:1;30353:2;30357:7;30320:20;:45::i;:::-;-1:-1:-1;;;;;30378:13:0;;;;;;:9;:13;;;;;:18;;30395:1;;30378:13;:18;;30395:1;;30378:18;:::i;:::-;;;;-1:-1:-1;;30407:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30407:21:0;-1:-1:-1;;;;;30407:21:0;;;;;;;;30446:33;;30407:16;;;30446:33;;30407:16;;30446:33;30105:382;;:::o;40643:1002::-;40923:22;40973:1;40948:22;40965:4;40948:16;:22::i;:::-;:26;;;;:::i;:::-;40985:18;41006:26;;;:17;:26;;;;;;40923:51;;-1:-1:-1;41139:28:0;;;41135:328;;-1:-1:-1;;;;;41206:18:0;;41184:19;41206:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41257:30;;;;;;:44;;;41374:30;;:17;:30;;;;;:43;;;41135:328;-1:-1:-1;41559:26:0;;;;:17;:26;;;;;;;;41552:33;;;-1:-1:-1;;;;;41603:18:0;;;;;:12;:18;;;;;:34;;;;;;;41596:41;40643:1002::o;41940:1079::-;42218:10;:17;42193:22;;42218:21;;42238:1;;42218:21;:::i;:::-;42250:18;42271:24;;;:15;:24;;;;;;42644:10;:26;;42193:46;;-1:-1:-1;42271:24:0;;42193:46;;42644:26;;;;;;:::i;:::-;;;;;;;;;42622:48;;42708:11;42683:10;42694;42683:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42788:28;;;:15;:28;;;;;;;:41;;;42960:24;;;;;42953:31;42995:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42011:1008;;;41940:1079;:::o;39430:221::-;39515:14;39532:20;39549:2;39532:16;:20::i;:::-;-1:-1:-1;;;;;39563:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39608:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39430:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2192:127::-;2253:10;2248:3;2244:20;2241:1;2234:31;2284:4;2281:1;2274:15;2308:4;2305:1;2298:15;2324:275;2395:2;2389:9;2460:2;2441:13;;-1:-1:-1;;2437:27:1;2425:40;;2495:18;2480:34;;2516:22;;;2477:62;2474:88;;;2542:18;;:::i;:::-;2578:2;2571:22;2324:275;;-1:-1:-1;2324:275:1:o;2604:183::-;2664:4;2697:18;2689:6;2686:30;2683:56;;;2719:18;;:::i;:::-;-1:-1:-1;2764:1:1;2760:14;2776:4;2756:25;;2604:183::o;2792:662::-;2846:5;2899:3;2892:4;2884:6;2880:17;2876:27;2866:55;;2917:1;2914;2907:12;2866:55;2953:6;2940:20;2979:4;3003:60;3019:43;3059:2;3019:43;:::i;:::-;3003:60;:::i;:::-;3097:15;;;3183:1;3179:10;;;;3167:23;;3163:32;;;3128:12;;;;3207:15;;;3204:35;;;3235:1;3232;3225:12;3204:35;3271:2;3263:6;3259:15;3283:142;3299:6;3294:3;3291:15;3283:142;;;3365:17;;3353:30;;3403:12;;;;3316;;3283:142;;;-1:-1:-1;3443:5:1;2792:662;-1:-1:-1;;;;;;2792:662:1:o;3459:1215::-;3577:6;3585;3638:2;3626:9;3617:7;3613:23;3609:32;3606:52;;;3654:1;3651;3644:12;3606:52;3694:9;3681:23;3723:18;3764:2;3756:6;3753:14;3750:34;;;3780:1;3777;3770:12;3750:34;3818:6;3807:9;3803:22;3793:32;;3863:7;3856:4;3852:2;3848:13;3844:27;3834:55;;3885:1;3882;3875:12;3834:55;3921:2;3908:16;3943:4;3967:60;3983:43;4023:2;3983:43;:::i;3967:60::-;4061:15;;;4143:1;4139:10;;;;4131:19;;4127:28;;;4092:12;;;;4167:19;;;4164:39;;;4199:1;4196;4189:12;4164:39;4223:11;;;;4243:217;4259:6;4254:3;4251:15;4243:217;;;4339:3;4326:17;4356:31;4381:5;4356:31;:::i;:::-;4400:18;;4276:12;;;;4438;;;;4243:217;;;4479:5;-1:-1:-1;;4522:18:1;;4509:32;;-1:-1:-1;;4553:16:1;;;4550:36;;;4582:1;4579;4572:12;4550:36;;4605:63;4660:7;4649:8;4638:9;4634:24;4605:63;:::i;:::-;4595:73;;;3459:1215;;;;;:::o;4861:456::-;4938:6;4946;4954;5007:2;4995:9;4986:7;4982:23;4978:32;4975:52;;;5023:1;5020;5013:12;4975:52;5062:9;5049:23;5081:31;5106:5;5081:31;:::i;:::-;5131:5;-1:-1:-1;5188:2:1;5173:18;;5160:32;5201:33;5160:32;5201:33;:::i;:::-;4861:456;;5253:7;;-1:-1:-1;;;5307:2:1;5292:18;;;;5279:32;;4861:456::o;5322:160::-;5387:20;;5443:13;;5436:21;5426:32;;5416:60;;5472:1;5469;5462:12;5416:60;5322:160;;;:::o;5487:180::-;5543:6;5596:2;5584:9;5575:7;5571:23;5567:32;5564:52;;;5612:1;5609;5602:12;5564:52;5635:26;5651:9;5635:26;:::i;5672:407::-;5737:5;5771:18;5763:6;5760:30;5757:56;;;5793:18;;:::i;:::-;5831:57;5876:2;5855:15;;-1:-1:-1;;5851:29:1;5882:4;5847:40;5831:57;:::i;:::-;5822:66;;5911:6;5904:5;5897:21;5951:3;5942:6;5937:3;5933:16;5930:25;5927:45;;;5968:1;5965;5958:12;5927:45;6017:6;6012:3;6005:4;5998:5;5994:16;5981:43;6071:1;6064:4;6055:6;6048:5;6044:18;6040:29;6033:40;5672:407;;;;;:::o;6084:451::-;6153:6;6206:2;6194:9;6185:7;6181:23;6177:32;6174:52;;;6222:1;6219;6212:12;6174:52;6262:9;6249:23;6295:18;6287:6;6284:30;6281:50;;;6327:1;6324;6317:12;6281:50;6350:22;;6403:4;6395:13;;6391:27;-1:-1:-1;6381:55:1;;6432:1;6429;6422:12;6381:55;6455:74;6521:7;6516:2;6503:16;6498:2;6494;6490:11;6455:74;:::i;6540:247::-;6599:6;6652:2;6640:9;6631:7;6627:23;6623:32;6620:52;;;6668:1;6665;6658:12;6620:52;6707:9;6694:23;6726:31;6751:5;6726:31;:::i;6792:315::-;6857:6;6865;6918:2;6906:9;6897:7;6893:23;6889:32;6886:52;;;6934:1;6931;6924:12;6886:52;6973:9;6960:23;6992:31;7017:5;6992:31;:::i;:::-;7042:5;-1:-1:-1;7066:35:1;7097:2;7082:18;;7066:35;:::i;:::-;7056:45;;6792:315;;;;;:::o;7112:795::-;7207:6;7215;7223;7231;7284:3;7272:9;7263:7;7259:23;7255:33;7252:53;;;7301:1;7298;7291:12;7252:53;7340:9;7327:23;7359:31;7384:5;7359:31;:::i;:::-;7409:5;-1:-1:-1;7466:2:1;7451:18;;7438:32;7479:33;7438:32;7479:33;:::i;:::-;7531:7;-1:-1:-1;7585:2:1;7570:18;;7557:32;;-1:-1:-1;7640:2:1;7625:18;;7612:32;7667:18;7656:30;;7653:50;;;7699:1;7696;7689:12;7653:50;7722:22;;7775:4;7767:13;;7763:27;-1:-1:-1;7753:55:1;;7804:1;7801;7794:12;7753:55;7827:74;7893:7;7888:2;7875:16;7870:2;7866;7862:11;7827:74;:::i;:::-;7817:84;;;7112:795;;;;;;;:::o;7912:388::-;7980:6;7988;8041:2;8029:9;8020:7;8016:23;8012:32;8009:52;;;8057:1;8054;8047:12;8009:52;8096:9;8083:23;8115:31;8140:5;8115:31;:::i;:::-;8165:5;-1:-1:-1;8222:2:1;8207:18;;8194:32;8235:33;8194:32;8235:33;:::i;:::-;8287:7;8277:17;;;7912:388;;;;;:::o;8305:380::-;8384:1;8380:12;;;;8427;;;8448:61;;8502:4;8494:6;8490:17;8480:27;;8448:61;8555:2;8547:6;8544:14;8524:18;8521:38;8518:161;;;8601:10;8596:3;8592:20;8589:1;8582:31;8636:4;8633:1;8626:15;8664:4;8661:1;8654:15;8518:161;;8305:380;;;:::o;9930:356::-;10132:2;10114:21;;;10151:18;;;10144:30;10210:34;10205:2;10190:18;;10183:62;10277:2;10262:18;;9930:356::o;10635:127::-;10696:10;10691:3;10687:20;10684:1;10677:31;10727:4;10724:1;10717:15;10751:4;10748:1;10741:15;10767:128;10807:3;10838:1;10834:6;10831:1;10828:13;10825:39;;;10844:18;;:::i;:::-;-1:-1:-1;10880:9:1;;10767:128::o;11247:127::-;11308:10;11303:3;11299:20;11296:1;11289:31;11339:4;11336:1;11329:15;11363:4;11360:1;11353:15;11720:135;11759:3;-1:-1:-1;;11780:17:1;;11777:43;;;11800:18;;:::i;:::-;-1:-1:-1;11847:1:1;11836:13;;11720:135::o;11860:356::-;12062:2;12044:21;;;12081:18;;;12074:30;12140:34;12135:2;12120:18;;12113:62;12207:2;12192:18;;11860:356::o;12576:184::-;12646:6;12699:2;12687:9;12678:7;12674:23;12670:32;12667:52;;;12715:1;12712;12705:12;12667:52;-1:-1:-1;12738:16:1;;12576:184;-1:-1:-1;12576:184:1:o;13474:342::-;13676:2;13658:21;;;13715:2;13695:18;;;13688:30;-1:-1:-1;;;13749:2:1;13734:18;;13727:48;13807:2;13792:18;;13474:342::o;14100:413::-;14302:2;14284:21;;;14341:2;14321:18;;;14314:30;14380:34;14375:2;14360:18;;14353:62;-1:-1:-1;;;14446:2:1;14431:18;;14424:47;14503:3;14488:19;;14100:413::o;17272:251::-;17342:6;17395:2;17383:9;17374:7;17370:23;17366:32;17363:52;;;17411:1;17408;17401:12;17363:52;17443:9;17437:16;17462:31;17487:5;17462:31;:::i;18705:470::-;18884:3;18922:6;18916:13;18938:53;18984:6;18979:3;18972:4;18964:6;18960:17;18938:53;:::i;:::-;19054:13;;19013:16;;;;19076:57;19054:13;19013:16;19110:4;19098:17;;19076:57;:::i;:::-;19149:20;;18705:470;-1:-1:-1;;;;18705:470:1:o;20815:125::-;20855:4;20883:1;20880;20877:8;20874:34;;;20888:18;;:::i;:::-;-1:-1:-1;20925:9:1;;20815:125::o;20945:414::-;21147:2;21129:21;;;21186:2;21166:18;;;21159:30;21225:34;21220:2;21205:18;;21198:62;-1:-1:-1;;;21291:2:1;21276:18;;21269:48;21349:3;21334:19;;20945:414::o;21364:127::-;21425:10;21420:3;21416:20;21413:1;21406:31;21456:4;21453:1;21446:15;21480:4;21477:1;21470:15;21496:120;21536:1;21562;21552:35;;21567:18;;:::i;:::-;-1:-1:-1;21601:9:1;;21496:120::o;21621:112::-;21653:1;21679;21669:35;;21684:18;;:::i;:::-;-1:-1:-1;21718:9:1;;21621:112::o;21738:489::-;-1:-1:-1;;;;;22007:15:1;;;21989:34;;22059:15;;22054:2;22039:18;;22032:43;22106:2;22091:18;;22084:34;;;22154:3;22149:2;22134:18;;22127:31;;;21932:4;;22175:46;;22201:19;;22193:6;22175:46;:::i;:::-;22167:54;21738:489;-1:-1:-1;;;;;;21738:489:1:o;22232:249::-;22301:6;22354:2;22342:9;22333:7;22329:23;22325:32;22322:52;;;22370:1;22367;22360:12;22322:52;22402:9;22396:16;22421:30;22445:5;22421:30;:::i;23204:127::-;23265:10;23260:3;23256:20;23253:1;23246:31;23296:4;23293:1;23286:15;23320:4;23317:1;23310:15
Swarm Source
ipfs://5ffeba413dac9a0709b45181cded93826ef4225ce42918b4ae9418bb696b360a
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.