Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
549 TK
Holders
123
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 TKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TubbyKevin
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-03 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas price * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @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); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @title of NFT Smart Contract */ contract TubbyKevin is ERC721A, Ownable { string public baseExtension = ".json"; uint256 public cost = 0.004 ether; string private baseTokenURI; string private notRevealedUri; uint256 public maxSupply = 555; uint256 public maxFreeMint = 0; uint256 public maxPaidMint = 525; uint256 public maxAmountWallet = 5; uint256 public maxMintSupply = maxFreeMint + maxPaidMint; uint256 public maxFreeAmountPerWallet = 0; uint256 public mintedAmount = 0; bool public revealed = false; bool public publicActive = false; mapping(address => uint256) public minterToTokenAmount; address proxyRegistryAddress; constructor(string memory _notRevealedUri) ERC721A("Tubby Kevin", "TK") { notRevealedUri = _notRevealedUri; } function mint(uint256 quantity) external payable { require(publicActive, "Sale must be active to mint a Tubby Kevin"); if (mintedAmount < maxFreeMint) { //Als de totale mintamount onder de maxFreeMint ligt if(balanceOf(msg.sender) < maxFreeAmountPerWallet){ //Als de balance van de minter onder het maximale per wallet ligt //Dan free require(mintedAmount + quantity <= maxFreeMint, "MAXL"); require( minterToTokenAmount[msg.sender] + quantity <= maxFreeAmountPerWallet, "MAXF" ); } else { //ander paid require(mintedAmount + quantity <= maxMintSupply, "MAXL"); require( minterToTokenAmount[msg.sender] + quantity <= maxAmountWallet, "MAXP" ); require(msg.value >= cost * quantity, "SETH"); } } else { //Als de totale mintamount boven de maxFreeMint ligt require(mintedAmount + quantity <= maxMintSupply, "MAXL"); require(msg.value >= cost * quantity, "SETH"); } mintedAmount += quantity; minterToTokenAmount[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function setNotRevealedURI(string memory _notRevealedURI) external onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function _baseURI() internal view override virtual returns (string memory) { return baseTokenURI; } function setRevealed(bool _state) external onlyOwner { revealed = _state; } function reserve(address target, uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= maxSupply, "Tubby Kevin/sold-out"); _safeMint(target, quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if(!revealed) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, Strings.toString(tokenId))) : ""; } function setMaxFreeAmountPerTx(uint256 _maxAmountPerTx) external onlyOwner { maxFreeAmountPerWallet = _maxAmountPerTx; } function setPublicActive(bool newStatus) external onlyOwner { publicActive = newStatus; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPaidMint","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterToTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAmountPerTx","type":"uint256"}],"name":"setMaxFreeAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setPublicActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600991906200022e565b50660e35fa931a0000600a5561022b600d556000600e81905561020d600f81905560056010556200005991620002d4565b601155600060128190556013556014805461ffff191690553480156200007e57600080fd5b506040516200280b3803806200280b833981016040819052620000a19162000311565b604080518082018252600b81526a2a3ab1313c9025b2bb34b760a91b60208083019190915282518084019093526002835261544b60f01b9083015290620000ef6301ffc9a760e01b62000154565b8151620001049060029060208501906200022e565b5080516200011a9060039060208401906200022e565b5050506200013762000131620001d860201b60201c565b620001dc565b80516200014c90600c9060208401906200022e565b50506200042a565b6001600160e01b03198082161415620001b35760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200023c90620003ed565b90600052602060002090601f016020900481019282620002605760008555620002ab565b82601f106200027b57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002ab5782518255916020019190600101906200028e565b50620002b9929150620002bd565b5090565b5b80821115620002b95760008155600101620002be565b60008219821115620002f657634e487b7160e01b600052601160045260246000fd5b500190565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200032557600080fd5b82516001600160401b03808211156200033d57600080fd5b818501915085601f8301126200035257600080fd5b815181811115620003675762000367620002fb565b604051601f8201601f19908116603f01168101908382118183101715620003925762000392620002fb565b816040528281528886848701011115620003ab57600080fd5b600093505b82841015620003cf5784840186015181850187015292850192620003b0565b82841115620003e15760008684830101525b98975050505050505050565b600181811c908216806200040257607f821691505b602082108114156200042457634e487b7160e01b600052602260045260246000fd5b50919050565b6123d1806200043a6000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb011461064c578063e0a8085314610662578063e985e9c514610682578063f2c4ce1e146106cb578063f2fde38b146106eb57600080fd5b8063b88d4fde146105c1578063c285e107146105e1578063c6682862146105f7578063c87b56dd1461060c578063cc47a40b1461062c57600080fd5b806395d89b41116100f257806395d89b411461054d5780639853b6ae14610562578063a0712d6814610578578063a22cb4651461058b578063a591252d146105ab57600080fd5b806370a08231146104ba578063715018a6146104da5780637b2f1595146104ef5780638aca408c1461050f5780638da5cb5b1461052f57600080fd5b80632f745c59116101bc57806342842e0e1161018057806342842e0e1461042057806344a0d68a146104405780634f6ccce71461046057806351830227146104805780636352211e1461049a57600080fd5b80632f745c59146103a357806330176e13146103c35780633bfaa33d146103e35780633ccfd60b146103f95780633f2981cf1461040157600080fd5b806318160ddd1161020357806318160ddd1461031557806323b872dd1461032a5780632927be081461034a5780632a5543bc146103605780632d3802421461038d57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e47565b61070b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610781565b60405161026c9190611ebc565b3480156102a357600080fd5b506102b76102b2366004611ecf565b610813565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611f04565b6108a3565b005b3480156102fd57600080fd5b50610307600a5481565b60405190815260200161026c565b34801561032157600080fd5b50600154610307565b34801561033657600080fd5b506102ef610345366004611f2e565b6109bb565b34801561035657600080fd5b5061030760105481565b34801561036c57600080fd5b5061030761037b366004611f6a565b60156020526000908152604090205481565b34801561039957600080fd5b5061030760135481565b3480156103af57600080fd5b506103076103be366004611f04565b6109c6565b3480156103cf57600080fd5b506102ef6103de366004612011565b610b2e565b3480156103ef57600080fd5b50610307600f5481565b6102ef610b6f565b34801561040d57600080fd5b5060145461026090610100900460ff1681565b34801561042c57600080fd5b506102ef61043b366004611f2e565b610c0d565b34801561044c57600080fd5b506102ef61045b366004611ecf565b610c28565b34801561046c57600080fd5b5061030761047b366004611ecf565b610c57565b34801561048c57600080fd5b506014546102609060ff1681565b3480156104a657600080fd5b506102b76104b5366004611ecf565b610cc0565b3480156104c657600080fd5b506103076104d5366004611f6a565b610cd2565b3480156104e657600080fd5b506102ef610d63565b3480156104fb57600080fd5b506102ef61050a366004611ecf565b610d99565b34801561051b57600080fd5b506102ef61052a36600461206a565b610dc8565b34801561053b57600080fd5b506008546001600160a01b03166102b7565b34801561055957600080fd5b5061028a610e0c565b34801561056e57600080fd5b5061030760125481565b6102ef610586366004611ecf565b610e1b565b34801561059757600080fd5b506102ef6105a6366004612085565b6110b0565b3480156105b757600080fd5b50610307600e5481565b3480156105cd57600080fd5b506102ef6105dc3660046120b8565b611175565b3480156105ed57600080fd5b5061030760115481565b34801561060357600080fd5b5061028a6111ae565b34801561061857600080fd5b5061028a610627366004611ecf565b61123c565b34801561063857600080fd5b506102ef610647366004611f04565b6113a5565b34801561065857600080fd5b50610307600d5481565b34801561066e57600080fd5b506102ef61067d36600461206a565b611435565b34801561068e57600080fd5b5061026061069d366004612134565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d757600080fd5b506102ef6106e6366004612011565b611472565b3480156106f757600080fd5b506102ef610706366004611f6a565b6114af565b60006001600160e01b031982166380ac58cd60e01b148061073c57506001600160e01b03198216635b5e139f60e01b145b8061075757506001600160e01b0319821663780e9d6360e01b145b8061077b57506001600160e01b0319821660009081526020819052604090205460ff165b92915050565b6060600280546107909061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc9061215e565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b6000610820826001541190565b6108875760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ae82610cc0565b9050806001600160a01b0316836001600160a01b0316141561091d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161087e565b336001600160a01b03821614806109395750610939813361069d565b6109ab5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161087e565b6109b6838383611547565b505050565b6109b68383836115a3565b60006109d183610cd2565b8210610a2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161087e565b6000610a3560015490565b905060008060005b83811015610ace576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a9057805192505b876001600160a01b0316836001600160a01b03161415610ac55786841415610abe5750935061077b92505050565b6001909301925b50600101610a3d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161087e565b6008546001600160a01b03163314610b585760405162461bcd60e51b815260040161087e90612199565b8051610b6b90600b906020840190611da1565b5050565b6008546001600160a01b03163314610b995760405162461bcd60e51b815260040161087e90612199565b6000610bad6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50565b6109b683838360405180602001604052806000815250611175565b6008546001600160a01b03163314610c525760405162461bcd60e51b815260040161087e90612199565b600a55565b6000610c6260015490565b8210610cbc5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161087e565b5090565b6000610ccb82611888565b5192915050565b60006001600160a01b038216610d3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161087e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161087e90612199565b610d97600061195f565b565b6008546001600160a01b03163314610dc35760405162461bcd60e51b815260040161087e90612199565b601255565b6008546001600160a01b03163314610df25760405162461bcd60e51b815260040161087e90612199565b601480549115156101000261ff0019909216919091179055565b6060600380546107909061215e565b601454610100900460ff16610e845760405162461bcd60e51b815260206004820152602960248201527f53616c65206d7573742062652061637469766520746f206d696e74206120547560448201526831313c9025b2bb34b760b91b606482015260840161087e565b600e546013541015610ff557601254610e9c33610cd2565b1015610f2b57600e5481601354610eb391906121e4565b1115610ed15760405162461bcd60e51b815260040161087e906121fc565b60125433600090815260156020526040902054610eef9083906121e4565b1115610f265760405162461bcd60e51b815260040161087e9060208082526004908201526326a0ac2360e11b604082015260600190565b61106a565b60115481601354610f3c91906121e4565b1115610f5a5760405162461bcd60e51b815260040161087e906121fc565b60105433600090815260156020526040902054610f789083906121e4565b1115610faf5760405162461bcd60e51b815260040161087e9060208082526004908201526304d4158560e41b604082015260600190565b80600a54610fbd919061221a565b341015610f265760405162461bcd60e51b815260040161087e906020808252600490820152630a68aa8960e31b604082015260600190565b6011548160135461100691906121e4565b11156110245760405162461bcd60e51b815260040161087e906121fc565b80600a54611032919061221a565b34101561106a5760405162461bcd60e51b815260040161087e906020808252600490820152630a68aa8960e31b604082015260600190565b806013600082825461107c91906121e4565b909155505033600090815260156020526040812080548392906110a09084906121e4565b90915550610c0a905033826119b1565b6001600160a01b0382163314156111095760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161087e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111808484846115a3565b61118c848484846119cb565b6111a85760405162461bcd60e51b815260040161087e90612239565b50505050565b600980546111bb9061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546111e79061215e565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b6060611249826001541190565b6112ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087e565b60145460ff1661134957600c80546112c49061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546112f09061215e565b801561133d5780601f106113125761010080835404028352916020019161133d565b820191906000526020600020905b81548152906001019060200180831161132057829003601f168201915b50505050509050919050565b6000611353611aca565b90506000815111611373576040518060200160405280600081525061139e565b8061137d84611ad9565b60405160200161138e92919061228c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113cf5760405162461bcd60e51b815260040161087e90612199565b600d54816113dc60015490565b6113e691906121e4565b111561142b5760405162461bcd60e51b8152602060048201526014602482015273151d58989e4812d95d9a5b8bdcdbdb190b5bdd5d60621b604482015260640161087e565b610b6b82826119b1565b6008546001600160a01b0316331461145f5760405162461bcd60e51b815260040161087e90612199565b6014805460ff1916911515919091179055565b6008546001600160a01b0316331461149c5760405162461bcd60e51b815260040161087e90612199565b8051610b6b90600c906020840190611da1565b6008546001600160a01b031633146114d95760405162461bcd60e51b815260040161087e90612199565b6001600160a01b03811661153e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b610c0a8161195f565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ae82611888565b80519091506000906001600160a01b0316336001600160a01b031614806115e55750336115da84610813565b6001600160a01b0316145b806115f7575081516115f7903361069d565b9050806116615760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161087e565b846001600160a01b031682600001516001600160a01b0316146116d55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161087e565b6001600160a01b0384166117395760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161087e565b6117496000848460000151611547565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661183e576117f1816001541190565b1561183e578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526118a7826001541190565b6119065760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161087e565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611955579392505050565b5060001901611908565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b6b828260405180602001604052806000815250611bd7565b60006001600160a01b0384163b15611abe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0f9033908990889088906004016122bb565b6020604051808303816000875af1925050508015611a4a575060408051601f3d908101601f19168201909252611a47918101906122f8565b60015b611aa4573d808015611a78576040519150601f19603f3d011682016040523d82523d6000602084013e611a7d565b606091505b508051611a9c5760405162461bcd60e51b815260040161087e90612239565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ac2565b5060015b949350505050565b6060600b80546107909061215e565b606081611afd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b275780611b1181612315565b9150611b209050600a83612346565b9150611b01565b60008167ffffffffffffffff811115611b4257611b42611f85565b6040519080825280601f01601f191660200182016040528015611b6c576020820181803683370190505b5090505b8415611ac257611b8160018361235a565b9150611b8e600a86612371565b611b999060306121e4565b60f81b818381518110611bae57611bae612385565b60200101906001600160f81b031916908160001a905350611bd0600a86612346565b9450611b70565b6109b6838383600180546001600160a01b038516611c415760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161087e565b83611c9f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161087e565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d985760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d8c57611d7060008884886119cb565b611d8c5760405162461bcd60e51b815260040161087e90612239565b60019182019101611d1d565b50600155611881565b828054611dad9061215e565b90600052602060002090601f016020900481019282611dcf5760008555611e15565b82601f10611de857805160ff1916838001178555611e15565b82800160010185558215611e15579182015b82811115611e15578251825591602001919060010190611dfa565b50610cbc9291505b80821115610cbc5760008155600101611e1d565b6001600160e01b031981168114610c0a57600080fd5b600060208284031215611e5957600080fd5b813561139e81611e31565b60005b83811015611e7f578181015183820152602001611e67565b838111156111a85750506000910152565b60008151808452611ea8816020860160208601611e64565b601f01601f19169290920160200192915050565b60208152600061139e6020830184611e90565b600060208284031215611ee157600080fd5b5035919050565b80356001600160a01b0381168114611eff57600080fd5b919050565b60008060408385031215611f1757600080fd5b611f2083611ee8565b946020939093013593505050565b600080600060608486031215611f4357600080fd5b611f4c84611ee8565b9250611f5a60208501611ee8565b9150604084013590509250925092565b600060208284031215611f7c57600080fd5b61139e82611ee8565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fb657611fb6611f85565b604051601f8501601f19908116603f01168101908282118183101715611fde57611fde611f85565b81604052809350858152868686011115611ff757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561202357600080fd5b813567ffffffffffffffff81111561203a57600080fd5b8201601f8101841361204b57600080fd5b611ac284823560208401611f9b565b80358015158114611eff57600080fd5b60006020828403121561207c57600080fd5b61139e8261205a565b6000806040838503121561209857600080fd5b6120a183611ee8565b91506120af6020840161205a565b90509250929050565b600080600080608085870312156120ce57600080fd5b6120d785611ee8565b93506120e560208601611ee8565b925060408501359150606085013567ffffffffffffffff81111561210857600080fd5b8501601f8101871361211957600080fd5b61212887823560208401611f9b565b91505092959194509250565b6000806040838503121561214757600080fd5b61215083611ee8565b91506120af60208401611ee8565b600181811c9082168061217257607f821691505b6020821081141561219357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121f7576121f76121ce565b500190565b6020808252600490820152631350561360e21b604082015260600190565b6000816000190483118215151615612234576122346121ce565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161229e818460208801611e64565b8351908301906122b2818360208801611e64565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ee90830184611e90565b9695505050505050565b60006020828403121561230a57600080fd5b815161139e81611e31565b6000600019821415612329576123296121ce565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261235557612355612330565b500490565b60008282101561236c5761236c6121ce565b500390565b60008261238057612380612330565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220102d5f8c0c007fb99ef3112ec59023b10e95aa7ba566bc5468569e3b3c8fbd1f64736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d62514c524e78727959367a45646354787a453379444345767247535767776179374359346e634c67727a57680000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb011461064c578063e0a8085314610662578063e985e9c514610682578063f2c4ce1e146106cb578063f2fde38b146106eb57600080fd5b8063b88d4fde146105c1578063c285e107146105e1578063c6682862146105f7578063c87b56dd1461060c578063cc47a40b1461062c57600080fd5b806395d89b41116100f257806395d89b411461054d5780639853b6ae14610562578063a0712d6814610578578063a22cb4651461058b578063a591252d146105ab57600080fd5b806370a08231146104ba578063715018a6146104da5780637b2f1595146104ef5780638aca408c1461050f5780638da5cb5b1461052f57600080fd5b80632f745c59116101bc57806342842e0e1161018057806342842e0e1461042057806344a0d68a146104405780634f6ccce71461046057806351830227146104805780636352211e1461049a57600080fd5b80632f745c59146103a357806330176e13146103c35780633bfaa33d146103e35780633ccfd60b146103f95780633f2981cf1461040157600080fd5b806318160ddd1161020357806318160ddd1461031557806323b872dd1461032a5780632927be081461034a5780632a5543bc146103605780632d3802421461038d57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611e47565b61070b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610781565b60405161026c9190611ebc565b3480156102a357600080fd5b506102b76102b2366004611ecf565b610813565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611f04565b6108a3565b005b3480156102fd57600080fd5b50610307600a5481565b60405190815260200161026c565b34801561032157600080fd5b50600154610307565b34801561033657600080fd5b506102ef610345366004611f2e565b6109bb565b34801561035657600080fd5b5061030760105481565b34801561036c57600080fd5b5061030761037b366004611f6a565b60156020526000908152604090205481565b34801561039957600080fd5b5061030760135481565b3480156103af57600080fd5b506103076103be366004611f04565b6109c6565b3480156103cf57600080fd5b506102ef6103de366004612011565b610b2e565b3480156103ef57600080fd5b50610307600f5481565b6102ef610b6f565b34801561040d57600080fd5b5060145461026090610100900460ff1681565b34801561042c57600080fd5b506102ef61043b366004611f2e565b610c0d565b34801561044c57600080fd5b506102ef61045b366004611ecf565b610c28565b34801561046c57600080fd5b5061030761047b366004611ecf565b610c57565b34801561048c57600080fd5b506014546102609060ff1681565b3480156104a657600080fd5b506102b76104b5366004611ecf565b610cc0565b3480156104c657600080fd5b506103076104d5366004611f6a565b610cd2565b3480156104e657600080fd5b506102ef610d63565b3480156104fb57600080fd5b506102ef61050a366004611ecf565b610d99565b34801561051b57600080fd5b506102ef61052a36600461206a565b610dc8565b34801561053b57600080fd5b506008546001600160a01b03166102b7565b34801561055957600080fd5b5061028a610e0c565b34801561056e57600080fd5b5061030760125481565b6102ef610586366004611ecf565b610e1b565b34801561059757600080fd5b506102ef6105a6366004612085565b6110b0565b3480156105b757600080fd5b50610307600e5481565b3480156105cd57600080fd5b506102ef6105dc3660046120b8565b611175565b3480156105ed57600080fd5b5061030760115481565b34801561060357600080fd5b5061028a6111ae565b34801561061857600080fd5b5061028a610627366004611ecf565b61123c565b34801561063857600080fd5b506102ef610647366004611f04565b6113a5565b34801561065857600080fd5b50610307600d5481565b34801561066e57600080fd5b506102ef61067d36600461206a565b611435565b34801561068e57600080fd5b5061026061069d366004612134565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106d757600080fd5b506102ef6106e6366004612011565b611472565b3480156106f757600080fd5b506102ef610706366004611f6a565b6114af565b60006001600160e01b031982166380ac58cd60e01b148061073c57506001600160e01b03198216635b5e139f60e01b145b8061075757506001600160e01b0319821663780e9d6360e01b145b8061077b57506001600160e01b0319821660009081526020819052604090205460ff165b92915050565b6060600280546107909061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc9061215e565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b6000610820826001541190565b6108875760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ae82610cc0565b9050806001600160a01b0316836001600160a01b0316141561091d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161087e565b336001600160a01b03821614806109395750610939813361069d565b6109ab5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161087e565b6109b6838383611547565b505050565b6109b68383836115a3565b60006109d183610cd2565b8210610a2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161087e565b6000610a3560015490565b905060008060005b83811015610ace576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a9057805192505b876001600160a01b0316836001600160a01b03161415610ac55786841415610abe5750935061077b92505050565b6001909301925b50600101610a3d565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161087e565b6008546001600160a01b03163314610b585760405162461bcd60e51b815260040161087e90612199565b8051610b6b90600b906020840190611da1565b5050565b6008546001600160a01b03163314610b995760405162461bcd60e51b815260040161087e90612199565b6000610bad6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610bf7576040519150601f19603f3d011682016040523d82523d6000602084013e610bfc565b606091505b5050905080610c0a57600080fd5b50565b6109b683838360405180602001604052806000815250611175565b6008546001600160a01b03163314610c525760405162461bcd60e51b815260040161087e90612199565b600a55565b6000610c6260015490565b8210610cbc5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161087e565b5090565b6000610ccb82611888565b5192915050565b60006001600160a01b038216610d3e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161087e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6008546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161087e90612199565b610d97600061195f565b565b6008546001600160a01b03163314610dc35760405162461bcd60e51b815260040161087e90612199565b601255565b6008546001600160a01b03163314610df25760405162461bcd60e51b815260040161087e90612199565b601480549115156101000261ff0019909216919091179055565b6060600380546107909061215e565b601454610100900460ff16610e845760405162461bcd60e51b815260206004820152602960248201527f53616c65206d7573742062652061637469766520746f206d696e74206120547560448201526831313c9025b2bb34b760b91b606482015260840161087e565b600e546013541015610ff557601254610e9c33610cd2565b1015610f2b57600e5481601354610eb391906121e4565b1115610ed15760405162461bcd60e51b815260040161087e906121fc565b60125433600090815260156020526040902054610eef9083906121e4565b1115610f265760405162461bcd60e51b815260040161087e9060208082526004908201526326a0ac2360e11b604082015260600190565b61106a565b60115481601354610f3c91906121e4565b1115610f5a5760405162461bcd60e51b815260040161087e906121fc565b60105433600090815260156020526040902054610f789083906121e4565b1115610faf5760405162461bcd60e51b815260040161087e9060208082526004908201526304d4158560e41b604082015260600190565b80600a54610fbd919061221a565b341015610f265760405162461bcd60e51b815260040161087e906020808252600490820152630a68aa8960e31b604082015260600190565b6011548160135461100691906121e4565b11156110245760405162461bcd60e51b815260040161087e906121fc565b80600a54611032919061221a565b34101561106a5760405162461bcd60e51b815260040161087e906020808252600490820152630a68aa8960e31b604082015260600190565b806013600082825461107c91906121e4565b909155505033600090815260156020526040812080548392906110a09084906121e4565b90915550610c0a905033826119b1565b6001600160a01b0382163314156111095760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161087e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111808484846115a3565b61118c848484846119cb565b6111a85760405162461bcd60e51b815260040161087e90612239565b50505050565b600980546111bb9061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546111e79061215e565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b6060611249826001541190565b6112ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087e565b60145460ff1661134957600c80546112c49061215e565b80601f01602080910402602001604051908101604052809291908181526020018280546112f09061215e565b801561133d5780601f106113125761010080835404028352916020019161133d565b820191906000526020600020905b81548152906001019060200180831161132057829003601f168201915b50505050509050919050565b6000611353611aca565b90506000815111611373576040518060200160405280600081525061139e565b8061137d84611ad9565b60405160200161138e92919061228c565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113cf5760405162461bcd60e51b815260040161087e90612199565b600d54816113dc60015490565b6113e691906121e4565b111561142b5760405162461bcd60e51b8152602060048201526014602482015273151d58989e4812d95d9a5b8bdcdbdb190b5bdd5d60621b604482015260640161087e565b610b6b82826119b1565b6008546001600160a01b0316331461145f5760405162461bcd60e51b815260040161087e90612199565b6014805460ff1916911515919091179055565b6008546001600160a01b0316331461149c5760405162461bcd60e51b815260040161087e90612199565b8051610b6b90600c906020840190611da1565b6008546001600160a01b031633146114d95760405162461bcd60e51b815260040161087e90612199565b6001600160a01b03811661153e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087e565b610c0a8161195f565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115ae82611888565b80519091506000906001600160a01b0316336001600160a01b031614806115e55750336115da84610813565b6001600160a01b0316145b806115f7575081516115f7903361069d565b9050806116615760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161087e565b846001600160a01b031682600001516001600160a01b0316146116d55760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161087e565b6001600160a01b0384166117395760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161087e565b6117496000848460000151611547565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661183e576117f1816001541190565b1561183e578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526118a7826001541190565b6119065760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161087e565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611955579392505050565b5060001901611908565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b6b828260405180602001604052806000815250611bd7565b60006001600160a01b0384163b15611abe57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a0f9033908990889088906004016122bb565b6020604051808303816000875af1925050508015611a4a575060408051601f3d908101601f19168201909252611a47918101906122f8565b60015b611aa4573d808015611a78576040519150601f19603f3d011682016040523d82523d6000602084013e611a7d565b606091505b508051611a9c5760405162461bcd60e51b815260040161087e90612239565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ac2565b5060015b949350505050565b6060600b80546107909061215e565b606081611afd5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b275780611b1181612315565b9150611b209050600a83612346565b9150611b01565b60008167ffffffffffffffff811115611b4257611b42611f85565b6040519080825280601f01601f191660200182016040528015611b6c576020820181803683370190505b5090505b8415611ac257611b8160018361235a565b9150611b8e600a86612371565b611b999060306121e4565b60f81b818381518110611bae57611bae612385565b60200101906001600160f81b031916908160001a905350611bd0600a86612346565b9450611b70565b6109b6838383600180546001600160a01b038516611c415760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161087e565b83611c9f5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161087e565b6001600160a01b03851660008181526005602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526004909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611d985760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611d8c57611d7060008884886119cb565b611d8c5760405162461bcd60e51b815260040161087e90612239565b60019182019101611d1d565b50600155611881565b828054611dad9061215e565b90600052602060002090601f016020900481019282611dcf5760008555611e15565b82601f10611de857805160ff1916838001178555611e15565b82800160010185558215611e15579182015b82811115611e15578251825591602001919060010190611dfa565b50610cbc9291505b80821115610cbc5760008155600101611e1d565b6001600160e01b031981168114610c0a57600080fd5b600060208284031215611e5957600080fd5b813561139e81611e31565b60005b83811015611e7f578181015183820152602001611e67565b838111156111a85750506000910152565b60008151808452611ea8816020860160208601611e64565b601f01601f19169290920160200192915050565b60208152600061139e6020830184611e90565b600060208284031215611ee157600080fd5b5035919050565b80356001600160a01b0381168114611eff57600080fd5b919050565b60008060408385031215611f1757600080fd5b611f2083611ee8565b946020939093013593505050565b600080600060608486031215611f4357600080fd5b611f4c84611ee8565b9250611f5a60208501611ee8565b9150604084013590509250925092565b600060208284031215611f7c57600080fd5b61139e82611ee8565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611fb657611fb6611f85565b604051601f8501601f19908116603f01168101908282118183101715611fde57611fde611f85565b81604052809350858152868686011115611ff757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561202357600080fd5b813567ffffffffffffffff81111561203a57600080fd5b8201601f8101841361204b57600080fd5b611ac284823560208401611f9b565b80358015158114611eff57600080fd5b60006020828403121561207c57600080fd5b61139e8261205a565b6000806040838503121561209857600080fd5b6120a183611ee8565b91506120af6020840161205a565b90509250929050565b600080600080608085870312156120ce57600080fd5b6120d785611ee8565b93506120e560208601611ee8565b925060408501359150606085013567ffffffffffffffff81111561210857600080fd5b8501601f8101871361211957600080fd5b61212887823560208401611f9b565b91505092959194509250565b6000806040838503121561214757600080fd5b61215083611ee8565b91506120af60208401611ee8565b600181811c9082168061217257607f821691505b6020821081141561219357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121f7576121f76121ce565b500190565b6020808252600490820152631350561360e21b604082015260600190565b6000816000190483118215151615612234576122346121ce565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161229e818460208801611e64565b8351908301906122b2818360208801611e64565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ee90830184611e90565b9695505050505050565b60006020828403121561230a57600080fd5b815161139e81611e31565b6000600019821415612329576123296121ce565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261235557612355612330565b500490565b60008282101561236c5761236c6121ce565b500390565b60008261238057612380612330565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220102d5f8c0c007fb99ef3112ec59023b10e95aa7ba566bc5468569e3b3c8fbd1f64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d62514c524e78727959367a45646354787a453379444345767247535767776179374359346e634c67727a57680000000000000000000000
-----Decoded View---------------
Arg [0] : _notRevealedUri (string): ipfs://QmbQLRNxryY6zEdcTxzE3yDCEvrGSWgway7CY4ncLgrzWh
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [2] : 697066733a2f2f516d62514c524e78727959367a45646354787a453379444345
Arg [3] : 767247535767776179374359346e634c67727a57680000000000000000000000
Deployed Bytecode Sourcemap
46601:3965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31041:372;;;;;;;;;;-1:-1:-1;31041:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31041:372:0;;;;;;;;32927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34489:214::-;;;;;;;;;;-1:-1:-1;34489:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34489:214:0;1528:203:1;34010:413:0;;;;;;;;;;-1:-1:-1;34010:413:0;;;;;:::i;:::-;;:::i;:::-;;46694:33;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;46694:33:0;2173:177:1;29298:100:0;;;;;;;;;;-1:-1:-1;29378:12:0;;29298:100;;35365:162;;;;;;;;;;-1:-1:-1;35365:162:0;;;;;:::i;:::-;;:::i;46923:34::-;;;;;;;;;;;;;;;;47210:54;;;;;;;;;;-1:-1:-1;47210:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;47087:31;;;;;;;;;;;;;;;;29962:1007;;;;;;;;;;-1:-1:-1;29962:1007:0;;;;;:::i;:::-;;:::i;49004:120::-;;;;;;;;;;-1:-1:-1;49004:120:0;;;;;:::i;:::-;;:::i;46883:32::-;;;;;;;;;;;;;;;;50420:139;;;:::i;47162:32::-;;;;;;;;;;-1:-1:-1;47162:32:0;;;;;;;;;;;35598:177;;;;;;;;;;-1:-1:-1;35598:177:0;;;;;:::i;:::-;;:::i;50339:76::-;;;;;;;;;;-1:-1:-1;50339:76:0;;;;;:::i;:::-;;:::i;29475:187::-;;;;;;;;;;-1:-1:-1;29475:187:0;;;;;:::i;:::-;;:::i;47126:28::-;;;;;;;;;;-1:-1:-1;47126:28:0;;;;;;;;32736:124;;;;;;;;;;-1:-1:-1;32736:124:0;;;;;:::i;:::-;;:::i;31477:221::-;;;;;;;;;;-1:-1:-1;31477:221:0;;;;;:::i;:::-;;:::i;45739:103::-;;;;;;;;;;;;;:::i;50111:124::-;;;;;;;;;;-1:-1:-1;50111:124:0;;;;;:::i;:::-;;:::i;50241:93::-;;;;;;;;;;-1:-1:-1;50241:93:0;;;;;:::i;:::-;;:::i;45088:87::-;;;;;;;;;;-1:-1:-1;45161:6:0;;-1:-1:-1;;;;;45161:6:0;45088:87;;33096:104;;;;;;;;;;;;;:::i;47038:41::-;;;;;;;;;;;;;;;;47455:1404;;;;;;:::i;:::-;;:::i;34775:288::-;;;;;;;;;;-1:-1:-1;34775:288:0;;;;;:::i;:::-;;:::i;46845:30::-;;;;;;;;;;;;;;;;35846:355;;;;;;;;;;-1:-1:-1;35846:355:0;;;;;:::i;:::-;;:::i;46965:65::-;;;;;;;;;;;;;;;;46649:37;;;;;;;;;;;;;:::i;49557:551::-;;;;;;;;;;-1:-1:-1;49557:551:0;;;;;:::i;:::-;;:::i;49350:199::-;;;;;;;;;;-1:-1:-1;49350:199:0;;;;;:::i;:::-;;:::i;46807:30::-;;;;;;;;;;;;;;;;49251:90;;;;;;;;;;-1:-1:-1;49251:90:0;;;;;:::i;:::-;;:::i;35134:164::-;;;;;;;;;;-1:-1:-1;35134:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35255:25:0;;;35231:4;35255:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35134:164;48867:128;;;;;;;;;;-1:-1:-1;48867:128:0;;;;;:::i;:::-;;:::i;45997:201::-;;;;;;;;;;-1:-1:-1;45997:201:0;;;;;:::i;:::-;;:::i;31041:372::-;31143:4;-1:-1:-1;;;;;;31180:40:0;;-1:-1:-1;;;31180:40:0;;:105;;-1:-1:-1;;;;;;;31237:48:0;;-1:-1:-1;;;31237:48:0;31180:105;:172;;;-1:-1:-1;;;;;;;31302:50:0;;-1:-1:-1;;;31302:50:0;31180:172;:225;;;-1:-1:-1;;;;;;;8765:33:0;;8741:4;8765:33;;;;;;;;;;;;;31369:36;31160:245;31041:372;-1:-1:-1;;31041:372:0:o;32927:100::-;32981:13;33014:5;33007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32927:100;:::o;34489:214::-;34557:7;34585:16;34593:7;36547:12;;-1:-1:-1;36537:22:0;36456:111;34585:16;34577:74;;;;-1:-1:-1;;;34577:74:0;;6237:2:1;34577:74:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:34;6295:18;;;6288:62;-1:-1:-1;;;6366:18:1;;;6359:43;6419:19;;34577:74:0;;;;;;;;;-1:-1:-1;34671:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34671:24:0;;34489:214::o;34010:413::-;34083:13;34099:24;34115:7;34099:15;:24::i;:::-;34083:40;;34148:5;-1:-1:-1;;;;;34142:11:0;:2;-1:-1:-1;;;;;34142:11:0;;;34134:58;;;;-1:-1:-1;;;34134:58:0;;6651:2:1;34134:58:0;;;6633:21:1;6690:2;6670:18;;;6663:30;6729:34;6709:18;;;6702:62;-1:-1:-1;;;6780:18:1;;;6773:32;6822:19;;34134:58:0;6449:398:1;34134:58:0;686:10;-1:-1:-1;;;;;34227:21:0;;;;:62;;-1:-1:-1;34252:37:0;34269:5;686:10;35134:164;:::i;34252:37::-;34205:169;;;;-1:-1:-1;;;34205:169:0;;7054:2:1;34205:169:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;7203:27;7183:18;;;7176:55;7248:19;;34205:169:0;6852:421:1;34205:169:0;34387:28;34396:2;34400:7;34409:5;34387:8;:28::i;:::-;34072:351;34010:413;;:::o;35365:162::-;35491:28;35501:4;35507:2;35511:7;35491:9;:28::i;29962:1007::-;30051:7;30087:16;30097:5;30087:9;:16::i;:::-;30079:5;:24;30071:71;;;;-1:-1:-1;;;30071:71:0;;7480:2:1;30071:71:0;;;7462:21:1;7519:2;7499:18;;;7492:30;7558:34;7538:18;;;7531:62;-1:-1:-1;;;7609:18:1;;;7602:32;7651:19;;30071:71:0;7278:398:1;30071:71:0;30153:22;30178:13;29378:12;;;29298:100;30178:13;30153:38;;30202:19;30232:25;30421:9;30416:466;30436:14;30432:1;:18;30416:466;;;30476:31;30510:14;;;:11;:14;;;;;;;;;30476:48;;;;;;;;;-1:-1:-1;;;;;30476:48:0;;;;;-1:-1:-1;;;30476:48:0;;;;;;;;;;;;30547:28;30543:111;;30620:14;;;-1:-1:-1;30543:111:0;30697:5;-1:-1:-1;;;;;30676:26:0;:17;-1:-1:-1;;;;;30676:26:0;;30672:195;;;30746:5;30731:11;:20;30727:85;;;-1:-1:-1;30787:1:0;-1:-1:-1;30780:8:0;;-1:-1:-1;;;30780:8:0;30727:85;30834:13;;;;;30672:195;-1:-1:-1;30452:3:0;;30416:466;;;-1:-1:-1;30905:56:0;;-1:-1:-1;;;30905:56:0;;7883:2:1;30905:56:0;;;7865:21:1;7922:2;7902:18;;;7895:30;7961:34;7941:18;;;7934:62;-1:-1:-1;;;8012:18:1;;;8005:44;8066:19;;30905:56:0;7681:410:1;49004:120:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49088:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49004:120:::0;:::o;50420:139::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50470:7:::1;50491;45161:6:::0;;-1:-1:-1;;;;;45161:6:0;;45088:87;50491:7:::1;-1:-1:-1::0;;;;;50483:21:0::1;50512;50483:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50469:69;;;50550:2;50542:11;;;::::0;::::1;;50465:94;50420:139::o:0;35598:177::-;35728:39;35745:4;35751:2;35755:7;35728:39;;;;;;;;;;;;:16;:39::i;50339:76::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50395:4:::1;:15:::0;50339:76::o;29475:187::-;29542:7;29578:13;29378:12;;;29298:100;29578:13;29570:5;:21;29562:69;;;;-1:-1:-1;;;29562:69:0;;8869:2:1;29562:69:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:33;9041:19;;29562:69:0;8667:399:1;29562:69:0;-1:-1:-1;29649:5:0;29475:187::o;32736:124::-;32800:7;32827:20;32839:7;32827:11;:20::i;:::-;:25;;32736:124;-1:-1:-1;;32736:124:0:o;31477:221::-;31541:7;-1:-1:-1;;;;;31569:19:0;;31561:75;;;;-1:-1:-1;;;31561:75:0;;9273:2:1;31561:75:0;;;9255:21:1;9312:2;9292:18;;;9285:30;9351:34;9331:18;;;9324:62;-1:-1:-1;;;9402:18:1;;;9395:41;9453:19;;31561:75:0;9071:407:1;31561:75:0;-1:-1:-1;;;;;;31662:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;31662:27:0;;31477:221::o;45739:103::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;45804:30:::1;45831:1;45804:18;:30::i;:::-;45739:103::o:0;50111:124::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50190:22:::1;:40:::0;50111:124::o;50241:93::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;50305:12:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;50305:24:0;;::::1;::::0;;;::::1;::::0;;50241:93::o;33096:104::-;33152:13;33185:7;33178:14;;;;;:::i;47455:1404::-;47531:12;;;;;;;47523:66;;;;-1:-1:-1;;;47523:66:0;;9685:2:1;47523:66:0;;;9667:21:1;9724:2;9704:18;;;9697:30;9763:34;9743:18;;;9736:62;-1:-1:-1;;;9814:18:1;;;9807:39;9863:19;;47523:66:0;9483:405:1;47523:66:0;47619:11;;47604:12;;:26;47600:1121;;;47740:22;;47716:21;47726:10;47716:9;:21::i;:::-;:46;47713:779;;;47928:11;;47916:8;47901:12;;:23;;;;:::i;:::-;:38;;47893:55;;;;-1:-1:-1;;;47893:55:0;;;;;;;:::i;:::-;48043:22;;48017:10;47997:31;;;;:19;:31;;;;;;:42;;48031:8;;47997:42;:::i;:::-;:68;;47967:146;;;;-1:-1:-1;;;47967:146:0;;;;;;10692:2:1;10674:21;;;10731:1;10711:18;;;10704:29;-1:-1:-1;;;10764:2:1;10749:18;;10742:34;10808:2;10793:18;;10490:327;47967:146:0;47600:1121;;47713:779;48232:13;;48220:8;48205:12;;:23;;;;:::i;:::-;:40;;48197:57;;;;-1:-1:-1;;;48197:57:0;;;;;;;:::i;:::-;48349:15;;48323:10;48303:31;;;;:19;:31;;;;;;:42;;48337:8;;48303:42;:::i;:::-;:61;;48273:139;;;;-1:-1:-1;;;48273:139:0;;;;;;11024:2:1;11006:21;;;11063:1;11043:18;;;11036:29;-1:-1:-1;;;11096:2:1;11081:18;;11074:34;11140:2;11125:18;;10822:327;48273:139:0;48459:8;48452:4;;:15;;;;:::i;:::-;48439:9;:28;;48431:45;;;;-1:-1:-1;;;48431:45:0;;;;;;11529:2:1;11511:21;;;11568:1;11548:18;;;11541:29;-1:-1:-1;;;11601:2:1;11586:18;;11579:34;11645:2;11630:18;;11327:327;47600:1121:0;48625:13;;48613:8;48598:12;;:23;;;;:::i;:::-;:40;;48590:57;;;;-1:-1:-1;;;48590:57:0;;;;;;;:::i;:::-;48692:8;48685:4;;:15;;;;:::i;:::-;48672:9;:28;;48664:45;;;;-1:-1:-1;;;48664:45:0;;;;;;11529:2:1;11511:21;;;11568:1;11548:18;;;11541:29;-1:-1:-1;;;11601:2:1;11586:18;;11579:34;11645:2;11630:18;;11327:327;48664:45:0;48747:8;48731:12;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;48786:10:0;48766:31;;;;:19;:31;;;;;:43;;48801:8;;48766:31;:43;;48801:8;;48766:43;:::i;:::-;;;;-1:-1:-1;48820:31:0;;-1:-1:-1;48830:10:0;48842:8;48820:9;:31::i;34775:288::-;-1:-1:-1;;;;;34870:24:0;;686:10;34870:24;;34862:63;;;;-1:-1:-1;;;34862:63:0;;11861:2:1;34862:63:0;;;11843:21:1;11900:2;11880:18;;;11873:30;11939:28;11919:18;;;11912:56;11985:18;;34862:63:0;11659:350:1;34862:63:0;686:10;34938:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34938:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34938:53:0;;;;;;;;;;35007:48;;540:41:1;;;34938:42:0;;686:10;35007:48;;513:18:1;35007:48:0;;;;;;;34775:288;;:::o;35846:355::-;36005:28;36015:4;36021:2;36025:7;36005:9;:28::i;:::-;36066:48;36089:4;36095:2;36099:7;36108:5;36066:22;:48::i;:::-;36044:149;;;;-1:-1:-1;;;36044:149:0;;;;;;;:::i;:::-;35846:355;;;;:::o;46649:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49557:551::-;49675:13;49724:16;49732:7;36547:12;;-1:-1:-1;36537:22:0;36456:111;49724:16;49706:105;;;;-1:-1:-1;;;49706:105:0;;12636:2:1;49706:105:0;;;12618:21:1;12675:2;12655:18;;;12648:30;12714:34;12694:18;;;12687:62;-1:-1:-1;;;12765:18:1;;;12758:45;12820:19;;49706:105:0;12434:411:1;49706:105:0;49836:8;;;;49832:62;;49868:14;49861:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49557:551;;;:::o;49832:62::-;49906:28;49937:10;:8;:10::i;:::-;49906:41;;49998:1;49973:14;49967:28;:32;:133;;;;;;;;;;;;;;;;;50039:14;50055:25;50072:7;50055:16;:25::i;:::-;50022:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49967:133;49960:140;49557:551;-1:-1:-1;;;49557:551:0:o;49350:199::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49467:9:::1;;49455:8;49439:13;29378:12:::0;;;29298:100;49439:13:::1;:24;;;;:::i;:::-;:37;;49431:70;;;::::0;-1:-1:-1;;;49431:70:0;;13527:2:1;49431:70:0::1;::::0;::::1;13509:21:1::0;13566:2;13546:18;;;13539:30;-1:-1:-1;;;13585:18:1;;;13578:50;13645:18;;49431:70:0::1;13325:344:1::0;49431:70:0::1;49514:27;49524:6;49532:8;49514:9;:27::i;49251:90::-:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;49316:8:::1;:17:::0;;-1:-1:-1;;49316:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49251:90::o;48867:128::-;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;48955:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;45997:201::-:0;45161:6;;-1:-1:-1;;;;;45161:6:0;686:10;45308:23;45300:68;;;;-1:-1:-1;;;45300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46086:22:0;::::1;46078:73;;;::::0;-1:-1:-1;;;46078:73:0;;13876:2:1;46078:73:0::1;::::0;::::1;13858:21:1::0;13915:2;13895:18;;;13888:30;13954:34;13934:18;;;13927:62;-1:-1:-1;;;14005:18:1;;;13998:36;14051:19;;46078:73:0::1;13674:402:1::0;46078:73:0::1;46162:28;46181:8;46162:18;:28::i;41378:196::-:0;41493:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41493:29:0;-1:-1:-1;;;;;41493:29:0;;;;;;;;;41538:28;;41493:24;;41538:28;;;;;;;41378:196;;;:::o;39258:2002::-;39373:35;39411:20;39423:7;39411:11;:20::i;:::-;39486:18;;39373:58;;-1:-1:-1;39444:22:0;;-1:-1:-1;;;;;39470:34:0;686:10;-1:-1:-1;;;;;39470:34:0;;:87;;;-1:-1:-1;686:10:0;39521:20;39533:7;39521:11;:20::i;:::-;-1:-1:-1;;;;;39521:36:0;;39470:87;:154;;;-1:-1:-1;39591:18:0;;39574:50;;686:10;35134:164;:::i;39574:50::-;39444:181;;39646:17;39638:80;;;;-1:-1:-1;;;39638:80:0;;14283:2:1;39638:80:0;;;14265:21:1;14322:2;14302:18;;;14295:30;14361:34;14341:18;;;14334:62;-1:-1:-1;;;14412:18:1;;;14405:48;14470:19;;39638:80:0;14081:414:1;39638:80:0;39761:4;-1:-1:-1;;;;;39739:26:0;:13;:18;;;-1:-1:-1;;;;;39739:26:0;;39731:77;;;;-1:-1:-1;;;39731:77:0;;14702:2:1;39731:77:0;;;14684:21:1;14741:2;14721:18;;;14714:30;14780:34;14760:18;;;14753:62;-1:-1:-1;;;14831:18:1;;;14824:36;14877:19;;39731:77:0;14500:402:1;39731:77:0;-1:-1:-1;;;;;39827:16:0;;39819:66;;;;-1:-1:-1;;;39819:66:0;;15109:2:1;39819:66:0;;;15091:21:1;15148:2;15128:18;;;15121:30;15187:34;15167:18;;;15160:62;-1:-1:-1;;;15238:18:1;;;15231:35;15283:19;;39819:66:0;14907:401:1;39819:66:0;40006:49;40023:1;40027:7;40036:13;:18;;;40006:8;:49::i;:::-;-1:-1:-1;;;;;40351:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;40351:31:0;;;-1:-1:-1;;;;;40351:31:0;;;-1:-1:-1;;40351:31:0;;;;;;;40397:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40397:29:0;;;;;;;;;;;;;40443:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;40488:61:0;;;;-1:-1:-1;;;40533:15:0;40488:61;;;;;;40823:11;;;40853:24;;;;;:29;40823:11;;40853:29;40849:295;;40921:20;40929:11;36547:12;;-1:-1:-1;36537:22:0;36456:111;40921:20;40917:212;;;40998:18;;;40966:24;;;:11;:24;;;;;;;;:50;;41081:28;;;;41039:70;;-1:-1:-1;;;41039:70:0;-1:-1:-1;;;;;;41039:70:0;;;-1:-1:-1;;;;;40966:50:0;;;41039:70;;;;;;;40917:212;40326:829;41191:7;41187:2;-1:-1:-1;;;;;41172:27:0;41181:4;-1:-1:-1;;;;;41172:27:0;;;;;;;;;;;41210:42;39362:1898;;39258:2002;;;:::o;32137:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;32240:16:0;32248:7;36547:12;;-1:-1:-1;36537:22:0;36456:111;32240:16;32232:71;;;;-1:-1:-1;;;32232:71:0;;15515:2:1;32232:71:0;;;15497:21:1;15554:2;15534:18;;;15527:30;15593:34;15573:18;;;15566:62;-1:-1:-1;;;15644:18:1;;;15637:40;15694:19;;32232:71:0;15313:406:1;32232:71:0;32361:7;32341:245;32408:31;32442:17;;;:11;:17;;;;;;;;;32408:51;;;;;;;;;-1:-1:-1;;;;;32408:51:0;;;;;-1:-1:-1;;;32408:51:0;;;;;;;;;;;;32482:28;32478:93;;32542:9;32137:537;-1:-1:-1;;;32137:537:0:o;32478:93::-;-1:-1:-1;;;32381:6:0;32341:245;;46358:191;46451:6;;;-1:-1:-1;;;;;46468:17:0;;;-1:-1:-1;;;;;;46468:17:0;;;;;;;46501:40;;46451:6;;;46468:17;46451:6;;46501:40;;46432:16;;46501:40;46421:128;46358:191;:::o;36575:104::-;36644:27;36654:2;36658:8;36644:27;;;;;;;;;;;;:9;:27::i;42139:804::-;42294:4;-1:-1:-1;;;;;42315:13:0;;17844:20;17883:8;42311:625;;42351:72;;-1:-1:-1;;;42351:72:0;;-1:-1:-1;;;;;42351:36:0;;;;;:72;;686:10;;42402:4;;42408:7;;42417:5;;42351:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42351:72:0;;;;;;;;-1:-1:-1;;42351:72:0;;;;;;;;;;;;:::i;:::-;;;42347:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42597:13:0;;42593:273;;42640:61;;-1:-1:-1;;;42640:61:0;;;;;;;:::i;42593:273::-;42816:6;42810:13;42801:6;42797:2;42793:15;42786:38;42347:534;-1:-1:-1;;;;;;42474:55:0;-1:-1:-1;;;42474:55:0;;-1:-1:-1;42467:62:0;;42311:625;-1:-1:-1;42920:4:0;42311:625;42139:804;;;;;;:::o;49133:107::-;49193:13;49223:12;49216:19;;;;;:::i;24961:723::-;25017:13;25238:10;25234:53;;-1:-1:-1;;25265:10:0;;;;;;;;;;;;-1:-1:-1;;;25265:10:0;;;;;24961:723::o;25234:53::-;25312:5;25297:12;25353:78;25360:9;;25353:78;;25386:8;;;;:::i;:::-;;-1:-1:-1;25409:10:0;;-1:-1:-1;25417:2:0;25409:10;;:::i;:::-;;;25353:78;;;25441:19;25473:6;25463:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25463:17:0;;25441:39;;25491:154;25498:10;;25491:154;;25525:11;25535:1;25525:11;;:::i;:::-;;-1:-1:-1;25594:10:0;25602:2;25594:5;:10;:::i;:::-;25581:24;;:2;:24;:::i;:::-;25568:39;;25551:6;25558;25551:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25551:56:0;;;;;;;;-1:-1:-1;25622:11:0;25631:2;25622:11;;:::i;:::-;;;25491:154;;37042:163;37165:32;37171:2;37175:8;37185:5;37192:4;37628:12;;-1:-1:-1;;;;;37659:16:0;;37651:62;;;;-1:-1:-1;;;37651:62:0;;17866:2:1;37651:62:0;;;17848:21:1;17905:2;17885:18;;;17878:30;17944:34;17924:18;;;17917:62;-1:-1:-1;;;17995:18:1;;;17988:31;18036:19;;37651:62:0;17664:397:1;37651:62:0;37732:13;37724:66;;;;-1:-1:-1;;;37724:66:0;;18268:2:1;37724:66:0;;;18250:21:1;18307:2;18287:18;;;18280:30;18346:34;18326:18;;;18319:62;-1:-1:-1;;;18397:18:1;;;18390:38;18445:19;;37724:66:0;18066:404:1;37724:66:0;-1:-1:-1;;;;;38142:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;38142:45:0;;-1:-1:-1;;;;;38142:45:0;;;;;;;;;;38202:50;;;;;;;;;;;;;;38269:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;38319:66:0;;;;-1:-1:-1;;;38369:15:0;38319:66;;;;;;;38269:25;;38454:415;38474:8;38470:1;:12;38454:415;;;38513:38;;38538:12;;-1:-1:-1;;;;;38513:38:0;;;38530:1;;38513:38;;38530:1;;38513:38;38574:4;38570:249;;;38637:59;38668:1;38672:2;38676:12;38690:5;38637:22;:59::i;:::-;38603:196;;;;-1:-1:-1;;;38603:196:0;;;;;;;:::i;:::-;38839:14;;;;;38484:3;38454:415;;;-1:-1:-1;38885:12:0;:27;38936:60;35846:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;8096:356::-;8298:2;8280:21;;;8317:18;;;8310:30;8376:34;8371:2;8356:18;;8349:62;8443:2;8428:18;;8096:356::o;9893:127::-;9954:10;9949:3;9945:20;9942:1;9935:31;9985:4;9982:1;9975:15;10009:4;10006:1;9999:15;10025:128;10065:3;10096:1;10092:6;10089:1;10086:13;10083:39;;;10102:18;;:::i;:::-;-1:-1:-1;10138:9:1;;10025:128::o;10158:327::-;10360:2;10342:21;;;10399:1;10379:18;;;10372:29;-1:-1:-1;;;10432:2:1;10417:18;;10410:34;10476:2;10461:18;;10158:327::o;11154:168::-;11194:7;11260:1;11256;11252:6;11248:14;11245:1;11242:21;11237:1;11230:9;11223:17;11219:45;11216:71;;;11267:18;;:::i;:::-;-1:-1:-1;11307:9:1;;11154:168::o;12014:415::-;12216:2;12198:21;;;12255:2;12235:18;;;12228:30;12294:34;12289:2;12274:18;;12267:62;-1:-1:-1;;;12360:2:1;12345:18;;12338:49;12419:3;12404:19;;12014:415::o;12850:470::-;13029:3;13067:6;13061:13;13083:53;13129:6;13124:3;13117:4;13109:6;13105:17;13083:53;:::i;:::-;13199:13;;13158:16;;;;13221:57;13199:13;13158:16;13255:4;13243:17;;13221:57;:::i;:::-;13294:20;;12850:470;-1:-1:-1;;;;12850:470:1:o;16140:489::-;-1:-1:-1;;;;;16409:15:1;;;16391:34;;16461:15;;16456:2;16441:18;;16434:43;16508:2;16493:18;;16486:34;;;16556:3;16551:2;16536:18;;16529:31;;;16334:4;;16577:46;;16603:19;;16595:6;16577:46;:::i;:::-;16569:54;16140:489;-1:-1:-1;;;;;;16140:489:1:o;16634:249::-;16703:6;16756:2;16744:9;16735:7;16731:23;16727:32;16724:52;;;16772:1;16769;16762:12;16724:52;16804:9;16798:16;16823:30;16847:5;16823:30;:::i;16888:135::-;16927:3;-1:-1:-1;;16948:17:1;;16945:43;;;16968:18;;:::i;:::-;-1:-1:-1;17015:1:1;17004:13;;16888:135::o;17028:127::-;17089:10;17084:3;17080:20;17077:1;17070:31;17120:4;17117:1;17110:15;17144:4;17141:1;17134:15;17160:120;17200:1;17226;17216:35;;17231:18;;:::i;:::-;-1:-1:-1;17265:9:1;;17160:120::o;17285:125::-;17325:4;17353:1;17350;17347:8;17344:34;;;17358:18;;:::i;:::-;-1:-1:-1;17395:9:1;;17285:125::o;17415:112::-;17447:1;17473;17463:35;;17478:18;;:::i;:::-;-1:-1:-1;17512:9:1;;17415:112::o;17532:127::-;17593:10;17588:3;17584:20;17581:1;17574:31;17624:4;17621:1;17614:15;17648:4;17645:1;17638:15
Swarm Source
ipfs://102d5f8c0c007fb99ef3112ec59023b10e95aa7ba566bc5468569e3b3c8fbd1f
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.