ERC-721
NFT
Overview
Max Total Supply
1,406 CnR
Holders
640
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CnRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CnRERC721
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-04 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } contract CnRERC721 is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; using MerkleProof for bytes32[]; Counters.Counter private _tokenIdCounter; uint256 public constant MAX_MINT = 2001; uint256 public PRICE = 0.5 ether; uint256 public MAX_RESERVE = 1501; bool public isActive = false; bool public isWhiteListActive = true; bool public isRedeemable = false; uint256 public purchaseLimit = 1; uint256 public totalPublicSupply; bytes32 private merkleRoot; mapping(address => uint256) private _claimed; mapping(uint256 => address) private _redeemed; uint256[] private _gifted; string private _contractURI = ""; string private _tokenBaseURI = ""; string private _tokenRevealedBaseURI = ""; constructor(bytes32 initialRoot) ERC721("CULTandRAIN", "CnR") { merkleRoot = initialRoot; } function tokensOfOwner(address _owner) external view returns (uint256[] memory ownerTokens) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 totalTkns = totalSupply(); uint256 resultIndex = 0; uint256 tnkId; for (tnkId = 1; tnkId <= totalTkns; tnkId++) { if (ownerOf(tnkId) == _owner) { result[resultIndex] = tnkId; resultIndex++; } } return result; } } function howManyClaimed(address _address) external view returns (uint256) { return _claimed[_address]; } function onWhiteList(address addr,bytes32[] calldata _merkleProof) external view returns (bool) { bytes32 leaf = keccak256(abi.encodePacked(addr)); return MerkleProof.verify(_merkleProof,merkleRoot,leaf); } function buyNFT(bytes32[] calldata _merkleProof) external payable { require(isActive, "Contract is not active"); require(totalSupply() < MAX_MINT, "All tokens have been minted"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( isWhiteListActive ? MerkleProof.verify(_merkleProof,merkleRoot,leaf) : true, "You are not on the White List" ); require( msg.value > 0 && msg.value % PRICE == 0, "Amount must be a multiple of price" ); uint256 amount = msg.value / PRICE; require( amount >= 1 && amount <= purchaseLimit, "Amount should be at least 1" ); require( (_claimed[msg.sender] + amount) <= purchaseLimit, "Purchase exceeds purchase limit" ); uint256 reached = amount + _tokenIdCounter.current(); require( reached <= (MAX_MINT - MAX_RESERVE), "Purchase would exceed public supply" ); _claimed[msg.sender] += amount; totalPublicSupply += amount; for (uint256 i = 0; i < amount; i++) { _tokenIdCounter.increment(); uint256 newTokenId = _tokenIdCounter.current(); _mint(msg.sender, newTokenId); } } function gift(address to) external onlyOwner { require(totalSupply() < MAX_MINT, "All tokens have been minted"); require(_gifted.length < MAX_RESERVE, "Max reserve reached"); _tokenIdCounter.increment(); uint256 newTokenId = _tokenIdCounter.current(); _gifted.push(newTokenId); _mint(to, newTokenId); } function setIsActive(bool _isActive) external onlyOwner { isActive = _isActive; } function setNewPrice(uint256 _newPrice) external onlyOwner { PRICE = _newPrice; } function setIsWhiteListActive(bool _isWhiteListActive) external onlyOwner { isWhiteListActive = _isWhiteListActive; } function setPurchaseLimit(uint256 newLimit) external onlyOwner { require( newLimit > 0 && newLimit < MAX_MINT, "New reserve must be greater than zero" ); purchaseLimit = newLimit; } function setMaxReserve(uint256 newReserve) external onlyOwner { require( newReserve < MAX_RESERVE, "New reserve must be less than old reserve" ); MAX_RESERVE = newReserve; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Nothing to witdraw!"); payable(msg.sender).transfer(balance); } function totalSupply() public view returns (uint256) { return _tokenIdCounter.current(); } function publicSupply() external view returns (uint256) { return totalPublicSupply; } function redeem(uint256 _tokenId) external returns (bool) { require(isRedeemable, "Redeeming not available"); require(ownerOf(_tokenId) == msg.sender, "You must own the NFT"); require(_redeemed[_tokenId] == address(0), "You already redeemed the NFT"); _redeemed[_tokenId] = msg.sender; return true; } function setRedeemable(bool _redeemable) external onlyOwner { isRedeemable = _redeemable; } function whoRedeemed(uint256 _tokenId) external view returns (address) { return _redeemed[_tokenId]; } function setMerkleRoot(bytes32 root) external onlyOwner { merkleRoot = root; } function setContractURI(string calldata URI) external onlyOwner { _contractURI = URI; } function setBaseURI(string calldata URI) external onlyOwner { _tokenBaseURI = URI; } function setRevealedBaseURI(string calldata revealedBaseURI) external onlyOwner { _tokenRevealedBaseURI = revealedBaseURI; } function getGiftedTokens() public view returns (uint256[] memory) { return _gifted; } function contractURI() public view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "Token does not exist"); string memory revealedBaseURI = _tokenRevealedBaseURI; return bytes(revealedBaseURI).length > 0 ? string(abi.encodePacked(revealedBaseURI, tokenId.toString())) : _tokenBaseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bytes32","name":"initialRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGiftedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"howManyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRedeemable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhiteListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"onWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isWhiteListActive","type":"bool"}],"name":"setIsWhiteListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserve","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_redeemable","type":"bool"}],"name":"setRedeemable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"whoRedeemed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6706f05b59d3b200006008556105dd600955600a805462ffffff19166101001790556001600b5560a0604081905260006080819052620000429160119162000195565b50604080516020810191829052600090819052620000639160129162000195565b50604080516020810191829052600090819052620000849160139162000195565b503480156200009257600080fd5b5060405162002d3a38038062002d3a833981016040819052620000b5916200023b565b604080518082018252600b81526a21aaa62a30b7322920a4a760a91b60208083019182528351808501909452600384526221b72960e91b908401528151919291620001039160009162000195565b5080516200011990600190602084019062000195565b50505062000136620001306200013f60201b60201c565b62000143565b600d5562000292565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a39062000255565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b6000602082840312156200024e57600080fd5b5051919050565b600181811c908216806200026a57607f821691505b602082108114156200028c57634e487b7160e01b600052602260045260246000fd5b50919050565b612a9880620002a26000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610784578063ee8cdd4e146107cd578063eff31e9e146107ed578063f0292a0314610803578063f2fde38b14610819578063f38cfa731461083957600080fd5b8063c87b56dd146106e6578063cbfc4bce14610706578063cef220a314610726578063db006a7514610739578063e6a5931e14610759578063e8a3d4851461076f57600080fd5b80638da5cb5b116101135780638da5cb5b14610633578063938e3d7b1461065157806395d89b4114610671578063a22cb46514610686578063af920582146106a6578063b88d4fde146106c657600080fd5b8063715018a6146105855780637cb647591461059a5780638462151c146105ba57806389458916146105e75780638d859f3e1461061d57600080fd5b80633ccfd60b116101f35780635e84d723116101ac5780635e84d723146104d05780636352211e146104e5578063659a0c0e146105055780636e83843a146105255780636edc43881461054557806370a082311461056557600080fd5b80633ccfd60b1461041c57806342842e0e1461043157806349ec975b1461045157806355f804b31461047157806356a87caa14610491578063573f5dae146104b157600080fd5b806318160ddd1161024557806318160ddd14610369578063188866571461038c57806322f3e2d4146103a257806323b872dd146103bc5780632750fc78146103dc57806338907118146103fc57600080fd5b806301ffc9a714610282578063057c3c83146102b757806306fdde0314610305578063081812fc14610327578063095ea7b314610347575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123c9565b61084e565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102ed6102d23660046123e6565b6000908152600f60205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016102ae565b34801561031157600080fd5b5061031a6108a0565b6040516102ae9190612457565b34801561033357600080fd5b506102ed6103423660046123e6565b610932565b34801561035357600080fd5b50610367610362366004612486565b6109cc565b005b34801561037557600080fd5b5061037e610ae2565b6040519081526020016102ae565b34801561039857600080fd5b5061037e600b5481565b3480156103ae57600080fd5b50600a546102a29060ff1681565b3480156103c857600080fd5b506103676103d73660046124b0565b610af2565b3480156103e857600080fd5b506103676103f73660046124fc565b610b23565b34801561040857600080fd5b506103676104173660046124fc565b610b60565b34801561042857600080fd5b50610367610ba6565b34801561043d57600080fd5b5061036761044c3660046124b0565b610c45565b34801561045d57600080fd5b5061036761046c3660046124fc565b610c60565b34801561047d57600080fd5b5061036761048c366004612517565b610ca4565b34801561049d57600080fd5b506103676104ac3660046123e6565b610cda565b3480156104bd57600080fd5b50600a546102a290610100900460ff1681565b3480156104dc57600080fd5b50600c5461037e565b3480156104f157600080fd5b506102ed6105003660046123e6565b610d6c565b34801561051157600080fd5b506102a26105203660046125d5565b610de3565b34801561053157600080fd5b50610367610540366004612517565b610e69565b34801561055157600080fd5b506103676105603660046123e6565b610e9f565b34801561057157600080fd5b5061037e610580366004612628565b610f39565b34801561059157600080fd5b50610367610fc0565b3480156105a657600080fd5b506103676105b53660046123e6565b610ff6565b3480156105c657600080fd5b506105da6105d5366004612628565b611025565b6040516102ae9190612643565b3480156105f357600080fd5b5061037e610602366004612628565b6001600160a01b03166000908152600e602052604090205490565b34801561062957600080fd5b5061037e60085481565b34801561063f57600080fd5b506006546001600160a01b03166102ed565b34801561065d57600080fd5b5061036761066c366004612517565b611123565b34801561067d57600080fd5b5061031a611159565b34801561069257600080fd5b506103676106a1366004612687565b611168565b3480156106b257600080fd5b50600a546102a29062010000900460ff1681565b3480156106d257600080fd5b506103676106e13660046126d0565b611173565b3480156106f257600080fd5b5061031a6107013660046123e6565b6111ab565b34801561071257600080fd5b50610367610721366004612628565b611363565b6103676107343660046127ac565b611488565b34801561074557600080fd5b506102a26107543660046123e6565b61185e565b34801561076557600080fd5b5061037e600c5481565b34801561077b57600080fd5b5061031a611999565b34801561079057600080fd5b506102a261079f3660046127ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d957600080fd5b506103676107e83660046123e6565b6119a8565b3480156107f957600080fd5b5061037e60095481565b34801561080f57600080fd5b5061037e6107d181565b34801561082557600080fd5b50610367610834366004612628565b6119d7565b34801561084557600080fd5b506105da611a72565b60006001600160e01b031982166380ac58cd60e01b148061087f57506001600160e01b03198216635b5e139f60e01b145b8061089a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108af90612818565b80601f01602080910402602001604051908101604052809291908181526020018280546108db90612818565b80156109285780601f106108fd57610100808354040283529160200191610928565b820191906000526020600020905b81548152906001019060200180831161090b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109d782610d6c565b9050806001600160a01b0316836001600160a01b03161415610a455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a7565b336001600160a01b0382161480610a615750610a61813361079f565b610ad35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a7565b610add8383611ac9565b505050565b6000610aed60075490565b905090565b610afc3382611b37565b610b185760405162461bcd60e51b81526004016109a79061284d565b610add838383611c2e565b6006546001600160a01b03163314610b4d5760405162461bcd60e51b81526004016109a79061289e565b600a805460ff1916911515919091179055565b6006546001600160a01b03163314610b8a5760405162461bcd60e51b81526004016109a79061289e565b600a8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610bd05760405162461bcd60e51b81526004016109a79061289e565b4780610c145760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974647261772160681b60448201526064016109a7565b604051339082156108fc029083906000818181858888f19350505050158015610c41573d6000803e3d6000fd5b5050565b610add83838360405180602001604052806000815250611173565b6006546001600160a01b03163314610c8a5760405162461bcd60e51b81526004016109a79061289e565b600a80549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314610cce5760405162461bcd60e51b81526004016109a79061289e565b610add6012838361231a565b6006546001600160a01b03163314610d045760405162461bcd60e51b81526004016109a79061289e565b6009548110610d675760405162461bcd60e51b815260206004820152602960248201527f4e65772072657365727665206d757374206265206c657373207468616e206f6c60448201526864207265736572766560b81b60648201526084016109a7565b600955565b6000818152600260205260408120546001600160a01b03168061089a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a7565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050610e6084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611dce565b95945050505050565b6006546001600160a01b03163314610e935760405162461bcd60e51b81526004016109a79061289e565b610add6013838361231a565b6006546001600160a01b03163314610ec95760405162461bcd60e51b81526004016109a79061289e565b600081118015610eda57506107d181105b610f345760405162461bcd60e51b815260206004820152602560248201527f4e65772072657365727665206d7573742062652067726561746572207468616e604482015264207a65726f60d81b60648201526084016109a7565b600b55565b60006001600160a01b038216610fa45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fea5760405162461bcd60e51b81526004016109a79061289e565b610ff46000611de4565b565b6006546001600160a01b031633146110205760405162461bcd60e51b81526004016109a79061289e565b600d55565b6060600061103283610f39565b9050806110535760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561106e5761106e6126ba565b604051908082528060200260200182016040528015611097578160200160208202803683370190505b50905060006110a4610ae2565b9050600060015b82811161111257866001600160a01b03166110c582610d6c565b6001600160a01b0316141561110057808483815181106110e7576110e76128d3565b6020908102919091010152816110fc816128ff565b9250505b8061110a816128ff565b9150506110ab565b509195945050505050565b50919050565b6006546001600160a01b0316331461114d5760405162461bcd60e51b81526004016109a79061289e565b610add6011838361231a565b6060600180546108af90612818565b610c41338383611e36565b61117d3383611b37565b6111995760405162461bcd60e51b81526004016109a79061284d565b6111a584848484611f05565b50505050565b6000818152600260205260409020546060906001600160a01b03166112095760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109a7565b60006013805461121890612818565b80601f016020809104026020016040519081016040528092919081815260200182805461124490612818565b80156112915780601f1061126657610100808354040283529160200191611291565b820191906000526020600020905b81548152906001019060200180831161127457829003601f168201915b50505050509050600081511161133157601280546112ae90612818565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90612818565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b505050505061135c565b8061133b84611f38565b60405160200161134c92919061291a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461138d5760405162461bcd60e51b81526004016109a79061289e565b6107d1611398610ae2565b106113e55760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016109a7565b6009546010541061142e5760405162461bcd60e51b815260206004820152601360248201527213585e081c995cd95c9d99481c995858da1959606a1b60448201526064016109a7565b61143c600780546001019055565b600061144760075490565b601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018190559050610c418282612036565b600a5460ff166114d35760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016109a7565b6107d16114de610ae2565b1061152b5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016109a7565b604080516bffffffffffffffffffffffff193360601b166020808301919091528251808303601401815260349092019092528051910120600a54610100900460ff166115785760016115b9565b6115b983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611dce565b6116055760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e20746865205768697465204c69737400000060448201526064016109a7565b60003411801561161f575060085461161d903461295f565b155b6116765760405162461bcd60e51b815260206004820152602260248201527f416d6f756e74206d7573742062652061206d756c7469706c65206f6620707269604482015261636560f01b60648201526084016109a7565b6000600854346116869190612973565b90506001811015801561169b5750600b548111155b6116e75760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e742073686f756c64206265206174206c656173742031000000000060448201526064016109a7565b600b54336000908152600e6020526040902054611705908390612987565b11156117535760405162461bcd60e51b815260206004820152601f60248201527f50757263686173652065786365656473207075726368617365206c696d69740060448201526064016109a7565b600061175e60075490565b6117689083612987565b90506009546107d161177a919061299f565b8111156117d55760405162461bcd60e51b815260206004820152602360248201527f507572636861736520776f756c6420657863656564207075626c696320737570604482015262706c7960e81b60648201526084016109a7565b336000908152600e6020526040812080548492906117f4908490612987565b9250508190555081600c600082825461180d9190612987565b90915550600090505b828110156118565761182c600780546001019055565b600061183760075490565b90506118433382612036565b508061184e816128ff565b915050611816565b505050505050565b600a5460009062010000900460ff166118b95760405162461bcd60e51b815260206004820152601760248201527f52656465656d696e67206e6f7420617661696c61626c6500000000000000000060448201526064016109a7565b336118c383610d6c565b6001600160a01b0316146119105760405162461bcd60e51b8152602060048201526014602482015273165bdd481b5d5cdd081bdddb881d1a194813919560621b60448201526064016109a7565b6000828152600f60205260409020546001600160a01b0316156119755760405162461bcd60e51b815260206004820152601c60248201527f596f7520616c72656164792072656465656d656420746865204e46540000000060448201526064016109a7565b506000908152600f6020526040902080546001600160a01b03191633179055600190565b6060601180546108af90612818565b6006546001600160a01b031633146119d25760405162461bcd60e51b81526004016109a79061289e565b600855565b6006546001600160a01b03163314611a015760405162461bcd60e51b81526004016109a79061289e565b6001600160a01b038116611a665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a7565b611a6f81611de4565b50565b6060601080548060200260200160405190810160405280929190818152602001828054801561092857602002820191906000526020600020905b815481526020019060010190808311611aac575050505050905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611afe82610d6c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bb05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a7565b6000611bbb83610d6c565b9050806001600160a01b0316846001600160a01b03161480611bf65750836001600160a01b0316611beb84610932565b6001600160a01b0316145b80611c2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c4182610d6c565b6001600160a01b031614611ca95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a7565b6001600160a01b038216611d0b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a7565b611d16600082611ac9565b6001600160a01b0383166000908152600360205260408120805460019290611d3f90849061299f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d6d908490612987565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611ddb8584612178565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f10848484611c2e565b611f1c8484848461221c565b6111a55760405162461bcd60e51b81526004016109a7906129b6565b606081611f5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f865780611f70816128ff565b9150611f7f9050600a83612973565b9150611f60565b60008167ffffffffffffffff811115611fa157611fa16126ba565b6040519080825280601f01601f191660200182016040528015611fcb576020820181803683370190505b5090505b8415611c2657611fe060018361299f565b9150611fed600a8661295f565b611ff8906030612987565b60f81b81838151811061200d5761200d6128d3565b60200101906001600160f81b031916908160001a90535061202f600a86612973565b9450611fcf565b6001600160a01b03821661208c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a7565b6000818152600260205260409020546001600160a01b0316156120f15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a7565b6001600160a01b038216600090815260036020526040812080546001929061211a908490612987565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b845181101561104b57600085828151811061219a5761219a6128d3565b602002602001015190508083116121dc576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612209565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612214816128ff565b91505061217d565b60006001600160a01b0384163b1561230f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612260903390899088908890600401612a08565b6020604051808303816000875af192505050801561229b575060408051601f3d908101601f1916820190925261229891810190612a45565b60015b6122f5573d8080156122c9576040519150601f19603f3d011682016040523d82523d6000602084013e6122ce565b606091505b5080516122ed5760405162461bcd60e51b81526004016109a7906129b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c26565b506001949350505050565b82805461232690612818565b90600052602060002090601f016020900481019282612348576000855561238e565b82601f106123615782800160ff1982351617855561238e565b8280016001018555821561238e579182015b8281111561238e578235825591602001919060010190612373565b5061239a92915061239e565b5090565b5b8082111561239a576000815560010161239f565b6001600160e01b031981168114611a6f57600080fd5b6000602082840312156123db57600080fd5b813561135c816123b3565b6000602082840312156123f857600080fd5b5035919050565b60005b8381101561241a578181015183820152602001612402565b838111156111a55750506000910152565b600081518084526124438160208601602086016123ff565b601f01601f19169290920160200192915050565b60208152600061135c602083018461242b565b80356001600160a01b038116811461248157600080fd5b919050565b6000806040838503121561249957600080fd5b6124a28361246a565b946020939093013593505050565b6000806000606084860312156124c557600080fd5b6124ce8461246a565b92506124dc6020850161246a565b9150604084013590509250925092565b8035801515811461248157600080fd5b60006020828403121561250e57600080fd5b61135c826124ec565b6000806020838503121561252a57600080fd5b823567ffffffffffffffff8082111561254257600080fd5b818501915085601f83011261255657600080fd5b81358181111561256557600080fd5b86602082850101111561257757600080fd5b60209290920196919550909350505050565b60008083601f84011261259b57600080fd5b50813567ffffffffffffffff8111156125b357600080fd5b6020830191508360208260051b85010111156125ce57600080fd5b9250929050565b6000806000604084860312156125ea57600080fd5b6125f38461246a565b9250602084013567ffffffffffffffff81111561260f57600080fd5b61261b86828701612589565b9497909650939450505050565b60006020828403121561263a57600080fd5b61135c8261246a565b6020808252825182820181905260009190848201906040850190845b8181101561267b5783518352928401929184019160010161265f565b50909695505050505050565b6000806040838503121561269a57600080fd5b6126a38361246a565b91506126b1602084016124ec565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156126e657600080fd5b6126ef8561246a565b93506126fd6020860161246a565b925060408501359150606085013567ffffffffffffffff8082111561272157600080fd5b818701915087601f83011261273557600080fd5b813581811115612747576127476126ba565b604051601f8201601f19908116603f0116810190838211818310171561276f5761276f6126ba565b816040528281528a602084870101111561278857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080602083850312156127bf57600080fd5b823567ffffffffffffffff8111156127d657600080fd5b6127e285828601612589565b90969095509350505050565b6000806040838503121561280157600080fd5b61280a8361246a565b91506126b16020840161246a565b600181811c9082168061282c57607f821691505b6020821081141561111d57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612913576129136128e9565b5060010190565b6000835161292c8184602088016123ff565b8351908301906129408183602088016123ff565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261296e5761296e612949565b500690565b60008261298257612982612949565b500490565b6000821982111561299a5761299a6128e9565b500190565b6000828210156129b1576129b16128e9565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a3b9083018461242b565b9695505050505050565b600060208284031215612a5757600080fd5b815161135c816123b356fea2646970667358221220f5db14e29722cb5ca56ca9bb83edfd2023ae8a9d7de5ecdb178dc1425c2d18d064736f6c634300080a003381c9bbf2edb4683aa5161f4da91c91e1aea1752af484d9e7add409ceaf33f81b
Deployed Bytecode
0x60806040526004361061027d5760003560e01c8063715018a61161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610784578063ee8cdd4e146107cd578063eff31e9e146107ed578063f0292a0314610803578063f2fde38b14610819578063f38cfa731461083957600080fd5b8063c87b56dd146106e6578063cbfc4bce14610706578063cef220a314610726578063db006a7514610739578063e6a5931e14610759578063e8a3d4851461076f57600080fd5b80638da5cb5b116101135780638da5cb5b14610633578063938e3d7b1461065157806395d89b4114610671578063a22cb46514610686578063af920582146106a6578063b88d4fde146106c657600080fd5b8063715018a6146105855780637cb647591461059a5780638462151c146105ba57806389458916146105e75780638d859f3e1461061d57600080fd5b80633ccfd60b116101f35780635e84d723116101ac5780635e84d723146104d05780636352211e146104e5578063659a0c0e146105055780636e83843a146105255780636edc43881461054557806370a082311461056557600080fd5b80633ccfd60b1461041c57806342842e0e1461043157806349ec975b1461045157806355f804b31461047157806356a87caa14610491578063573f5dae146104b157600080fd5b806318160ddd1161024557806318160ddd14610369578063188866571461038c57806322f3e2d4146103a257806323b872dd146103bc5780632750fc78146103dc57806338907118146103fc57600080fd5b806301ffc9a714610282578063057c3c83146102b757806306fdde0314610305578063081812fc14610327578063095ea7b314610347575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123c9565b61084e565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102ed6102d23660046123e6565b6000908152600f60205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016102ae565b34801561031157600080fd5b5061031a6108a0565b6040516102ae9190612457565b34801561033357600080fd5b506102ed6103423660046123e6565b610932565b34801561035357600080fd5b50610367610362366004612486565b6109cc565b005b34801561037557600080fd5b5061037e610ae2565b6040519081526020016102ae565b34801561039857600080fd5b5061037e600b5481565b3480156103ae57600080fd5b50600a546102a29060ff1681565b3480156103c857600080fd5b506103676103d73660046124b0565b610af2565b3480156103e857600080fd5b506103676103f73660046124fc565b610b23565b34801561040857600080fd5b506103676104173660046124fc565b610b60565b34801561042857600080fd5b50610367610ba6565b34801561043d57600080fd5b5061036761044c3660046124b0565b610c45565b34801561045d57600080fd5b5061036761046c3660046124fc565b610c60565b34801561047d57600080fd5b5061036761048c366004612517565b610ca4565b34801561049d57600080fd5b506103676104ac3660046123e6565b610cda565b3480156104bd57600080fd5b50600a546102a290610100900460ff1681565b3480156104dc57600080fd5b50600c5461037e565b3480156104f157600080fd5b506102ed6105003660046123e6565b610d6c565b34801561051157600080fd5b506102a26105203660046125d5565b610de3565b34801561053157600080fd5b50610367610540366004612517565b610e69565b34801561055157600080fd5b506103676105603660046123e6565b610e9f565b34801561057157600080fd5b5061037e610580366004612628565b610f39565b34801561059157600080fd5b50610367610fc0565b3480156105a657600080fd5b506103676105b53660046123e6565b610ff6565b3480156105c657600080fd5b506105da6105d5366004612628565b611025565b6040516102ae9190612643565b3480156105f357600080fd5b5061037e610602366004612628565b6001600160a01b03166000908152600e602052604090205490565b34801561062957600080fd5b5061037e60085481565b34801561063f57600080fd5b506006546001600160a01b03166102ed565b34801561065d57600080fd5b5061036761066c366004612517565b611123565b34801561067d57600080fd5b5061031a611159565b34801561069257600080fd5b506103676106a1366004612687565b611168565b3480156106b257600080fd5b50600a546102a29062010000900460ff1681565b3480156106d257600080fd5b506103676106e13660046126d0565b611173565b3480156106f257600080fd5b5061031a6107013660046123e6565b6111ab565b34801561071257600080fd5b50610367610721366004612628565b611363565b6103676107343660046127ac565b611488565b34801561074557600080fd5b506102a26107543660046123e6565b61185e565b34801561076557600080fd5b5061037e600c5481565b34801561077b57600080fd5b5061031a611999565b34801561079057600080fd5b506102a261079f3660046127ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d957600080fd5b506103676107e83660046123e6565b6119a8565b3480156107f957600080fd5b5061037e60095481565b34801561080f57600080fd5b5061037e6107d181565b34801561082557600080fd5b50610367610834366004612628565b6119d7565b34801561084557600080fd5b506105da611a72565b60006001600160e01b031982166380ac58cd60e01b148061087f57506001600160e01b03198216635b5e139f60e01b145b8061089a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108af90612818565b80601f01602080910402602001604051908101604052809291908181526020018280546108db90612818565b80156109285780601f106108fd57610100808354040283529160200191610928565b820191906000526020600020905b81548152906001019060200180831161090b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109d782610d6c565b9050806001600160a01b0316836001600160a01b03161415610a455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a7565b336001600160a01b0382161480610a615750610a61813361079f565b610ad35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a7565b610add8383611ac9565b505050565b6000610aed60075490565b905090565b610afc3382611b37565b610b185760405162461bcd60e51b81526004016109a79061284d565b610add838383611c2e565b6006546001600160a01b03163314610b4d5760405162461bcd60e51b81526004016109a79061289e565b600a805460ff1916911515919091179055565b6006546001600160a01b03163314610b8a5760405162461bcd60e51b81526004016109a79061289e565b600a8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610bd05760405162461bcd60e51b81526004016109a79061289e565b4780610c145760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974647261772160681b60448201526064016109a7565b604051339082156108fc029083906000818181858888f19350505050158015610c41573d6000803e3d6000fd5b5050565b610add83838360405180602001604052806000815250611173565b6006546001600160a01b03163314610c8a5760405162461bcd60e51b81526004016109a79061289e565b600a80549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314610cce5760405162461bcd60e51b81526004016109a79061289e565b610add6012838361231a565b6006546001600160a01b03163314610d045760405162461bcd60e51b81526004016109a79061289e565b6009548110610d675760405162461bcd60e51b815260206004820152602960248201527f4e65772072657365727665206d757374206265206c657373207468616e206f6c60448201526864207265736572766560b81b60648201526084016109a7565b600955565b6000818152600260205260408120546001600160a01b03168061089a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a7565b6040516bffffffffffffffffffffffff19606085901b1660208201526000908190603401604051602081830303815290604052805190602001209050610e6084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611dce565b95945050505050565b6006546001600160a01b03163314610e935760405162461bcd60e51b81526004016109a79061289e565b610add6013838361231a565b6006546001600160a01b03163314610ec95760405162461bcd60e51b81526004016109a79061289e565b600081118015610eda57506107d181105b610f345760405162461bcd60e51b815260206004820152602560248201527f4e65772072657365727665206d7573742062652067726561746572207468616e604482015264207a65726f60d81b60648201526084016109a7565b600b55565b60006001600160a01b038216610fa45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a7565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610fea5760405162461bcd60e51b81526004016109a79061289e565b610ff46000611de4565b565b6006546001600160a01b031633146110205760405162461bcd60e51b81526004016109a79061289e565b600d55565b6060600061103283610f39565b9050806110535760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561106e5761106e6126ba565b604051908082528060200260200182016040528015611097578160200160208202803683370190505b50905060006110a4610ae2565b9050600060015b82811161111257866001600160a01b03166110c582610d6c565b6001600160a01b0316141561110057808483815181106110e7576110e76128d3565b6020908102919091010152816110fc816128ff565b9250505b8061110a816128ff565b9150506110ab565b509195945050505050565b50919050565b6006546001600160a01b0316331461114d5760405162461bcd60e51b81526004016109a79061289e565b610add6011838361231a565b6060600180546108af90612818565b610c41338383611e36565b61117d3383611b37565b6111995760405162461bcd60e51b81526004016109a79061284d565b6111a584848484611f05565b50505050565b6000818152600260205260409020546060906001600160a01b03166112095760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109a7565b60006013805461121890612818565b80601f016020809104026020016040519081016040528092919081815260200182805461124490612818565b80156112915780601f1061126657610100808354040283529160200191611291565b820191906000526020600020905b81548152906001019060200180831161127457829003601f168201915b50505050509050600081511161133157601280546112ae90612818565b80601f01602080910402602001604051908101604052809291908181526020018280546112da90612818565b80156113275780601f106112fc57610100808354040283529160200191611327565b820191906000526020600020905b81548152906001019060200180831161130a57829003601f168201915b505050505061135c565b8061133b84611f38565b60405160200161134c92919061291a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b0316331461138d5760405162461bcd60e51b81526004016109a79061289e565b6107d1611398610ae2565b106113e55760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016109a7565b6009546010541061142e5760405162461bcd60e51b815260206004820152601360248201527213585e081c995cd95c9d99481c995858da1959606a1b60448201526064016109a7565b61143c600780546001019055565b600061144760075490565b601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018190559050610c418282612036565b600a5460ff166114d35760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b60448201526064016109a7565b6107d16114de610ae2565b1061152b5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e746564000000000060448201526064016109a7565b604080516bffffffffffffffffffffffff193360601b166020808301919091528251808303601401815260349092019092528051910120600a54610100900460ff166115785760016115b9565b6115b983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611dce565b6116055760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e20746865205768697465204c69737400000060448201526064016109a7565b60003411801561161f575060085461161d903461295f565b155b6116765760405162461bcd60e51b815260206004820152602260248201527f416d6f756e74206d7573742062652061206d756c7469706c65206f6620707269604482015261636560f01b60648201526084016109a7565b6000600854346116869190612973565b90506001811015801561169b5750600b548111155b6116e75760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e742073686f756c64206265206174206c656173742031000000000060448201526064016109a7565b600b54336000908152600e6020526040902054611705908390612987565b11156117535760405162461bcd60e51b815260206004820152601f60248201527f50757263686173652065786365656473207075726368617365206c696d69740060448201526064016109a7565b600061175e60075490565b6117689083612987565b90506009546107d161177a919061299f565b8111156117d55760405162461bcd60e51b815260206004820152602360248201527f507572636861736520776f756c6420657863656564207075626c696320737570604482015262706c7960e81b60648201526084016109a7565b336000908152600e6020526040812080548492906117f4908490612987565b9250508190555081600c600082825461180d9190612987565b90915550600090505b828110156118565761182c600780546001019055565b600061183760075490565b90506118433382612036565b508061184e816128ff565b915050611816565b505050505050565b600a5460009062010000900460ff166118b95760405162461bcd60e51b815260206004820152601760248201527f52656465656d696e67206e6f7420617661696c61626c6500000000000000000060448201526064016109a7565b336118c383610d6c565b6001600160a01b0316146119105760405162461bcd60e51b8152602060048201526014602482015273165bdd481b5d5cdd081bdddb881d1a194813919560621b60448201526064016109a7565b6000828152600f60205260409020546001600160a01b0316156119755760405162461bcd60e51b815260206004820152601c60248201527f596f7520616c72656164792072656465656d656420746865204e46540000000060448201526064016109a7565b506000908152600f6020526040902080546001600160a01b03191633179055600190565b6060601180546108af90612818565b6006546001600160a01b031633146119d25760405162461bcd60e51b81526004016109a79061289e565b600855565b6006546001600160a01b03163314611a015760405162461bcd60e51b81526004016109a79061289e565b6001600160a01b038116611a665760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a7565b611a6f81611de4565b50565b6060601080548060200260200160405190810160405280929190818152602001828054801561092857602002820191906000526020600020905b815481526020019060010190808311611aac575050505050905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611afe82610d6c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bb05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a7565b6000611bbb83610d6c565b9050806001600160a01b0316846001600160a01b03161480611bf65750836001600160a01b0316611beb84610932565b6001600160a01b0316145b80611c2657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c4182610d6c565b6001600160a01b031614611ca95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a7565b6001600160a01b038216611d0b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a7565b611d16600082611ac9565b6001600160a01b0383166000908152600360205260408120805460019290611d3f90849061299f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d6d908490612987565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611ddb8584612178565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611e985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a7565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f10848484611c2e565b611f1c8484848461221c565b6111a55760405162461bcd60e51b81526004016109a7906129b6565b606081611f5c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f865780611f70816128ff565b9150611f7f9050600a83612973565b9150611f60565b60008167ffffffffffffffff811115611fa157611fa16126ba565b6040519080825280601f01601f191660200182016040528015611fcb576020820181803683370190505b5090505b8415611c2657611fe060018361299f565b9150611fed600a8661295f565b611ff8906030612987565b60f81b81838151811061200d5761200d6128d3565b60200101906001600160f81b031916908160001a90535061202f600a86612973565b9450611fcf565b6001600160a01b03821661208c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a7565b6000818152600260205260409020546001600160a01b0316156120f15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a7565b6001600160a01b038216600090815260036020526040812080546001929061211a908490612987565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b845181101561104b57600085828151811061219a5761219a6128d3565b602002602001015190508083116121dc576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612209565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080612214816128ff565b91505061217d565b60006001600160a01b0384163b1561230f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612260903390899088908890600401612a08565b6020604051808303816000875af192505050801561229b575060408051601f3d908101601f1916820190925261229891810190612a45565b60015b6122f5573d8080156122c9576040519150601f19603f3d011682016040523d82523d6000602084013e6122ce565b606091505b5080516122ed5760405162461bcd60e51b81526004016109a7906129b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c26565b506001949350505050565b82805461232690612818565b90600052602060002090601f016020900481019282612348576000855561238e565b82601f106123615782800160ff1982351617855561238e565b8280016001018555821561238e579182015b8281111561238e578235825591602001919060010190612373565b5061239a92915061239e565b5090565b5b8082111561239a576000815560010161239f565b6001600160e01b031981168114611a6f57600080fd5b6000602082840312156123db57600080fd5b813561135c816123b3565b6000602082840312156123f857600080fd5b5035919050565b60005b8381101561241a578181015183820152602001612402565b838111156111a55750506000910152565b600081518084526124438160208601602086016123ff565b601f01601f19169290920160200192915050565b60208152600061135c602083018461242b565b80356001600160a01b038116811461248157600080fd5b919050565b6000806040838503121561249957600080fd5b6124a28361246a565b946020939093013593505050565b6000806000606084860312156124c557600080fd5b6124ce8461246a565b92506124dc6020850161246a565b9150604084013590509250925092565b8035801515811461248157600080fd5b60006020828403121561250e57600080fd5b61135c826124ec565b6000806020838503121561252a57600080fd5b823567ffffffffffffffff8082111561254257600080fd5b818501915085601f83011261255657600080fd5b81358181111561256557600080fd5b86602082850101111561257757600080fd5b60209290920196919550909350505050565b60008083601f84011261259b57600080fd5b50813567ffffffffffffffff8111156125b357600080fd5b6020830191508360208260051b85010111156125ce57600080fd5b9250929050565b6000806000604084860312156125ea57600080fd5b6125f38461246a565b9250602084013567ffffffffffffffff81111561260f57600080fd5b61261b86828701612589565b9497909650939450505050565b60006020828403121561263a57600080fd5b61135c8261246a565b6020808252825182820181905260009190848201906040850190845b8181101561267b5783518352928401929184019160010161265f565b50909695505050505050565b6000806040838503121561269a57600080fd5b6126a38361246a565b91506126b1602084016124ec565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156126e657600080fd5b6126ef8561246a565b93506126fd6020860161246a565b925060408501359150606085013567ffffffffffffffff8082111561272157600080fd5b818701915087601f83011261273557600080fd5b813581811115612747576127476126ba565b604051601f8201601f19908116603f0116810190838211818310171561276f5761276f6126ba565b816040528281528a602084870101111561278857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080602083850312156127bf57600080fd5b823567ffffffffffffffff8111156127d657600080fd5b6127e285828601612589565b90969095509350505050565b6000806040838503121561280157600080fd5b61280a8361246a565b91506126b16020840161246a565b600181811c9082168061282c57607f821691505b6020821081141561111d57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612913576129136128e9565b5060010190565b6000835161292c8184602088016123ff565b8351908301906129408183602088016123ff565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b60008261296e5761296e612949565b500690565b60008261298257612982612949565b500490565b6000821982111561299a5761299a6128e9565b500190565b6000828210156129b1576129b16128e9565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a3b9083018461242b565b9695505050505050565b600060208284031215612a5757600080fd5b815161135c816123b356fea2646970667358221220f5db14e29722cb5ca56ca9bb83edfd2023ae8a9d7de5ecdb178dc1425c2d18d064736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
81c9bbf2edb4683aa5161f4da91c91e1aea1752af484d9e7add409ceaf33f81b
-----Decoded View---------------
Arg [0] : initialRoot (bytes32): 0x81c9bbf2edb4683aa5161f4da91c91e1aea1752af484d9e7add409ceaf33f81b
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 81c9bbf2edb4683aa5161f4da91c91e1aea1752af484d9e7add409ceaf33f81b
Deployed Bytecode Sourcemap
38761:6788:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20426:305;;;;;;;;;;-1:-1:-1;20426:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20426:305:0;;;;;;;;44289:116;;;;;;;;;;-1:-1:-1;44289:116:0;;;;;:::i;:::-;44351:7;44378:19;;;:9;:19;;;;;;-1:-1:-1;;;;;44378:19:0;;44289:116;;;;-1:-1:-1;;;;;941:32:1;;;923:51;;911:2;896:18;44289:116:0;777:203:1;21371:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22930:221::-;;;;;;;;;;-1:-1:-1;22930:221:0;;;;;:::i;:::-;;:::i;22453:411::-;;;;;;;;;;-1:-1:-1;22453:411:0;;;;;:::i;:::-;;:::i;:::-;;43599:104;;;;;;;;;;;;;:::i;:::-;;;2319:25:1;;;2307:2;2292:18;43599:104:0;2173:177:1;39217:32:0;;;;;;;;;;;;;;;;39098:28;;;;;;;;;;-1:-1:-1;39098:28:0;;;;;;;;23680:339;;;;;;;;;;-1:-1:-1;23680:339:0;;;;;:::i;:::-;;:::i;42561:95::-;;;;;;;;;;-1:-1:-1;42561:95:0;;;;;:::i;:::-;;:::i;44176:105::-;;;;;;;;;;-1:-1:-1;44176:105:0;;;;;:::i;:::-;;:::i;43392:199::-;;;;;;;;;;;;;:::i;24090:185::-;;;;;;;;;;-1:-1:-1;24090:185:0;;;;;:::i;:::-;;:::i;42767:131::-;;;;;;;;;;-1:-1:-1;42767:131:0;;;;;:::i;:::-;;:::i;44620:98::-;;;;;;;;;;-1:-1:-1;44620:98:0;;;;;:::i;:::-;;:::i;43153:231::-;;;;;;;;;;-1:-1:-1;43153:231:0;;;;;:::i;:::-;;:::i;39133:36::-;;;;;;;;;;-1:-1:-1;39133:36:0;;;;;;;;;;;43711:99;;;;;;;;;;-1:-1:-1;43785:17:0;;43711:99;;21065:239;;;;;;;;;;-1:-1:-1;21065:239:0;;;;;:::i;:::-;;:::i;40566:229::-;;;;;;;;;;-1:-1:-1;40566:229:0;;;;;:::i;:::-;;:::i;44726:161::-;;;;;;;;;;-1:-1:-1;44726:161:0;;;;;:::i;:::-;;:::i;42906:239::-;;;;;;;;;;-1:-1:-1;42906:239:0;;;;;:::i;:::-;;:::i;20795:208::-;;;;;;;;;;-1:-1:-1;20795:208:0;;;;;:::i;:::-;;:::i;34493:103::-;;;;;;;;;;;;;:::i;44413:90::-;;;;;;;;;;-1:-1:-1;44413:90:0;;;;;:::i;:::-;;:::i;39711:721::-;;;;;;;;;;-1:-1:-1;39711:721:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40440:118::-;;;;;;;;;;-1:-1:-1;40440:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;40532:18:0;40505:7;40532:18;;;:8;:18;;;;;;;40440:118;39017:32;;;;;;;;;;;;;;;;33842:87;;;;;;;;;;-1:-1:-1;33915:6:0;;-1:-1:-1;;;;;33915:6:0;33842:87;;44511:101;;;;;;;;;;-1:-1:-1;44511:101:0;;;;;:::i;:::-;;:::i;21540:104::-;;;;;;;;;;;;;:::i;23223:155::-;;;;;;;;;;-1:-1:-1;23223:155:0;;;;;:::i;:::-;;:::i;39176:32::-;;;;;;;;;;-1:-1:-1;39176:32:0;;;;;;;;;;;24346:328;;;;;;;;;;-1:-1:-1;24346:328:0;;;;;:::i;:::-;;:::i;45107:439::-;;;;;;;;;;-1:-1:-1;45107:439:0;;;;;:::i;:::-;;:::i;42188:365::-;;;;;;;;;;-1:-1:-1;42188:365:0;;;;;:::i;:::-;;:::i;40803:1377::-;;;;;;:::i;:::-;;:::i;43818:350::-;;;;;;;;;;-1:-1:-1;43818:350:0;;;;;:::i;:::-;;:::i;39256:32::-;;;;;;;;;;;;;;;;45002:97;;;;;;;;;;;;;:::i;23449:164::-;;;;;;;;;;-1:-1:-1;23449:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23570:25:0;;;23546:4;23570:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23449:164;42664:95;;;;;;;;;;-1:-1:-1;42664:95:0;;;;;:::i;:::-;;:::i;39056:33::-;;;;;;;;;;;;;;;;38971:39;;;;;;;;;;;;39006:4;38971:39;;34751:201;;;;;;;;;;-1:-1:-1;34751:201:0;;;;;:::i;:::-;;:::i;44895:99::-;;;;;;;;;;;;;:::i;20426:305::-;20528:4;-1:-1:-1;;;;;;20565:40:0;;-1:-1:-1;;;20565:40:0;;:105;;-1:-1:-1;;;;;;;20622:48:0;;-1:-1:-1;;;20622:48:0;20565:105;:158;;;-1:-1:-1;;;;;;;;;;19082:40:0;;;20687:36;20545:178;20426:305;-1:-1:-1;;20426:305:0:o;21371:100::-;21425:13;21458:5;21451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21371:100;:::o;22930:221::-;23006:7;26273:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26273:16:0;23026:73;;;;-1:-1:-1;;;23026:73:0;;8364:2:1;23026:73:0;;;8346:21:1;8403:2;8383:18;;;8376:30;8442:34;8422:18;;;8415:62;-1:-1:-1;;;8493:18:1;;;8486:42;8545:19;;23026:73:0;;;;;;;;;-1:-1:-1;23119:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23119:24:0;;22930:221::o;22453:411::-;22534:13;22550:23;22565:7;22550:14;:23::i;:::-;22534:39;;22598:5;-1:-1:-1;;;;;22592:11:0;:2;-1:-1:-1;;;;;22592:11:0;;;22584:57;;;;-1:-1:-1;;;22584:57:0;;8777:2:1;22584:57:0;;;8759:21:1;8816:2;8796:18;;;8789:30;8855:34;8835:18;;;8828:62;-1:-1:-1;;;8906:18:1;;;8899:31;8947:19;;22584:57:0;8575:397:1;22584:57:0;16031:10;-1:-1:-1;;;;;22676:21:0;;;;:62;;-1:-1:-1;22701:37:0;22718:5;16031:10;23449:164;:::i;22701:37::-;22654:168;;;;-1:-1:-1;;;22654:168:0;;9179:2:1;22654:168:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;9328:26;9308:18;;;9301:54;9372:19;;22654:168:0;8977:420:1;22654:168:0;22835:21;22844:2;22848:7;22835:8;:21::i;:::-;22523:341;22453:411;;:::o;43599:104::-;43643:7;43670:25;:15;36190:14;;36098:114;43670:25;43663:32;;43599:104;:::o;23680:339::-;23875:41;16031:10;23908:7;23875:18;:41::i;:::-;23867:103;;;;-1:-1:-1;;;23867:103:0;;;;;;;:::i;:::-;23983:28;23993:4;23999:2;24003:7;23983:9;:28::i;42561:95::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;42628:8:::1;:20:::0;;-1:-1:-1;;42628:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42561:95::o;44176:105::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;44247:12:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44247:26:0;;::::1;::::0;;;::::1;::::0;;44176:105::o;43392:199::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;43460:21:::1;43500:11:::0;43492:43:::1;;;::::0;-1:-1:-1;;;43492:43:0;;10383:2:1;43492:43:0::1;::::0;::::1;10365:21:1::0;10422:2;10402:18;;;10395:30;-1:-1:-1;;;10441:18:1;;;10434:49;10500:18;;43492:43:0::1;10181:343:1::0;43492:43:0::1;43546:37;::::0;43554:10:::1;::::0;43546:37;::::1;;;::::0;43575:7;;43546:37:::1;::::0;;;43575:7;43554:10;43546:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43431:160;43392:199::o:0;24090:185::-;24228:39;24245:4;24251:2;24255:7;24228:39;;;;;;;;;;;;:16;:39::i;42767:131::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;42852:17:::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;42852:38:0;;::::1;::::0;;;::::1;::::0;;42767:131::o;44620:98::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;44691:19:::1;:13;44707:3:::0;;44691:19:::1;:::i;43153:231::-:0;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;43261:11:::1;;43248:10;:24;43226:115;;;::::0;-1:-1:-1;;;43226:115:0;;10731:2:1;43226:115:0::1;::::0;::::1;10713:21:1::0;10770:2;10750:18;;;10743:30;10809:34;10789:18;;;10782:62;-1:-1:-1;;;10860:18:1;;;10853:39;10909:19;;43226:115:0::1;10529:405:1::0;43226:115:0::1;43352:11;:24:::0;43153:231::o;21065:239::-;21137:7;21173:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21173:16:0;21208:19;21200:73;;;;-1:-1:-1;;;21200:73:0;;11141:2:1;21200:73:0;;;11123:21:1;11180:2;11160:18;;;11153:30;11219:34;11199:18;;;11192:62;-1:-1:-1;;;11270:18:1;;;11263:39;11319:19;;21200:73:0;10939:405:1;40566:229:0;40698:22;;-1:-1:-1;;11498:2:1;11494:15;;;11490:53;40698:22:0;;;11478:66:1;40656:4:0;;;;11560:12:1;;40698:22:0;;;;;;;;;;;;40688:33;;;;;;40673:48;;40739;40758:12;;40739:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40771:10:0;;;-1:-1:-1;40782:4:0;;-1:-1:-1;40739:18:0;:48::i;:::-;40732:55;40566:229;-1:-1:-1;;;;;40566:229:0:o;44726:161::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;44840:39:::1;:21;44864:15:::0;;44840:39:::1;:::i;42906:239::-:0;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;43013:1:::1;43002:8;:12;:35;;;;;39006:4;43018:8;:19;43002:35;42980:122;;;::::0;-1:-1:-1;;;42980:122:0;;11785:2:1;42980:122:0::1;::::0;::::1;11767:21:1::0;11824:2;11804:18;;;11797:30;11863:34;11843:18;;;11836:62;-1:-1:-1;;;11914:18:1;;;11907:35;11959:19;;42980:122:0::1;11583:401:1::0;42980:122:0::1;43113:13;:24:::0;42906:239::o;20795:208::-;20867:7;-1:-1:-1;;;;;20895:19:0;;20887:74;;;;-1:-1:-1;;;20887:74:0;;12191:2:1;20887:74:0;;;12173:21:1;12230:2;12210:18;;;12203:30;12269:34;12249:18;;;12242:62;-1:-1:-1;;;12320:18:1;;;12313:40;12370:19;;20887:74:0;11989:406:1;20887:74:0;-1:-1:-1;;;;;;20979:16:0;;;;;:9;:16;;;;;;;20795:208::o;34493:103::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;34558:30:::1;34585:1;34558:18;:30::i;:::-;34493:103::o:0;44413:90::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;44478:10:::1;:17:::0;44413:90::o;39711:721::-;39800:28;39846:18;39867:17;39877:6;39867:9;:17::i;:::-;39846:38;-1:-1:-1;39899:15:0;39895:530;;39938:16;;;39952:1;39938:16;;;;;;;;;;;-1:-1:-1;39931:23:0;39711:721;-1:-1:-1;;;39711:721:0:o;39895:530::-;39987:23;40027:10;40013:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40013:25:0;;39987:51;;40053:17;40073:13;:11;:13::i;:::-;40053:33;-1:-1:-1;40101:19:0;40182:1;40169:215;40194:9;40185:5;:18;40169:215;;40255:6;-1:-1:-1;;;;;40237:24:0;:14;40245:5;40237:7;:14::i;:::-;-1:-1:-1;;;;;40237:24:0;;40233:136;;;40308:5;40286:6;40293:11;40286:19;;;;;;;;:::i;:::-;;;;;;;;;;:27;40336:13;;;;:::i;:::-;;;;40233:136;40205:7;;;;:::i;:::-;;;;40169:215;;;-1:-1:-1;40407:6:0;;39711:721;-1:-1:-1;;;;;39711:721:0:o;39895:530::-;39835:597;39711:721;;;:::o;44511:101::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;44586:18:::1;:12;44601:3:::0;;44586:18:::1;:::i;21540:104::-:0;21596:13;21629:7;21622:14;;;;;:::i;23223:155::-;23318:52;16031:10;23351:8;23361;23318:18;:52::i;24346:328::-;24521:41;16031:10;24554:7;24521:18;:41::i;:::-;24513:103;;;;-1:-1:-1;;;24513:103:0;;;;;;;:::i;:::-;24627:39;24641:4;24647:2;24651:7;24660:5;24627:13;:39::i;:::-;24346:328;;;;:::o;45107:439::-;26249:4;26273:16;;;:7;:16;;;;;;45216:13;;-1:-1:-1;;;;;26273:16:0;45247:49;;;;-1:-1:-1;;;45247:49:0;;13006:2:1;45247:49:0;;;12988:21:1;13045:2;13025:18;;;13018:30;-1:-1:-1;;;13064:18:1;;;13057:50;13124:18;;45247:49:0;12804:344:1;45247:49:0;45307:29;45339:21;45307:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45423:1;45397:15;45391:29;:33;:147;;45525:13;45391:147;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45468:15;45485:18;:7;:16;:18::i;:::-;45451:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45391:147;45371:167;45107:439;-1:-1:-1;;;45107:439:0:o;42188:365::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;39006:4:::1;42252:13;:11;:13::i;:::-;:24;42244:64;;;::::0;-1:-1:-1;;;42244:64:0;;13830:2:1;42244:64:0::1;::::0;::::1;13812:21:1::0;13869:2;13849:18;;;13842:30;13908:29;13888:18;;;13881:57;13955:18;;42244:64:0::1;13628:351:1::0;42244:64:0::1;42346:11;::::0;42329:7:::1;:14:::0;:28:::1;42321:60;;;::::0;-1:-1:-1;;;42321:60:0;;14186:2:1;42321:60:0::1;::::0;::::1;14168:21:1::0;14225:2;14205:18;;;14198:30;-1:-1:-1;;;14244:18:1;;;14237:49;14303:18;;42321:60:0::1;13984:343:1::0;42321:60:0::1;42394:27;:15;36309:19:::0;;36327:1;36309:19;;;36220:127;42394:27:::1;42432:18;42453:25;:15;36190:14:::0;;36098:114;42453:25:::1;42489:7;:24:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;42489:24:0;;;;;::::1;::::0;;;42432:46;-1:-1:-1;42524:21:0::1;42530:2:::0;42432:46;42524:5:::1;:21::i;40803:1377::-:0;40888:8;;;;40880:43;;;;-1:-1:-1;;;40880:43:0;;14534:2:1;40880:43:0;;;14516:21:1;14573:2;14553:18;;;14546:30;-1:-1:-1;;;14592:18:1;;;14585:52;14654:18;;40880:43:0;14332:346:1;40880:43:0;39006:4;40944:13;:11;:13::i;:::-;:24;40936:64;;;;-1:-1:-1;;;40936:64:0;;13830:2:1;40936:64:0;;;13812:21:1;13869:2;13849:18;;;13842:30;13908:29;13888:18;;;13881:57;13955:18;;40936:64:0;13628:351:1;40936:64:0;41038:28;;;-1:-1:-1;;41055:10:0;11498:2:1;11494:15;11490:53;41038:28:0;;;;11478:66:1;;;;41038:28:0;;;;;;;;;11560:12:1;;;;41038:28:0;;;41028:39;;;;;41102:17;;;;;;;:75;;41173:4;41102:75;;;41122:48;41141:12;;41122:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41154:10:0;;;-1:-1:-1;41165:4:0;;-1:-1:-1;41122:18:0;:48::i;:::-;41080:154;;;;-1:-1:-1;;;41080:154:0;;14885:2:1;41080:154:0;;;14867:21:1;14924:2;14904:18;;;14897:30;14963:31;14943:18;;;14936:59;15012:18;;41080:154:0;14683:353:1;41080:154:0;41281:1;41269:9;:13;:39;;;;-1:-1:-1;41298:5:0;;41286:17;;:9;:17;:::i;:::-;:22;41269:39;41247:123;;;;-1:-1:-1;;;41247:123:0;;15492:2:1;41247:123:0;;;15474:21:1;15531:2;15511:18;;;15504:30;15570:34;15550:18;;;15543:62;-1:-1:-1;;;15621:18:1;;;15614:32;15663:19;;41247:123:0;15290:398:1;41247:123:0;41383:14;41412:5;;41400:9;:17;;;;:::i;:::-;41383:34;;41460:1;41450:6;:11;;:38;;;;;41475:13;;41465:6;:23;;41450:38;41428:115;;;;-1:-1:-1;;;41428:115:0;;16020:2:1;41428:115:0;;;16002:21:1;16059:2;16039:18;;;16032:30;16098:29;16078:18;;;16071:57;16145:18;;41428:115:0;15818:351:1;41428:115:0;41613:13;;41588:10;41579:20;;;;:8;:20;;;;;;:29;;41602:6;;41579:29;:::i;:::-;41578:48;;41556:129;;;;-1:-1:-1;;;41556:129:0;;16509:2:1;41556:129:0;;;16491:21:1;16548:2;16528:18;;;16521:30;16587:33;16567:18;;;16560:61;16638:18;;41556:129:0;16307:355:1;41556:129:0;41698:15;41725:25;:15;36190:14;;36098:114;41725:25;41716:34;;:6;:34;:::i;:::-;41698:52;;41806:11;;39006:4;41795:22;;;;:::i;:::-;41783:7;:35;;41761:120;;;;-1:-1:-1;;;41761:120:0;;16999:2:1;41761:120:0;;;16981:21:1;17038:2;17018:18;;;17011:30;17077:34;17057:18;;;17050:62;-1:-1:-1;;;17128:18:1;;;17121:33;17171:19;;41761:120:0;16797:399:1;41761:120:0;41903:10;41894:20;;;;:8;:20;;;;;:30;;41918:6;;41894:20;:30;;41918:6;;41894:30;:::i;:::-;;;;;;;;41958:6;41937:17;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;41982:9:0;;-1:-1:-1;41977:196:0;42001:6;41997:1;:10;41977:196;;;42029:27;:15;36309:19;;36327:1;36309:19;;;36220:127;42029:27;42071:18;42092:25;:15;36190:14;;36098:114;42092:25;42071:46;;42132:29;42138:10;42150;42132:5;:29::i;:::-;-1:-1:-1;42009:3:0;;;;:::i;:::-;;;;41977:196;;;;40869:1311;;;40803:1377;;:::o;43818:350::-;43895:12;;43870:4;;43895:12;;;;;43887:48;;;;-1:-1:-1;;;43887:48:0;;17403:2:1;43887:48:0;;;17385:21:1;17442:2;17422:18;;;17415:30;17481:25;17461:18;;;17454:53;17524:18;;43887:48:0;17201:347:1;43887:48:0;43975:10;43954:17;43962:8;43954:7;:17::i;:::-;-1:-1:-1;;;;;43954:31:0;;43946:64;;;;-1:-1:-1;;;43946:64:0;;17755:2:1;43946:64:0;;;17737:21:1;17794:2;17774:18;;;17767:30;-1:-1:-1;;;17813:18:1;;;17806:50;17873:18;;43946:64:0;17553:344:1;43946:64:0;44060:1;44029:19;;;:9;:19;;;;;;-1:-1:-1;;;;;44029:19:0;:33;44021:74;;;;-1:-1:-1;;;44021:74:0;;18104:2:1;44021:74:0;;;18086:21:1;18143:2;18123:18;;;18116:30;18182;18162:18;;;18155:58;18230:18;;44021:74:0;17902:352:1;44021:74:0;-1:-1:-1;44106:19:0;;;;:9;:19;;;;;:32;;-1:-1:-1;;;;;;44106:32:0;44128:10;44106:32;;;;;43818:350::o;45002:97::-;45046:13;45079:12;45072:19;;;;;:::i;42664:95::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;42734:5:::1;:17:::0;42664:95::o;34751:201::-;33915:6;;-1:-1:-1;;;;;33915:6:0;16031:10;34062:23;34054:68;;;;-1:-1:-1;;;34054:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34840:22:0;::::1;34832:73;;;::::0;-1:-1:-1;;;34832:73:0;;18461:2:1;34832:73:0::1;::::0;::::1;18443:21:1::0;18500:2;18480:18;;;18473:30;18539:34;18519:18;;;18512:62;-1:-1:-1;;;18590:18:1;;;18583:36;18636:19;;34832:73:0::1;18259:402:1::0;34832:73:0::1;34916:28;34935:8;34916:18;:28::i;:::-;34751:201:::0;:::o;44895:99::-;44943:16;44979:7;44972:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44895:99;:::o;30166:174::-;30241:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30241:29:0;-1:-1:-1;;;;;30241:29:0;;;;;;;;:24;;30295:23;30241:24;30295:14;:23::i;:::-;-1:-1:-1;;;;;30286:46:0;;;;;;;;;;;30166:174;;:::o;26478:348::-;26571:4;26273:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26273:16:0;26588:73;;;;-1:-1:-1;;;26588:73:0;;18868:2:1;26588:73:0;;;18850:21:1;18907:2;18887:18;;;18880:30;18946:34;18926:18;;;18919:62;-1:-1:-1;;;18997:18:1;;;18990:42;19049:19;;26588:73:0;18666:408:1;26588:73:0;26672:13;26688:23;26703:7;26688:14;:23::i;:::-;26672:39;;26741:5;-1:-1:-1;;;;;26730:16:0;:7;-1:-1:-1;;;;;26730:16:0;;:51;;;;26774:7;-1:-1:-1;;;;;26750:31:0;:20;26762:7;26750:11;:20::i;:::-;-1:-1:-1;;;;;26750:31:0;;26730:51;:87;;;-1:-1:-1;;;;;;23570:25:0;;;23546:4;23570:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26785:32;26722:96;26478:348;-1:-1:-1;;;;26478:348:0:o;29470:578::-;29629:4;-1:-1:-1;;;;;29602:31:0;:23;29617:7;29602:14;:23::i;:::-;-1:-1:-1;;;;;29602:31:0;;29594:85;;;;-1:-1:-1;;;29594:85:0;;19281:2:1;29594:85:0;;;19263:21:1;19320:2;19300:18;;;19293:30;19359:34;19339:18;;;19332:62;-1:-1:-1;;;19410:18:1;;;19403:39;19459:19;;29594:85:0;19079:405:1;29594:85:0;-1:-1:-1;;;;;29698:16:0;;29690:65;;;;-1:-1:-1;;;29690:65:0;;19691:2:1;29690:65:0;;;19673:21:1;19730:2;19710:18;;;19703:30;19769:34;19749:18;;;19742:62;-1:-1:-1;;;19820:18:1;;;19813:34;19864:19;;29690:65:0;19489:400:1;29690:65:0;29872:29;29889:1;29893:7;29872:8;:29::i;:::-;-1:-1:-1;;;;;29914:15:0;;;;;;:9;:15;;;;;:20;;29933:1;;29914:15;:20;;29933:1;;29914:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29945:13:0;;;;;;:9;:13;;;;;:18;;29962:1;;29945:13;:18;;29962:1;;29945:18;:::i;:::-;;;;-1:-1:-1;;29974:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29974:21:0;-1:-1:-1;;;;;29974:21:0;;;;;;;;;30013:27;;29974:16;;30013:27;;;;;;;29470:578;;;:::o;37499:190::-;37624:4;37677;37648:25;37661:5;37668:4;37648:12;:25::i;:::-;:33;;37499:190;-1:-1:-1;;;;37499:190:0:o;35112:191::-;35205:6;;;-1:-1:-1;;;;;35222:17:0;;;-1:-1:-1;;;;;;35222:17:0;;;;;;;35255:40;;35205:6;;;35222:17;35205:6;;35255:40;;35186:16;;35255:40;35175:128;35112:191;:::o;30482:315::-;30637:8;-1:-1:-1;;;;;30628:17:0;:5;-1:-1:-1;;;;;30628:17:0;;;30620:55;;;;-1:-1:-1;;;30620:55:0;;20096:2:1;30620:55:0;;;20078:21:1;20135:2;20115:18;;;20108:30;20174:27;20154:18;;;20147:55;20219:18;;30620:55:0;19894:349:1;30620:55:0;-1:-1:-1;;;;;30686:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30686:46:0;;;;;;;;;;30748:41;;540::1;;;30748::0;;513:18:1;30748:41:0;;;;;;;30482:315;;;:::o;25556:::-;25713:28;25723:4;25729:2;25733:7;25713:9;:28::i;:::-;25760:48;25783:4;25789:2;25793:7;25802:5;25760:22;:48::i;:::-;25752:111;;;;-1:-1:-1;;;25752:111:0;;;;;;;:::i;16447:723::-;16503:13;16724:10;16720:53;;-1:-1:-1;;16751:10:0;;;;;;;;;;;;-1:-1:-1;;;16751:10:0;;;;;16447:723::o;16720:53::-;16798:5;16783:12;16839:78;16846:9;;16839:78;;16872:8;;;;:::i;:::-;;-1:-1:-1;16895:10:0;;-1:-1:-1;16903:2:0;16895:10;;:::i;:::-;;;16839:78;;;16927:19;16959:6;16949:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16949:17:0;;16927:39;;16977:154;16984:10;;16977:154;;17011:11;17021:1;17011:11;;:::i;:::-;;-1:-1:-1;17080:10:0;17088:2;17080:5;:10;:::i;:::-;17067:24;;:2;:24;:::i;:::-;17054:39;;17037:6;17044;17037:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17037:56:0;;;;;;;;-1:-1:-1;17108:11:0;17117:2;17108:11;;:::i;:::-;;;16977:154;;28162:382;-1:-1:-1;;;;;28242:16:0;;28234:61;;;;-1:-1:-1;;;28234:61:0;;20869:2:1;28234:61:0;;;20851:21:1;;;20888:18;;;20881:30;20947:34;20927:18;;;20920:62;20999:18;;28234:61:0;20667:356:1;28234:61:0;26249:4;26273:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26273:16:0;:30;28306:58;;;;-1:-1:-1;;;28306:58:0;;21230:2:1;28306:58:0;;;21212:21:1;21269:2;21249:18;;;21242:30;21308;21288:18;;;21281:58;21356:18;;28306:58:0;21028:352:1;28306:58:0;-1:-1:-1;;;;;28435:13:0;;;;;;:9;:13;;;;;:18;;28452:1;;28435:13;:18;;28452:1;;28435:18;:::i;:::-;;;;-1:-1:-1;;28464:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28464:21:0;-1:-1:-1;;;;;28464:21:0;;;;;;;;28503:33;;28464:16;;;28503:33;;28464:16;;28503:33;28162:382;;:::o;38051:701::-;38134:7;38177:4;38134:7;38192:523;38216:5;:12;38212:1;:16;38192:523;;;38250:20;38273:5;38279:1;38273:8;;;;;;;;:::i;:::-;;;;;;;38250:31;;38316:12;38300;:28;38296:408;;38453:44;;;;;;21542:19:1;;;21577:12;;;21570:28;;;21614:12;;38453:44:0;;;;;;;;;;;;38443:55;;;;;;38428:70;;38296:408;;;38643:44;;;;;;21542:19:1;;;21577:12;;;21570:28;;;21614:12;;38643:44:0;;;;;;;;;;;;38633:55;;;;;;38618:70;;38296:408;-1:-1:-1;38230:3:0;;;;:::i;:::-;;;;38192:523;;31362:799;31517:4;-1:-1:-1;;;;;31538:13:0;;8347:20;8395:8;31534:620;;31574:72;;-1:-1:-1;;;31574:72:0;;-1:-1:-1;;;;;31574:36:0;;;;;:72;;16031:10;;31625:4;;31631:7;;31640:5;;31574:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31574:72:0;;;;;;;;-1:-1:-1;;31574:72:0;;;;;;;;;;;;:::i;:::-;;;31570:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31816:13:0;;31812:272;;31859:60;;-1:-1:-1;;;31859:60:0;;;;;;;:::i;31812:272::-;32034:6;32028:13;32019:6;32015:2;32011:15;32004:38;31570:529;-1:-1:-1;;;;;;31697:51:0;-1:-1:-1;;;31697:51:0;;-1:-1:-1;31690:58:0;;31534:620;-1:-1:-1;32138:4:0;31362:799;;;;;;:::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:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;985:258::-;1057:1;1067:113;1081:6;1078:1;1075:13;1067:113;;;1157:11;;;1151:18;1138:11;;;1131:39;1103:2;1096:10;1067:113;;;1198:6;1195:1;1192:13;1189:48;;;-1:-1:-1;;1233:1:1;1215:16;;1208:27;985:258::o;1248:::-;1290:3;1328:5;1322:12;1355:6;1350:3;1343:19;1371:63;1427:6;1420:4;1415:3;1411:14;1404:4;1397:5;1393:16;1371:63;:::i;:::-;1488:2;1467:15;-1:-1:-1;;1463:29:1;1454:39;;;;1495:4;1450:50;;1248:258;-1:-1:-1;;1248:258:1:o;1511:220::-;1660:2;1649:9;1642:21;1623:4;1680:45;1721:2;1710:9;1706:18;1698:6;1680:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:160::-;2753:20;;2809:13;;2802:21;2792:32;;2782:60;;2838:1;2835;2828:12;2853:180;2909:6;2962:2;2950:9;2941:7;2937:23;2933:32;2930:52;;;2978:1;2975;2968:12;2930:52;3001:26;3017:9;3001:26;:::i;3038:592::-;3109:6;3117;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3226:9;3213:23;3255:18;3296:2;3288:6;3285:14;3282:34;;;3312:1;3309;3302:12;3282:34;3350:6;3339:9;3335:22;3325:32;;3395:7;3388:4;3384:2;3380:13;3376:27;3366:55;;3417:1;3414;3407:12;3366:55;3457:2;3444:16;3483:2;3475:6;3472:14;3469:34;;;3499:1;3496;3489:12;3469:34;3544:7;3539:2;3530:6;3526:2;3522:15;3518:24;3515:37;3512:57;;;3565:1;3562;3555:12;3512:57;3596:2;3588:11;;;;;3618:6;;-1:-1:-1;3038:592:1;;-1:-1:-1;;;;3038:592:1:o;3635:367::-;3698:8;3708:6;3762:3;3755:4;3747:6;3743:17;3739:27;3729:55;;3780:1;3777;3770:12;3729:55;-1:-1:-1;3803:20:1;;3846:18;3835:30;;3832:50;;;3878:1;3875;3868:12;3832:50;3915:4;3907:6;3903:17;3891:29;;3975:3;3968:4;3958:6;3955:1;3951:14;3943:6;3939:27;3935:38;3932:47;3929:67;;;3992:1;3989;3982:12;3929:67;3635:367;;;;;:::o;4007:511::-;4102:6;4110;4118;4171:2;4159:9;4150:7;4146:23;4142:32;4139:52;;;4187:1;4184;4177:12;4139:52;4210:29;4229:9;4210:29;:::i;:::-;4200:39;;4290:2;4279:9;4275:18;4262:32;4317:18;4309:6;4306:30;4303:50;;;4349:1;4346;4339:12;4303:50;4388:70;4450:7;4441:6;4430:9;4426:22;4388:70;:::i;:::-;4007:511;;4477:8;;-1:-1:-1;4362:96:1;;-1:-1:-1;;;;4007:511:1:o;4523:186::-;4582:6;4635:2;4623:9;4614:7;4610:23;4606:32;4603:52;;;4651:1;4648;4641:12;4603:52;4674:29;4693:9;4674:29;:::i;4899:632::-;5070:2;5122:21;;;5192:13;;5095:18;;;5214:22;;;5041:4;;5070:2;5293:15;;;;5267:2;5252:18;;;5041:4;5336:169;5350:6;5347:1;5344:13;5336:169;;;5411:13;;5399:26;;5480:15;;;;5445:12;;;;5372:1;5365:9;5336:169;;;-1:-1:-1;5522:3:1;;4899:632;-1:-1:-1;;;;;;4899:632:1:o;5536:254::-;5601:6;5609;5662:2;5650:9;5641:7;5637:23;5633:32;5630:52;;;5678:1;5675;5668:12;5630:52;5701:29;5720:9;5701:29;:::i;:::-;5691:39;;5749:35;5780:2;5769:9;5765:18;5749:35;:::i;:::-;5739:45;;5536:254;;;;;:::o;5795:127::-;5856:10;5851:3;5847:20;5844:1;5837:31;5887:4;5884:1;5877:15;5911:4;5908:1;5901:15;5927:1138;6022:6;6030;6038;6046;6099:3;6087:9;6078:7;6074:23;6070:33;6067:53;;;6116:1;6113;6106:12;6067:53;6139:29;6158:9;6139:29;:::i;:::-;6129:39;;6187:38;6221:2;6210:9;6206:18;6187:38;:::i;:::-;6177:48;;6272:2;6261:9;6257:18;6244:32;6234:42;;6327:2;6316:9;6312:18;6299:32;6350:18;6391:2;6383:6;6380:14;6377:34;;;6407:1;6404;6397:12;6377:34;6445:6;6434:9;6430:22;6420:32;;6490:7;6483:4;6479:2;6475:13;6471:27;6461:55;;6512:1;6509;6502:12;6461:55;6548:2;6535:16;6570:2;6566;6563:10;6560:36;;;6576:18;;:::i;:::-;6651:2;6645:9;6619:2;6705:13;;-1:-1:-1;;6701:22:1;;;6725:2;6697:31;6693:40;6681:53;;;6749:18;;;6769:22;;;6746:46;6743:72;;;6795:18;;:::i;:::-;6835:10;6831:2;6824:22;6870:2;6862:6;6855:18;6910:7;6905:2;6900;6896;6892:11;6888:20;6885:33;6882:53;;;6931:1;6928;6921:12;6882:53;6987:2;6982;6978;6974:11;6969:2;6961:6;6957:15;6944:46;7032:1;7027:2;7022;7014:6;7010:15;7006:24;6999:35;7053:6;7043:16;;;;;;;5927:1138;;;;;;;:::o;7070:437::-;7156:6;7164;7217:2;7205:9;7196:7;7192:23;7188:32;7185:52;;;7233:1;7230;7223:12;7185:52;7273:9;7260:23;7306:18;7298:6;7295:30;7292:50;;;7338:1;7335;7328:12;7292:50;7377:70;7439:7;7430:6;7419:9;7415:22;7377:70;:::i;:::-;7466:8;;7351:96;;-1:-1:-1;7070:437:1;-1:-1:-1;;;;7070:437:1:o;7512:260::-;7580:6;7588;7641:2;7629:9;7620:7;7616:23;7612:32;7609:52;;;7657:1;7654;7647:12;7609:52;7680:29;7699:9;7680:29;:::i;:::-;7670:39;;7728:38;7762:2;7751:9;7747:18;7728:38;:::i;7777:380::-;7856:1;7852:12;;;;7899;;;7920:61;;7974:4;7966:6;7962:17;7952:27;;7920:61;8027:2;8019:6;8016:14;7996:18;7993:38;7990:161;;;8073:10;8068:3;8064:20;8061:1;8054:31;8108:4;8105:1;8098:15;8136:4;8133:1;8126:15;9402:413;9604:2;9586:21;;;9643:2;9623:18;;;9616:30;9682:34;9677:2;9662:18;;9655:62;-1:-1:-1;;;9748:2:1;9733:18;;9726:47;9805:3;9790:19;;9402:413::o;9820:356::-;10022:2;10004:21;;;10041:18;;;10034:30;10100:34;10095:2;10080:18;;10073:62;10167:2;10152:18;;9820:356::o;12400:127::-;12461:10;12456:3;12452:20;12449:1;12442:31;12492:4;12489:1;12482:15;12516:4;12513:1;12506:15;12532:127;12593:10;12588:3;12584:20;12581:1;12574:31;12624:4;12621:1;12614:15;12648:4;12645:1;12638:15;12664:135;12703:3;-1:-1:-1;;12724:17:1;;12721:43;;;12744:18;;:::i;:::-;-1:-1:-1;12791:1:1;12780:13;;12664:135::o;13153:470::-;13332:3;13370:6;13364:13;13386:53;13432:6;13427:3;13420:4;13412:6;13408:17;13386:53;:::i;:::-;13502:13;;13461:16;;;;13524:57;13502:13;13461:16;13558:4;13546:17;;13524:57;:::i;:::-;13597:20;;13153:470;-1:-1:-1;;;;13153:470:1:o;15041:127::-;15102:10;15097:3;15093:20;15090:1;15083:31;15133:4;15130:1;15123:15;15157:4;15154:1;15147:15;15173:112;15205:1;15231;15221:35;;15236:18;;:::i;:::-;-1:-1:-1;15270:9:1;;15173:112::o;15693:120::-;15733:1;15759;15749:35;;15764:18;;:::i;:::-;-1:-1:-1;15798:9:1;;15693:120::o;16174:128::-;16214:3;16245:1;16241:6;16238:1;16235:13;16232:39;;;16251:18;;:::i;:::-;-1:-1:-1;16287:9:1;;16174:128::o;16667:125::-;16707:4;16735:1;16732;16729:8;16726:34;;;16740:18;;:::i;:::-;-1:-1:-1;16777:9:1;;16667:125::o;20248:414::-;20450:2;20432:21;;;20489:2;20469:18;;;20462:30;20528:34;20523:2;20508:18;;20501:62;-1:-1:-1;;;20594:2:1;20579:18;;20572:48;20652:3;20637:19;;20248:414::o;21637:489::-;-1:-1:-1;;;;;21906:15:1;;;21888:34;;21958:15;;21953:2;21938:18;;21931:43;22005:2;21990:18;;21983:34;;;22053:3;22048:2;22033:18;;22026:31;;;21831:4;;22074:46;;22100:19;;22092:6;22074:46;:::i;:::-;22066:54;21637:489;-1:-1:-1;;;;;;21637:489:1:o;22131:249::-;22200:6;22253:2;22241:9;22232:7;22228:23;22224:32;22221:52;;;22269:1;22266;22259:12;22221:52;22301:9;22295:16;22320:30;22344:5;22320:30;:::i
Swarm Source
ipfs://f5db14e29722cb5ca56ca9bb83edfd2023ae8a9d7de5ecdb178dc1425c2d18d0
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.