ERC-721
Overview
Max Total Supply
500 SNUGBUDS
Holders
264
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SNUGBUDSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SnuggleBuddies
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-29 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compilers built in overflow checks. /** * @dev Wrappers over Soliditys arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring a not being zero, but the // benefit is lost if b is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Soliditys `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Soliditys `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Soliditys `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Soliditys `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Soliditys `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Soliditys `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Soliditys `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Soliditys `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.6; library Address { function isContract(address account) internal view returns (bool) { uint size; assembly { size := extcodesize(account) } return size > 0; } } // OpenZeppelin Contracts v4.4.0 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPIs 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); } } pragma solidity ^0.8.7; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; // Mapping from token ID to owner address address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; 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 (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _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); _owners.push(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); _owners[tokenId] = address(0); 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); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.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 {} } pragma solidity ^0.8.7; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } } // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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.0 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @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; } } pragma solidity ^0.8.11; pragma abicoder v2; contract SnuggleBuddies is ERC721Enumerable, Ownable { using SafeMath for uint256; using MerkleProof for bytes32[]; bytes32 public whitelistMerkleRoot; bool public preSaleIsActive = false; bool public saleIsActive = false; uint256 public tokenPrice = 80000000000000000; uint public constant MAX_TOKEN_PER_TXN = 6; uint256 public constant MAX_TOKENS = 500; uint public tokenReserve = 33; address public proxyRegistryAddress; mapping(address => uint256) private allowance; string public baseURI; constructor() ERC721("Snuggle Buddies", "SNUGBUDS") { setBaseURI("https://blam.io/api/snuggle-buddies/lm/"); proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1); } function updateTokenPrice(uint256 newPrice) public onlyOwner { require(!saleIsActive, "Sale must be inactive to change token price"); tokenPrice = newPrice; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0); address owner = payable(_msgSender()); address payoutAddress1 = payable(0xAc01B61D659bD72b120DB7c5289BBFc020771943); uint256 payoutPayment1 = balance.mul(2).div(100); address payoutAddress2 = payable(0x8fc1F1F48cBB2e4A0f1dfeB9e6019606b307C3c4); uint256 payoutPayment2 = balance.mul(5).div(100); address payoutAddress3 = payable(0x81b5162AdD600560CF575AD49db3e1B7fB98736D); uint256 payoutPayment3 = balance.mul(10).div(100); (bool success1, ) = payoutAddress1.call{value: payoutPayment1}(""); require(success1, "Failed to send."); (bool success2, ) = payoutAddress2.call{value: payoutPayment2}(""); require(success2, "Failed to send."); (bool success3, ) = payoutAddress3.call{value: payoutPayment3}(""); require(success3, "Failed to send."); (bool ownerSuccess, ) = owner.call{value: address(this).balance}(""); require(ownerSuccess, "Failed to send to Owner."); } function reserveTokens(address _to, uint256 _reserveAmount) public onlyOwner { uint supply = totalSupply(); require(_reserveAmount > 0 && _reserveAmount <= tokenReserve, "Not enough reserve left for team"); for (uint i = 0; i < _reserveAmount; i++) { _safeMint(_to, supply + i); } tokenReserve = tokenReserve.sub(_reserveAmount); } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } function flipPreSaleState() public onlyOwner { preSaleIsActive = !preSaleIsActive; } function whitelistMint(uint256 numberOfTokens, uint256 allowed, bytes32[] memory proof) public payable { require(preSaleIsActive, "Pre-sale not started or has ended"); require( _verify(_leaf(_msgSender(), allowed), proof), "Your address is not whitelisted" ); require(allowance[_msgSender()] + numberOfTokens <= allowed, "Exceeds wallet allowance"); require(msg.value == tokenPrice.mul(numberOfTokens), "Ether sent is not correct"); for (uint i; i < numberOfTokens; i++) { _safeMint(_msgSender(), totalSupply()); } allowance[_msgSender()] += numberOfTokens; } function mintToken(uint numberOfTokens) public payable { require(saleIsActive, "Sale must be active to mint"); require(numberOfTokens < MAX_TOKEN_PER_TXN, "The max mint per transaction is 5"); require(totalSupply().add(numberOfTokens) < MAX_TOKENS, "Purchase would exceed max supply"); require(msg.value == tokenPrice.mul(numberOfTokens), "Ether value sent is not correct"); for(uint i; i < numberOfTokens; i++) { _safeMint(_msgSender(), totalSupply()); } } function _leaf(address account, uint256 count) internal pure returns (bytes32) { return keccak256(abi.encodePacked(account, count)); } function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { return MerkleProof.verify(proof, whitelistMerkleRoot, leaf); } function setRoot(bytes32 root) external onlyOwner { whitelistMerkleRoot = root; } function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; } function tokenURI(uint256 _tokenId) external view returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return string(abi.encodePacked(baseURI, Strings.toString(_tokenId))); } function isApprovedForAll(address _owner, address operator) public view override returns (bool) { OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == operator) return true; return super.isApprovedForAll(_owner, operator); } } contract OwnableDelegateProxy {} contract OpenSeaProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKEN_PER_TXN","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256","name":"allowed","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526007805461ffff1916905567011c37937e08000060085560216009553480156200002d57600080fd5b50604080518082018252600f81526e536e7567676c65204275646469657360881b602080830191825283518085019094526008845267534e55474255445360c01b9084015281519192916200008591600091620001d6565b5080516200009b906001906020840190620001d6565b505050620000b8620000b26200010860201b60201c565b6200010c565b620000dc60405180606001604052806027815260200162002b93602791396200015e565b600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055620002b9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001bd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d290600c906020840190620001d6565b5050565b828054620001e4906200027c565b90600052602060002090601f01602090048101928262000208576000855562000253565b82601f106200022357805160ff191683800117855562000253565b8280016001018555821562000253579182015b828111156200025357825182559160200191906001019062000236565b506200026192915062000265565b5090565b5b8082111562000261576000815560010162000266565b600181811c908216806200029157607f821691505b60208210811415620002b357634e487b7160e01b600052602260045260246000fd5b50919050565b6128ca80620002c96000396000f3fe6080604052600436106102255760003560e01c806378cf19e911610123578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c5146105f8578063eb8d244414610618578063f032554914610637578063f2fde38b1461064c578063f47c84c51461066c57600080fd5b8063c87b56dd14610562578063cbcb317114610582578063cd7c032614610598578063d26ea6c0146105b8578063dab5f340146105d857600080fd5b8063a22cb465116100f2578063a22cb465146104e6578063aa98e0c614610506578063b88d4fde1461051c578063c4be5b591461053c578063c634d0321461054f57600080fd5b806378cf19e91461047d5780637ff9b5961461049d5780638da5cb5b146104b357806395d89b41146104d157600080fd5b80633ccfd60b116101b15780636352211e116101755780636352211e146103f3578063676c0d77146104135780636c0360eb1461043357806370a0823114610448578063715018a61461046857600080fd5b80633ccfd60b1461036957806342842e0e1461037e5780634f6ccce71461039e57806355f804b3146103be578063634da63a146103de57600080fd5b806318160ddd116101f857806318160ddd146102db5780631f0234d8146102fa57806323b872dd146103145780632f745c591461033457806334918dfd1461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612131565b610682565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106ad565b60405161025691906121a6565b34801561028d57600080fd5b506102a161029c3660046121b9565b61073f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046121e7565b6107cc565b005b3480156102e757600080fd5b506002545b604051908152602001610256565b34801561030657600080fd5b5060075461024a9060ff1681565b34801561032057600080fd5b506102d961032f366004612213565b6108e2565b34801561034057600080fd5b506102ec61034f3660046121e7565b610913565b34801561036057600080fd5b506102d96109c6565b34801561037557600080fd5b506102d9610a0d565b34801561038a57600080fd5b506102d9610399366004612213565b610cce565b3480156103aa57600080fd5b506102ec6103b93660046121b9565b610ce9565b3480156103ca57600080fd5b506102d96103d93660046122f3565b610d56565b3480156103ea57600080fd5b506102ec600681565b3480156103ff57600080fd5b506102a161040e3660046121b9565b610d97565b34801561041f57600080fd5b506102d961042e3660046121b9565b610e23565b34801561043f57600080fd5b50610274610ebe565b34801561045457600080fd5b506102ec61046336600461233c565b610f4c565b34801561047457600080fd5b506102d961101a565b34801561048957600080fd5b506102d96104983660046121e7565b611050565b3480156104a957600080fd5b506102ec60085481565b3480156104bf57600080fd5b506005546001600160a01b03166102a1565b3480156104dd57600080fd5b5061027461112b565b3480156104f257600080fd5b506102d9610501366004612359565b61113a565b34801561051257600080fd5b506102ec60065481565b34801561052857600080fd5b506102d9610537366004612397565b6111ff565b6102d961054a366004612417565b611237565b6102d961055d3660046121b9565b611442565b34801561056e57600080fd5b5061027461057d3660046121b9565b6115d7565b34801561058e57600080fd5b506102ec60095481565b3480156105a457600080fd5b50600a546102a1906001600160a01b031681565b3480156105c457600080fd5b506102d96105d336600461233c565b611658565b3480156105e457600080fd5b506102d96105f33660046121b9565b6116a4565b34801561060457600080fd5b5061024a6106133660046124d2565b6116d3565b34801561062457600080fd5b5060075461024a90610100900460ff1681565b34801561064357600080fd5b506102d9611794565b34801561065857600080fd5b506102d961066736600461233c565b6117d2565b34801561067857600080fd5b506102ec6101f481565b60006001600160e01b0319821663780e9d6360e01b14806106a757506106a78261186d565b92915050565b6060600080546106bc90612500565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890612500565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a826118bd565b6107b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006107d782610d97565b9050806001600160a01b0316836001600160a01b031614156108455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a7565b336001600160a01b0382161480610861575061086181336116d3565b6108d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a7565b6108dd8383611907565b505050565b6108ec3382611975565b6109085760405162461bcd60e51b81526004016107a79061253b565b6108dd838383611a37565b600061091e83610f4c565b821061093c5760405162461bcd60e51b81526004016107a79061258c565b6000805b6002548110156109ad576002818154811061095d5761095d6125d7565b6000918252602090912001546001600160a01b038681169116141561099b578382141561098d5791506106a79050565b8161099781612603565b9250505b806109a581612603565b915050610940565b5060405162461bcd60e51b81526004016107a79061258c565b6005546001600160a01b031633146109f05760405162461bcd60e51b81526004016107a79061261e565b6007805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610a375760405162461bcd60e51b81526004016107a79061261e565b4780610a4257600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610a706064610a6a866002611b8d565b90611ba0565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610a996064610a6a886005611b8d565b90507381b5162add600560cf575ad49db3e1b7fb98736d6000610ac26064610a6a8a600a611b8d565b90506000866001600160a01b03168660405160006040518083038185875af1925050503d8060008114610b11576040519150601f19603f3d011682016040523d82523d6000602084013e610b16565b606091505b5050905080610b375760405162461bcd60e51b81526004016107a790612653565b6000856001600160a01b03168560405160006040518083038185875af1925050503d8060008114610b84576040519150601f19603f3d011682016040523d82523d6000602084013e610b89565b606091505b5050905080610baa5760405162461bcd60e51b81526004016107a790612653565b6000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c1d5760405162461bcd60e51b81526004016107a790612653565b60008a6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6a576040519150601f19603f3d011682016040523d82523d6000602084013e610c6f565b606091505b5050905080610cc05760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e000000000000000060448201526064016107a7565b505050505050505050505050565b6108dd838383604051806020016040528060008152506111ff565b6002546000908210610d525760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a7565b5090565b6005546001600160a01b03163314610d805760405162461bcd60e51b81526004016107a79061261e565b8051610d9390600c90602084019061208b565b5050565b60008060028381548110610dad57610dad6125d7565b6000918252602090912001546001600160a01b03169050806106a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a7565b6005546001600160a01b03163314610e4d5760405162461bcd60e51b81526004016107a79061261e565b600754610100900460ff1615610eb95760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b60648201526084016107a7565b600855565b600c8054610ecb90612500565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef790612500565b8015610f445780601f10610f1957610100808354040283529160200191610f44565b820191906000526020600020905b815481529060010190602001808311610f2757829003601f168201915b505050505081565b60006001600160a01b038216610fb75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a7565b6000805b6002548110156110135760028181548110610fd857610fd86125d7565b6000918252602090912001546001600160a01b03858116911614156110035761100082612603565b91505b61100c81612603565b9050610fbb565b5092915050565b6005546001600160a01b031633146110445760405162461bcd60e51b81526004016107a79061261e565b61104e6000611bac565b565b6005546001600160a01b0316331461107a5760405162461bcd60e51b81526004016107a79061261e565b600061108560025490565b905060008211801561109957506009548211155b6110e55760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016107a7565b60005b8281101561111557611103846110fe838561267c565b611bfe565b8061110d81612603565b9150506110e8565b506009546111239083611c18565b600955505050565b6060600180546106bc90612500565b6001600160a01b0382163314156111935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a7565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112093383611975565b6112255760405162461bcd60e51b81526004016107a79061253b565b61123184848484611c24565b50505050565b60075460ff166112935760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b60648201526084016107a7565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152603480830186905283518084039091018152605490920190925280519101206112dc9082611c57565b6113285760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c69737465640060448201526064016107a7565b336000908152600b6020526040902054829061134590859061267c565b11156113935760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e6365000000000000000060448201526064016107a7565b6008546113a09084611b8d565b34146113ee5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016107a7565b60005b8381101561141857611406335b600254611bfe565b8061141081612603565b9150506113f1565b50336000908152600b60205260408120805485929061143890849061267c565b9091555050505050565b600754610100900460ff166114995760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107a7565b600681106114f35760405162461bcd60e51b815260206004820152602160248201527f546865206d6178206d696e7420706572207472616e73616374696f6e206973206044820152603560f81b60648201526084016107a7565b6101f46115098261150360025490565b90611c66565b106115565760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016107a7565b6008546115639082611b8d565b34146115b15760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a7565b60005b81811015610d93576115c5336113fe565b806115cf81612603565b9150506115b4565b60606115e2826118bd565b6116265760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107a7565b600c61163183611c72565b6040516020016116429291906126b0565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146116825760405162461bcd60e51b81526004016107a79061261e565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116ce5760405162461bcd60e51b81526004016107a79061261e565b600655565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611725573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117499190612757565b6001600160a01b031614156117625760019150506106a7565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146117be5760405162461bcd60e51b81526004016107a79061261e565b6007805460ff19811660ff90911615179055565b6005546001600160a01b031633146117fc5760405162461bcd60e51b81526004016107a79061261e565b6001600160a01b0381166118615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b61186a81611bac565b50565b60006001600160e01b031982166380ac58cd60e01b148061189e57506001600160e01b03198216635b5e139f60e01b145b806106a757506301ffc9a760e01b6001600160e01b03198316146106a7565b600254600090821080156106a7575060006001600160a01b0316600283815481106118ea576118ea6125d7565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061193c82610d97565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611980826118bd565b6119e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a7565b60006119ec83610d97565b9050806001600160a01b0316846001600160a01b03161480611a275750836001600160a01b0316611a1c8461073f565b6001600160a01b0316145b8061178c575061178c81856116d3565b826001600160a01b0316611a4a82610d97565b6001600160a01b031614611ab25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a7565b6001600160a01b038216611b145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b611b1f600082611907565b8160028281548110611b3357611b336125d7565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611b998284612774565b9392505050565b6000611b9982846127a9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d93828260405180602001604052806000815250611d70565b6000611b9982846127bd565b611c2f848484611a37565b611c3b84848484611da3565b6112315760405162461bcd60e51b81526004016107a7906127d4565b6000611b998260065485611ea1565b6000611b99828461267c565b606081611c965750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc05780611caa81612603565b9150611cb99050600a836127a9565b9150611c9a565b60008167ffffffffffffffff811115611cdb57611cdb612254565b6040519080825280601f01601f191660200182016040528015611d05576020820181803683370190505b5090505b841561178c57611d1a6001836127bd565b9150611d27600a86612826565b611d3290603061267c565b60f81b818381518110611d4757611d476125d7565b60200101906001600160f81b031916908160001a905350611d69600a866127a9565b9450611d09565b611d7a8383611eb7565b611d876000848484611da3565b6108dd5760405162461bcd60e51b81526004016107a7906127d4565b60006001600160a01b0384163b15611e9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611de790339089908890889060040161283a565b6020604051808303816000875af1925050508015611e22575060408051601f3d908101601f19168201909252611e1f91810190612877565b60015b611e7c573d808015611e50576040519150601f19603f3d011682016040523d82523d6000602084013e611e55565b606091505b508051611e745760405162461bcd60e51b81526004016107a7906127d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061178c565b506001949350505050565b600082611eae8584611fdf565b14949350505050565b6001600160a01b038216611f0d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a7565b611f16816118bd565b15611f635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a7565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015612083576000858281518110612001576120016125d7565b60200260200101519050808311612043576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612070565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061207b81612603565b915050611fe4565b509392505050565b82805461209790612500565b90600052602060002090601f0160209004810192826120b957600085556120ff565b82601f106120d257805160ff19168380011785556120ff565b828001600101855582156120ff579182015b828111156120ff5782518255916020019190600101906120e4565b50610d529291505b80821115610d525760008155600101612107565b6001600160e01b03198116811461186a57600080fd5b60006020828403121561214357600080fd5b8135611b998161211b565b60005b83811015612169578181015183820152602001612151565b838111156112315750506000910152565b6000815180845261219281602086016020860161214e565b601f01601f19169290920160200192915050565b602081526000611b99602083018461217a565b6000602082840312156121cb57600080fd5b5035919050565b6001600160a01b038116811461186a57600080fd5b600080604083850312156121fa57600080fd5b8235612205816121d2565b946020939093013593505050565b60008060006060848603121561222857600080fd5b8335612233816121d2565b92506020840135612243816121d2565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561229357612293612254565b604052919050565b600067ffffffffffffffff8311156122b5576122b5612254565b6122c8601f8401601f191660200161226a565b90508281528383830111156122dc57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561230557600080fd5b813567ffffffffffffffff81111561231c57600080fd5b8201601f8101841361232d57600080fd5b61178c8482356020840161229b565b60006020828403121561234e57600080fd5b8135611b99816121d2565b6000806040838503121561236c57600080fd5b8235612377816121d2565b91506020830135801515811461238c57600080fd5b809150509250929050565b600080600080608085870312156123ad57600080fd5b84356123b8816121d2565b935060208501356123c8816121d2565b925060408501359150606085013567ffffffffffffffff8111156123eb57600080fd5b8501601f810187136123fc57600080fd5b61240b8782356020840161229b565b91505092959194509250565b60008060006060848603121561242c57600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561245357600080fd5b818701915087601f83011261246757600080fd5b81358181111561247957612479612254565b8060051b915061248a84830161226a565b818152918301840191848101908a8411156124a457600080fd5b938501935b838510156124c2578435825293850193908501906124a9565b8096505050505050509250925092565b600080604083850312156124e557600080fd5b82356124f0816121d2565b9150602083013561238c816121d2565b600181811c9082168061251457607f821691505b6020821081141561253557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612617576126176125ed565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e2330b4b632b2103a379039b2b7321760891b604082015260600190565b6000821982111561268f5761268f6125ed565b500190565b600081516126a681856020860161214e565b9290920192915050565b600080845481600182811c9150808316806126cc57607f831692505b60208084108214156126ec57634e487b7160e01b86526022600452602486fd5b81801561270057600181146127115761273e565b60ff1986168952848901965061273e565b60008b81526020902060005b868110156127365781548b82015290850190830161271d565b505084890196505b50505050505061274e8185612694565b95945050505050565b60006020828403121561276957600080fd5b8151611b99816121d2565b600081600019048311821515161561278e5761278e6125ed565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127b8576127b8612793565b500490565b6000828210156127cf576127cf6125ed565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261283557612835612793565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286d9083018461217a565b9695505050505050565b60006020828403121561288957600080fd5b8151611b998161211b56fea26469706673582212208c584de09f847f651844350a679ff821b425e9b29a9378acbd0e854d1936db6c64736f6c634300080b003368747470733a2f2f626c616d2e696f2f6170692f736e7567676c652d627564646965732f6c6d2f
Deployed Bytecode
0x6080604052600436106102255760003560e01c806378cf19e911610123578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c5146105f8578063eb8d244414610618578063f032554914610637578063f2fde38b1461064c578063f47c84c51461066c57600080fd5b8063c87b56dd14610562578063cbcb317114610582578063cd7c032614610598578063d26ea6c0146105b8578063dab5f340146105d857600080fd5b8063a22cb465116100f2578063a22cb465146104e6578063aa98e0c614610506578063b88d4fde1461051c578063c4be5b591461053c578063c634d0321461054f57600080fd5b806378cf19e91461047d5780637ff9b5961461049d5780638da5cb5b146104b357806395d89b41146104d157600080fd5b80633ccfd60b116101b15780636352211e116101755780636352211e146103f3578063676c0d77146104135780636c0360eb1461043357806370a0823114610448578063715018a61461046857600080fd5b80633ccfd60b1461036957806342842e0e1461037e5780634f6ccce71461039e57806355f804b3146103be578063634da63a146103de57600080fd5b806318160ddd116101f857806318160ddd146102db5780631f0234d8146102fa57806323b872dd146103145780632f745c591461033457806334918dfd1461035457600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612131565b610682565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106ad565b60405161025691906121a6565b34801561028d57600080fd5b506102a161029c3660046121b9565b61073f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d43660046121e7565b6107cc565b005b3480156102e757600080fd5b506002545b604051908152602001610256565b34801561030657600080fd5b5060075461024a9060ff1681565b34801561032057600080fd5b506102d961032f366004612213565b6108e2565b34801561034057600080fd5b506102ec61034f3660046121e7565b610913565b34801561036057600080fd5b506102d96109c6565b34801561037557600080fd5b506102d9610a0d565b34801561038a57600080fd5b506102d9610399366004612213565b610cce565b3480156103aa57600080fd5b506102ec6103b93660046121b9565b610ce9565b3480156103ca57600080fd5b506102d96103d93660046122f3565b610d56565b3480156103ea57600080fd5b506102ec600681565b3480156103ff57600080fd5b506102a161040e3660046121b9565b610d97565b34801561041f57600080fd5b506102d961042e3660046121b9565b610e23565b34801561043f57600080fd5b50610274610ebe565b34801561045457600080fd5b506102ec61046336600461233c565b610f4c565b34801561047457600080fd5b506102d961101a565b34801561048957600080fd5b506102d96104983660046121e7565b611050565b3480156104a957600080fd5b506102ec60085481565b3480156104bf57600080fd5b506005546001600160a01b03166102a1565b3480156104dd57600080fd5b5061027461112b565b3480156104f257600080fd5b506102d9610501366004612359565b61113a565b34801561051257600080fd5b506102ec60065481565b34801561052857600080fd5b506102d9610537366004612397565b6111ff565b6102d961054a366004612417565b611237565b6102d961055d3660046121b9565b611442565b34801561056e57600080fd5b5061027461057d3660046121b9565b6115d7565b34801561058e57600080fd5b506102ec60095481565b3480156105a457600080fd5b50600a546102a1906001600160a01b031681565b3480156105c457600080fd5b506102d96105d336600461233c565b611658565b3480156105e457600080fd5b506102d96105f33660046121b9565b6116a4565b34801561060457600080fd5b5061024a6106133660046124d2565b6116d3565b34801561062457600080fd5b5060075461024a90610100900460ff1681565b34801561064357600080fd5b506102d9611794565b34801561065857600080fd5b506102d961066736600461233c565b6117d2565b34801561067857600080fd5b506102ec6101f481565b60006001600160e01b0319821663780e9d6360e01b14806106a757506106a78261186d565b92915050565b6060600080546106bc90612500565b80601f01602080910402602001604051908101604052809291908181526020018280546106e890612500565b80156107355780601f1061070a57610100808354040283529160200191610735565b820191906000526020600020905b81548152906001019060200180831161071857829003601f168201915b5050505050905090565b600061074a826118bd565b6107b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006107d782610d97565b9050806001600160a01b0316836001600160a01b031614156108455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107a7565b336001600160a01b0382161480610861575061086181336116d3565b6108d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107a7565b6108dd8383611907565b505050565b6108ec3382611975565b6109085760405162461bcd60e51b81526004016107a79061253b565b6108dd838383611a37565b600061091e83610f4c565b821061093c5760405162461bcd60e51b81526004016107a79061258c565b6000805b6002548110156109ad576002818154811061095d5761095d6125d7565b6000918252602090912001546001600160a01b038681169116141561099b578382141561098d5791506106a79050565b8161099781612603565b9250505b806109a581612603565b915050610940565b5060405162461bcd60e51b81526004016107a79061258c565b6005546001600160a01b031633146109f05760405162461bcd60e51b81526004016107a79061261e565b6007805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610a375760405162461bcd60e51b81526004016107a79061261e565b4780610a4257600080fd5b3373ac01b61d659bd72b120db7c5289bbfc0207719436000610a706064610a6a866002611b8d565b90611ba0565b9050738fc1f1f48cbb2e4a0f1dfeb9e6019606b307c3c46000610a996064610a6a886005611b8d565b90507381b5162add600560cf575ad49db3e1b7fb98736d6000610ac26064610a6a8a600a611b8d565b90506000866001600160a01b03168660405160006040518083038185875af1925050503d8060008114610b11576040519150601f19603f3d011682016040523d82523d6000602084013e610b16565b606091505b5050905080610b375760405162461bcd60e51b81526004016107a790612653565b6000856001600160a01b03168560405160006040518083038185875af1925050503d8060008114610b84576040519150601f19603f3d011682016040523d82523d6000602084013e610b89565b606091505b5050905080610baa5760405162461bcd60e51b81526004016107a790612653565b6000846001600160a01b03168460405160006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c1d5760405162461bcd60e51b81526004016107a790612653565b60008a6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c6a576040519150601f19603f3d011682016040523d82523d6000602084013e610c6f565b606091505b5050905080610cc05760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e000000000000000060448201526064016107a7565b505050505050505050505050565b6108dd838383604051806020016040528060008152506111ff565b6002546000908210610d525760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107a7565b5090565b6005546001600160a01b03163314610d805760405162461bcd60e51b81526004016107a79061261e565b8051610d9390600c90602084019061208b565b5050565b60008060028381548110610dad57610dad6125d7565b6000918252602090912001546001600160a01b03169050806106a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107a7565b6005546001600160a01b03163314610e4d5760405162461bcd60e51b81526004016107a79061261e565b600754610100900460ff1615610eb95760405162461bcd60e51b815260206004820152602b60248201527f53616c65206d75737420626520696e61637469766520746f206368616e67652060448201526a746f6b656e20707269636560a81b60648201526084016107a7565b600855565b600c8054610ecb90612500565b80601f0160208091040260200160405190810160405280929190818152602001828054610ef790612500565b8015610f445780601f10610f1957610100808354040283529160200191610f44565b820191906000526020600020905b815481529060010190602001808311610f2757829003601f168201915b505050505081565b60006001600160a01b038216610fb75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107a7565b6000805b6002548110156110135760028181548110610fd857610fd86125d7565b6000918252602090912001546001600160a01b03858116911614156110035761100082612603565b91505b61100c81612603565b9050610fbb565b5092915050565b6005546001600160a01b031633146110445760405162461bcd60e51b81526004016107a79061261e565b61104e6000611bac565b565b6005546001600160a01b0316331461107a5760405162461bcd60e51b81526004016107a79061261e565b600061108560025490565b905060008211801561109957506009548211155b6110e55760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d60448201526064016107a7565b60005b8281101561111557611103846110fe838561267c565b611bfe565b8061110d81612603565b9150506110e8565b506009546111239083611c18565b600955505050565b6060600180546106bc90612500565b6001600160a01b0382163314156111935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107a7565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112093383611975565b6112255760405162461bcd60e51b81526004016107a79061253b565b61123184848484611c24565b50505050565b60075460ff166112935760405162461bcd60e51b815260206004820152602160248201527f5072652d73616c65206e6f742073746172746564206f722068617320656e64656044820152601960fa1b60648201526084016107a7565b604080513360601b6bffffffffffffffffffffffff1916602080830191909152603480830186905283518084039091018152605490920190925280519101206112dc9082611c57565b6113285760405162461bcd60e51b815260206004820152601f60248201527f596f75722061646472657373206973206e6f742077686974656c69737465640060448201526064016107a7565b336000908152600b6020526040902054829061134590859061267c565b11156113935760405162461bcd60e51b815260206004820152601860248201527f457863656564732077616c6c657420616c6c6f77616e6365000000000000000060448201526064016107a7565b6008546113a09084611b8d565b34146113ee5760405162461bcd60e51b815260206004820152601960248201527f45746865722073656e74206973206e6f7420636f72726563740000000000000060448201526064016107a7565b60005b8381101561141857611406335b600254611bfe565b8061141081612603565b9150506113f1565b50336000908152600b60205260408120805485929061143890849061267c565b9091555050505050565b600754610100900460ff166114995760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e74000000000060448201526064016107a7565b600681106114f35760405162461bcd60e51b815260206004820152602160248201527f546865206d6178206d696e7420706572207472616e73616374696f6e206973206044820152603560f81b60648201526084016107a7565b6101f46115098261150360025490565b90611c66565b106115565760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c7960448201526064016107a7565b6008546115639082611b8d565b34146115b15760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016107a7565b60005b81811015610d93576115c5336113fe565b806115cf81612603565b9150506115b4565b60606115e2826118bd565b6116265760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107a7565b600c61163183611c72565b6040516020016116429291906126b0565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146116825760405162461bcd60e51b81526004016107a79061261e565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116ce5760405162461bcd60e51b81526004016107a79061261e565b600655565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611725573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117499190612757565b6001600160a01b031614156117625760019150506106a7565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146117be5760405162461bcd60e51b81526004016107a79061261e565b6007805460ff19811660ff90911615179055565b6005546001600160a01b031633146117fc5760405162461bcd60e51b81526004016107a79061261e565b6001600160a01b0381166118615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a7565b61186a81611bac565b50565b60006001600160e01b031982166380ac58cd60e01b148061189e57506001600160e01b03198216635b5e139f60e01b145b806106a757506301ffc9a760e01b6001600160e01b03198316146106a7565b600254600090821080156106a7575060006001600160a01b0316600283815481106118ea576118ea6125d7565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061193c82610d97565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611980826118bd565b6119e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107a7565b60006119ec83610d97565b9050806001600160a01b0316846001600160a01b03161480611a275750836001600160a01b0316611a1c8461073f565b6001600160a01b0316145b8061178c575061178c81856116d3565b826001600160a01b0316611a4a82610d97565b6001600160a01b031614611ab25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107a7565b6001600160a01b038216611b145760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107a7565b611b1f600082611907565b8160028281548110611b3357611b336125d7565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611b998284612774565b9392505050565b6000611b9982846127a9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d93828260405180602001604052806000815250611d70565b6000611b9982846127bd565b611c2f848484611a37565b611c3b84848484611da3565b6112315760405162461bcd60e51b81526004016107a7906127d4565b6000611b998260065485611ea1565b6000611b99828461267c565b606081611c965750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cc05780611caa81612603565b9150611cb99050600a836127a9565b9150611c9a565b60008167ffffffffffffffff811115611cdb57611cdb612254565b6040519080825280601f01601f191660200182016040528015611d05576020820181803683370190505b5090505b841561178c57611d1a6001836127bd565b9150611d27600a86612826565b611d3290603061267c565b60f81b818381518110611d4757611d476125d7565b60200101906001600160f81b031916908160001a905350611d69600a866127a9565b9450611d09565b611d7a8383611eb7565b611d876000848484611da3565b6108dd5760405162461bcd60e51b81526004016107a7906127d4565b60006001600160a01b0384163b15611e9657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611de790339089908890889060040161283a565b6020604051808303816000875af1925050508015611e22575060408051601f3d908101601f19168201909252611e1f91810190612877565b60015b611e7c573d808015611e50576040519150601f19603f3d011682016040523d82523d6000602084013e611e55565b606091505b508051611e745760405162461bcd60e51b81526004016107a7906127d4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061178c565b506001949350505050565b600082611eae8584611fdf565b14949350505050565b6001600160a01b038216611f0d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107a7565b611f16816118bd565b15611f635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107a7565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015612083576000858281518110612001576120016125d7565b60200260200101519050808311612043576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612070565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061207b81612603565b915050611fe4565b509392505050565b82805461209790612500565b90600052602060002090601f0160209004810192826120b957600085556120ff565b82601f106120d257805160ff19168380011785556120ff565b828001600101855582156120ff579182015b828111156120ff5782518255916020019190600101906120e4565b50610d529291505b80821115610d525760008155600101612107565b6001600160e01b03198116811461186a57600080fd5b60006020828403121561214357600080fd5b8135611b998161211b565b60005b83811015612169578181015183820152602001612151565b838111156112315750506000910152565b6000815180845261219281602086016020860161214e565b601f01601f19169290920160200192915050565b602081526000611b99602083018461217a565b6000602082840312156121cb57600080fd5b5035919050565b6001600160a01b038116811461186a57600080fd5b600080604083850312156121fa57600080fd5b8235612205816121d2565b946020939093013593505050565b60008060006060848603121561222857600080fd5b8335612233816121d2565b92506020840135612243816121d2565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561229357612293612254565b604052919050565b600067ffffffffffffffff8311156122b5576122b5612254565b6122c8601f8401601f191660200161226a565b90508281528383830111156122dc57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561230557600080fd5b813567ffffffffffffffff81111561231c57600080fd5b8201601f8101841361232d57600080fd5b61178c8482356020840161229b565b60006020828403121561234e57600080fd5b8135611b99816121d2565b6000806040838503121561236c57600080fd5b8235612377816121d2565b91506020830135801515811461238c57600080fd5b809150509250929050565b600080600080608085870312156123ad57600080fd5b84356123b8816121d2565b935060208501356123c8816121d2565b925060408501359150606085013567ffffffffffffffff8111156123eb57600080fd5b8501601f810187136123fc57600080fd5b61240b8782356020840161229b565b91505092959194509250565b60008060006060848603121561242c57600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561245357600080fd5b818701915087601f83011261246757600080fd5b81358181111561247957612479612254565b8060051b915061248a84830161226a565b818152918301840191848101908a8411156124a457600080fd5b938501935b838510156124c2578435825293850193908501906124a9565b8096505050505050509250925092565b600080604083850312156124e557600080fd5b82356124f0816121d2565b9150602083013561238c816121d2565b600181811c9082168061251457607f821691505b6020821081141561253557634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612617576126176125ed565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e2330b4b632b2103a379039b2b7321760891b604082015260600190565b6000821982111561268f5761268f6125ed565b500190565b600081516126a681856020860161214e565b9290920192915050565b600080845481600182811c9150808316806126cc57607f831692505b60208084108214156126ec57634e487b7160e01b86526022600452602486fd5b81801561270057600181146127115761273e565b60ff1986168952848901965061273e565b60008b81526020902060005b868110156127365781548b82015290850190830161271d565b505084890196505b50505050505061274e8185612694565b95945050505050565b60006020828403121561276957600080fd5b8151611b99816121d2565b600081600019048311821515161561278e5761278e6125ed565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127b8576127b8612793565b500490565b6000828210156127cf576127cf6125ed565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261283557612835612793565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061286d9083018461217a565b9695505050505050565b60006020828403121561288957600080fd5b8151611b998161211b56fea26469706673582212208c584de09f847f651844350a679ff821b425e9b29a9378acbd0e854d1936db6c64736f6c634300080b0033
Deployed Bytecode Sourcemap
38707:4921:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32819:224;;;;;;;;;;-1:-1:-1;32819:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32819:224:0;;;;;;;;21438:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22250:308::-;;;;;;;;;;-1:-1:-1;22250:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;22250:308:0;1550:203:1;21773:411:0;;;;;;;;;;-1:-1:-1;21773:411:0;;;;;:::i;:::-;;:::i;:::-;;33119:110;;;;;;;;;;-1:-1:-1;33207:7:0;:14;33119:110;;;2360:25:1;;;2348:2;2333:18;33119:110:0;2214:177:1;38873:35:0;;;;;;;;;;-1:-1:-1;38873:35:0;;;;;;;;23309:376;;;;;;;;;;-1:-1:-1;23309:376:0;;;;;:::i;:::-;;:::i;33595:490::-;;;;;;;;;;-1:-1:-1;33595:490:0;;;;;:::i;:::-;;:::i;41202:83::-;;;;;;;;;;;;;:::i;39632:1080::-;;;;;;;;;;;;;:::i;23756:185::-;;;;;;;;;;-1:-1:-1;23756:185:0;;;;;:::i;:::-;;:::i;33306:205::-;;;;;;;;;;-1:-1:-1;33306:205:0;;;;;:::i;:::-;;:::i;41104:92::-;;;;;;;;;;-1:-1:-1;41104:92:0;;;;;:::i;:::-;;:::i;39000:42::-;;;;;;;;;;;;39041:1;39000:42;;21045:326;;;;;;;;;;-1:-1:-1;21045:326:0;;;;;:::i;:::-;;:::i;39455:171::-;;;;;;;;;;-1:-1:-1;39455:171:0;;;;;:::i;:::-;;:::i;39218:21::-;;;;;;;;;;;;;:::i;20591:392::-;;;;;;;;;;-1:-1:-1;20591:392:0;;;;;:::i;:::-;;:::i;35746:103::-;;;;;;;;;;;;;:::i;40720:376::-;;;;;;;;;;-1:-1:-1;40720:376:0;;;;;:::i;:::-;;:::i;38950:45::-;;;;;;;;;;;;;;;;35095:87;;;;;;;;;;-1:-1:-1;35168:6:0;;-1:-1:-1;;;;;35168:6:0;35095:87;;21607:104;;;;;;;;;;;;;:::i;22630:327::-;;;;;;;;;;-1:-1:-1;22630:327:0;;;;;:::i;:::-;;:::i;38834:34::-;;;;;;;;;;;;;;;;24012:365;;;;;;;;;;-1:-1:-1;24012:365:0;;;;;:::i;:::-;;:::i;41393:625::-;;;;;;:::i;:::-;;:::i;42026:503::-;;;;;;:::i;:::-;;:::i;43088:213::-;;;;;;;;;;-1:-1:-1;43088:213:0;;;;;:::i;:::-;;:::i;39092:29::-;;;;;;;;;;;;;;;;39128:35;;;;;;;;;;-1:-1:-1;39128:35:0;;;;-1:-1:-1;;;;;39128:35:0;;;42942:140;;;;;;;;;;-1:-1:-1;42942:140:0;;;;;:::i;:::-;;:::i;42847:89::-;;;;;;;;;;-1:-1:-1;42847:89:0;;;;;:::i;:::-;;:::i;43307:318::-;;;;;;;;;;-1:-1:-1;43307:318:0;;;;;:::i;:::-;;:::i;38913:32::-;;;;;;;;;;-1:-1:-1;38913:32:0;;;;;;;;;;;41293:92;;;;;;;;;;;;;:::i;36004:201::-;;;;;;;;;;-1:-1:-1;36004:201:0;;;;;:::i;:::-;;:::i;39047:40::-;;;;;;;;;;;;39084:3;39047:40;;32819:224;32921:4;-1:-1:-1;;;;;;32945:50:0;;-1:-1:-1;;;32945:50:0;;:90;;;32999:36;33023:11;32999:23;:36::i;:::-;32938:97;32819:224;-1:-1:-1;;32819:224:0:o;21438:100::-;21492:13;21525:5;21518:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21438:100;:::o;22250:308::-;22371:7;22418:16;22426:7;22418;:16::i;:::-;22396:110;;;;-1:-1:-1;;;22396:110:0;;8044:2:1;22396:110:0;;;8026:21:1;8083:2;8063:18;;;8056:30;8122:34;8102:18;;;8095:62;-1:-1:-1;;;8173:18:1;;;8166:42;8225:19;;22396:110:0;;;;;;;;;-1:-1:-1;22526:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22526:24:0;;22250:308::o;21773:411::-;21854:13;21870:23;21885:7;21870:14;:23::i;:::-;21854:39;;21918:5;-1:-1:-1;;;;;21912:11:0;:2;-1:-1:-1;;;;;21912:11:0;;;21904:57;;;;-1:-1:-1;;;21904:57:0;;8457:2:1;21904:57:0;;;8439:21:1;8496:2;8476:18;;;8469:30;8535:34;8515:18;;;8508:62;-1:-1:-1;;;8586:18:1;;;8579:31;8627:19;;21904:57:0;8255:397:1;21904:57:0;738:10;-1:-1:-1;;;;;21996:21:0;;;;:62;;-1:-1:-1;22021:37:0;22038:5;738:10;43307:318;:::i;22021:37::-;21974:168;;;;-1:-1:-1;;;21974:168:0;;8859:2:1;21974:168:0;;;8841:21:1;8898:2;8878:18;;;8871:30;8937:34;8917:18;;;8910:62;9008:26;8988:18;;;8981:54;9052:19;;21974:168:0;8657:420:1;21974:168:0;22155:21;22164:2;22168:7;22155:8;:21::i;:::-;21843:341;21773:411;;:::o;23309:376::-;23518:41;738:10;23551:7;23518:18;:41::i;:::-;23496:140;;;;-1:-1:-1;;;23496:140:0;;;;;;;:::i;:::-;23649:28;23659:4;23665:2;23669:7;23649:9;:28::i;33595:490::-;33692:15;33736:16;33746:5;33736:9;:16::i;:::-;33728:5;:24;33720:80;;;;-1:-1:-1;;;33720:80:0;;;;;;;:::i;:::-;33813:10;33838:6;33834:178;33850:7;:14;33846:18;;33834:178;;;33897:7;33905:1;33897:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33888:19:0;;;33897:10;;33888:19;33885:116;;;33939:5;33930;:14;33927:58;;;33953:1;-1:-1:-1;33946:8:0;;-1:-1:-1;33946:8:0;33927:58;33978:7;;;;:::i;:::-;;;;33927:58;33866:3;;;;:::i;:::-;;;;33834:178;;;;34024:53;;-1:-1:-1;;;34024:53:0;;;;;;;:::i;41202:83::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;41267:12:::1;::::0;;-1:-1:-1;;41251:28:0;::::1;41267:12;::::0;;;::::1;;;41266:13;41251:28:::0;;::::1;;::::0;;41202:83::o;39632:1080::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;39694:21:::1;39730:11:::0;39722:20:::1;;;::::0;::::1;;738:10:::0;39828:42:::1;39751:13;39903:23;39922:3;39903:14;:7:::0;39915:1:::1;39903:11;:14::i;:::-;:18:::0;::::1;:23::i;:::-;39878:48:::0;-1:-1:-1;39966:42:0::1;39933:22;40041:23;40060:3;40041:14;:7:::0;40053:1:::1;40041:11;:14::i;:23::-;40016:48:::0;-1:-1:-1;40104:42:0::1;40071:22;40179:24;40199:3;40179:15;:7:::0;40191:2:::1;40179:11;:15::i;:24::-;40154:49;;40217:13;40236:14;-1:-1:-1::0;;;;;40236:19:0::1;40263:14;40236:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40216:66;;;40297:8;40289:36;;;;-1:-1:-1::0;;;40289:36:0::1;;;;;;;:::i;:::-;40339:13;40358:14;-1:-1:-1::0;;;;;40358:19:0::1;40385:14;40358:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40338:66;;;40419:8;40411:36;;;;-1:-1:-1::0;;;40411:36:0::1;;;;;;;:::i;:::-;40461:13;40480:14;-1:-1:-1::0;;;;;40480:19:0::1;40507:14;40480:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40460:66;;;40541:8;40533:36;;;;-1:-1:-1::0;;;40533:36:0::1;;;;;;;:::i;:::-;40583:17;40606:5;-1:-1:-1::0;;;;;40606:10:0::1;40624:21;40606:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40582:68;;;40665:12;40657:49;;;::::0;-1:-1:-1;;;40657:49:0;;11433:2:1;40657:49:0::1;::::0;::::1;11415:21:1::0;11472:2;11452:18;;;11445:30;11511:26;11491:18;;;11484:54;11555:18;;40657:49:0::1;11231:348:1::0;40657:49:0::1;39669:1043;;;;;;;;;;;;39632:1080::o:0;23756:185::-;23894:39;23911:4;23917:2;23921:7;23894:39;;;;;;;;;;;;:16;:39::i;33306:205::-;33417:7;:14;33381:7;;33409:22;;33401:79;;;;-1:-1:-1;;;33401:79:0;;11786:2:1;33401:79:0;;;11768:21:1;11825:2;11805:18;;;11798:30;11864:34;11844:18;;;11837:62;-1:-1:-1;;;11915:18:1;;;11908:42;11967:19;;33401:79:0;11584:408:1;33401:79:0;-1:-1:-1;33498:5:0;33306:205::o;41104:92::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;41172:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41104:92:::0;:::o;21045:326::-;21162:7;21187:13;21203:7;21211;21203:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;21203:16:0;;-1:-1:-1;21252:19:0;21230:110;;;;-1:-1:-1;;;21230:110:0;;12199:2:1;21230:110:0;;;12181:21:1;12238:2;12218:18;;;12211:30;12277:34;12257:18;;;12250:62;-1:-1:-1;;;12328:18:1;;;12321:39;12377:19;;21230:110:0;11997:405:1;39455:171:0;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;39532:12:::1;::::0;::::1;::::0;::::1;;;39531:13;39523:69;;;::::0;-1:-1:-1;;;39523:69:0;;12609:2:1;39523:69:0::1;::::0;::::1;12591:21:1::0;12648:2;12628:18;;;12621:30;12687:34;12667:18;;;12660:62;-1:-1:-1;;;12738:18:1;;;12731:41;12789:19;;39523:69:0::1;12407:407:1::0;39523:69:0::1;39599:10;:21:::0;39455:171::o;39218:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20591:392::-;20713:4;-1:-1:-1;;;;;20744:19:0;;20736:74;;;;-1:-1:-1;;;20736:74:0;;13021:2:1;20736:74:0;;;13003:21:1;13060:2;13040:18;;;13033:30;13099:34;13079:18;;;13072:62;-1:-1:-1;;;13150:18:1;;;13143:40;13200:19;;20736:74:0;12819:406:1;20736:74:0;20823:10;20849:6;20844:109;20861:7;:14;20857:18;;20844:109;;;20908:7;20916:1;20908:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;20899:19:0;;;20908:10;;20899:19;20895:46;;;20934:7;;;:::i;:::-;;;20895:46;20877:3;;;:::i;:::-;;;20844:109;;;-1:-1:-1;20970:5:0;20591:392;-1:-1:-1;;20591:392:0:o;35746:103::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;35811:30:::1;35838:1;35811:18;:30::i;:::-;35746:103::o:0;40720:376::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;40812:11:::1;40826:13;33207:7:::0;:14;;33119:110;40826:13:::1;40812:27;;40871:1;40854:14;:18;:52;;;;;40894:12;;40876:14;:30;;40854:52;40846:97;;;::::0;-1:-1:-1;;;40846:97:0;;13432:2:1;40846:97:0::1;::::0;::::1;13414:21:1::0;;;13451:18;;;13444:30;13510:34;13490:18;;;13483:62;13562:18;;40846:97:0::1;13230:356:1::0;40846:97:0::1;40955:6;40950:87;40971:14;40967:1;:18;40950:87;;;41003:26;41013:3:::0;41018:10:::1;41027:1:::0;41018:6;:10:::1;:::i;:::-;41003:9;:26::i;:::-;40987:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40950:87;;;-1:-1:-1::0;41058:12:0::1;::::0;:32:::1;::::0;41075:14;41058:16:::1;:32::i;:::-;41043:12;:47:::0;-1:-1:-1;;;40720:376:0:o;21607:104::-;21663:13;21696:7;21689:14;;;;;:::i;22630:327::-;-1:-1:-1;;;;;22765:24:0;;738:10;22765:24;;22757:62;;;;-1:-1:-1;;;22757:62:0;;13926:2:1;22757:62:0;;;13908:21:1;13965:2;13945:18;;;13938:30;14004:27;13984:18;;;13977:55;14049:18;;22757:62:0;13724:349:1;22757:62:0;738:10;22832:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22832:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22832:53:0;;;;;;;;;;22901:48;;540:41:1;;;22832:42:0;;738:10;22901:48;;513:18:1;22901:48:0;;;;;;;22630:327;;:::o;24012:365::-;24201:41;738:10;24234:7;24201:18;:41::i;:::-;24179:140;;;;-1:-1:-1;;;24179:140:0;;;;;;;:::i;:::-;24330:39;24344:4;24350:2;24354:7;24363:5;24330:13;:39::i;:::-;24012:365;;;;:::o;41393:625::-;41511:15;;;;41503:61;;;;-1:-1:-1;;;41503:61:0;;14280:2:1;41503:61:0;;;14262:21:1;14319:2;14299:18;;;14292:30;14358:34;14338:18;;;14331:62;-1:-1:-1;;;14409:18:1;;;14402:31;14450:19;;41503:61:0;14078:397:1;41503:61:0;42640:32;;;738:10;21947:2:1;21943:15;-1:-1:-1;;21939:53:1;42640:32:0;;;;21927:66:1;;;;22009:12;;;;22002:28;;;42640:32:0;;;;;;;;;;22046:12:1;;;;42640:32:0;;;42630:43;;;;;41587:44;;41625:5;41587:7;:44::i;:::-;41571:109;;;;-1:-1:-1;;;41571:109:0;;14682:2:1;41571:109:0;;;14664:21:1;14721:2;14701:18;;;14694:30;14760:33;14740:18;;;14733:61;14811:18;;41571:109:0;14480:355:1;41571:109:0;738:10;41695:23;;;;:9;:23;;;;;;41739:7;;41695:40;;41721:14;;41695:40;:::i;:::-;:51;;41687:88;;;;-1:-1:-1;;;41687:88:0;;15042:2:1;41687:88:0;;;15024:21:1;15081:2;15061:18;;;15054:30;15120:26;15100:18;;;15093:54;15164:18;;41687:88:0;14840:348:1;41687:88:0;41803:10;;:30;;41818:14;41803;:30::i;:::-;41790:9;:43;41782:81;;;;-1:-1:-1;;;41782:81:0;;15395:2:1;41782:81:0;;;15377:21:1;15434:2;15414:18;;;15407:30;15473:27;15453:18;;;15446:55;15518:18;;41782:81:0;15193:349:1;41782:81:0;41877:6;41872:93;41889:14;41885:1;:18;41872:93;;;41919:38;738:10;41929:12;33207:7;:14;41003:9:::1;:26::i;41919:38::-:0;41905:3;;;;:::i;:::-;;;;41872:93;;;-1:-1:-1;738:10:0;41971:23;;;;:9;:23;;;;;:41;;41998:14;;41971:23;:41;;41998:14;;41971:41;:::i;:::-;;;;-1:-1:-1;;;;;41393:625:0:o;42026:503::-;42096:12;;;;;;;42088:52;;;;-1:-1:-1;;;42088:52:0;;15749:2:1;42088:52:0;;;15731:21:1;15788:2;15768:18;;;15761:30;15827:29;15807:18;;;15800:57;15874:18;;42088:52:0;15547:351:1;42088:52:0;39041:1;42155:14;:34;42147:80;;;;-1:-1:-1;;;42147:80:0;;16105:2:1;42147:80:0;;;16087:21:1;16144:2;16124:18;;;16117:30;16183:34;16163:18;;;16156:62;-1:-1:-1;;;16234:18:1;;;16227:31;16275:19;;42147:80:0;15903:397:1;42147:80:0;39084:3;42242:33;42260:14;42242:13;33207:7;:14;;33119:110;42242:13;:17;;:33::i;:::-;:46;42234:91;;;;-1:-1:-1;;;42234:91:0;;16507:2:1;42234:91:0;;;16489:21:1;;;16526:18;;;16519:30;16585:34;16565:18;;;16558:62;16637:18;;42234:91:0;16305:356:1;42234:91:0;42353:10;;:30;;42368:14;42353;:30::i;:::-;42340:9;:43;42332:87;;;;-1:-1:-1;;;42332:87:0;;16868:2:1;42332:87:0;;;16850:21:1;16907:2;16887:18;;;16880:30;16946:33;16926:18;;;16919:61;16997:18;;42332:87:0;16666:355:1;42332:87:0;42436:6;42432:92;42448:14;42444:1;:18;42432:92;;;42478:38;738:10;42488:12;658:98;42478:38;42464:3;;;;:::i;:::-;;;;42432:92;;43088:213;43147:13;43177:17;43185:8;43177:7;:17::i;:::-;43169:51;;;;-1:-1:-1;;;43169:51:0;;17228:2:1;43169:51:0;;;17210:21:1;17267:2;17247:18;;;17240:30;-1:-1:-1;;;17286:18:1;;;17279:51;17347:18;;43169:51:0;17026:345:1;43169:51:0;43258:7;43267:26;43284:8;43267:16;:26::i;:::-;43241:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43227:68;;43088:213;;;:::o;42942:140::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;43032:20:::1;:44:::0;;-1:-1:-1;;;;;;43032:44:0::1;-1:-1:-1::0;;;;;43032:44:0;;;::::1;::::0;;;::::1;::::0;;42942:140::o;42847:89::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;42904:19:::1;:26:::0;42847:89::o;43307:318::-;43468:20;;43508:29;;-1:-1:-1;;;43508:29:0;;-1:-1:-1;;;;;1714:32:1;;;43508:29:0;;;1696:51:1;43397:4:0;;43468:20;;;43500:50;;;;43468:20;;43508:21;;1669:18:1;;43508:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43500:50:0;;43496:67;;;43559:4;43552:11;;;;;43496:67;-1:-1:-1;;;;;23199:25:0;;;23170:4;23199:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43579:40;43572:47;43307:318;-1:-1:-1;;;;43307:318:0:o;41293:92::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;41364:15:::1;::::0;;-1:-1:-1;;41345:34:0;::::1;41364:15;::::0;;::::1;41363:16;41345:34;::::0;;41293:92::o;36004:201::-;35168:6;;-1:-1:-1;;;;;35168:6:0;738:10;35315:23;35307:68;;;;-1:-1:-1;;;35307:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36093:22:0;::::1;36085:73;;;::::0;-1:-1:-1;;;36085:73:0;;19358:2:1;36085:73:0::1;::::0;::::1;19340:21:1::0;19397:2;19377:18;;;19370:30;19436:34;19416:18;;;19409:62;-1:-1:-1;;;19487:18:1;;;19480:36;19533:19;;36085:73:0::1;19156:402:1::0;36085:73:0::1;36169:28;36188:8;36169:18;:28::i;:::-;36004:201:::0;:::o;20172:355::-;20319:4;-1:-1:-1;;;;;;20361:40:0;;-1:-1:-1;;;20361:40:0;;:105;;-1:-1:-1;;;;;;;20418:48:0;;-1:-1:-1;;;20418:48:0;20361:105;:158;;;-1:-1:-1;;;;;;;;;;10093:40:0;;;20483:36;9984:157;25924:155;26023:7;:14;25989:4;;26013:24;;:58;;;;;26069:1;-1:-1:-1;;;;;26041:30:0;:7;26049;26041:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26041:16:0;:30;;26006:65;25924:155;-1:-1:-1;;25924:155:0:o;29949:174::-;30024:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30024:29:0;-1:-1:-1;;;;;30024:29:0;;;;;;;;:24;;30078:23;30024:24;30078:14;:23::i;:::-;-1:-1:-1;;;;;30069:46:0;;;;;;;;;;;29949:174;;:::o;26246:452::-;26375:4;26419:16;26427:7;26419;:16::i;:::-;26397:110;;;;-1:-1:-1;;;26397:110:0;;19765:2:1;26397:110:0;;;19747:21:1;19804:2;19784:18;;;19777:30;19843:34;19823:18;;;19816:62;-1:-1:-1;;;19894:18:1;;;19887:42;19946:19;;26397:110:0;19563:408:1;26397:110:0;26518:13;26534:23;26549:7;26534:14;:23::i;:::-;26518:39;;26587:5;-1:-1:-1;;;;;26576:16:0;:7;-1:-1:-1;;;;;26576:16:0;;:64;;;;26633:7;-1:-1:-1;;;;;26609:31:0;:20;26621:7;26609:11;:20::i;:::-;-1:-1:-1;;;;;26609:31:0;;26576:64;:113;;;;26657:32;26674:5;26681:7;26657:16;:32::i;29278:553::-;29451:4;-1:-1:-1;;;;;29424:31:0;:23;29439:7;29424:14;:23::i;:::-;-1:-1:-1;;;;;29424:31:0;;29402:122;;;;-1:-1:-1;;;29402:122:0;;20178:2:1;29402:122:0;;;20160:21:1;20217:2;20197:18;;;20190:30;20256:34;20236:18;;;20229:62;-1:-1:-1;;;20307:18:1;;;20300:39;20356:19;;29402:122:0;19976:405:1;29402:122:0;-1:-1:-1;;;;;29543:16:0;;29535:65;;;;-1:-1:-1;;;29535:65:0;;20588:2:1;29535:65:0;;;20570:21:1;20627:2;20607:18;;;20600:30;20666:34;20646:18;;;20639:62;-1:-1:-1;;;20717:18:1;;;20710:34;20761:19;;29535:65:0;20386:400:1;29535:65:0;29717:29;29734:1;29738:7;29717:8;:29::i;:::-;29776:2;29757:7;29765;29757:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;29757:21:0;-1:-1:-1;;;;;29757:21:0;;;;;;29796:27;;29815:7;;29796:27;;;;;;;;;;29757:16;29796:27;29278:553;;;:::o;13677:98::-;13735:7;13762:5;13766:1;13762;:5;:::i;:::-;13755:12;13677:98;-1:-1:-1;;;13677:98:0:o;14075:::-;14133:7;14160:5;14164:1;14160;:5;:::i;36365:191::-;36458:6;;;-1:-1:-1;;;;;36475:17:0;;;-1:-1:-1;;;;;;36475:17:0;;;;;;;36508:40;;36458:6;;;36475:17;36458:6;;36508:40;;36439:16;;36508:40;36428:128;36365:191;:::o;27040:110::-;27116:26;27126:2;27130:7;27116:26;;;;;;;;;;;;:9;:26::i;13321:98::-;13379:7;13406:5;13410:1;13406;:5;:::i;25259:352::-;25416:28;25426:4;25432:2;25436:7;25416:9;:28::i;:::-;25477:48;25500:4;25506:2;25510:7;25519:5;25477:22;:48::i;:::-;25455:148;;;;-1:-1:-1;;;25455:148:0;;;;;;;:::i;42685:156::-;42763:4;42783:52;42802:5;42809:19;;42830:4;42783:18;:52::i;12941:98::-;12999:7;13026:5;13030:1;13026;:5;:::i;17658:722::-;17714:13;17934:10;17930:53;;-1:-1:-1;;17961:10:0;;;;;;;;;;;;-1:-1:-1;;;17961:10:0;;;;;17658:722::o;17930:53::-;18008:5;17993:12;18049:78;18056:9;;18049:78;;18082:8;;;;:::i;:::-;;-1:-1:-1;18105:10:0;;-1:-1:-1;18113:2:0;18105:10;;:::i;:::-;;;18049:78;;;18137:19;18169:6;18159:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18159:17:0;;18137:39;;18187:154;18194:10;;18187:154;;18221:11;18231:1;18221:11;;:::i;:::-;;-1:-1:-1;18290:10:0;18298:2;18290:5;:10;:::i;:::-;18277:24;;:2;:24;:::i;:::-;18264:39;;18247:6;18254;18247:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18247:56:0;;;;;;;;-1:-1:-1;18318:11:0;18327:2;18318:11;;:::i;:::-;;;18187:154;;27377:321;27507:18;27513:2;27517:7;27507:5;:18::i;:::-;27558:54;27589:1;27593:2;27597:7;27606:5;27558:22;:54::i;:::-;27536:154;;;;-1:-1:-1;;;27536:154:0;;;;;;;:::i;30688:980::-;30843:4;-1:-1:-1;;;;;30864:13:0;;17278:20;17326:8;30860:801;;30917:175;;-1:-1:-1;;;30917:175:0;;-1:-1:-1;;;;;30917:36:0;;;;;:175;;738:10;;31011:4;;31038:7;;31068:5;;30917:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30917:175:0;;;;;;;;-1:-1:-1;;30917:175:0;;;;;;;;;;;;:::i;:::-;;;30896:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31275:13:0;;31271:320;;31318:108;;-1:-1:-1;;;31318:108:0;;;;;;;:::i;31271:320::-;31541:6;31535:13;31526:6;31522:2;31518:15;31511:38;30896:710;-1:-1:-1;;;;;;31156:51:0;-1:-1:-1;;;31156:51:0;;-1:-1:-1;31149:58:0;;30860:801;-1:-1:-1;31645:4:0;30688:980;;;;;;:::o;37398:190::-;37523:4;37576;37547:25;37560:5;37567:4;37547:12;:25::i;:::-;:33;;37398:190;-1:-1:-1;;;;37398:190:0:o;28034:346::-;-1:-1:-1;;;;;28114:16:0;;28106:61;;;;-1:-1:-1;;;28106:61:0;;23147:2:1;28106:61:0;;;23129:21:1;;;23166:18;;;23159:30;23225:34;23205:18;;;23198:62;23277:18;;28106:61:0;22945:356:1;28106:61:0;28187:16;28195:7;28187;:16::i;:::-;28186:17;28178:58;;;;-1:-1:-1;;;28178:58:0;;23508:2:1;28178:58:0;;;23490:21:1;23547:2;23527:18;;;23520:30;23586;23566:18;;;23559:58;23634:18;;28178:58:0;23306:352:1;28178:58:0;28305:7;:16;;;;;;;-1:-1:-1;28305:16:0;;;;;;;-1:-1:-1;;;;;;28305:16:0;-1:-1:-1;;;;;28305:16:0;;;;;;;;28339:33;;28364:7;;-1:-1:-1;28339:33:0;;-1:-1:-1;;28339:33:0;28034:346;;:::o;37950:701::-;38033:7;38076:4;38033:7;38091:523;38115:5;:12;38111:1;:16;38091:523;;;38149:20;38172:5;38178:1;38172:8;;;;;;;;:::i;:::-;;;;;;;38149:31;;38215:12;38199;:28;38195:408;;38352:44;;;;;;23820:19:1;;;23855:12;;;23848:28;;;23892:12;;38352:44:0;;;;;;;;;;;;38342:55;;;;;;38327:70;;38195:408;;;38542:44;;;;;;23820:19:1;;;23855:12;;;23848:28;;;23892:12;;38542:44:0;;;;;;;;;;;;38532:55;;;;;;38517:70;;38195:408;-1:-1:-1;38129:3:0;;;;:::i;:::-;;;;38091:523;;;-1:-1:-1;38631:12:0;37950:701;-1:-1:-1;;;37950:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:131::-;-1:-1:-1;;;;;1833:31:1;;1823:42;;1813:70;;1879:1;1876;1869:12;1894:315;1962:6;1970;2023:2;2011:9;2002:7;1998:23;1994:32;1991:52;;;2039:1;2036;2029:12;1991:52;2078:9;2065:23;2097:31;2122:5;2097:31;:::i;:::-;2147:5;2199:2;2184:18;;;;2171:32;;-1:-1:-1;;;1894:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:275;3060:2;3054:9;3125:2;3106:13;;-1:-1:-1;;3102:27:1;3090:40;;3160:18;3145:34;;3181:22;;;3142:62;3139:88;;;3207:18;;:::i;:::-;3243:2;3236:22;2989:275;;-1:-1:-1;2989:275:1:o;3269:407::-;3334:5;3368:18;3360:6;3357:30;3354:56;;;3390:18;;:::i;:::-;3428:57;3473:2;3452:15;;-1:-1:-1;;3448:29:1;3479:4;3444:40;3428:57;:::i;:::-;3419:66;;3508:6;3501:5;3494:21;3548:3;3539:6;3534:3;3530:16;3527:25;3524:45;;;3565:1;3562;3555:12;3524:45;3614:6;3609:3;3602:4;3595:5;3591:16;3578:43;3668:1;3661:4;3652:6;3645:5;3641:18;3637:29;3630:40;3269:407;;;;;:::o;3681:451::-;3750:6;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;3859:9;3846:23;3892:18;3884:6;3881:30;3878:50;;;3924:1;3921;3914:12;3878:50;3947:22;;4000:4;3992:13;;3988:27;-1:-1:-1;3978:55:1;;4029:1;4026;4019:12;3978:55;4052:74;4118:7;4113:2;4100:16;4095:2;4091;4087:11;4052:74;:::i;4137:247::-;4196:6;4249:2;4237:9;4228:7;4224:23;4220:32;4217:52;;;4265:1;4262;4255:12;4217:52;4304:9;4291:23;4323:31;4348:5;4323:31;:::i;4389:416::-;4454:6;4462;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;4570:9;4557:23;4589:31;4614:5;4589:31;:::i;:::-;4639:5;-1:-1:-1;4696:2:1;4681:18;;4668:32;4738:15;;4731:23;4719:36;;4709:64;;4769:1;4766;4759:12;4709:64;4792:7;4782:17;;;4389:416;;;;;:::o;4992:795::-;5087:6;5095;5103;5111;5164:3;5152:9;5143:7;5139:23;5135:33;5132:53;;;5181:1;5178;5171:12;5132:53;5220:9;5207:23;5239:31;5264:5;5239:31;:::i;:::-;5289:5;-1:-1:-1;5346:2:1;5331:18;;5318:32;5359:33;5318:32;5359:33;:::i;:::-;5411:7;-1:-1:-1;5465:2:1;5450:18;;5437:32;;-1:-1:-1;5520:2:1;5505:18;;5492:32;5547:18;5536:30;;5533:50;;;5579:1;5576;5569:12;5533:50;5602:22;;5655:4;5647:13;;5643:27;-1:-1:-1;5633:55:1;;5684:1;5681;5674:12;5633:55;5707:74;5773:7;5768:2;5755:16;5750:2;5746;5742:11;5707:74;:::i;:::-;5697:84;;;4992:795;;;;;;;:::o;5792:1082::-;5894:6;5902;5910;5963:2;5951:9;5942:7;5938:23;5934:32;5931:52;;;5979:1;5976;5969:12;5931:52;6015:9;6002:23;5992:33;;6044:2;6093;6082:9;6078:18;6065:32;6055:42;;6148:2;6137:9;6133:18;6120:32;6171:18;6212:2;6204:6;6201:14;6198:34;;;6228:1;6225;6218:12;6198:34;6266:6;6255:9;6251:22;6241:32;;6311:7;6304:4;6300:2;6296:13;6292:27;6282:55;;6333:1;6330;6323:12;6282:55;6369:2;6356:16;6391:2;6387;6384:10;6381:36;;;6397:18;;:::i;:::-;6443:2;6440:1;6436:10;6426:20;;6466:28;6490:2;6486;6482:11;6466:28;:::i;:::-;6528:15;;;6598:11;;;6594:20;;;6559:12;;;;6626:19;;;6623:39;;;6658:1;6655;6648:12;6623:39;6682:11;;;;6702:142;6718:6;6713:3;6710:15;6702:142;;;6784:17;;6772:30;;6735:12;;;;6822;;;;6702:142;;;6863:5;6853:15;;;;;;;;5792:1082;;;;;:::o;7064:388::-;7132:6;7140;7193:2;7181:9;7172:7;7168:23;7164:32;7161:52;;;7209:1;7206;7199:12;7161:52;7248:9;7235:23;7267:31;7292:5;7267:31;:::i;:::-;7317:5;-1:-1:-1;7374:2:1;7359:18;;7346:32;7387:33;7346:32;7387:33;:::i;7457:380::-;7536:1;7532:12;;;;7579;;;7600:61;;7654:4;7646:6;7642:17;7632:27;;7600:61;7707:2;7699:6;7696:14;7676:18;7673:38;7670:161;;;7753:10;7748:3;7744:20;7741:1;7734:31;7788:4;7785:1;7778:15;7816:4;7813:1;7806:15;7670:161;;7457:380;;;:::o;9082:413::-;9284:2;9266:21;;;9323:2;9303:18;;;9296:30;9362:34;9357:2;9342:18;;9335:62;-1:-1:-1;;;9428:2:1;9413:18;;9406:47;9485:3;9470:19;;9082:413::o;9500:407::-;9702:2;9684:21;;;9741:2;9721:18;;;9714:30;9780:34;9775:2;9760:18;;9753:62;-1:-1:-1;;;9846:2:1;9831:18;;9824:41;9897:3;9882:19;;9500:407::o;9912:127::-;9973:10;9968:3;9964:20;9961:1;9954:31;10004:4;10001:1;9994:15;10028:4;10025:1;10018:15;10044:127;10105:10;10100:3;10096:20;10093:1;10086:31;10136:4;10133:1;10126:15;10160:4;10157:1;10150:15;10176:135;10215:3;-1:-1:-1;;10236:17:1;;10233:43;;;10256:18;;:::i;:::-;-1:-1:-1;10303:1:1;10292:13;;10176:135::o;10316:356::-;10518:2;10500:21;;;10537:18;;;10530:30;10596:34;10591:2;10576:18;;10569:62;10663:2;10648:18;;10316:356::o;10887:339::-;11089:2;11071:21;;;11128:2;11108:18;;;11101:30;-1:-1:-1;;;11162:2:1;11147:18;;11140:45;11217:2;11202:18;;10887:339::o;13591:128::-;13631:3;13662:1;13658:6;13655:1;13652:13;13649:39;;;13668:18;;:::i;:::-;-1:-1:-1;13704:9:1;;13591:128::o;17502:185::-;17544:3;17582:5;17576:12;17597:52;17642:6;17637:3;17630:4;17623:5;17619:16;17597:52;:::i;:::-;17665:16;;;;;17502:185;-1:-1:-1;;17502:185:1:o;17692:1174::-;17868:3;17897:1;17930:6;17924:13;17960:3;17982:1;18010:9;18006:2;18002:18;17992:28;;18070:2;18059:9;18055:18;18092;18082:61;;18136:4;18128:6;18124:17;18114:27;;18082:61;18162:2;18210;18202:6;18199:14;18179:18;18176:38;18173:165;;;-1:-1:-1;;;18237:33:1;;18293:4;18290:1;18283:15;18323:4;18244:3;18311:17;18173:165;18354:18;18381:104;;;;18499:1;18494:320;;;;18347:467;;18381:104;-1:-1:-1;;18414:24:1;;18402:37;;18459:16;;;;-1:-1:-1;18381:104:1;;18494:320;17449:1;17442:14;;;17486:4;17473:18;;18589:1;18603:165;18617:6;18614:1;18611:13;18603:165;;;18695:14;;18682:11;;;18675:35;18738:16;;;;18632:10;;18603:165;;;18607:3;;18797:6;18792:3;18788:16;18781:23;;18347:467;;;;;;;18830:30;18856:3;18848:6;18830:30;:::i;:::-;18823:37;17692:1174;-1:-1:-1;;;;;17692:1174:1:o;18871:280::-;18970:6;19023:2;19011:9;19002:7;18998:23;18994:32;18991:52;;;19039:1;19036;19029:12;18991:52;19071:9;19065:16;19090:31;19115:5;19090:31;:::i;20791:168::-;20831:7;20897:1;20893;20889:6;20885:14;20882:1;20879:21;20874:1;20867:9;20860:17;20856:45;20853:71;;;20904:18;;:::i;:::-;-1:-1:-1;20944:9:1;;20791:168::o;20964:127::-;21025:10;21020:3;21016:20;21013:1;21006:31;21056:4;21053:1;21046:15;21080:4;21077:1;21070:15;21096:120;21136:1;21162;21152:35;;21167:18;;:::i;:::-;-1:-1:-1;21201:9:1;;21096:120::o;21221:125::-;21261:4;21289:1;21286;21283:8;21280:34;;;21294:18;;:::i;:::-;-1:-1:-1;21331:9:1;;21221:125::o;21351:414::-;21553:2;21535:21;;;21592:2;21572:18;;;21565:30;21631:34;21626:2;21611:18;;21604:62;-1:-1:-1;;;21697:2:1;21682:18;;21675:48;21755:3;21740:19;;21351:414::o;22069:112::-;22101:1;22127;22117:35;;22132:18;;:::i;:::-;-1:-1:-1;22166:9:1;;22069:112::o;22186:500::-;-1:-1:-1;;;;;22455:15:1;;;22437:34;;22507:15;;22502:2;22487:18;;22480:43;22554:2;22539:18;;22532:34;;;22602:3;22597:2;22582:18;;22575:31;;;22380:4;;22623:57;;22660:19;;22652:6;22623:57;:::i;:::-;22615:65;22186:500;-1:-1:-1;;;;;;22186:500:1:o;22691:249::-;22760:6;22813:2;22801:9;22792:7;22788:23;22784:32;22781:52;;;22829:1;22826;22819:12;22781:52;22861:9;22855:16;22880:30;22904:5;22880:30;:::i
Swarm Source
ipfs://8c584de09f847f651844350a679ff821b425e9b29a9378acbd0e854d1936db6c
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.