ERC-721
Overview
Max Total Supply
68 WATS
Holders
16
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 WATSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
WatNFTs
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-01 */ //SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.19; library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } 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 Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` 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 Solidity's `-` 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 Solidity's `/` 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 Solidity's `%` 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; } } } library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString( uint256 value, uint256 length ) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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() { _setOwner(_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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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); } 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); } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } 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; } 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); } 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); } contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf( address owner ) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf( uint256 tokenId ) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved( uint256 tokenId ) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll( address operator, bool approved ) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll( address owner, address operator ) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner( address spender, uint256 tokenId ) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.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 {} } abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface( bytes4 interfaceId ) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex( address owner, uint256 index ) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex( uint256 index ) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration( address from, uint256 tokenId ) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } } contract WatNFTs is ERC721Enumerable, Ownable, ReentrancyGuard { using Strings for uint256; using SafeMath for uint256; using Counters for Counters.Counter; // Constants string public baseExtension = ".json"; uint256 public cost = 0.015 ether; // Supply uint256 public maxSupply = 3333; uint256 public lastSupply = maxSupply; uint256 public maxMintAmount = 10; // Reflection uint256 public reflectionBalance; uint256 public totalDividend; // Lists uint256[3333] public remainingIds; mapping(uint256 => uint256) public lastDividendAt; mapping(uint256 => address) public minters; // Params bool public paused = true; string private _baseTokenURI; address public FeeReceiver = 0xDD07C23b1a24eE0Fb4fcddCF0C9cb840862b28A2; //Contracts IUniswapV2Router02 public router; IERC20 public token; // Constructor constructor() ERC721("The WAT Pack", "WATS") { _baseTokenURI = "ipfs://QmNnXVWdLL1WASE54UboQUoLDztz8JR4pAk5sii2LneN9E/"; } // URI Handling function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // Setters function setBaseURI(string memory baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseExtension( string memory _newBaseExtension ) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function setFeeReceiver(address _newFeeReceiver) public onlyOwner { FeeReceiver = _newFeeReceiver; } // Minting function mint(uint256 _mintAmount) public payable { // Checks require(!paused, "WatNFTs: minting has not started yet"); require(_mintAmount > 0, "WatNFTs: you have to mint at least one"); require( _mintAmount <= maxMintAmount, "WatNFTs: you can only mint 10 at a time" ); require( lastSupply >= _mintAmount, "WatNFTs: the collection is sold out" ); if (msg.sender != owner()) { require( msg.value >= cost * _mintAmount, "WatNFTs: total cost isn't match" ); } handleMintReward(msg.value); for (uint256 i = 1; i <= _mintAmount; i++) { _randomMint(msg.sender); } } // Give a random NFT to a contest winner function randomGiveaway( address _winner, uint256 _amount ) external onlyOwner { // Checks require(_winner != address(0), "WatNFTs: zero address"); require(_amount > 0, "WatNFTs: you have to mint at least one"); require(lastSupply != 0, "WatNFTs: the collection is sold out"); // Mint random NFTs for a winner for (uint256 i = 1; i <= _amount; i++) { _randomMint(_winner); } } // Random mint function _randomMint( address _target ) internal nonReentrant returns (uint256) { // Get Random id to mint uint256 _index = _getRandom() % lastSupply; uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Save dividend lastDividendAt[_realIndex] = totalDividend; // Mint _safeMint(_target, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; return _realIndex; } function multipleRegularMintsWithRecipients( address[] memory recipients ) external onlyOwner { for (uint256 i = 0; i < recipients.length; i++) { _regularMintWithAddress(recipients[i]); } } function _regularMintWithAddress( address recipient ) internal returns (uint256) { // Get Actual id to mint uint256 _index = totalSupply(); uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Mint _safeMint(recipient, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; // Save dividend lastDividendAt[_realIndex] = totalDividend; return _realIndex; } // Mint for reserved spots function _regularMint() internal returns (uint256) { // Get Actual id to mint uint256 _index = totalSupply(); uint256 _realIndex = getValue(_index) + 1; // Reduce supply lastSupply--; // Replace used id by last remainingIds[_index] = getValue(lastSupply); // Mint _safeMint(msg.sender, _realIndex); // Save Original minters minters[_realIndex] = msg.sender; // Save dividend lastDividendAt[_realIndex] = totalDividend; return _realIndex; } // Get Token List function getTokenIds( address _owner ) public view returns (uint256[] memory) { // Count owned Token uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); // Get ids of owned Token for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } // Return compiled Token URI function tokenURI( uint256 _id ) public view virtual override returns (string memory) { require(_exists(_id), "WatNFTs: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, _id.toString(), baseExtension ) ) : ""; } // Reflections function handleMintReward(uint256 _amount) private { payable(FeeReceiver).transfer(_amount); } // Get value from a remaining id node function getValue(uint256 _index) internal view returns (uint256) { if (remainingIds[_index] != 0) return remainingIds[_index]; else return _index; } // Create a random id for minting function _getRandom() internal view returns (uint256) { return uint256( keccak256( abi.encodePacked( block.prevrandao, block.timestamp, lastSupply ) ) ); } }
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":"FeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"","type":"uint256"}],"name":"lastDividendAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"multipleRegularMintsWithRecipients","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_winner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"randomGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"remainingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608090815264173539b7b760d91b60a052600c9062000026908262000234565b5066354a6ba7a18000600d55610d05600e819055600f55600a601055610d1a805460ff19166001179055610d1c80546001600160a01b03191673dd07c23b1a24ee0fb4fcddcf0c9cb840862b28a21790553480156200008457600080fd5b506040518060400160405280600c81526020016b54686520574154205061636b60a01b815250604051806040016040528060048152602001635741545360e01b8152508160009081620000d8919062000234565b506001620000e7828262000234565b50505062000104620000fe6200013960201b60201c565b6200013d565b6001600b556040805160608101909152603680825262002d306020830139610d1b9062000132908262000234565b5062000300565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001ba57607f821691505b602082108103620001db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022f57600081815260208120601f850160051c810160208610156200020a5750805b601f850160051c820191505b818110156200022b5782815560010162000216565b5050505b505050565b81516001600160401b038111156200025057620002506200018f565b6200026881620002618454620001a5565b84620001e1565b602080601f831160018114620002a05760008415620002875750858301515b600019600386901b1c1916600185901b1785556200022b565b600085815260208120601f198616915b82811015620002d157888601518255948401946001909101908401620002b0565b5085821015620002f05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612a2080620003106000396000f3fe60806040526004361061025b5760003560e01c8063715018a611610144578063d004b036116100b6578063ee6d9d6d1161007a578063ee6d9d6d14610729578063efdcd97414610749578063f2fde38b14610769578063f75b8c5f14610789578063f887ea401461079f578063fc0c546a146107c057600080fd5b8063d004b0361461064f578063d20688571461067c578063d5abeb01146106aa578063da3ef23f146106c0578063e985e9c5146106e057600080fd5b8063a0712d6811610108578063a0712d68146105a7578063a22cb465146105ba578063b3ef77f2146105da578063b88d4fde146105fa578063c66828621461061a578063c87b56dd1461062f57600080fd5b8063715018a6146105085780637f00c7a61461051d5780638623ec7b1461053d5780638da5cb5b1461057457806395d89b411461059257600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461044d57806355f804b31461046d5780635c975abb1461048d5780636352211e146104a8578063639ec300146104c857806370a08231146104e857600080fd5b80632f745c59146103c15780634131ff99146103e157806342842e0e146103f757806344a0d68a146104175780634b6acafb1461043757600080fd5b8063095ea7b311610224578063095ea7b31461033257806313faede61461035257806318160ddd14610376578063239c70ae1461038b57806323b872dd146103a157600080fd5b80620251641461026057806301ffc9a71461029e57806302329a29146102ce57806306fdde03146102f0578063081812fc14610312575b600080fd5b34801561026c57600080fd5b50610d1c54610281906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b936600461214c565b6107e1565b6040519015158152602001610295565b3480156102da57600080fd5b506102ee6102e9366004612179565b61080c565b005b3480156102fc57600080fd5b50610305610853565b60405161029591906121e4565b34801561031e57600080fd5b5061028161032d3660046121f7565b6108e5565b34801561033e57600080fd5b506102ee61034d366004612227565b61097a565b34801561035e57600080fd5b50610368600d5481565b604051908152602001610295565b34801561038257600080fd5b50600854610368565b34801561039757600080fd5b5061036860105481565b3480156103ad57600080fd5b506102ee6103bc366004612251565b610a8f565b3480156103cd57600080fd5b506103686103dc366004612227565b610ac0565b3480156103ed57600080fd5b5061036860115481565b34801561040357600080fd5b506102ee610412366004612251565b610b56565b34801561042357600080fd5b506102ee6104323660046121f7565b610b71565b34801561044357600080fd5b5061036860125481565b34801561045957600080fd5b506103686104683660046121f7565b610ba0565b34801561047957600080fd5b506102ee61048836600461232c565b610c33565b34801561049957600080fd5b50610d1a546102be9060ff1681565b3480156104b457600080fd5b506102816104c33660046121f7565b610c6e565b3480156104d457600080fd5b506102ee6104e3366004612375565b610ce5565b3480156104f457600080fd5b50610368610503366004612422565b610d50565b34801561051457600080fd5b506102ee610dd7565b34801561052957600080fd5b506102ee6105383660046121f7565b610e0d565b34801561054957600080fd5b506102816105583660046121f7565b610d19602052600090815260409020546001600160a01b031681565b34801561058057600080fd5b50600a546001600160a01b0316610281565b34801561059e57600080fd5b50610305610e3c565b6102ee6105b53660046121f7565b610e4b565b3480156105c657600080fd5b506102ee6105d536600461243d565b610fed565b3480156105e657600080fd5b506102ee6105f5366004612227565b6110b1565b34801561060657600080fd5b506102ee610615366004612470565b611191565b34801561062657600080fd5b506103056111c9565b34801561063b57600080fd5b5061030561064a3660046121f7565b611257565b34801561065b57600080fd5b5061066f61066a366004612422565b61132e565b60405161029591906124ec565b34801561068857600080fd5b506103686106973660046121f7565b610d186020526000908152604090205481565b3480156106b657600080fd5b50610368600e5481565b3480156106cc57600080fd5b506102ee6106db36600461232c565b6113d0565b3480156106ec57600080fd5b506102be6106fb366004612530565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073557600080fd5b506103686107443660046121f7565b611406565b34801561075557600080fd5b506102ee610764366004612422565b61141e565b34801561077557600080fd5b506102ee610784366004612422565b61146b565b34801561079557600080fd5b50610368600f5481565b3480156107ab57600080fd5b50610d1d54610281906001600160a01b031681565b3480156107cc57600080fd5b50610d1e54610281906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b1480610806575061080682611506565b92915050565b600a546001600160a01b0316331461083f5760405162461bcd60e51b81526004016108369061255a565b60405180910390fd5b610d1a805460ff1916911515919091179055565b6060600080546108629061258f565b80601f016020809104026020016040519081016040528092919081815260200182805461088e9061258f565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610836565b506000908152600460205260409020546001600160a01b031690565b600061098582610c6e565b9050806001600160a01b0316836001600160a01b0316036109f25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610836565b336001600160a01b0382161480610a0e5750610a0e81336106fb565b610a805760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610836565b610a8a8383611556565b505050565b610a9933826115c4565b610ab55760405162461bcd60e51b8152600401610836906125c9565b610a8a8383836116bb565b6000610acb83610d50565b8210610b2d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610836565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a8a83838360405180602001604052806000815250611191565b600a546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016108369061255a565b600d55565b6000610bab60085490565b8210610c0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610836565b60088281548110610c2157610c2161261a565b90600052602060002001549050919050565b600a546001600160a01b03163314610c5d5760405162461bcd60e51b81526004016108369061255a565b610d1b610c6a828261267e565b5050565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610836565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016108369061255a565b60005b8151811015610c6a57610d3d828281518110610d3057610d3061261a565b6020026020010151611866565b5080610d4881612754565b915050610d12565b60006001600160a01b038216610dbb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610836565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e015760405162461bcd60e51b81526004016108369061255a565b610e0b6000611902565b565b600a546001600160a01b03163314610e375760405162461bcd60e51b81526004016108369061255a565b601055565b6060600180546108629061258f565b610d1a5460ff1615610eab5760405162461bcd60e51b8152602060048201526024808201527f5761744e4654733a206d696e74696e6720686173206e6f742073746172746564604482015263081e595d60e21b6064820152608401610836565b60008111610ecb5760405162461bcd60e51b81526004016108369061276d565b601054811115610f2d5760405162461bcd60e51b815260206004820152602760248201527f5761744e4654733a20796f752063616e206f6e6c79206d696e7420313020617460448201526620612074696d6560c81b6064820152608401610836565b80600f541015610f4f5760405162461bcd60e51b8152600401610836906127b3565b600a546001600160a01b03163314610fbe5780600d54610f6f91906127f6565b341015610fbe5760405162461bcd60e51b815260206004820152601f60248201527f5761744e4654733a20746f74616c20636f73742069736e2774206d61746368006044820152606401610836565b610fc734611954565b60015b818111610c6a57610fda3361198f565b5080610fe581612754565b915050610fca565b336001600160a01b038316036110455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610836565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146110db5760405162461bcd60e51b81526004016108369061255a565b6001600160a01b0382166111295760405162461bcd60e51b81526020600482015260156024820152745761744e4654733a207a65726f206164647265737360581b6044820152606401610836565b600081116111495760405162461bcd60e51b81526004016108369061276d565b600f5460000361116b5760405162461bcd60e51b8152600401610836906127b3565b60015b818111610a8a5761117e8361198f565b508061118981612754565b91505061116e565b61119b33836115c4565b6111b75760405162461bcd60e51b8152600401610836906125c9565b6111c384848484611a78565b50505050565b600c80546111d69061258f565b80601f01602080910402602001604051908101604052809291908181526020018280546112029061258f565b801561124f5780601f106112245761010080835404028352916020019161124f565b820191906000526020600020905b81548152906001019060200180831161123257829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166112cf5760405162461bcd60e51b815260206004820152602860248201527f5761744e4654733a2055524920717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b6064820152608401610836565b60006112d9611aab565b905060008151116112f95760405180602001604052806000815250611327565b8061130384611abb565b600c6040516020016113179392919061280d565b6040516020818303038152906040525b9392505050565b6060600061133b83610d50565b905060008167ffffffffffffffff8111156113585761135861228d565b604051908082528060200260200182016040528015611381578160200160208202803683370190505b50905060005b828110156113c8576113998582610ac0565b8282815181106113ab576113ab61261a565b6020908102919091010152806113c081612754565b915050611387565b509392505050565b600a546001600160a01b031633146113fa5760405162461bcd60e51b81526004016108369061255a565b600c610c6a828261267e565b601381610d05811061141757600080fd5b0154905081565b600a546001600160a01b031633146114485760405162461bcd60e51b81526004016108369061255a565b610d1c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114955760405162461bcd60e51b81526004016108369061255a565b6001600160a01b0381166114fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610836565b61150381611902565b50565b60006001600160e01b031982166380ac58cd60e01b148061153757506001600160e01b03198216635b5e139f60e01b145b8061080657506301ffc9a760e01b6001600160e01b0319831614610806565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061158b82610c6e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661163d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610836565b600061164883610c6e565b9050806001600160a01b0316846001600160a01b031614806116835750836001600160a01b0316611678846108e5565b6001600160a01b0316145b806116b357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ce82610c6e565b6001600160a01b0316146117365760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610836565b6001600160a01b0382166117985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610836565b6117a3838383611bbc565b6117ae600082611556565b6001600160a01b03831660009081526003602052604081208054600192906117d79084906128ad565b90915550506001600160a01b03821660009081526003602052604081208054600192906118059084906128c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061187260085490565b9050600061187f82611c74565b61188a9060016128c0565b600f8054919250600061189c836128d3565b91905055506118ac600f54611c74565b601383610d0581106118c0576118c061261a565b01556118cc8482611cb1565b6000818152610d196020908152604080832080546001600160a01b03191633179055601254610d18909252909120559392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d1c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c6a573d6000803e3d6000fd5b6000611999611ccb565b600f5460408051446020808301919091524282840152606080830185905283518084039091018152608090920190925280519101206000916119da91612900565b905060006119e782611c74565b6119f29060016128c0565b600f80549192506000611a04836128d3565b9190505550611a14600f54611c74565b601383610d058110611a2857611a2861261a565b01556012546000828152610d186020526040902055611a478482611cb1565b6000818152610d196020526040902080546001600160a01b03191633179055915050611a736001600b55565b919050565b611a838484846116bb565b611a8f84848484611d24565b6111c35760405162461bcd60e51b815260040161083690612914565b6060610d1b80546108629061258f565b606081600003611ae25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b0c5780611af681612754565b9150611b059050600a83612966565b9150611ae6565b60008167ffffffffffffffff811115611b2757611b2761228d565b6040519080825280601f01601f191660200182016040528015611b51576020820181803683370190505b5090505b84156116b357611b666001836128ad565b9150611b73600a86612900565b611b7e9060306128c0565b60f81b818381518110611b9357611b9361261a565b60200101906001600160f81b031916908160001a905350611bb5600a86612966565b9450611b55565b6001600160a01b038316611c1757611c1281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c3a565b816001600160a01b0316836001600160a01b031614611c3a57611c3a8382611e25565b6001600160a01b038216611c5157610a8a81611ec2565b826001600160a01b0316826001600160a01b031614610a8a57610a8a8282611f71565b6000601382610d058110611c8a57611c8a61261a565b015415611cad57601382610d058110611ca557611ca561261a565b015492915050565b5090565b610c6a828260405180602001604052806000815250611fb5565b6002600b5403611d1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610836565b6002600b55565b60006001600160a01b0384163b15611e1a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6890339089908890889060040161297a565b6020604051808303816000875af1925050508015611da3575060408051601f3d908101601f19168201909252611da0918101906129b7565b60015b611e00573d808015611dd1576040519150601f19603f3d011682016040523d82523d6000602084013e611dd6565b606091505b508051600003611df85760405162461bcd60e51b815260040161083690612914565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b3565b506001949350505050565b60006001611e3284610d50565b611e3c91906128ad565b600083815260076020526040902054909150808214611e8f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ed4906001906128ad565b60008381526009602052604081205460088054939450909284908110611efc57611efc61261a565b906000526020600020015490508060088381548110611f1d57611f1d61261a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5557611f556129d4565b6001900381819060005260206000200160009055905550505050565b6000611f7c83610d50565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611fbf8383611fe8565b611fcc6000848484611d24565b610a8a5760405162461bcd60e51b815260040161083690612914565b6001600160a01b03821661203e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610836565b6000818152600260205260409020546001600160a01b0316156120a35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610836565b6120af60008383611bbc565b6001600160a01b03821660009081526003602052604081208054600192906120d89084906128c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461150357600080fd5b60006020828403121561215e57600080fd5b813561132781612136565b80358015158114611a7357600080fd5b60006020828403121561218b57600080fd5b61132782612169565b60005b838110156121af578181015183820152602001612197565b50506000910152565b600081518084526121d0816020860160208601612194565b601f01601f19169290920160200192915050565b60208152600061132760208301846121b8565b60006020828403121561220957600080fd5b5035919050565b80356001600160a01b0381168114611a7357600080fd5b6000806040838503121561223a57600080fd5b61224383612210565b946020939093013593505050565b60008060006060848603121561226657600080fd5b61226f84612210565b925061227d60208501612210565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122cc576122cc61228d565b604052919050565b600067ffffffffffffffff8311156122ee576122ee61228d565b612301601f8401601f19166020016122a3565b905082815283838301111561231557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561233e57600080fd5b813567ffffffffffffffff81111561235557600080fd5b8201601f8101841361236657600080fd5b6116b3848235602084016122d4565b6000602080838503121561238857600080fd5b823567ffffffffffffffff808211156123a057600080fd5b818501915085601f8301126123b457600080fd5b8135818111156123c6576123c661228d565b8060051b91506123d78483016122a3565b81815291830184019184810190888411156123f157600080fd5b938501935b838510156124165761240785612210565b825293850193908501906123f6565b98975050505050505050565b60006020828403121561243457600080fd5b61132782612210565b6000806040838503121561245057600080fd5b61245983612210565b915061246760208401612169565b90509250929050565b6000806000806080858703121561248657600080fd5b61248f85612210565b935061249d60208601612210565b925060408501359150606085013567ffffffffffffffff8111156124c057600080fd5b8501601f810187136124d157600080fd5b6124e0878235602084016122d4565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561252457835183529284019291840191600101612508565b50909695505050505050565b6000806040838503121561254357600080fd5b61254c83612210565b915061246760208401612210565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806125a357607f821691505b6020821081036125c357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f821115610a8a57600081815260208120601f850160051c810160208610156126575750805b601f850160051c820191505b8181101561267657828155600101612663565b505050505050565b815167ffffffffffffffff8111156126985761269861228d565b6126ac816126a6845461258f565b84612630565b602080601f8311600181146126e157600084156126c95750858301515b600019600386901b1c1916600185901b178555612676565b600085815260208120601f198616915b82811015612710578886015182559484019460019091019084016126f1565b508582101561272e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000600182016127665761276661273e565b5060010190565b60208082526026908201527f5761744e4654733a20796f75206861766520746f206d696e74206174206c65616040820152657374206f6e6560d01b606082015260800190565b60208082526023908201527f5761744e4654733a2074686520636f6c6c656374696f6e20697320736f6c64206040820152621bdd5d60ea1b606082015260800190565b80820281158282048414176108065761080661273e565b6000845160206128208285838a01612194565b8551918401916128338184848a01612194565b85549201916000906128448161258f565b6001828116801561285c57600181146128715761289d565b60ff198416875282151583028701945061289d565b896000528560002060005b848110156128955781548982015290830190870161287c565b505082870194505b50929a9950505050505050505050565b818103818111156108065761080661273e565b808201808211156108065761080661273e565b6000816128e2576128e261273e565b506000190190565b634e487b7160e01b600052601260045260246000fd5b60008261290f5761290f6128ea565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612975576129756128ea565b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ad908301846121b8565b9695505050505050565b6000602082840312156129c957600080fd5b815161132781612136565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b27a405778a445980deef75605359d99950a75f345218d3f8db0d900fcf96d9e64736f6c63430008130033697066733a2f2f516d4e6e585657644c4c3157415345353455626f51556f4c447a747a384a523470416b35736969324c6e654e39452f
Deployed Bytecode
0x60806040526004361061025b5760003560e01c8063715018a611610144578063d004b036116100b6578063ee6d9d6d1161007a578063ee6d9d6d14610729578063efdcd97414610749578063f2fde38b14610769578063f75b8c5f14610789578063f887ea401461079f578063fc0c546a146107c057600080fd5b8063d004b0361461064f578063d20688571461067c578063d5abeb01146106aa578063da3ef23f146106c0578063e985e9c5146106e057600080fd5b8063a0712d6811610108578063a0712d68146105a7578063a22cb465146105ba578063b3ef77f2146105da578063b88d4fde146105fa578063c66828621461061a578063c87b56dd1461062f57600080fd5b8063715018a6146105085780637f00c7a61461051d5780638623ec7b1461053d5780638da5cb5b1461057457806395d89b411461059257600080fd5b80632f745c59116101dd5780634f6ccce7116101a15780634f6ccce71461044d57806355f804b31461046d5780635c975abb1461048d5780636352211e146104a8578063639ec300146104c857806370a08231146104e857600080fd5b80632f745c59146103c15780634131ff99146103e157806342842e0e146103f757806344a0d68a146104175780634b6acafb1461043757600080fd5b8063095ea7b311610224578063095ea7b31461033257806313faede61461035257806318160ddd14610376578063239c70ae1461038b57806323b872dd146103a157600080fd5b80620251641461026057806301ffc9a71461029e57806302329a29146102ce57806306fdde03146102f0578063081812fc14610312575b600080fd5b34801561026c57600080fd5b50610d1c54610281906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102aa57600080fd5b506102be6102b936600461214c565b6107e1565b6040519015158152602001610295565b3480156102da57600080fd5b506102ee6102e9366004612179565b61080c565b005b3480156102fc57600080fd5b50610305610853565b60405161029591906121e4565b34801561031e57600080fd5b5061028161032d3660046121f7565b6108e5565b34801561033e57600080fd5b506102ee61034d366004612227565b61097a565b34801561035e57600080fd5b50610368600d5481565b604051908152602001610295565b34801561038257600080fd5b50600854610368565b34801561039757600080fd5b5061036860105481565b3480156103ad57600080fd5b506102ee6103bc366004612251565b610a8f565b3480156103cd57600080fd5b506103686103dc366004612227565b610ac0565b3480156103ed57600080fd5b5061036860115481565b34801561040357600080fd5b506102ee610412366004612251565b610b56565b34801561042357600080fd5b506102ee6104323660046121f7565b610b71565b34801561044357600080fd5b5061036860125481565b34801561045957600080fd5b506103686104683660046121f7565b610ba0565b34801561047957600080fd5b506102ee61048836600461232c565b610c33565b34801561049957600080fd5b50610d1a546102be9060ff1681565b3480156104b457600080fd5b506102816104c33660046121f7565b610c6e565b3480156104d457600080fd5b506102ee6104e3366004612375565b610ce5565b3480156104f457600080fd5b50610368610503366004612422565b610d50565b34801561051457600080fd5b506102ee610dd7565b34801561052957600080fd5b506102ee6105383660046121f7565b610e0d565b34801561054957600080fd5b506102816105583660046121f7565b610d19602052600090815260409020546001600160a01b031681565b34801561058057600080fd5b50600a546001600160a01b0316610281565b34801561059e57600080fd5b50610305610e3c565b6102ee6105b53660046121f7565b610e4b565b3480156105c657600080fd5b506102ee6105d536600461243d565b610fed565b3480156105e657600080fd5b506102ee6105f5366004612227565b6110b1565b34801561060657600080fd5b506102ee610615366004612470565b611191565b34801561062657600080fd5b506103056111c9565b34801561063b57600080fd5b5061030561064a3660046121f7565b611257565b34801561065b57600080fd5b5061066f61066a366004612422565b61132e565b60405161029591906124ec565b34801561068857600080fd5b506103686106973660046121f7565b610d186020526000908152604090205481565b3480156106b657600080fd5b50610368600e5481565b3480156106cc57600080fd5b506102ee6106db36600461232c565b6113d0565b3480156106ec57600080fd5b506102be6106fb366004612530565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073557600080fd5b506103686107443660046121f7565b611406565b34801561075557600080fd5b506102ee610764366004612422565b61141e565b34801561077557600080fd5b506102ee610784366004612422565b61146b565b34801561079557600080fd5b50610368600f5481565b3480156107ab57600080fd5b50610d1d54610281906001600160a01b031681565b3480156107cc57600080fd5b50610d1e54610281906001600160a01b031681565b60006001600160e01b0319821663780e9d6360e01b1480610806575061080682611506565b92915050565b600a546001600160a01b0316331461083f5760405162461bcd60e51b81526004016108369061255a565b60405180910390fd5b610d1a805460ff1916911515919091179055565b6060600080546108629061258f565b80601f016020809104026020016040519081016040528092919081815260200182805461088e9061258f565b80156108db5780601f106108b0576101008083540402835291602001916108db565b820191906000526020600020905b8154815290600101906020018083116108be57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661095e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610836565b506000908152600460205260409020546001600160a01b031690565b600061098582610c6e565b9050806001600160a01b0316836001600160a01b0316036109f25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610836565b336001600160a01b0382161480610a0e5750610a0e81336106fb565b610a805760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610836565b610a8a8383611556565b505050565b610a9933826115c4565b610ab55760405162461bcd60e51b8152600401610836906125c9565b610a8a8383836116bb565b6000610acb83610d50565b8210610b2d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610836565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610a8a83838360405180602001604052806000815250611191565b600a546001600160a01b03163314610b9b5760405162461bcd60e51b81526004016108369061255a565b600d55565b6000610bab60085490565b8210610c0e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610836565b60088281548110610c2157610c2161261a565b90600052602060002001549050919050565b600a546001600160a01b03163314610c5d5760405162461bcd60e51b81526004016108369061255a565b610d1b610c6a828261267e565b5050565b6000818152600260205260408120546001600160a01b0316806108065760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610836565b600a546001600160a01b03163314610d0f5760405162461bcd60e51b81526004016108369061255a565b60005b8151811015610c6a57610d3d828281518110610d3057610d3061261a565b6020026020010151611866565b5080610d4881612754565b915050610d12565b60006001600160a01b038216610dbb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610836565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e015760405162461bcd60e51b81526004016108369061255a565b610e0b6000611902565b565b600a546001600160a01b03163314610e375760405162461bcd60e51b81526004016108369061255a565b601055565b6060600180546108629061258f565b610d1a5460ff1615610eab5760405162461bcd60e51b8152602060048201526024808201527f5761744e4654733a206d696e74696e6720686173206e6f742073746172746564604482015263081e595d60e21b6064820152608401610836565b60008111610ecb5760405162461bcd60e51b81526004016108369061276d565b601054811115610f2d5760405162461bcd60e51b815260206004820152602760248201527f5761744e4654733a20796f752063616e206f6e6c79206d696e7420313020617460448201526620612074696d6560c81b6064820152608401610836565b80600f541015610f4f5760405162461bcd60e51b8152600401610836906127b3565b600a546001600160a01b03163314610fbe5780600d54610f6f91906127f6565b341015610fbe5760405162461bcd60e51b815260206004820152601f60248201527f5761744e4654733a20746f74616c20636f73742069736e2774206d61746368006044820152606401610836565b610fc734611954565b60015b818111610c6a57610fda3361198f565b5080610fe581612754565b915050610fca565b336001600160a01b038316036110455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610836565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146110db5760405162461bcd60e51b81526004016108369061255a565b6001600160a01b0382166111295760405162461bcd60e51b81526020600482015260156024820152745761744e4654733a207a65726f206164647265737360581b6044820152606401610836565b600081116111495760405162461bcd60e51b81526004016108369061276d565b600f5460000361116b5760405162461bcd60e51b8152600401610836906127b3565b60015b818111610a8a5761117e8361198f565b508061118981612754565b91505061116e565b61119b33836115c4565b6111b75760405162461bcd60e51b8152600401610836906125c9565b6111c384848484611a78565b50505050565b600c80546111d69061258f565b80601f01602080910402602001604051908101604052809291908181526020018280546112029061258f565b801561124f5780601f106112245761010080835404028352916020019161124f565b820191906000526020600020905b81548152906001019060200180831161123257829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166112cf5760405162461bcd60e51b815260206004820152602860248201527f5761744e4654733a2055524920717565727920666f72206e6f6e657869737465604482015267373a103a37b5b2b760c11b6064820152608401610836565b60006112d9611aab565b905060008151116112f95760405180602001604052806000815250611327565b8061130384611abb565b600c6040516020016113179392919061280d565b6040516020818303038152906040525b9392505050565b6060600061133b83610d50565b905060008167ffffffffffffffff8111156113585761135861228d565b604051908082528060200260200182016040528015611381578160200160208202803683370190505b50905060005b828110156113c8576113998582610ac0565b8282815181106113ab576113ab61261a565b6020908102919091010152806113c081612754565b915050611387565b509392505050565b600a546001600160a01b031633146113fa5760405162461bcd60e51b81526004016108369061255a565b600c610c6a828261267e565b601381610d05811061141757600080fd5b0154905081565b600a546001600160a01b031633146114485760405162461bcd60e51b81526004016108369061255a565b610d1c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146114955760405162461bcd60e51b81526004016108369061255a565b6001600160a01b0381166114fa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610836565b61150381611902565b50565b60006001600160e01b031982166380ac58cd60e01b148061153757506001600160e01b03198216635b5e139f60e01b145b8061080657506301ffc9a760e01b6001600160e01b0319831614610806565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061158b82610c6e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661163d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610836565b600061164883610c6e565b9050806001600160a01b0316846001600160a01b031614806116835750836001600160a01b0316611678846108e5565b6001600160a01b0316145b806116b357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ce82610c6e565b6001600160a01b0316146117365760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610836565b6001600160a01b0382166117985760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610836565b6117a3838383611bbc565b6117ae600082611556565b6001600160a01b03831660009081526003602052604081208054600192906117d79084906128ad565b90915550506001600160a01b03821660009081526003602052604081208054600192906118059084906128c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008061187260085490565b9050600061187f82611c74565b61188a9060016128c0565b600f8054919250600061189c836128d3565b91905055506118ac600f54611c74565b601383610d0581106118c0576118c061261a565b01556118cc8482611cb1565b6000818152610d196020908152604080832080546001600160a01b03191633179055601254610d18909252909120559392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d1c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610c6a573d6000803e3d6000fd5b6000611999611ccb565b600f5460408051446020808301919091524282840152606080830185905283518084039091018152608090920190925280519101206000916119da91612900565b905060006119e782611c74565b6119f29060016128c0565b600f80549192506000611a04836128d3565b9190505550611a14600f54611c74565b601383610d058110611a2857611a2861261a565b01556012546000828152610d186020526040902055611a478482611cb1565b6000818152610d196020526040902080546001600160a01b03191633179055915050611a736001600b55565b919050565b611a838484846116bb565b611a8f84848484611d24565b6111c35760405162461bcd60e51b815260040161083690612914565b6060610d1b80546108629061258f565b606081600003611ae25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b0c5780611af681612754565b9150611b059050600a83612966565b9150611ae6565b60008167ffffffffffffffff811115611b2757611b2761228d565b6040519080825280601f01601f191660200182016040528015611b51576020820181803683370190505b5090505b84156116b357611b666001836128ad565b9150611b73600a86612900565b611b7e9060306128c0565b60f81b818381518110611b9357611b9361261a565b60200101906001600160f81b031916908160001a905350611bb5600a86612966565b9450611b55565b6001600160a01b038316611c1757611c1281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c3a565b816001600160a01b0316836001600160a01b031614611c3a57611c3a8382611e25565b6001600160a01b038216611c5157610a8a81611ec2565b826001600160a01b0316826001600160a01b031614610a8a57610a8a8282611f71565b6000601382610d058110611c8a57611c8a61261a565b015415611cad57601382610d058110611ca557611ca561261a565b015492915050565b5090565b610c6a828260405180602001604052806000815250611fb5565b6002600b5403611d1d5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610836565b6002600b55565b60006001600160a01b0384163b15611e1a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6890339089908890889060040161297a565b6020604051808303816000875af1925050508015611da3575060408051601f3d908101601f19168201909252611da0918101906129b7565b60015b611e00573d808015611dd1576040519150601f19603f3d011682016040523d82523d6000602084013e611dd6565b606091505b508051600003611df85760405162461bcd60e51b815260040161083690612914565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116b3565b506001949350505050565b60006001611e3284610d50565b611e3c91906128ad565b600083815260076020526040902054909150808214611e8f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611ed4906001906128ad565b60008381526009602052604081205460088054939450909284908110611efc57611efc61261a565b906000526020600020015490508060088381548110611f1d57611f1d61261a565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5557611f556129d4565b6001900381819060005260206000200160009055905550505050565b6000611f7c83610d50565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611fbf8383611fe8565b611fcc6000848484611d24565b610a8a5760405162461bcd60e51b815260040161083690612914565b6001600160a01b03821661203e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610836565b6000818152600260205260409020546001600160a01b0316156120a35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610836565b6120af60008383611bbc565b6001600160a01b03821660009081526003602052604081208054600192906120d89084906128c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b03198116811461150357600080fd5b60006020828403121561215e57600080fd5b813561132781612136565b80358015158114611a7357600080fd5b60006020828403121561218b57600080fd5b61132782612169565b60005b838110156121af578181015183820152602001612197565b50506000910152565b600081518084526121d0816020860160208601612194565b601f01601f19169290920160200192915050565b60208152600061132760208301846121b8565b60006020828403121561220957600080fd5b5035919050565b80356001600160a01b0381168114611a7357600080fd5b6000806040838503121561223a57600080fd5b61224383612210565b946020939093013593505050565b60008060006060848603121561226657600080fd5b61226f84612210565b925061227d60208501612210565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122cc576122cc61228d565b604052919050565b600067ffffffffffffffff8311156122ee576122ee61228d565b612301601f8401601f19166020016122a3565b905082815283838301111561231557600080fd5b828260208301376000602084830101529392505050565b60006020828403121561233e57600080fd5b813567ffffffffffffffff81111561235557600080fd5b8201601f8101841361236657600080fd5b6116b3848235602084016122d4565b6000602080838503121561238857600080fd5b823567ffffffffffffffff808211156123a057600080fd5b818501915085601f8301126123b457600080fd5b8135818111156123c6576123c661228d565b8060051b91506123d78483016122a3565b81815291830184019184810190888411156123f157600080fd5b938501935b838510156124165761240785612210565b825293850193908501906123f6565b98975050505050505050565b60006020828403121561243457600080fd5b61132782612210565b6000806040838503121561245057600080fd5b61245983612210565b915061246760208401612169565b90509250929050565b6000806000806080858703121561248657600080fd5b61248f85612210565b935061249d60208601612210565b925060408501359150606085013567ffffffffffffffff8111156124c057600080fd5b8501601f810187136124d157600080fd5b6124e0878235602084016122d4565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561252457835183529284019291840191600101612508565b50909695505050505050565b6000806040838503121561254357600080fd5b61254c83612210565b915061246760208401612210565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806125a357607f821691505b6020821081036125c357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f821115610a8a57600081815260208120601f850160051c810160208610156126575750805b601f850160051c820191505b8181101561267657828155600101612663565b505050505050565b815167ffffffffffffffff8111156126985761269861228d565b6126ac816126a6845461258f565b84612630565b602080601f8311600181146126e157600084156126c95750858301515b600019600386901b1c1916600185901b178555612676565b600085815260208120601f198616915b82811015612710578886015182559484019460019091019084016126f1565b508582101561272e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b6000600182016127665761276661273e565b5060010190565b60208082526026908201527f5761744e4654733a20796f75206861766520746f206d696e74206174206c65616040820152657374206f6e6560d01b606082015260800190565b60208082526023908201527f5761744e4654733a2074686520636f6c6c656374696f6e20697320736f6c64206040820152621bdd5d60ea1b606082015260800190565b80820281158282048414176108065761080661273e565b6000845160206128208285838a01612194565b8551918401916128338184848a01612194565b85549201916000906128448161258f565b6001828116801561285c57600181146128715761289d565b60ff198416875282151583028701945061289d565b896000528560002060005b848110156128955781548982015290830190870161287c565b505082870194505b50929a9950505050505050505050565b818103818111156108065761080661273e565b808201808211156108065761080661273e565b6000816128e2576128e261273e565b506000190190565b634e487b7160e01b600052601260045260246000fd5b60008261290f5761290f6128ea565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612975576129756128ea565b500490565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ad908301846121b8565b9695505050505050565b6000602082840312156129c957600080fd5b815161132781612136565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220b27a405778a445980deef75605359d99950a75f345218d3f8db0d900fcf96d9e64736f6c63430008130033
Deployed Bytecode Sourcemap
57421:7256:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58199:71;;;;;;;;;;-1:-1:-1;58199:71:0;;;;-1:-1:-1;;;;;58199:71:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;58199:71:0;;;;;;;;41972:266;;;;;;;;;;-1:-1:-1;41972:266:0;;;;;:::i;:::-;;:::i;:::-;;;773:14:1;;766:22;748:41;;736:2;721:18;41972:266:0;608:187:1;59176:79:0;;;;;;;;;;-1:-1:-1;59176:79:0;;;;;:::i;:::-;;:::i;:::-;;29565:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31224:274::-;;;;;;;;;;-1:-1:-1;31224:274:0;;;;;:::i;:::-;;:::i;30747:411::-;;;;;;;;;;-1:-1:-1;30747:411:0;;;;;:::i;:::-;;:::i;57678:33::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;57678:33:0;2528:177:1;42716:113:0;;;;;;;;;;-1:-1:-1;42804:10:0;:17;42716:113;;57817:33;;;;;;;;;;;;;;;;32217:376;;;;;;;;;;-1:-1:-1;32217:376:0;;;;;:::i;:::-;;:::i;42322:318::-;;;;;;;;;;-1:-1:-1;42322:318:0;;;;;:::i;:::-;;:::i;57878:32::-;;;;;;;;;;;;;;;;32664:185;;;;;;;;;;-1:-1:-1;32664:185:0;;;;;:::i;:::-;;:::i;58800:86::-;;;;;;;;;;-1:-1:-1;58800:86:0;;;;;:::i;:::-;;:::i;57917:28::-;;;;;;;;;;;;;;;;42906:286;;;;;;;;;;-1:-1:-1;42906:286:0;;;;;:::i;:::-;;:::i;58688:104::-;;;;;;;;;;-1:-1:-1;58688:104:0;;;;;:::i;:::-;;:::i;58130:25::-;;;;;;;;;;-1:-1:-1;58130:25:0;;;;;;;;29206:292;;;;;;;;;;-1:-1:-1;29206:292:0;;;;;:::i;:::-;;:::i;61392:239::-;;;;;;;;;;-1:-1:-1;61392:239:0;;;;;:::i;:::-;;:::i;28883:261::-;;;;;;;;;;-1:-1:-1;28883:261:0;;;;;:::i;:::-;;:::i;11013:94::-;;;;;;;;;;;;;:::i;58894:122::-;;;;;;;;;;-1:-1:-1;58894:122:0;;;;;:::i;:::-;;:::i;58064:42::-;;;;;;;;;;-1:-1:-1;58064:42:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;58064:42:0;;;10362:87;;;;;;;;;;-1:-1:-1;10435:6:0;;-1:-1:-1;;;;;10435:6:0;10362:87;;29734:104;;;;;;;;;;;;;:::i;59401:799::-;;;;;;:::i;:::-;;:::i;31570:320::-;;;;;;;;;;-1:-1:-1;31570:320:0;;;;;:::i;:::-;;:::i;60254:480::-;;;;;;;;;;-1:-1:-1;60254:480:0;;;;;:::i;:::-;;:::i;32920:365::-;;;;;;;;;;-1:-1:-1;32920:365:0;;;;;:::i;:::-;;:::i;57634:37::-;;;;;;;;;;;;;:::i;63372:550::-;;;;;;;;;;-1:-1:-1;63372:550:0;;;;;:::i;:::-;;:::i;62893:437::-;;;;;;;;;;-1:-1:-1;62893:437:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;58008:49::-;;;;;;;;;;-1:-1:-1;58008:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;57735:31;;;;;;;;;;;;;;;;59024:144;;;;;;;;;;-1:-1:-1;59024:144:0;;;;;:::i;:::-;;:::i;31961:189::-;;;;;;;;;;-1:-1:-1;31961:189:0;;;;;:::i;:::-;-1:-1:-1;;;;;32107:25:0;;;32083:4;32107:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31961:189;57968:33;;;;;;;;;;-1:-1:-1;57968:33:0;;;;;:::i;:::-;;:::i;59263:114::-;;;;;;;;;;-1:-1:-1;59263:114:0;;;;;:::i;:::-;;:::i;11262:229::-;;;;;;;;;;-1:-1:-1;11262:229:0;;;;;:::i;:::-;;:::i;57773:37::-;;;;;;;;;;;;;;;;58296:32;;;;;;;;;;-1:-1:-1;58296:32:0;;;;-1:-1:-1;;;;;58296:32:0;;;58337:19;;;;;;;;;;-1:-1:-1;58337:19:0;;;;-1:-1:-1;;;;;58337:19:0;;;41972:266;42090:4;-1:-1:-1;;;;;;42127:50:0;;-1:-1:-1;;;42127:50:0;;:103;;;42194:36;42218:11;42194:23;:36::i;:::-;42107:123;41972:266;-1:-1:-1;;41972:266:0:o;59176:79::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;;;;;;;;;59232:6:::1;:15:::0;;-1:-1:-1;;59232:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59176:79::o;29565:100::-;29619:13;29652:5;29645:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29565:100;:::o;31224:274::-;31316:7;34921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34921:16:0;31336:110;;;;-1:-1:-1;;;31336:110:0;;8710:2:1;31336:110:0;;;8692:21:1;8749:2;8729:18;;;8722:30;8788:34;8768:18;;;8761:62;-1:-1:-1;;;8839:18:1;;;8832:42;8891:19;;31336:110:0;8508:408:1;31336:110:0;-1:-1:-1;31466:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31466:24:0;;31224:274::o;30747:411::-;30828:13;30844:23;30859:7;30844:14;:23::i;:::-;30828:39;;30892:5;-1:-1:-1;;;;;30886:11:0;:2;-1:-1:-1;;;;;30886:11:0;;30878:57;;;;-1:-1:-1;;;30878:57:0;;9123:2:1;30878:57:0;;;9105:21:1;9162:2;9142:18;;;9135:30;9201:34;9181:18;;;9174:62;-1:-1:-1;;;9252:18:1;;;9245:31;9293:19;;30878:57:0;8921:397:1;30878:57:0;9800:10;-1:-1:-1;;;;;30970:21:0;;;;:62;;-1:-1:-1;30995:37:0;31012:5;9800:10;31961:189;:::i;30995:37::-;30948:168;;;;-1:-1:-1;;;30948:168:0;;9525:2:1;30948:168:0;;;9507:21:1;9564:2;9544:18;;;9537:30;9603:34;9583:18;;;9576:62;9674:26;9654:18;;;9647:54;9718:19;;30948:168:0;9323:420:1;30948:168:0;31129:21;31138:2;31142:7;31129:8;:21::i;:::-;30817:341;30747:411;;:::o;32217:376::-;32426:41;9800:10;32459:7;32426:18;:41::i;:::-;32404:140;;;;-1:-1:-1;;;32404:140:0;;;;;;;:::i;:::-;32557:28;32567:4;32573:2;32577:7;32557:9;:28::i;42322:318::-;42444:7;42494:23;42511:5;42494:16;:23::i;:::-;42486:5;:31;42464:124;;;;-1:-1:-1;;;42464:124:0;;10368:2:1;42464:124:0;;;10350:21:1;10407:2;10387:18;;;10380:30;10446:34;10426:18;;;10419:62;-1:-1:-1;;;10497:18:1;;;10490:41;10548:19;;42464:124:0;10166:407:1;42464:124:0;-1:-1:-1;;;;;;42606:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42322:318::o;32664:185::-;32802:39;32819:4;32825:2;32829:7;32802:39;;;;;;;;;;;;:16;:39::i;58800:86::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;58863:4:::1;:15:::0;58800:86::o;42906:286::-;42997:7;43047:30;42804:10;:17;;42716:113;43047:30;43039:5;:38;43017:132;;;;-1:-1:-1;;;43017:132:0;;10780:2:1;43017:132:0;;;10762:21:1;10819:2;10799:18;;;10792:30;10858:34;10838:18;;;10831:62;-1:-1:-1;;;10909:18:1;;;10902:42;10961:19;;43017:132:0;10578:408:1;43017:132:0;43167:10;43178:5;43167:17;;;;;;;;:::i;:::-;;;;;;;;;43160:24;;42906:286;;;:::o;58688:104::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;58761:13:::1;:23;58777:7:::0;58761:13;:23:::1;:::i;:::-;;58688:104:::0;:::o;29206:292::-;29294:7;29330:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29330:16:0;;29357:110;;;;-1:-1:-1;;;29357:110:0;;13529:2:1;29357:110:0;;;13511:21:1;13568:2;13548:18;;;13541:30;13607:34;13587:18;;;13580:62;-1:-1:-1;;;13658:18:1;;;13651:39;13707:19;;29357:110:0;13327:405:1;61392:239:0;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;61516:9:::1;61511:113;61535:10;:17;61531:1;:21;61511:113;;;61574:38;61598:10;61609:1;61598:13;;;;;;;;:::i;:::-;;;;;;;61574:23;:38::i;:::-;-1:-1:-1::0;61554:3:0;::::1;::::0;::::1;:::i;:::-;;;;61511:113;;28883:261:::0;28971:7;-1:-1:-1;;;;;29013:19:0;;28991:111;;;;-1:-1:-1;;;28991:111:0;;14211:2:1;28991:111:0;;;14193:21:1;14250:2;14230:18;;;14223:30;14289:34;14269:18;;;14262:62;-1:-1:-1;;;14340:18:1;;;14333:40;14390:19;;28991:111:0;14009:406:1;28991:111:0;-1:-1:-1;;;;;;29120:16:0;;;;;:9;:16;;;;;;;28883:261::o;11013:94::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;11078:21:::1;11096:1;11078:9;:21::i;:::-;11013:94::o:0;58894:122::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;58975:13:::1;:33:::0;58894:122::o;29734:104::-;29790:13;29823:7;29816:14;;;;;:::i;59401:799::-;59490:6;;;;59489:7;59481:56;;;;-1:-1:-1;;;59481:56:0;;14622:2:1;59481:56:0;;;14604:21:1;14661:2;14641:18;;;14634:30;14700:34;14680:18;;;14673:62;-1:-1:-1;;;14751:18:1;;;14744:34;14795:19;;59481:56:0;14420:400:1;59481:56:0;59570:1;59556:11;:15;59548:66;;;;-1:-1:-1;;;59548:66:0;;;;;;;:::i;:::-;59662:13;;59647:11;:28;;59625:117;;;;-1:-1:-1;;;59625:117:0;;15434:2:1;59625:117:0;;;15416:21:1;15473:2;15453:18;;;15446:30;15512:34;15492:18;;;15485:62;-1:-1:-1;;;15563:18:1;;;15556:37;15610:19;;59625:117:0;15232:403:1;59625:117:0;59789:11;59775:10;;:25;;59753:110;;;;-1:-1:-1;;;59753:110:0;;;;;;;:::i;:::-;10435:6;;-1:-1:-1;;;;;10435:6:0;59878:10;:21;59874:178;;59962:11;59955:4;;:18;;;;:::i;:::-;59942:9;:31;;59916:124;;;;-1:-1:-1;;;59916:124:0;;16419:2:1;59916:124:0;;;16401:21:1;16458:2;16438:18;;;16431:30;16497:33;16477:18;;;16470:61;16548:18;;59916:124:0;16217:355:1;59916:124:0;60062:27;60079:9;60062:16;:27::i;:::-;60117:1;60100:93;60125:11;60120:1;:16;60100:93;;60158:23;60170:10;60158:11;:23::i;:::-;-1:-1:-1;60138:3:0;;;;:::i;:::-;;;;60100:93;;31570:320;9800:10;-1:-1:-1;;;;;31698:24:0;;;31690:62;;;;-1:-1:-1;;;31690:62:0;;16779:2:1;31690:62:0;;;16761:21:1;16818:2;16798:18;;;16791:30;16857:27;16837:18;;;16830:55;16902:18;;31690:62:0;16577:349:1;31690:62:0;9800:10;31765:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31765:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31765:53:0;;;;;;;;;;31834:48;;748:41:1;;;31765:42:0;;9800:10;31834:48;;721:18:1;31834:48:0;;;;;;;31570:320;;:::o;60254:480::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60394:21:0;::::1;60386:55;;;::::0;-1:-1:-1;;;60386:55:0;;17133:2:1;60386:55:0::1;::::0;::::1;17115:21:1::0;17172:2;17152:18;;;17145:30;-1:-1:-1;;;17191:18:1;;;17184:51;17252:18;;60386:55:0::1;16931:345:1::0;60386:55:0::1;60470:1;60460:7;:11;60452:62;;;;-1:-1:-1::0;;;60452:62:0::1;;;;;;;:::i;:::-;60533:10;;60547:1;60533:15:::0;60525:63:::1;;;;-1:-1:-1::0;;;60525:63:0::1;;;;;;;:::i;:::-;60658:1;60641:86;60666:7;60661:1;:12;60641:86;;60695:20;60707:7;60695:11;:20::i;:::-;-1:-1:-1::0;60675:3:0;::::1;::::0;::::1;:::i;:::-;;;;60641:86;;32920:365:::0;33109:41;9800:10;33142:7;33109:18;:41::i;:::-;33087:140;;;;-1:-1:-1;;;33087:140:0;;;;;;;:::i;:::-;33238:39;33252:4;33258:2;33262:7;33271:5;33238:13;:39::i;:::-;32920:365;;;;:::o;57634:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63372:550::-;34897:4;34921:16;;;:7;:16;;;;;;63457:13;;-1:-1:-1;;;;;34921:16:0;63483:65;;;;-1:-1:-1;;;63483:65:0;;17483:2:1;63483:65:0;;;17465:21:1;17522:2;17502:18;;;17495:30;17561:34;17541:18;;;17534:62;-1:-1:-1;;;17612:18:1;;;17605:38;17660:19;;63483:65:0;17281:404:1;63483:65:0;63559:28;63590:10;:8;:10::i;:::-;63559:41;;63662:1;63637:14;63631:28;:32;:283;;;;;;;;;;;;;;;;;63755:14;63796;:3;:12;:14::i;:::-;63837:13;63712:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63631:283;63611:303;63372:550;-1:-1:-1;;;63372:550:0:o;62893:437::-;62967:16;63026:23;63052:17;63062:6;63052:9;:17::i;:::-;63026:43;;63080:25;63122:15;63108:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;63108:30:0;;63080:58;;63189:9;63184:113;63204:15;63200:1;:19;63184:113;;;63255:30;63275:6;63283:1;63255:19;:30::i;:::-;63241:8;63250:1;63241:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;63221:3;;;;:::i;:::-;;;;63184:113;;;-1:-1:-1;63314:8:0;62893:437;-1:-1:-1;;;62893:437:0:o;59024:144::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;59127:13:::1;:33;59143:17:::0;59127:13;:33:::1;:::i;57968:::-:0;;;;;;;;;;;;;;;-1:-1:-1;57968:33:0;:::o;59263:114::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;59340:11:::1;:29:::0;;-1:-1:-1;;;;;;59340:29:0::1;-1:-1:-1::0;;;;;59340:29:0;;;::::1;::::0;;;::::1;::::0;;59263:114::o;11262:229::-;10435:6;;-1:-1:-1;;;;;10435:6:0;9800:10;10582:23;10574:68;;;;-1:-1:-1;;;10574:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11365:22:0;::::1;11343:110;;;::::0;-1:-1:-1;;;11343:110:0;;19153:2:1;11343:110:0::1;::::0;::::1;19135:21:1::0;19192:2;19172:18;;;19165:30;19231:34;19211:18;;;19204:62;-1:-1:-1;;;19282:18:1;;;19275:36;19328:19;;11343:110:0::1;18951:402:1::0;11343:110:0::1;11464:19;11474:8;11464:9;:19::i;:::-;11262:229:::0;:::o;28498:321::-;28616:4;-1:-1:-1;;;;;;28653:40:0;;-1:-1:-1;;;28653:40:0;;:105;;-1:-1:-1;;;;;;;28710:48:0;;-1:-1:-1;;;28710:48:0;28653:105;:158;;;-1:-1:-1;;;;;;;;;;21481:40:0;;;28775:36;21356:173;38939:174;39014:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39014:29:0;-1:-1:-1;;;;;39014:29:0;;;;;;;;:24;;39068:23;39014:24;39068:14;:23::i;:::-;-1:-1:-1;;;;;39059:46:0;;;;;;;;;;;38939:174;;:::o;35126:436::-;35244:4;34921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34921:16:0;35261:110;;;;-1:-1:-1;;;35261:110:0;;19560:2:1;35261:110:0;;;19542:21:1;19599:2;19579:18;;;19572:30;19638:34;19618:18;;;19611:62;-1:-1:-1;;;19689:18:1;;;19682:42;19741:19;;35261:110:0;19358:408:1;35261:110:0;35382:13;35398:23;35413:7;35398:14;:23::i;:::-;35382:39;;35451:5;-1:-1:-1;;;;;35440:16:0;:7;-1:-1:-1;;;;;35440:16:0;;:64;;;;35497:7;-1:-1:-1;;;;;35473:31:0;:20;35485:7;35473:11;:20::i;:::-;-1:-1:-1;;;;;35473:31:0;;35440:64;:113;;;-1:-1:-1;;;;;;32107:25:0;;;32083:4;32107:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35521:32;35432:122;35126:436;-1:-1:-1;;;;35126:436:0:o;38206:615::-;38379:4;-1:-1:-1;;;;;38352:31:0;:23;38367:7;38352:14;:23::i;:::-;-1:-1:-1;;;;;38352:31:0;;38330:122;;;;-1:-1:-1;;;38330:122:0;;19973:2:1;38330:122:0;;;19955:21:1;20012:2;19992:18;;;19985:30;20051:34;20031:18;;;20024:62;-1:-1:-1;;;20102:18:1;;;20095:39;20151:19;;38330:122:0;19771:405:1;38330:122:0;-1:-1:-1;;;;;38471:16:0;;38463:65;;;;-1:-1:-1;;;38463:65:0;;20383:2:1;38463:65:0;;;20365:21:1;20422:2;20402:18;;;20395:30;20461:34;20441:18;;;20434:62;-1:-1:-1;;;20512:18:1;;;20505:34;20556:19;;38463:65:0;20181:400:1;38463:65:0;38541:39;38562:4;38568:2;38572:7;38541:20;:39::i;:::-;38645:29;38662:1;38666:7;38645:8;:29::i;:::-;-1:-1:-1;;;;;38687:15:0;;;;;;:9;:15;;;;;:20;;38706:1;;38687:15;:20;;38706:1;;38687:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38718:13:0;;;;;;:9;:13;;;;;:18;;38735:1;;38718:13;:18;;38735:1;;38718:18;:::i;:::-;;;;-1:-1:-1;;38747:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38747:21:0;-1:-1:-1;;;;;38747:21:0;;;;;;;;;38786:27;;38747:16;;38786:27;;;;;;;38206:615;;;:::o;61639:613::-;61725:7;61779:14;61796:13;42804:10;:17;;42716:113;61796:13;61779:30;;61820:18;61841:16;61850:6;61841:8;:16::i;:::-;:20;;61860:1;61841:20;:::i;:::-;61898:10;:12;;61820:41;;-1:-1:-1;61898:10:0;:12;;;:::i;:::-;;;;;;61980:20;61989:10;;61980:8;:20::i;:::-;61957:12;61970:6;61957:20;;;;;;;:::i;:::-;;:43;62028:32;62038:9;62049:10;62028:9;:32::i;:::-;62105:19;;;;:7;:19;;;;;;;;:32;;-1:-1:-1;;;;;;62105:32:0;62127:10;62105:32;;;62203:13;;62174:14;:26;;;;;;:42;62113:10;61639:613;-1:-1:-1;;;61639:613:0:o;11499:173::-;11574:6;;;-1:-1:-1;;;;;11591:17:0;;;-1:-1:-1;;;;;;11591:17:0;;;;;;;11624:40;;11574:6;;;11591:17;11574:6;;11624:40;;11555:16;;11624:40;11544:128;11499:173;:::o;63950:108::-;64020:11;;64012:38;;-1:-1:-1;;;;;64020:11:0;;;;64012:38;;;;;64042:7;;64020:11;64012:38;64020:11;64012:38;64042:7;64020:11;64012:38;;;;;;;;;;;;;;;;;;;60762:622;60847:7;56526:21;:19;:21::i;:::-;60933:10:::1;::::0;64471:161;;;64514:16;64471:161;;;;22328:19:1;;;;64557:15:0;22363:12:1;;;22356:28;22400:12;;;;22393:28;;;64471:161:0;;;;;;;;;;22437:12:1;;;;64471:161:0;;;64439:212;;;;;-1:-1:-1;;60918:25:0::1;::::0;::::1;:::i;:::-;60901:42;;60954:18;60975:16;60984:6;60975:8;:16::i;:::-;:20;::::0;60994:1:::1;60975:20;:::i;:::-;61032:10;:12:::0;;60954:41;;-1:-1:-1;61032:10:0::1;:12;::::0;::::1;:::i;:::-;;;;;;61114:20;61123:10;;61114:8;:20::i;:::-;61091:12;61104:6;61091:20;;;;;;;:::i;:::-;;:43:::0;61200:13:::1;::::0;61171:26:::1;::::0;;;:14:::1;:26;::::0;;;;:42;61241:30:::1;61251:7:::0;61186:10;61241:9:::1;:30::i;:::-;61316:19;::::0;;;:7:::1;:19;::::0;;;;:32;;-1:-1:-1;;;;;;61316:32:0::1;61338:10;61316:32;::::0;;61324:10;-1:-1:-1;;56570:20:0;56342:1;57090:7;:22;56907:213;56570:20;60762:622;;;:::o;34167:352::-;34324:28;34334:4;34340:2;34344:7;34324:9;:28::i;:::-;34385:48;34408:4;34414:2;34418:7;34427:5;34385:22;:48::i;:::-;34363:148;;;;-1:-1:-1;;;34363:148:0;;;;;;;:::i;58550:114::-;58610:13;58643;58636:20;;;;;:::i;7903:723::-;7959:13;8180:5;8189:1;8180:10;8176:53;;-1:-1:-1;;8207:10:0;;;;;;;;;;;;-1:-1:-1;;;8207:10:0;;;;;7903:723::o;8176:53::-;8254:5;8239:12;8295:78;8302:9;;8295:78;;8328:8;;;;:::i;:::-;;-1:-1:-1;8351:10:0;;-1:-1:-1;8359:2:0;8351:10;;:::i;:::-;;;8295:78;;;8383:19;8415:6;8405:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8405:17:0;;8383:39;;8433:154;8440:10;;8433:154;;8467:11;8477:1;8467:11;;:::i;:::-;;-1:-1:-1;8536:10:0;8544:2;8536:5;:10;:::i;:::-;8523:24;;:2;:24;:::i;:::-;8510:39;;8493:6;8500;8493:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8493:56:0;;;;;;;;-1:-1:-1;8564:11:0;8573:2;8564:11;;:::i;:::-;;;8433:154;;43805:589;-1:-1:-1;;;;;44011:18:0;;44007:187;;44046:40;44078:7;45221:10;:17;;45194:24;;;;:15;:24;;;;;:44;;;45249:24;;;;;;;;;;;;45117:164;44046:40;44007:187;;;44116:2;-1:-1:-1;;;;;44108:10:0;:4;-1:-1:-1;;;;;44108:10:0;;44104:90;;44135:47;44168:4;44174:7;44135:32;:47::i;:::-;-1:-1:-1;;;;;44208:16:0;;44204:183;;44241:45;44278:7;44241:36;:45::i;44204:183::-;44314:4;-1:-1:-1;;;;;44308:10:0;:2;-1:-1:-1;;;;;44308:10:0;;44304:83;;44335:40;44363:2;44367:7;44335:27;:40::i;64109:172::-;64166:7;64190:12;64203:6;64190:20;;;;;;;:::i;:::-;;;:25;64186:87;;64224:12;64237:6;64224:20;;;;;;;:::i;:::-;;;;64109:172;-1:-1:-1;;64109:172:0:o;64186:87::-;-1:-1:-1;64267:6:0;64109:172::o;35904:110::-;35980:26;35990:2;35994:7;35980:26;;;;;;;;;;;;:9;:26::i;56606:293::-;56386:1;56740:7;;:19;56732:63;;;;-1:-1:-1;;;56732:63:0;;21985:2:1;56732:63:0;;;21967:21:1;22024:2;22004:18;;;21997:30;22063:33;22043:18;;;22036:61;22114:18;;56732:63:0;21783:355:1;56732:63:0;56386:1;56873:7;:18;56606:293::o;39678:980::-;39833:4;-1:-1:-1;;;;;39854:13:0;;12612:20;12660:8;39850:801;;39907:175;;-1:-1:-1;;;39907:175:0;;-1:-1:-1;;;;;39907:36:0;;;;;:175;;9800:10;;40001:4;;40028:7;;40058:5;;39907:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39907:175:0;;;;;;;;-1:-1:-1;;39907:175:0;;;;;;;;;;;;:::i;:::-;;;39886:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40265:6;:13;40282:1;40265:18;40261:320;;40308:108;;-1:-1:-1;;;40308:108:0;;;;;;;:::i;40261:320::-;40531:6;40525:13;40516:6;40512:2;40508:15;40501:38;39886:710;-1:-1:-1;;;;;;40146:51:0;-1:-1:-1;;;40146:51:0;;-1:-1:-1;40139:58:0;;39850:801;-1:-1:-1;40635:4:0;39678:980;;;;;;:::o;45908:1013::-;46199:22;46249:1;46224:22;46241:4;46224:16;:22::i;:::-;:26;;;;:::i;:::-;46261:18;46282:26;;;:17;:26;;;;;;46199:51;;-1:-1:-1;46415:28:0;;;46411:328;;-1:-1:-1;;;;;46482:18:0;;46460:19;46482:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46533:30;;;;;;:44;;;46650:30;;:17;:30;;;;;:43;;;46411:328;-1:-1:-1;46835:26:0;;;;:17;:26;;;;;;;;46828:33;;;-1:-1:-1;;;;;46879:18:0;;;;;:12;:18;;;;;:34;;;;;;;46872:41;45908:1013::o;47216:1079::-;47494:10;:17;47469:22;;47494:21;;47514:1;;47494:21;:::i;:::-;47526:18;47547:24;;;:15;:24;;;;;;47920:10;:26;;47469:46;;-1:-1:-1;47547:24:0;;47469:46;;47920:26;;;;;;:::i;:::-;;;;;;;;;47898:48;;47984:11;47959:10;47970;47959:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48064:28;;;:15;:28;;;;;;;:41;;;48236:24;;;;;48229:31;48271:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47287:1008;;;47216:1079;:::o;44695:221::-;44780:14;44797:20;44814:2;44797:16;:20::i;:::-;-1:-1:-1;;;;;44828:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44873:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44695:221:0:o;36241:321::-;36371:18;36377:2;36381:7;36371:5;:18::i;:::-;36422:54;36453:1;36457:2;36461:7;36470:5;36422:22;:54::i;:::-;36400:154;;;;-1:-1:-1;;;36400:154:0;;;;;;;:::i;36898:382::-;-1:-1:-1;;;;;36978:16:0;;36970:61;;;;-1:-1:-1;;;36970:61:0;;23542:2:1;36970:61:0;;;23524:21:1;;;23561:18;;;23554:30;23620:34;23600:18;;;23593:62;23672:18;;36970:61:0;23340:356:1;36970:61:0;34897:4;34921:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34921:16:0;:30;37042:58;;;;-1:-1:-1;;;37042:58:0;;23903:2:1;37042:58:0;;;23885:21:1;23942:2;23922:18;;;23915:30;23981;23961:18;;;23954:58;24029:18;;37042:58:0;23701:352:1;37042:58:0;37113:45;37142:1;37146:2;37150:7;37113:20;:45::i;:::-;-1:-1:-1;;;;;37171:13:0;;;;;;:9;:13;;;;;:18;;37188:1;;37171:13;:18;;37188:1;;37171:18;:::i;:::-;;;;-1:-1:-1;;37200:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37200:21:0;-1:-1:-1;;;;;37200:21:0;;;;;;;;37239:33;;37200:16;;;37239:33;;37200:16;;37239:33;36898:382;;:::o;222:131:1:-;-1:-1:-1;;;;;;296:32:1;;286:43;;276:71;;343:1;340;333:12;358:245;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;524:9;511:23;543:30;567:5;543:30;:::i;800:160::-;865:20;;921:13;;914:21;904:32;;894:60;;950:1;947;940:12;965:180;1021:6;1074:2;1062:9;1053:7;1049:23;1045:32;1042:52;;;1090:1;1087;1080:12;1042:52;1113:26;1129:9;1113:26;:::i;1150:250::-;1235:1;1245:113;1259:6;1256:1;1253:13;1245:113;;;1335:11;;;1329:18;1316:11;;;1309:39;1281:2;1274:10;1245:113;;;-1:-1:-1;;1392:1:1;1374:16;;1367:27;1150:250::o;1405:271::-;1447:3;1485:5;1479:12;1512:6;1507:3;1500:19;1528:76;1597:6;1590:4;1585:3;1581:14;1574:4;1567:5;1563:16;1528:76;:::i;:::-;1658:2;1637:15;-1:-1:-1;;1633:29:1;1624:39;;;;1665:4;1620:50;;1405:271;-1:-1:-1;;1405:271:1:o;1681:220::-;1830:2;1819:9;1812:21;1793:4;1850:45;1891:2;1880:9;1876:18;1868:6;1850:45;:::i;1906:180::-;1965:6;2018:2;2006:9;1997:7;1993:23;1989:32;1986:52;;;2034:1;2031;2024:12;1986:52;-1:-1:-1;2057:23:1;;1906:180;-1:-1:-1;1906:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:275;3246:2;3240:9;3311:2;3292:13;;-1:-1:-1;;3288:27:1;3276:40;;3346:18;3331:34;;3367:22;;;3328:62;3325:88;;;3393:18;;:::i;:::-;3429:2;3422:22;3175:275;;-1:-1:-1;3175:275:1:o;3455:407::-;3520:5;3554:18;3546:6;3543:30;3540:56;;;3576:18;;:::i;:::-;3614:57;3659:2;3638:15;;-1:-1:-1;;3634:29:1;3665:4;3630:40;3614:57;:::i;:::-;3605:66;;3694:6;3687:5;3680:21;3734:3;3725:6;3720:3;3716:16;3713:25;3710:45;;;3751:1;3748;3741:12;3710:45;3800:6;3795:3;3788:4;3781:5;3777:16;3764:43;3854:1;3847:4;3838:6;3831:5;3827:18;3823:29;3816:40;3455:407;;;;;:::o;3867:451::-;3936:6;3989:2;3977:9;3968:7;3964:23;3960:32;3957:52;;;4005:1;4002;3995:12;3957:52;4045:9;4032:23;4078:18;4070:6;4067:30;4064:50;;;4110:1;4107;4100:12;4064:50;4133:22;;4186:4;4178:13;;4174:27;-1:-1:-1;4164:55:1;;4215:1;4212;4205:12;4164:55;4238:74;4304:7;4299:2;4286:16;4281:2;4277;4273:11;4238:74;:::i;4323:952::-;4407:6;4438:2;4481;4469:9;4460:7;4456:23;4452:32;4449:52;;;4497:1;4494;4487:12;4449:52;4537:9;4524:23;4566:18;4607:2;4599:6;4596:14;4593:34;;;4623:1;4620;4613:12;4593:34;4661:6;4650:9;4646:22;4636:32;;4706:7;4699:4;4695:2;4691:13;4687:27;4677:55;;4728:1;4725;4718:12;4677:55;4764:2;4751:16;4786:2;4782;4779:10;4776:36;;;4792:18;;:::i;:::-;4838:2;4835:1;4831:10;4821:20;;4861:28;4885:2;4881;4877:11;4861:28;:::i;:::-;4923:15;;;4993:11;;;4989:20;;;4954:12;;;;5021:19;;;5018:39;;;5053:1;5050;5043:12;5018:39;5077:11;;;;5097:148;5113:6;5108:3;5105:15;5097:148;;;5179:23;5198:3;5179:23;:::i;:::-;5167:36;;5130:12;;;;5223;;;;5097:148;;;5264:5;4323:952;-1:-1:-1;;;;;;;;4323:952:1:o;5280:186::-;5339:6;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5431:29;5450:9;5431:29;:::i;5471:254::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:35;5715:2;5704:9;5700:18;5684:35;:::i;:::-;5674:45;;5471:254;;;;;:::o;5730:667::-;5825:6;5833;5841;5849;5902:3;5890:9;5881:7;5877:23;5873:33;5870:53;;;5919:1;5916;5909:12;5870:53;5942:29;5961:9;5942:29;:::i;:::-;5932:39;;5990:38;6024:2;6013:9;6009:18;5990:38;:::i;:::-;5980:48;;6075:2;6064:9;6060:18;6047:32;6037:42;;6130:2;6119:9;6115:18;6102:32;6157:18;6149:6;6146:30;6143:50;;;6189:1;6186;6179:12;6143:50;6212:22;;6265:4;6257:13;;6253:27;-1:-1:-1;6243:55:1;;6294:1;6291;6284:12;6243:55;6317:74;6383:7;6378:2;6365:16;6360:2;6356;6352:11;6317:74;:::i;:::-;6307:84;;;5730:667;;;;;;;:::o;6402:632::-;6573:2;6625:21;;;6695:13;;6598:18;;;6717:22;;;6544:4;;6573:2;6796:15;;;;6770:2;6755:18;;;6544:4;6839:169;6853:6;6850:1;6847:13;6839:169;;;6914:13;;6902:26;;6983:15;;;;6948:12;;;;6875:1;6868:9;6839:169;;;-1:-1:-1;7025:3:1;;6402:632;-1:-1:-1;;;;;;6402:632:1:o;7039:260::-;7107:6;7115;7168:2;7156:9;7147:7;7143:23;7139:32;7136:52;;;7184:1;7181;7174:12;7136:52;7207:29;7226:9;7207:29;:::i;:::-;7197:39;;7255:38;7289:2;7278:9;7274:18;7255:38;:::i;7762:356::-;7964:2;7946:21;;;7983:18;;;7976:30;8042:34;8037:2;8022:18;;8015:62;8109:2;8094:18;;7762:356::o;8123:380::-;8202:1;8198:12;;;;8245;;;8266:61;;8320:4;8312:6;8308:17;8298:27;;8266:61;8373:2;8365:6;8362:14;8342:18;8339:38;8336:161;;8419:10;8414:3;8410:20;8407:1;8400:31;8454:4;8451:1;8444:15;8482:4;8479:1;8472:15;8336:161;;8123:380;;;:::o;9748:413::-;9950:2;9932:21;;;9989:2;9969:18;;;9962:30;10028:34;10023:2;10008:18;;10001:62;-1:-1:-1;;;10094:2:1;10079:18;;10072:47;10151:3;10136:19;;9748:413::o;10991:127::-;11052:10;11047:3;11043:20;11040:1;11033:31;11083:4;11080:1;11073:15;11107:4;11104:1;11097:15;11249:545;11351:2;11346:3;11343:11;11340:448;;;11387:1;11412:5;11408:2;11401:17;11457:4;11453:2;11443:19;11527:2;11515:10;11511:19;11508:1;11504:27;11498:4;11494:38;11563:4;11551:10;11548:20;11545:47;;;-1:-1:-1;11586:4:1;11545:47;11641:2;11636:3;11632:12;11629:1;11625:20;11619:4;11615:31;11605:41;;11696:82;11714:2;11707:5;11704:13;11696:82;;;11759:17;;;11740:1;11729:13;11696:82;;;11700:3;;;11249:545;;;:::o;11970:1352::-;12096:3;12090:10;12123:18;12115:6;12112:30;12109:56;;;12145:18;;:::i;:::-;12174:97;12264:6;12224:38;12256:4;12250:11;12224:38;:::i;:::-;12218:4;12174:97;:::i;:::-;12326:4;;12390:2;12379:14;;12407:1;12402:663;;;;13109:1;13126:6;13123:89;;;-1:-1:-1;13178:19:1;;;13172:26;13123:89;-1:-1:-1;;11927:1:1;11923:11;;;11919:24;11915:29;11905:40;11951:1;11947:11;;;11902:57;13225:81;;12372:944;;12402:663;11196:1;11189:14;;;11233:4;11220:18;;-1:-1:-1;;12438:20:1;;;12556:236;12570:7;12567:1;12564:14;12556:236;;;12659:19;;;12653:26;12638:42;;12751:27;;;;12719:1;12707:14;;;;12586:19;;12556:236;;;12560:3;12820:6;12811:7;12808:19;12805:201;;;12881:19;;;12875:26;-1:-1:-1;;12964:1:1;12960:14;;;12976:3;12956:24;12952:37;12948:42;12933:58;12918:74;;12805:201;-1:-1:-1;;;;;13052:1:1;13036:14;;;13032:22;13019:36;;-1:-1:-1;11970:1352:1:o;13737:127::-;13798:10;13793:3;13789:20;13786:1;13779:31;13829:4;13826:1;13819:15;13853:4;13850:1;13843:15;13869:135;13908:3;13929:17;;;13926:43;;13949:18;;:::i;:::-;-1:-1:-1;13996:1:1;13985:13;;13869:135::o;14825:402::-;15027:2;15009:21;;;15066:2;15046:18;;;15039:30;15105:34;15100:2;15085:18;;15078:62;-1:-1:-1;;;15171:2:1;15156:18;;15149:36;15217:3;15202:19;;14825:402::o;15640:399::-;15842:2;15824:21;;;15881:2;15861:18;;;15854:30;15920:34;15915:2;15900:18;;15893:62;-1:-1:-1;;;15986:2:1;15971:18;;15964:33;16029:3;16014:19;;15640:399::o;16044:168::-;16117:9;;;16148;;16165:15;;;16159:22;;16145:37;16135:71;;16186:18;;:::i;17690:1256::-;17914:3;17952:6;17946:13;17978:4;17991:64;18048:6;18043:3;18038:2;18030:6;18026:15;17991:64;:::i;:::-;18118:13;;18077:16;;;;18140:68;18118:13;18077:16;18175:15;;;18140:68;:::i;:::-;18297:13;;18230:20;;;18270:1;;18335:36;18297:13;18335:36;:::i;:::-;18390:1;18407:18;;;18434:141;;;;18589:1;18584:337;;;;18400:521;;18434:141;-1:-1:-1;;18469:24:1;;18455:39;;18546:16;;18539:24;18525:39;;18514:51;;;-1:-1:-1;18434:141:1;;18584:337;18615:6;18612:1;18605:17;18663:2;18660:1;18650:16;18688:1;18702:169;18716:8;18713:1;18710:15;18702:169;;;18798:14;;18783:13;;;18776:37;18841:16;;;;18733:10;;18702:169;;;18706:3;;18902:8;18895:5;18891:20;18884:27;;18400:521;-1:-1:-1;18937:3:1;;17690:1256;-1:-1:-1;;;;;;;;;;17690:1256:1:o;20586:128::-;20653:9;;;20674:11;;;20671:37;;;20688:18;;:::i;20719:125::-;20784:9;;;20805:10;;;20802:36;;;20818:18;;:::i;20849:136::-;20888:3;20916:5;20906:39;;20925:18;;:::i;:::-;-1:-1:-1;;;20961:18:1;;20849:136::o;20990:127::-;21051:10;21046:3;21042:20;21039:1;21032:31;21082:4;21079:1;21072:15;21106:4;21103:1;21096:15;21122:112;21154:1;21180;21170:35;;21185:18;;:::i;:::-;-1:-1:-1;21219:9:1;;21122:112::o;21239:414::-;21441:2;21423:21;;;21480:2;21460:18;;;21453:30;21519:34;21514:2;21499:18;;21492:62;-1:-1:-1;;;21585:2:1;21570:18;;21563:48;21643:3;21628:19;;21239:414::o;21658:120::-;21698:1;21724;21714:35;;21729:18;;:::i;:::-;-1:-1:-1;21763:9:1;;21658:120::o;22460:489::-;-1:-1:-1;;;;;22729:15:1;;;22711:34;;22781:15;;22776:2;22761:18;;22754:43;22828:2;22813:18;;22806:34;;;22876:3;22871:2;22856:18;;22849:31;;;22654:4;;22897:46;;22923:19;;22915:6;22897:46;:::i;:::-;22889:54;22460:489;-1:-1:-1;;;;;;22460:489:1:o;22954:249::-;23023:6;23076:2;23064:9;23055:7;23051:23;23047:32;23044:52;;;23092:1;23089;23082:12;23044:52;23124:9;23118:16;23143:30;23167:5;23143:30;:::i;23208:127::-;23269:10;23264:3;23260:20;23257:1;23250:31;23300:4;23297:1;23290:15;23324:4;23321:1;23314:15
Swarm Source
ipfs://b27a405778a445980deef75605359d99950a75f345218d3f8db0d900fcf96d9e
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.