ERC-721
Overview
Max Total Supply
116 STC
Holders
53
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 STCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StrayCat
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-06 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: contracts/NFT.sol pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // 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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * `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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } contract StrayCat is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 5555; uint256 public price = 0.005 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 5; uint256 constant public PUBLIC_MINT_LIMIT = 10; uint currentFreeNum = 0; uint256 freeLimit = 3555; string public baseURI; string public CONTRACT_URI; bool public paused = true; mapping(address => bool) public userMintedFree; mapping(address => uint256) public numUserMints; constructor() ERC721A("StrayCat_Official", "STC") { } /* private function */ function _startTokenId() internal view virtual override returns (uint256) { return 1; } /* public function */ function ownerMint(uint256 quantity, address reciever) public payable onlyOwner { _mint(reciever, quantity); } function freeMint(uint256 quantity) external payable mintCompliance(quantity) { require(msg.value == 0, "This phase is free"); require(quantity <= 2, "Only 1 free"); require(!userMintedFree[msg.sender], "User max free limit"); require(currentFreeNum < freeLimit,"Exceed FreeMint limit"); userMintedFree[msg.sender] = true; currentFreeNum += quantity; _mint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable mintCompliance(quantity) { require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high"); uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); require(msg.value >= (price * quantity), "price not enough, 0.005ETH each"); numUserMints[msg.sender] = (currMints + quantity); _mint(msg.sender, quantity); } /* view function */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json")); } function contractURI() public view returns (string memory) { return CONTRACT_URI; } /* owner function */ function setBaseURI(string memory _baseUri) public onlyOwner { baseURI = _baseUri; } function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() external payable onlyOwner { address DEV_ADDRESS = 0x250238204c9859C303D44b414A546FEe4999E79f; (bool succ, ) = payable(DEV_ADDRESS).call{ value: address(this).balance / 3 }(""); require(succ, "Dev transfer failed"); // Withdraw remaining balance to the owner wallet (succ, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(succ, "Owner transfer failed"); } modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"reciever","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526611c37937e080006009556000600a55610de3600b556001600e60006101000a81548160ff0219169083151502179055503480156200004257600080fd5b506040518060400160405280601181526020017f53747261794361745f4f6666696369616c0000000000000000000000000000008152506040518060400160405280600381526020017f5354430000000000000000000000000000000000000000000000000000000000815250620000cf620000c36200011f60201b60201c565b6200012760201b60201c565b8160039080519060200190620000e7929190620001f4565b50806004908051906020019062000100929190620001f4565b5062000111620001eb60201b60201c565b600181905550505062000309565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200020290620002a4565b90600052602060002090601f01602090048101928262000226576000855562000272565b82601f106200024157805160ff191683800117855562000272565b8280016001018555821562000272579182015b828111156200027157825182559160200191906001019062000254565b5b50905062000281919062000285565b5090565b5b80821115620002a057600081600090555060010162000286565b5090565b60006002820490506001821680620002bd57607f821691505b60208210811415620002d457620002d3620002da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6136f480620003196000396000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106e6578063d52c57e014610723578063e8a3d4851461073f578063e985e9c51461076a578063f2fde38b146107a7576101f9565b8063a035b1fe1461063e578063a22cb46514610669578063b88d4fde14610692578063bceae77b146106bb576101f9565b80637c928fe9116100dc5780637c928fe9146105a35780638da5cb5b146105bf578063938e3d7b146105ea57806395d89b4114610613576101f9565b80636c0360eb146104e757806370a0823114610512578063715018a61461054f5780637aeb724214610566576101f9565b80632fecf20b1161019057806355f804b31161015f57806355f804b3146103ee57806356b4f673146104175780635c975abb146104425780636352211e1461046d57806364f64076146104aa576101f9565b80632fecf20b1461036557806332cb6b0c146103905780633ccfd60b146103bb57806342842e0e146103c5576101f9565b806316c38b3c116101cc57806316c38b3c146102cc57806318160ddd146102f557806323b872dd146103205780632db1154414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906127de565b6107d0565b6040516102329190612d18565b60405180910390f35b34801561024757600080fd5b50610250610862565b60405161025d9190612d33565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612881565b6108f4565b60405161029a9190612cb1565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612771565b610973565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906127b1565b610ab7565b005b34801561030157600080fd5b5061030a610adc565b6040516103179190612f15565b60405180910390f35b34801561032c57600080fd5b506103476004803603810190610342919061265b565b610af3565b005b610363600480360381019061035e9190612881565b610e18565b005b34801561037157600080fd5b5061037a6110b3565b6040516103879190612f15565b60405180910390f35b34801561039c57600080fd5b506103a56110b8565b6040516103b29190612f15565b60405180910390f35b6103c36110be565b005b3480156103d157600080fd5b506103ec60048036038101906103e7919061265b565b611247565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612838565b611267565b005b34801561042357600080fd5b5061042c611289565b6040516104399190612d33565b60405180910390f35b34801561044e57600080fd5b50610457611317565b6040516104649190612d18565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612881565b61132a565b6040516104a19190612cb1565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906125ee565b61133c565b6040516104de9190612d18565b60405180910390f35b3480156104f357600080fd5b506104fc61135c565b6040516105099190612d33565b60405180910390f35b34801561051e57600080fd5b50610539600480360381019061053491906125ee565b6113ea565b6040516105469190612f15565b60405180910390f35b34801561055b57600080fd5b506105646114a3565b005b34801561057257600080fd5b5061058d600480360381019061058891906125ee565b6114b7565b60405161059a9190612f15565b60405180910390f35b6105bd60048036038101906105b89190612881565b6114cf565b005b3480156105cb57600080fd5b506105d46117be565b6040516105e19190612cb1565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612838565b6117e7565b005b34801561061f57600080fd5b50610628611809565b6040516106359190612d33565b60405180910390f35b34801561064a57600080fd5b5061065361189b565b6040516106609190612f15565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612731565b6118a1565b005b34801561069e57600080fd5b506106b960048036038101906106b491906126ae565b6119ac565b005b3480156106c757600080fd5b506106d0611a1f565b6040516106dd9190612f15565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612881565b611a24565b60405161071a9190612d33565b60405180910390f35b61073d600480360381019061073891906128ae565b611a58565b005b34801561074b57600080fd5b50610754611a6e565b6040516107619190612d33565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c919061261b565b611b00565b60405161079e9190612d18565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c991906125ee565b611b94565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610871906131e5565b80601f016020809104026020016040519081016040528092919081815260200182805461089d906131e5565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b60006108ff82611c18565b610935576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097e8261132a565b90508073ffffffffffffffffffffffffffffffffffffffff1661099f611c77565b73ffffffffffffffffffffffffffffffffffffffff1614610a02576109cb816109c6611c77565b611b00565b610a01576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610abf611c7f565b80600e60006101000a81548160ff02191690831515021790555050565b6000610ae6611cfd565b6002546001540303905090565b6000610afe82611d06565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7184611dd4565b91509150610b878187610b82611c77565b611dfb565b610bd357610b9c86610b97611c77565b611b00565b610bd2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c478686866001611e3f565b8015610c5257600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2085610cfc888887611e45565b7c020000000000000000000000000000000000000000000000000000000017611e6d565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610da8576000600185019050600060056000838152602001908152602001600020541415610da6576001548114610da5578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e108686866001611e98565b505050505050565b80600e60009054906101000a900460ff1615610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612ed5565b60405180910390fd5b6115b381610e75610adc565b610e7f919061301a565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790612ef5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612db5565b60405180910390fd5b6005821115610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990612e95565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a8382610fc4919061301a565b1115611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90612df5565b60405180910390fd5b8260095461101391906130a1565b341015611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612d75565b60405180910390fd5b8281611061919061301a565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110ae3384611e9e565b505050565b600581565b6115b381565b6110c6611c7f565b600073250238204c9859c303d44b414a546fee4999e79f905060008173ffffffffffffffffffffffffffffffffffffffff166003476111059190613070565b60405161111190612c9c565b60006040518083038185875af1925050503d806000811461114e576040519150601f19603f3d011682016040523d82523d6000602084013e611153565b606091505b5050905080611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90612eb5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16476040516111bb90612c9c565b60006040518083038185875af1925050503d80600081146111f8576040519150601f19603f3d011682016040523d82523d6000602084013e6111fd565b606091505b50508091505080611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612dd5565b60405180910390fd5b5050565b611262838383604051806020016040528060008152506119ac565b505050565b61126f611c7f565b80600c9080519060200190611285929190612402565b5050565b600d8054611296906131e5565b80601f01602080910402602001604051908101604052809291908181526020018280546112c2906131e5565b801561130f5780601f106112e45761010080835404028352916020019161130f565b820191906000526020600020905b8154815290600101906020018083116112f257829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600061133582611d06565b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600c8054611369906131e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611395906131e5565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114ab611c7f565b6114b5600061205c565b565b60106020528060005260406000206000915090505481565b80600e60009054906101000a900460ff1615611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790612ed5565b60405180910390fd5b6115b38161152c610adc565b611536919061301a565b1115611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612ef5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90612db5565b60405180910390fd5b60003414611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90612e75565b60405180910390fd5b600282111561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390612d55565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090612e55565b60405180910390fd5b600b54600a541061173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690612e15565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600a60008282546117a9919061301a565b925050819055506117ba3383611e9e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117ef611c7f565b80600d9080519060200190611805929190612402565b5050565b606060048054611818906131e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611844906131e5565b80156118915780601f1061186657610100808354040283529160200191611891565b820191906000526020600020905b81548152906001019060200180831161187457829003601f168201915b5050505050905090565b60095481565b80600860006118ae611c77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661195b611c77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a09190612d18565b60405180910390a35050565b6119b7848484610af3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a19576119e284848484612120565b611a18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a81565b6060600c611a3183612280565b604051602001611a42929190612c6d565b6040516020818303038152906040529050919050565b611a60611c7f565b611a6a8183611e9e565b5050565b6060600d8054611a7d906131e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa9906131e5565b8015611af65780601f10611acb57610100808354040283529160200191611af6565b820191906000526020600020905b815481529060010190602001808311611ad957829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b9c611c7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390612d95565b60405180910390fd5b611c158161205c565b50565b600081611c23611cfd565b11158015611c32575060015482105b8015611c70575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611c876123e1565b73ffffffffffffffffffffffffffffffffffffffff16611ca56117be565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290612e35565b60405180910390fd5b565b60006001905090565b60008082905080611d15611cfd565b11611d9d57600154811015611d9c5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d9a575b6000811415611d90576005600083600190039350838152602001908152602001600020549050611d65565b8092505050611dcf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5c8686846123e9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060015490506000821415611ee0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eed6000848385611e3f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f6483611f556000866000611e45565b611f5e856123f2565b17611e6d565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461200557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fca565b506000821415612041576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506120576000848385611e98565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612146611c77565b8786866040518563ffffffff1660e01b81526004016121689493929190612ccc565b602060405180830381600087803b15801561218257600080fd5b505af19250505080156121b357506040513d601f19601f820116820180604052508101906121b0919061280b565b60015b61222d573d80600081146121e3576040519150601f19603f3d011682016040523d82523d6000602084013e6121e8565b606091505b50600081511415612225576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156122c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123dc565b600082905060005b600082146122fa5780806122e390613248565b915050600a826122f39190613070565b91506122d0565b60008167ffffffffffffffff8111156123165761231561337e565b5b6040519080825280601f01601f1916602001820160405280156123485781602001600182028036833780820191505090505b5090505b600085146123d55760018261236191906130fb565b9150600a856123709190613291565b603061237c919061301a565b60f81b8183815181106123925761239161334f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ce9190613070565b945061234c565b8093505050505b919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b82805461240e906131e5565b90600052602060002090601f0160209004810192826124305760008555612477565b82601f1061244957805160ff1916838001178555612477565b82800160010185558215612477579182015b8281111561247657825182559160200191906001019061245b565b5b5090506124849190612488565b5090565b5b808211156124a1576000816000905550600101612489565b5090565b60006124b86124b384612f55565b612f30565b9050828152602081018484840111156124d4576124d36133b2565b5b6124df8482856131a3565b509392505050565b60006124fa6124f584612f86565b612f30565b905082815260208101848484011115612516576125156133b2565b5b6125218482856131a3565b509392505050565b60008135905061253881613662565b92915050565b60008135905061254d81613679565b92915050565b60008135905061256281613690565b92915050565b60008151905061257781613690565b92915050565b600082601f830112612592576125916133ad565b5b81356125a28482602086016124a5565b91505092915050565b600082601f8301126125c0576125bf6133ad565b5b81356125d08482602086016124e7565b91505092915050565b6000813590506125e8816136a7565b92915050565b600060208284031215612604576126036133bc565b5b600061261284828501612529565b91505092915050565b60008060408385031215612632576126316133bc565b5b600061264085828601612529565b925050602061265185828601612529565b9150509250929050565b600080600060608486031215612674576126736133bc565b5b600061268286828701612529565b935050602061269386828701612529565b92505060406126a4868287016125d9565b9150509250925092565b600080600080608085870312156126c8576126c76133bc565b5b60006126d687828801612529565b94505060206126e787828801612529565b93505060406126f8878288016125d9565b925050606085013567ffffffffffffffff811115612719576127186133b7565b5b6127258782880161257d565b91505092959194509250565b60008060408385031215612748576127476133bc565b5b600061275685828601612529565b92505060206127678582860161253e565b9150509250929050565b60008060408385031215612788576127876133bc565b5b600061279685828601612529565b92505060206127a7858286016125d9565b9150509250929050565b6000602082840312156127c7576127c66133bc565b5b60006127d58482850161253e565b91505092915050565b6000602082840312156127f4576127f36133bc565b5b600061280284828501612553565b91505092915050565b600060208284031215612821576128206133bc565b5b600061282f84828501612568565b91505092915050565b60006020828403121561284e5761284d6133bc565b5b600082013567ffffffffffffffff81111561286c5761286b6133b7565b5b612878848285016125ab565b91505092915050565b600060208284031215612897576128966133bc565b5b60006128a5848285016125d9565b91505092915050565b600080604083850312156128c5576128c46133bc565b5b60006128d3858286016125d9565b92505060206128e485828601612529565b9150509250929050565b6128f78161312f565b82525050565b61290681613141565b82525050565b600061291782612fcc565b6129218185612fe2565b93506129318185602086016131b2565b61293a816133c1565b840191505092915050565b600061295082612fd7565b61295a8185612ffe565b935061296a8185602086016131b2565b612973816133c1565b840191505092915050565b600061298982612fd7565b612993818561300f565b93506129a38185602086016131b2565b80840191505092915050565b600081546129bc816131e5565b6129c6818661300f565b945060018216600081146129e157600181146129f257612a25565b60ff19831686528186019350612a25565b6129fb85612fb7565b60005b83811015612a1d578154818901526001820191506020810190506129fe565b838801955050505b50505092915050565b6000612a3b600b83612ffe565b9150612a46826133d2565b602082019050919050565b6000612a5e601f83612ffe565b9150612a69826133fb565b602082019050919050565b6000612a81602683612ffe565b9150612a8c82613424565b604082019050919050565b6000612aa4601383612ffe565b9150612aaf82613473565b602082019050919050565b6000612ac7601583612ffe565b9150612ad28261349c565b602082019050919050565b6000612aea601383612ffe565b9150612af5826134c5565b602082019050919050565b6000612b0d601583612ffe565b9150612b18826134ee565b602082019050919050565b6000612b3060058361300f565b9150612b3b82613517565b600582019050919050565b6000612b53602083612ffe565b9150612b5e82613540565b602082019050919050565b6000612b76601383612ffe565b9150612b8182613569565b602082019050919050565b6000612b99601283612ffe565b9150612ba482613592565b602082019050919050565b6000612bbc601183612ffe565b9150612bc7826135bb565b602082019050919050565b6000612bdf600083612ff3565b9150612bea826135e4565b600082019050919050565b6000612c02601383612ffe565b9150612c0d826135e7565b602082019050919050565b6000612c25601283612ffe565b9150612c3082613610565b602082019050919050565b6000612c48601583612ffe565b9150612c5382613639565b602082019050919050565b612c6781613199565b82525050565b6000612c7982856129af565b9150612c85828461297e565b9150612c9082612b23565b91508190509392505050565b6000612ca782612bd2565b9150819050919050565b6000602082019050612cc660008301846128ee565b92915050565b6000608082019050612ce160008301876128ee565b612cee60208301866128ee565b612cfb6040830185612c5e565b8181036060830152612d0d818461290c565b905095945050505050565b6000602082019050612d2d60008301846128fd565b92915050565b60006020820190508181036000830152612d4d8184612945565b905092915050565b60006020820190508181036000830152612d6e81612a2e565b9050919050565b60006020820190508181036000830152612d8e81612a51565b9050919050565b60006020820190508181036000830152612dae81612a74565b9050919050565b60006020820190508181036000830152612dce81612a97565b9050919050565b60006020820190508181036000830152612dee81612aba565b9050919050565b60006020820190508181036000830152612e0e81612add565b9050919050565b60006020820190508181036000830152612e2e81612b00565b9050919050565b60006020820190508181036000830152612e4e81612b46565b9050919050565b60006020820190508181036000830152612e6e81612b69565b9050919050565b60006020820190508181036000830152612e8e81612b8c565b9050919050565b60006020820190508181036000830152612eae81612baf565b9050919050565b60006020820190508181036000830152612ece81612bf5565b9050919050565b60006020820190508181036000830152612eee81612c18565b9050919050565b60006020820190508181036000830152612f0e81612c3b565b9050919050565b6000602082019050612f2a6000830184612c5e565b92915050565b6000612f3a612f4b565b9050612f468282613217565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7057612f6f61337e565b5b612f79826133c1565b9050602081019050919050565b600067ffffffffffffffff821115612fa157612fa061337e565b5b612faa826133c1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061302582613199565b915061303083613199565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613065576130646132c2565b5b828201905092915050565b600061307b82613199565b915061308683613199565b925082613096576130956132f1565b5b828204905092915050565b60006130ac82613199565b91506130b783613199565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130f0576130ef6132c2565b5b828202905092915050565b600061310682613199565b915061311183613199565b925082821015613124576131236132c2565b5b828203905092915050565b600061313a82613179565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131d05780820151818401526020810190506131b5565b838111156131df576000848401525b50505050565b600060028204905060018216806131fd57607f821691505b6020821081141561321157613210613320565b5b50919050565b613220826133c1565b810181811067ffffffffffffffff8211171561323f5761323e61337e565b5b80604052505050565b600061325382613199565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613286576132856132c2565b5b600182019050919050565b600061329c82613199565b91506132a783613199565b9250826132b7576132b66132f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c7920312066726565000000000000000000000000000000000000000000600082015250565b7f7072696365206e6f7420656e6f7567682c20302e303035455448206561636800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f4f776e6572207472616e73666572206661696c65640000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f45786365656420467265654d696e74206c696d69740000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b61366b8161312f565b811461367657600080fd5b50565b61368281613141565b811461368d57600080fd5b50565b6136998161314d565b81146136a457600080fd5b50565b6136b081613199565b81146136bb57600080fd5b5056fea2646970667358221220a1780e09fc92beff16e5a978db27e9e2ba8aeeb3a405124504ef874bdc664fbe64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101f95760003560e01c80636c0360eb1161010d578063a035b1fe116100a0578063c87b56dd1161006f578063c87b56dd146106e6578063d52c57e014610723578063e8a3d4851461073f578063e985e9c51461076a578063f2fde38b146107a7576101f9565b8063a035b1fe1461063e578063a22cb46514610669578063b88d4fde14610692578063bceae77b146106bb576101f9565b80637c928fe9116100dc5780637c928fe9146105a35780638da5cb5b146105bf578063938e3d7b146105ea57806395d89b4114610613576101f9565b80636c0360eb146104e757806370a0823114610512578063715018a61461054f5780637aeb724214610566576101f9565b80632fecf20b1161019057806355f804b31161015f57806355f804b3146103ee57806356b4f673146104175780635c975abb146104425780636352211e1461046d57806364f64076146104aa576101f9565b80632fecf20b1461036557806332cb6b0c146103905780633ccfd60b146103bb57806342842e0e146103c5576101f9565b806316c38b3c116101cc57806316c38b3c146102cc57806318160ddd146102f557806323b872dd146103205780632db1154414610349576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906127de565b6107d0565b6040516102329190612d18565b60405180910390f35b34801561024757600080fd5b50610250610862565b60405161025d9190612d33565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612881565b6108f4565b60405161029a9190612cb1565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612771565b610973565b005b3480156102d857600080fd5b506102f360048036038101906102ee91906127b1565b610ab7565b005b34801561030157600080fd5b5061030a610adc565b6040516103179190612f15565b60405180910390f35b34801561032c57600080fd5b506103476004803603810190610342919061265b565b610af3565b005b610363600480360381019061035e9190612881565b610e18565b005b34801561037157600080fd5b5061037a6110b3565b6040516103879190612f15565b60405180910390f35b34801561039c57600080fd5b506103a56110b8565b6040516103b29190612f15565b60405180910390f35b6103c36110be565b005b3480156103d157600080fd5b506103ec60048036038101906103e7919061265b565b611247565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612838565b611267565b005b34801561042357600080fd5b5061042c611289565b6040516104399190612d33565b60405180910390f35b34801561044e57600080fd5b50610457611317565b6040516104649190612d18565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f9190612881565b61132a565b6040516104a19190612cb1565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc91906125ee565b61133c565b6040516104de9190612d18565b60405180910390f35b3480156104f357600080fd5b506104fc61135c565b6040516105099190612d33565b60405180910390f35b34801561051e57600080fd5b50610539600480360381019061053491906125ee565b6113ea565b6040516105469190612f15565b60405180910390f35b34801561055b57600080fd5b506105646114a3565b005b34801561057257600080fd5b5061058d600480360381019061058891906125ee565b6114b7565b60405161059a9190612f15565b60405180910390f35b6105bd60048036038101906105b89190612881565b6114cf565b005b3480156105cb57600080fd5b506105d46117be565b6040516105e19190612cb1565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612838565b6117e7565b005b34801561061f57600080fd5b50610628611809565b6040516106359190612d33565b60405180910390f35b34801561064a57600080fd5b5061065361189b565b6040516106609190612f15565b60405180910390f35b34801561067557600080fd5b50610690600480360381019061068b9190612731565b6118a1565b005b34801561069e57600080fd5b506106b960048036038101906106b491906126ae565b6119ac565b005b3480156106c757600080fd5b506106d0611a1f565b6040516106dd9190612f15565b60405180910390f35b3480156106f257600080fd5b5061070d60048036038101906107089190612881565b611a24565b60405161071a9190612d33565b60405180910390f35b61073d600480360381019061073891906128ae565b611a58565b005b34801561074b57600080fd5b50610754611a6e565b6040516107619190612d33565b60405180910390f35b34801561077657600080fd5b50610791600480360381019061078c919061261b565b611b00565b60405161079e9190612d18565b60405180910390f35b3480156107b357600080fd5b506107ce60048036038101906107c991906125ee565b611b94565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610871906131e5565b80601f016020809104026020016040519081016040528092919081815260200182805461089d906131e5565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b60006108ff82611c18565b610935576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061097e8261132a565b90508073ffffffffffffffffffffffffffffffffffffffff1661099f611c77565b73ffffffffffffffffffffffffffffffffffffffff1614610a02576109cb816109c6611c77565b611b00565b610a01576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610abf611c7f565b80600e60006101000a81548160ff02191690831515021790555050565b6000610ae6611cfd565b6002546001540303905090565b6000610afe82611d06565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b65576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b7184611dd4565b91509150610b878187610b82611c77565b611dfb565b610bd357610b9c86610b97611c77565b611b00565b610bd2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c478686866001611e3f565b8015610c5257600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d2085610cfc888887611e45565b7c020000000000000000000000000000000000000000000000000000000017611e6d565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610da8576000600185019050600060056000838152602001908152602001600020541415610da6576001548114610da5578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e108686866001611e98565b505050505050565b80600e60009054906101000a900460ff1615610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612ed5565b60405180910390fd5b6115b381610e75610adc565b610e7f919061301a565b1115610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790612ef5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612db5565b60405180910390fd5b6005821115610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990612e95565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600a8382610fc4919061301a565b1115611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90612df5565b60405180910390fd5b8260095461101391906130a1565b341015611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c90612d75565b60405180910390fd5b8281611061919061301a565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110ae3384611e9e565b505050565b600581565b6115b381565b6110c6611c7f565b600073250238204c9859c303d44b414a546fee4999e79f905060008173ffffffffffffffffffffffffffffffffffffffff166003476111059190613070565b60405161111190612c9c565b60006040518083038185875af1925050503d806000811461114e576040519150601f19603f3d011682016040523d82523d6000602084013e611153565b606091505b5050905080611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90612eb5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16476040516111bb90612c9c565b60006040518083038185875af1925050503d80600081146111f8576040519150601f19603f3d011682016040523d82523d6000602084013e6111fd565b606091505b50508091505080611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a90612dd5565b60405180910390fd5b5050565b611262838383604051806020016040528060008152506119ac565b505050565b61126f611c7f565b80600c9080519060200190611285929190612402565b5050565b600d8054611296906131e5565b80601f01602080910402602001604051908101604052809291908181526020018280546112c2906131e5565b801561130f5780601f106112e45761010080835404028352916020019161130f565b820191906000526020600020905b8154815290600101906020018083116112f257829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b600061133582611d06565b9050919050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600c8054611369906131e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611395906131e5565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611452576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114ab611c7f565b6114b5600061205c565b565b60106020528060005260406000206000915090505481565b80600e60009054906101000a900460ff1615611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790612ed5565b60405180910390fd5b6115b38161152c610adc565b611536919061301a565b1115611577576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156e90612ef5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90612db5565b60405180910390fd5b60003414611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90612e75565b60405180910390fd5b600282111561166c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166390612d55565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090612e55565b60405180910390fd5b600b54600a541061173f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173690612e15565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555081600a60008282546117a9919061301a565b925050819055506117ba3383611e9e565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117ef611c7f565b80600d9080519060200190611805929190612402565b5050565b606060048054611818906131e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611844906131e5565b80156118915780601f1061186657610100808354040283529160200191611891565b820191906000526020600020905b81548152906001019060200180831161187457829003601f168201915b5050505050905090565b60095481565b80600860006118ae611c77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661195b611c77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a09190612d18565b60405180910390a35050565b6119b7848484610af3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a19576119e284848484612120565b611a18576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a81565b6060600c611a3183612280565b604051602001611a42929190612c6d565b6040516020818303038152906040529050919050565b611a60611c7f565b611a6a8183611e9e565b5050565b6060600d8054611a7d906131e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa9906131e5565b8015611af65780601f10611acb57610100808354040283529160200191611af6565b820191906000526020600020905b815481529060010190602001808311611ad957829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b9c611c7f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0390612d95565b60405180910390fd5b611c158161205c565b50565b600081611c23611cfd565b11158015611c32575060015482105b8015611c70575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b611c876123e1565b73ffffffffffffffffffffffffffffffffffffffff16611ca56117be565b73ffffffffffffffffffffffffffffffffffffffff1614611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290612e35565b60405180910390fd5b565b60006001905090565b60008082905080611d15611cfd565b11611d9d57600154811015611d9c5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d9a575b6000811415611d90576005600083600190039350838152602001908152602001600020549050611d65565b8092505050611dcf565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e5c8686846123e9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600060015490506000821415611ee0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eed6000848385611e3f565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f6483611f556000866000611e45565b611f5e856123f2565b17611e6d565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461200557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611fca565b506000821415612041576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506120576000848385611e98565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612146611c77565b8786866040518563ffffffff1660e01b81526004016121689493929190612ccc565b602060405180830381600087803b15801561218257600080fd5b505af19250505080156121b357506040513d601f19601f820116820180604052508101906121b0919061280b565b60015b61222d573d80600081146121e3576040519150601f19603f3d011682016040523d82523d6000602084013e6121e8565b606091505b50600081511415612225576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156122c8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123dc565b600082905060005b600082146122fa5780806122e390613248565b915050600a826122f39190613070565b91506122d0565b60008167ffffffffffffffff8111156123165761231561337e565b5b6040519080825280601f01601f1916602001820160405280156123485781602001600182028036833780820191505090505b5090505b600085146123d55760018261236191906130fb565b9150600a856123709190613291565b603061237c919061301a565b60f81b8183815181106123925761239161334f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123ce9190613070565b945061234c565b8093505050505b919050565b600033905090565b60009392505050565b60006001821460e11b9050919050565b82805461240e906131e5565b90600052602060002090601f0160209004810192826124305760008555612477565b82601f1061244957805160ff1916838001178555612477565b82800160010185558215612477579182015b8281111561247657825182559160200191906001019061245b565b5b5090506124849190612488565b5090565b5b808211156124a1576000816000905550600101612489565b5090565b60006124b86124b384612f55565b612f30565b9050828152602081018484840111156124d4576124d36133b2565b5b6124df8482856131a3565b509392505050565b60006124fa6124f584612f86565b612f30565b905082815260208101848484011115612516576125156133b2565b5b6125218482856131a3565b509392505050565b60008135905061253881613662565b92915050565b60008135905061254d81613679565b92915050565b60008135905061256281613690565b92915050565b60008151905061257781613690565b92915050565b600082601f830112612592576125916133ad565b5b81356125a28482602086016124a5565b91505092915050565b600082601f8301126125c0576125bf6133ad565b5b81356125d08482602086016124e7565b91505092915050565b6000813590506125e8816136a7565b92915050565b600060208284031215612604576126036133bc565b5b600061261284828501612529565b91505092915050565b60008060408385031215612632576126316133bc565b5b600061264085828601612529565b925050602061265185828601612529565b9150509250929050565b600080600060608486031215612674576126736133bc565b5b600061268286828701612529565b935050602061269386828701612529565b92505060406126a4868287016125d9565b9150509250925092565b600080600080608085870312156126c8576126c76133bc565b5b60006126d687828801612529565b94505060206126e787828801612529565b93505060406126f8878288016125d9565b925050606085013567ffffffffffffffff811115612719576127186133b7565b5b6127258782880161257d565b91505092959194509250565b60008060408385031215612748576127476133bc565b5b600061275685828601612529565b92505060206127678582860161253e565b9150509250929050565b60008060408385031215612788576127876133bc565b5b600061279685828601612529565b92505060206127a7858286016125d9565b9150509250929050565b6000602082840312156127c7576127c66133bc565b5b60006127d58482850161253e565b91505092915050565b6000602082840312156127f4576127f36133bc565b5b600061280284828501612553565b91505092915050565b600060208284031215612821576128206133bc565b5b600061282f84828501612568565b91505092915050565b60006020828403121561284e5761284d6133bc565b5b600082013567ffffffffffffffff81111561286c5761286b6133b7565b5b612878848285016125ab565b91505092915050565b600060208284031215612897576128966133bc565b5b60006128a5848285016125d9565b91505092915050565b600080604083850312156128c5576128c46133bc565b5b60006128d3858286016125d9565b92505060206128e485828601612529565b9150509250929050565b6128f78161312f565b82525050565b61290681613141565b82525050565b600061291782612fcc565b6129218185612fe2565b93506129318185602086016131b2565b61293a816133c1565b840191505092915050565b600061295082612fd7565b61295a8185612ffe565b935061296a8185602086016131b2565b612973816133c1565b840191505092915050565b600061298982612fd7565b612993818561300f565b93506129a38185602086016131b2565b80840191505092915050565b600081546129bc816131e5565b6129c6818661300f565b945060018216600081146129e157600181146129f257612a25565b60ff19831686528186019350612a25565b6129fb85612fb7565b60005b83811015612a1d578154818901526001820191506020810190506129fe565b838801955050505b50505092915050565b6000612a3b600b83612ffe565b9150612a46826133d2565b602082019050919050565b6000612a5e601f83612ffe565b9150612a69826133fb565b602082019050919050565b6000612a81602683612ffe565b9150612a8c82613424565b604082019050919050565b6000612aa4601383612ffe565b9150612aaf82613473565b602082019050919050565b6000612ac7601583612ffe565b9150612ad28261349c565b602082019050919050565b6000612aea601383612ffe565b9150612af5826134c5565b602082019050919050565b6000612b0d601583612ffe565b9150612b18826134ee565b602082019050919050565b6000612b3060058361300f565b9150612b3b82613517565b600582019050919050565b6000612b53602083612ffe565b9150612b5e82613540565b602082019050919050565b6000612b76601383612ffe565b9150612b8182613569565b602082019050919050565b6000612b99601283612ffe565b9150612ba482613592565b602082019050919050565b6000612bbc601183612ffe565b9150612bc7826135bb565b602082019050919050565b6000612bdf600083612ff3565b9150612bea826135e4565b600082019050919050565b6000612c02601383612ffe565b9150612c0d826135e7565b602082019050919050565b6000612c25601283612ffe565b9150612c3082613610565b602082019050919050565b6000612c48601583612ffe565b9150612c5382613639565b602082019050919050565b612c6781613199565b82525050565b6000612c7982856129af565b9150612c85828461297e565b9150612c9082612b23565b91508190509392505050565b6000612ca782612bd2565b9150819050919050565b6000602082019050612cc660008301846128ee565b92915050565b6000608082019050612ce160008301876128ee565b612cee60208301866128ee565b612cfb6040830185612c5e565b8181036060830152612d0d818461290c565b905095945050505050565b6000602082019050612d2d60008301846128fd565b92915050565b60006020820190508181036000830152612d4d8184612945565b905092915050565b60006020820190508181036000830152612d6e81612a2e565b9050919050565b60006020820190508181036000830152612d8e81612a51565b9050919050565b60006020820190508181036000830152612dae81612a74565b9050919050565b60006020820190508181036000830152612dce81612a97565b9050919050565b60006020820190508181036000830152612dee81612aba565b9050919050565b60006020820190508181036000830152612e0e81612add565b9050919050565b60006020820190508181036000830152612e2e81612b00565b9050919050565b60006020820190508181036000830152612e4e81612b46565b9050919050565b60006020820190508181036000830152612e6e81612b69565b9050919050565b60006020820190508181036000830152612e8e81612b8c565b9050919050565b60006020820190508181036000830152612eae81612baf565b9050919050565b60006020820190508181036000830152612ece81612bf5565b9050919050565b60006020820190508181036000830152612eee81612c18565b9050919050565b60006020820190508181036000830152612f0e81612c3b565b9050919050565b6000602082019050612f2a6000830184612c5e565b92915050565b6000612f3a612f4b565b9050612f468282613217565b919050565b6000604051905090565b600067ffffffffffffffff821115612f7057612f6f61337e565b5b612f79826133c1565b9050602081019050919050565b600067ffffffffffffffff821115612fa157612fa061337e565b5b612faa826133c1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061302582613199565b915061303083613199565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613065576130646132c2565b5b828201905092915050565b600061307b82613199565b915061308683613199565b925082613096576130956132f1565b5b828204905092915050565b60006130ac82613199565b91506130b783613199565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130f0576130ef6132c2565b5b828202905092915050565b600061310682613199565b915061311183613199565b925082821015613124576131236132c2565b5b828203905092915050565b600061313a82613179565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156131d05780820151818401526020810190506131b5565b838111156131df576000848401525b50505050565b600060028204905060018216806131fd57607f821691505b6020821081141561321157613210613320565b5b50919050565b613220826133c1565b810181811067ffffffffffffffff8211171561323f5761323e61337e565b5b80604052505050565b600061325382613199565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613286576132856132c2565b5b600182019050919050565b600061329c82613199565b91506132a783613199565b9250826132b7576132b66132f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f6e6c7920312066726565000000000000000000000000000000000000000000600082015250565b7f7072696365206e6f7420656e6f7567682c20302e303035455448206561636800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f4f776e6572207472616e73666572206661696c65640000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f45786365656420467265654d696e74206c696d69740000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b61366b8161312f565b811461367657600080fd5b50565b61368281613141565b811461368d57600080fd5b50565b6136998161314d565b81146136a457600080fd5b50565b6136b081613199565b81146136bb57600080fd5b5056fea2646970667358221220a1780e09fc92beff16e5a978db27e9e2ba8aeeb3a405124504ef874bdc664fbe64736f6c63430008070033
Deployed Bytecode Sourcemap
57096:3366:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24343:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25245:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31728:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31169:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59552:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20996:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35367:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58439:509;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57232:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57141:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59645:516;;;:::i;:::-;;38280:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59318:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57432:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57465:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26638:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57499:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57404:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22180:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2749:103;;;;;;;;;;;;;:::i;:::-;;57553:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57982:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2101:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59424:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25421:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57190:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32286:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39063:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57289:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58983:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57845:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59183:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32677:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3007:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24343:639;24428:4;24767:10;24752:25;;:11;:25;;;;:102;;;;24844:10;24829:25;;:11;:25;;;;24752:102;:179;;;;24921:10;24906:25;;:11;:25;;;;24752:179;24732:199;;24343:639;;;:::o;25245:100::-;25299:13;25332:5;25325:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25245:100;:::o;31728:218::-;31804:7;31829:16;31837:7;31829;:16::i;:::-;31824:64;;31854:34;;;;;;;;;;;;;;31824:64;31908:15;:24;31924:7;31908:24;;;;;;;;;;;:30;;;;;;;;;;;;31901:37;;31728:218;;;:::o;31169:400::-;31250:13;31266:16;31274:7;31266;:16::i;:::-;31250:32;;31322:5;31299:28;;:19;:17;:19::i;:::-;:28;;;31295:175;;31347:44;31364:5;31371:19;:17;:19::i;:::-;31347:16;:44::i;:::-;31342:128;;31419:35;;;;;;;;;;;;;;31342:128;31295:175;31515:2;31482:15;:24;31498:7;31482:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31553:7;31549:2;31533:28;;31542:5;31533:28;;;;;;;;;;;;31239:330;31169:400;;:::o;59552:83::-;1987:13;:11;:13::i;:::-;59621:6:::1;59612;;:15;;;;;;;;;;;;;;;;;;59552:83:::0;:::o;20996:323::-;21057:7;21285:15;:13;:15::i;:::-;21270:12;;21254:13;;:28;:46;21247:53;;20996:323;:::o;35367:2817::-;35501:27;35531;35550:7;35531:18;:27::i;:::-;35501:57;;35616:4;35575:45;;35591:19;35575:45;;;35571:86;;35629:28;;;;;;;;;;;;;;35571:86;35671:27;35700:23;35727:35;35754:7;35727:26;:35::i;:::-;35670:92;;;;35862:68;35887:15;35904:4;35910:19;:17;:19::i;:::-;35862:24;:68::i;:::-;35857:180;;35950:43;35967:4;35973:19;:17;:19::i;:::-;35950:16;:43::i;:::-;35945:92;;36002:35;;;;;;;;;;;;;;35945:92;35857:180;36068:1;36054:16;;:2;:16;;;36050:52;;;36079:23;;;;;;;;;;;;;;36050:52;36115:43;36137:4;36143:2;36147:7;36156:1;36115:21;:43::i;:::-;36251:15;36248:160;;;36391:1;36370:19;36363:30;36248:160;36788:18;:24;36807:4;36788:24;;;;;;;;;;;;;;;;36786:26;;;;;;;;;;;;36857:18;:22;36876:2;36857:22;;;;;;;;;;;;;;;;36855:24;;;;;;;;;;;37179:146;37216:2;37265:45;37280:4;37286:2;37290:19;37265:14;:45::i;:::-;17395:8;37237:73;37179:18;:146::i;:::-;37150:17;:26;37168:7;37150:26;;;;;;;;;;;:175;;;;37496:1;17395:8;37445:19;:47;:52;37441:627;;;37518:19;37550:1;37540:7;:11;37518:33;;37707:1;37673:17;:30;37691:11;37673:30;;;;;;;;;;;;:35;37669:384;;;37811:13;;37796:11;:28;37792:242;;37991:19;37958:17;:30;37976:11;37958:30;;;;;;;;;;;:52;;;;37792:242;37669:384;37499:569;37441:627;38115:7;38111:2;38096:27;;38105:4;38096:27;;;;;;;;;;;;38134:42;38155:4;38161:2;38165:7;38174:1;38134:20;:42::i;:::-;35490:2694;;;35367:2817;;;:::o;58439:509::-;58509:8;60241:6;;;;;;;;;;;60240:7;60232:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57178:4;60315:8;60299:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;60291:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60405:10;60392:23;;:9;:23;;;60384:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57280:1:::1;58538:8;:33;;58530:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58606:17;58626:12;:24;58639:10;58626:24;;;;;;;;;;;;;;;;58606:44;;57333:2;58699:8;58687:9;:20;;;;:::i;:::-;:41;;58679:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58793:8;58785:5;;:16;;;;:::i;:::-;58771:9;:31;;58763:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;58891:8;58879:9;:20;;;;:::i;:::-;58851:12;:24;58864:10;58851:24;;;;;;;;;;;;;;;:49;;;;58913:27;58919:10;58931:8;58913:5;:27::i;:::-;58519:429;58439:509:::0;;:::o;57232:49::-;57280:1;57232:49;:::o;57141:41::-;57178:4;57141:41;:::o;59645:516::-;1987:13;:11;:13::i;:::-;59713:19:::1;59735:42;59713:64;;59789:9;59812:11;59804:25;;59875:1;59851:21;:25;;;;:::i;:::-;59804:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59788:103;;;59910:4;59902:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60029:10;60021:24;;60067:21;60021:83;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60010:94;;;;;60123:4;60115:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59692:469;;59645:516::o:0;38280:185::-;38418:39;38435:4;38441:2;38445:7;38418:39;;;;;;;;;;;;:16;:39::i;:::-;38280:185;;;:::o;59318:98::-;1987:13;:11;:13::i;:::-;59400:8:::1;59390:7;:18;;;;;;;;;;;;:::i;:::-;;59318:98:::0;:::o;57432:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57465:25::-;;;;;;;;;;;;;:::o;26638:152::-;26710:7;26753:27;26772:7;26753:18;:27::i;:::-;26730:52;;26638:152;;;:::o;57499:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;57404:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22180:233::-;22252:7;22293:1;22276:19;;:5;:19;;;22272:60;;;22304:28;;;;;;;;;;;;;;22272:60;16339:13;22350:18;:25;22369:5;22350:25;;;;;;;;;;;;;;;;:55;22343:62;;22180:233;;;:::o;2749:103::-;1987:13;:11;:13::i;:::-;2814:30:::1;2841:1;2814:18;:30::i;:::-;2749:103::o:0;57553:47::-;;;;;;;;;;;;;;;;;:::o;57982:449::-;58050:8;60241:6;;;;;;;;;;;60240:7;60232:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57178:4;60315:8;60299:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;60291:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;60405:10;60392:23;;:9;:23;;;60384:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58092:1:::1;58079:9;:14;58071:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;58147:1;58135:8;:13;;58127:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;58184:14;:26;58199:10;58184:26;;;;;;;;;;;;;;;;;;;;;;;;;58183:27;58175:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;58270:9;;58253:14;;:26;58245:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;58344:4;58315:14;:26;58330:10;58315:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;58377:8;58359:14;;:26;;;;;;;:::i;:::-;;;;;;;;58396:27;58402:10;58414:8;58396:5;:27::i;:::-;57982:449:::0;;:::o;2101:87::-;2147:7;2174:6;;;;;;;;;;;2167:13;;2101:87;:::o;59424:115::-;1987:13;:11;:13::i;:::-;59519:12:::1;59504;:27;;;;;;;;;;;;:::i;:::-;;59424:115:::0;:::o;25421:104::-;25477:13;25510:7;25503:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25421:104;:::o;57190:34::-;;;;:::o;32286:234::-;32433:8;32381:18;:39;32400:19;:17;:19::i;:::-;32381:39;;;;;;;;;;;;;;;:49;32421:8;32381:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32493:8;32457:55;;32472:19;:17;:19::i;:::-;32457:55;;;32503:8;32457:55;;;;;;:::i;:::-;;;;;;;;32286:234;;:::o;39063:399::-;39230:31;39243:4;39249:2;39253:7;39230:12;:31::i;:::-;39294:1;39276:2;:14;;;:19;39272:183;;39315:56;39346:4;39352:2;39356:7;39365:5;39315:30;:56::i;:::-;39310:145;;39399:40;;;;;;;;;;;;;;39310:145;39272:183;39063:399;;;;:::o;57289:46::-;57333:2;57289:46;:::o;58983:187::-;59049:13;59106:7;59115:26;59132:8;59115:16;:26::i;:::-;59089:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59075:77;;58983:187;;;:::o;57845:125::-;1987:13;:11;:13::i;:::-;57937:25:::1;57943:8;57953;57937:5;:25::i;:::-;57845:125:::0;;:::o;59183:97::-;59227:13;59260:12;59253:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59183:97;:::o;32677:164::-;32774:4;32798:18;:25;32817:5;32798:25;;;;;;;;;;;;;;;:35;32824:8;32798:35;;;;;;;;;;;;;;;;;;;;;;;;;32791:42;;32677:164;;;;:::o;3007:201::-;1987:13;:11;:13::i;:::-;3116:1:::1;3096:22;;:8;:22;;;;3088:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3172:28;3191:8;3172:18;:28::i;:::-;3007:201:::0;:::o;33099:282::-;33164:4;33220:7;33201:15;:13;:15::i;:::-;:26;;:66;;;;;33254:13;;33244:7;:23;33201:66;:153;;;;;33353:1;17115:8;33305:17;:26;33323:7;33305:26;;;;;;;;;;;;:44;:49;33201:153;33181:173;;33099:282;;;:::o;55137:105::-;55197:7;55224:10;55217:17;;55137:105;:::o;2266:132::-;2341:12;:10;:12::i;:::-;2330:23;;:7;:5;:7::i;:::-;:23;;;2322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2266:132::o;57701:101::-;57766:7;57793:1;57786:8;;57701:101;:::o;27793:1275::-;27860:7;27880:12;27895:7;27880:22;;27963:4;27944:15;:13;:15::i;:::-;:23;27940:1061;;27997:13;;27990:4;:20;27986:1015;;;28035:14;28052:17;:23;28070:4;28052:23;;;;;;;;;;;;28035:40;;28169:1;17115:8;28141:6;:24;:29;28137:845;;;28806:113;28823:1;28813:6;:11;28806:113;;;28866:17;:25;28884:6;;;;;;;28866:25;;;;;;;;;;;;28857:34;;28806:113;;;28952:6;28945:13;;;;;;28137:845;28012:989;27986:1015;27940:1061;29029:31;;;;;;;;;;;;;;27793:1275;;;;:::o;34262:485::-;34364:27;34393:23;34434:38;34475:15;:24;34491:7;34475:24;;;;;;;;;;;34434:65;;34652:18;34629:41;;34709:19;34703:26;34684:45;;34614:126;34262:485;;;:::o;33490:659::-;33639:11;33804:16;33797:5;33793:28;33784:37;;33964:16;33953:9;33949:32;33936:45;;34114:15;34103:9;34100:30;34092:5;34081:9;34078:20;34075:56;34065:66;;33490:659;;;;;:::o;40124:159::-;;;;;:::o;54446:311::-;54581:7;54601:16;17519:3;54627:19;:41;;54601:68;;17519:3;54695:31;54706:4;54712:2;54716:9;54695:10;:31::i;:::-;54687:40;;:62;;54680:69;;;54446:311;;;;;:::o;29616:450::-;29696:14;29864:16;29857:5;29853:28;29844:37;;30041:5;30027:11;30002:23;29998:41;29995:52;29988:5;29985:63;29975:73;;29616:450;;;;:::o;40948:158::-;;;;;:::o;42724:2720::-;42797:20;42820:13;;42797:36;;42860:1;42848:8;:13;42844:44;;;42870:18;;;;;;;;;;;;;;42844:44;42901:61;42931:1;42935:2;42939:12;42953:8;42901:21;:61::i;:::-;43445:1;16477:2;43415:1;:26;;43414:32;43402:8;:45;43376:18;:22;43395:2;43376:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43724:139;43761:2;43815:33;43838:1;43842:2;43846:1;43815:14;:33::i;:::-;43782:30;43803:8;43782:20;:30::i;:::-;:66;43724:18;:139::i;:::-;43690:17;:31;43708:12;43690:31;;;;;;;;;;;:173;;;;43880:16;43911:11;43940:8;43925:12;:23;43911:37;;44461:16;44457:2;44453:25;44441:37;;44833:12;44793:8;44752:1;44690:25;44631:1;44570;44543:335;44958:1;44944:12;44940:20;44898:346;44999:3;44990:7;44987:16;44898:346;;45217:7;45207:8;45204:1;45177:25;45174:1;45171;45166:59;45052:1;45043:7;45039:15;45028:26;;44898:346;;;44902:77;45289:1;45277:8;:13;45273:45;;;45299:19;;;;;;;;;;;;;;45273:45;45351:3;45335:13;:19;;;;43150:2216;;45376:60;45405:1;45409:2;45413:12;45427:8;45376:20;:60::i;:::-;42786:2658;42724:2720;;:::o;3368:191::-;3442:16;3461:6;;;;;;;;;;;3442:25;;3487:8;3478:6;;:17;;;;;;;;;;;;;;;;;;3542:8;3511:40;;3532:8;3511:40;;;;;;;;;;;;3431:128;3368:191;:::o;41546:716::-;41709:4;41755:2;41730:45;;;41776:19;:17;:19::i;:::-;41797:4;41803:7;41812:5;41730:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41726:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42030:1;42013:6;:13;:18;42009:235;;;42059:40;;;;;;;;;;;;;;42009:235;42202:6;42196:13;42187:6;42183:2;42179:15;42172:38;41726:529;41899:54;;;41889:64;;;:6;:64;;;;41882:71;;;41546:716;;;;;;:::o;3994:723::-;4050:13;4280:1;4271:5;:10;4267:53;;;4298:10;;;;;;;;;;;;;;;;;;;;;4267:53;4330:12;4345:5;4330:20;;4361:14;4386:78;4401:1;4393:4;:9;4386:78;;4419:8;;;;;:::i;:::-;;;;4450:2;4442:10;;;;;:::i;:::-;;;4386:78;;;4474:19;4506:6;4496:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4474:39;;4524:154;4540:1;4531:5;:10;4524:154;;4568:1;4558:11;;;;;:::i;:::-;;;4635:2;4627:5;:10;;;;:::i;:::-;4614:2;:24;;;;:::i;:::-;4601:39;;4584:6;4591;4584:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4664:2;4655:11;;;;;:::i;:::-;;;4524:154;;;4702:6;4688:21;;;;;3994:723;;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;54147:147::-;54284:6;54147:147;;;;;:::o;30168:324::-;30238:14;30471:1;30461:8;30458:15;30432:24;30428:46;30418:56;;30168:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:400::-;12964:3;12985:84;13067:1;13062:3;12985:84;:::i;:::-;12978:91;;13078:93;13167:3;13078:93;:::i;:::-;13196:1;13191:3;13187:11;13180:18;;12804:400;;;:::o;13210:366::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:::-;13724:3;13745:67;13809:2;13804:3;13745:67;:::i;:::-;13738:74;;13821:93;13910:3;13821:93;:::i;:::-;13939:2;13934:3;13930:12;13923:19;;13582:366;;;:::o;13954:::-;14096:3;14117:67;14181:2;14176:3;14117:67;:::i;:::-;14110:74;;14193:93;14282:3;14193:93;:::i;:::-;14311:2;14306:3;14302:12;14295:19;;13954:366;;;:::o;14326:::-;14468:3;14489:67;14553:2;14548:3;14489:67;:::i;:::-;14482:74;;14565:93;14654:3;14565:93;:::i;:::-;14683:2;14678:3;14674:12;14667:19;;14326:366;;;:::o;14698:398::-;14857:3;14878:83;14959:1;14954:3;14878:83;:::i;:::-;14871:90;;14970:93;15059:3;14970:93;:::i;:::-;15088:1;15083:3;15079:11;15072:18;;14698:398;;;:::o;15102:366::-;15244:3;15265:67;15329:2;15324:3;15265:67;:::i;:::-;15258:74;;15341:93;15430:3;15341:93;:::i;:::-;15459:2;15454:3;15450:12;15443:19;;15102:366;;;:::o;15474:::-;15616:3;15637:67;15701:2;15696:3;15637:67;:::i;:::-;15630:74;;15713:93;15802:3;15713:93;:::i;:::-;15831:2;15826:3;15822:12;15815:19;;15474:366;;;:::o;15846:::-;15988:3;16009:67;16073:2;16068:3;16009:67;:::i;:::-;16002:74;;16085:93;16174:3;16085:93;:::i;:::-;16203:2;16198:3;16194:12;16187:19;;15846:366;;;:::o;16218:118::-;16305:24;16323:5;16305:24;:::i;:::-;16300:3;16293:37;16218:118;;:::o;16342:695::-;16620:3;16642:92;16730:3;16721:6;16642:92;:::i;:::-;16635:99;;16751:95;16842:3;16833:6;16751:95;:::i;:::-;16744:102;;16863:148;17007:3;16863:148;:::i;:::-;16856:155;;17028:3;17021:10;;16342:695;;;;;:::o;17043:379::-;17227:3;17249:147;17392:3;17249:147;:::i;:::-;17242:154;;17413:3;17406:10;;17043:379;;;:::o;17428:222::-;17521:4;17559:2;17548:9;17544:18;17536:26;;17572:71;17640:1;17629:9;17625:17;17616:6;17572:71;:::i;:::-;17428:222;;;;:::o;17656:640::-;17851:4;17889:3;17878:9;17874:19;17866:27;;17903:71;17971:1;17960:9;17956:17;17947:6;17903:71;:::i;:::-;17984:72;18052:2;18041:9;18037:18;18028:6;17984:72;:::i;:::-;18066;18134:2;18123:9;18119:18;18110:6;18066:72;:::i;:::-;18185:9;18179:4;18175:20;18170:2;18159:9;18155:18;18148:48;18213:76;18284:4;18275:6;18213:76;:::i;:::-;18205:84;;17656:640;;;;;;;:::o;18302:210::-;18389:4;18427:2;18416:9;18412:18;18404:26;;18440:65;18502:1;18491:9;18487:17;18478:6;18440:65;:::i;:::-;18302:210;;;;:::o;18518:313::-;18631:4;18669:2;18658:9;18654:18;18646:26;;18718:9;18712:4;18708:20;18704:1;18693:9;18689:17;18682:47;18746:78;18819:4;18810:6;18746:78;:::i;:::-;18738:86;;18518:313;;;;:::o;18837:419::-;19003:4;19041:2;19030:9;19026:18;19018:26;;19090:9;19084:4;19080:20;19076:1;19065:9;19061:17;19054:47;19118:131;19244:4;19118:131;:::i;:::-;19110:139;;18837:419;;;:::o;19262:::-;19428:4;19466:2;19455:9;19451:18;19443:26;;19515:9;19509:4;19505:20;19501:1;19490:9;19486:17;19479:47;19543:131;19669:4;19543:131;:::i;:::-;19535:139;;19262:419;;;:::o;19687:::-;19853:4;19891:2;19880:9;19876:18;19868:26;;19940:9;19934:4;19930:20;19926:1;19915:9;19911:17;19904:47;19968:131;20094:4;19968:131;:::i;:::-;19960:139;;19687:419;;;:::o;20112:::-;20278:4;20316:2;20305:9;20301:18;20293:26;;20365:9;20359:4;20355:20;20351:1;20340:9;20336:17;20329:47;20393:131;20519:4;20393:131;:::i;:::-;20385:139;;20112:419;;;:::o;20537:::-;20703:4;20741:2;20730:9;20726:18;20718:26;;20790:9;20784:4;20780:20;20776:1;20765:9;20761:17;20754:47;20818:131;20944:4;20818:131;:::i;:::-;20810:139;;20537:419;;;:::o;20962:::-;21128:4;21166:2;21155:9;21151:18;21143:26;;21215:9;21209:4;21205:20;21201:1;21190:9;21186:17;21179:47;21243:131;21369:4;21243:131;:::i;:::-;21235:139;;20962:419;;;:::o;21387:::-;21553:4;21591:2;21580:9;21576:18;21568:26;;21640:9;21634:4;21630:20;21626:1;21615:9;21611:17;21604:47;21668:131;21794:4;21668:131;:::i;:::-;21660:139;;21387:419;;;:::o;21812:::-;21978:4;22016:2;22005:9;22001:18;21993:26;;22065:9;22059:4;22055:20;22051:1;22040:9;22036:17;22029:47;22093:131;22219:4;22093:131;:::i;:::-;22085:139;;21812:419;;;:::o;22237:::-;22403:4;22441:2;22430:9;22426:18;22418:26;;22490:9;22484:4;22480:20;22476:1;22465:9;22461:17;22454:47;22518:131;22644:4;22518:131;:::i;:::-;22510:139;;22237:419;;;:::o;22662:::-;22828:4;22866:2;22855:9;22851:18;22843:26;;22915:9;22909:4;22905:20;22901:1;22890:9;22886:17;22879:47;22943:131;23069:4;22943:131;:::i;:::-;22935:139;;22662:419;;;:::o;23087:::-;23253:4;23291:2;23280:9;23276:18;23268:26;;23340:9;23334:4;23330:20;23326:1;23315:9;23311:17;23304:47;23368:131;23494:4;23368:131;:::i;:::-;23360:139;;23087:419;;;:::o;23512:::-;23678:4;23716:2;23705:9;23701:18;23693:26;;23765:9;23759:4;23755:20;23751:1;23740:9;23736:17;23729:47;23793:131;23919:4;23793:131;:::i;:::-;23785:139;;23512:419;;;:::o;23937:::-;24103:4;24141:2;24130:9;24126:18;24118:26;;24190:9;24184:4;24180:20;24176:1;24165:9;24161:17;24154:47;24218:131;24344:4;24218:131;:::i;:::-;24210:139;;23937:419;;;:::o;24362:::-;24528:4;24566:2;24555:9;24551:18;24543:26;;24615:9;24609:4;24605:20;24601:1;24590:9;24586:17;24579:47;24643:131;24769:4;24643:131;:::i;:::-;24635:139;;24362:419;;;:::o;24787:222::-;24880:4;24918:2;24907:9;24903:18;24895:26;;24931:71;24999:1;24988:9;24984:17;24975:6;24931:71;:::i;:::-;24787:222;;;;:::o;25015:129::-;25049:6;25076:20;;:::i;:::-;25066:30;;25105:33;25133:4;25125:6;25105:33;:::i;:::-;25015:129;;;:::o;25150:75::-;25183:6;25216:2;25210:9;25200:19;;25150:75;:::o;25231:307::-;25292:4;25382:18;25374:6;25371:30;25368:56;;;25404:18;;:::i;:::-;25368:56;25442:29;25464:6;25442:29;:::i;:::-;25434:37;;25526:4;25520;25516:15;25508:23;;25231:307;;;:::o;25544:308::-;25606:4;25696:18;25688:6;25685:30;25682:56;;;25718:18;;:::i;:::-;25682:56;25756:29;25778:6;25756:29;:::i;:::-;25748:37;;25840:4;25834;25830:15;25822:23;;25544:308;;;:::o;25858:141::-;25907:4;25930:3;25922:11;;25953:3;25950:1;25943:14;25987:4;25984:1;25974:18;25966:26;;25858:141;;;:::o;26005:98::-;26056:6;26090:5;26084:12;26074:22;;26005:98;;;:::o;26109:99::-;26161:6;26195:5;26189:12;26179:22;;26109:99;;;:::o;26214:168::-;26297:11;26331:6;26326:3;26319:19;26371:4;26366:3;26362:14;26347:29;;26214:168;;;;:::o;26388:147::-;26489:11;26526:3;26511:18;;26388:147;;;;:::o;26541:169::-;26625:11;26659:6;26654:3;26647:19;26699:4;26694:3;26690:14;26675:29;;26541:169;;;;:::o;26716:148::-;26818:11;26855:3;26840:18;;26716:148;;;;:::o;26870:305::-;26910:3;26929:20;26947:1;26929:20;:::i;:::-;26924:25;;26963:20;26981:1;26963:20;:::i;:::-;26958:25;;27117:1;27049:66;27045:74;27042:1;27039:81;27036:107;;;27123:18;;:::i;:::-;27036:107;27167:1;27164;27160:9;27153:16;;26870:305;;;;:::o;27181:185::-;27221:1;27238:20;27256:1;27238:20;:::i;:::-;27233:25;;27272:20;27290:1;27272:20;:::i;:::-;27267:25;;27311:1;27301:35;;27316:18;;:::i;:::-;27301:35;27358:1;27355;27351:9;27346:14;;27181:185;;;;:::o;27372:348::-;27412:7;27435:20;27453:1;27435:20;:::i;:::-;27430:25;;27469:20;27487:1;27469:20;:::i;:::-;27464:25;;27657:1;27589:66;27585:74;27582:1;27579:81;27574:1;27567:9;27560:17;27556:105;27553:131;;;27664:18;;:::i;:::-;27553:131;27712:1;27709;27705:9;27694:20;;27372:348;;;;:::o;27726:191::-;27766:4;27786:20;27804:1;27786:20;:::i;:::-;27781:25;;27820:20;27838:1;27820:20;:::i;:::-;27815:25;;27859:1;27856;27853:8;27850:34;;;27864:18;;:::i;:::-;27850:34;27909:1;27906;27902:9;27894:17;;27726:191;;;;:::o;27923:96::-;27960:7;27989:24;28007:5;27989:24;:::i;:::-;27978:35;;27923:96;;;:::o;28025:90::-;28059:7;28102:5;28095:13;28088:21;28077:32;;28025:90;;;:::o;28121:149::-;28157:7;28197:66;28190:5;28186:78;28175:89;;28121:149;;;:::o;28276:126::-;28313:7;28353:42;28346:5;28342:54;28331:65;;28276:126;;;:::o;28408:77::-;28445:7;28474:5;28463:16;;28408:77;;;:::o;28491:154::-;28575:6;28570:3;28565;28552:30;28637:1;28628:6;28623:3;28619:16;28612:27;28491:154;;;:::o;28651:307::-;28719:1;28729:113;28743:6;28740:1;28737:13;28729:113;;;28828:1;28823:3;28819:11;28813:18;28809:1;28804:3;28800:11;28793:39;28765:2;28762:1;28758:10;28753:15;;28729:113;;;28860:6;28857:1;28854:13;28851:101;;;28940:1;28931:6;28926:3;28922:16;28915:27;28851:101;28700:258;28651:307;;;:::o;28964:320::-;29008:6;29045:1;29039:4;29035:12;29025:22;;29092:1;29086:4;29082:12;29113:18;29103:81;;29169:4;29161:6;29157:17;29147:27;;29103:81;29231:2;29223:6;29220:14;29200:18;29197:38;29194:84;;;29250:18;;:::i;:::-;29194:84;29015:269;28964:320;;;:::o;29290:281::-;29373:27;29395:4;29373:27;:::i;:::-;29365:6;29361:40;29503:6;29491:10;29488:22;29467:18;29455:10;29452:34;29449:62;29446:88;;;29514:18;;:::i;:::-;29446:88;29554:10;29550:2;29543:22;29333:238;29290:281;;:::o;29577:233::-;29616:3;29639:24;29657:5;29639:24;:::i;:::-;29630:33;;29685:66;29678:5;29675:77;29672:103;;;29755:18;;:::i;:::-;29672:103;29802:1;29795:5;29791:13;29784:20;;29577:233;;;:::o;29816:176::-;29848:1;29865:20;29883:1;29865:20;:::i;:::-;29860:25;;29899:20;29917:1;29899:20;:::i;:::-;29894:25;;29938:1;29928:35;;29943:18;;:::i;:::-;29928:35;29984:1;29981;29977:9;29972:14;;29816:176;;;;:::o;29998:180::-;30046:77;30043:1;30036:88;30143:4;30140:1;30133:15;30167:4;30164:1;30157:15;30184:180;30232:77;30229:1;30222:88;30329:4;30326:1;30319:15;30353:4;30350:1;30343:15;30370:180;30418:77;30415:1;30408:88;30515:4;30512:1;30505:15;30539:4;30536:1;30529:15;30556:180;30604:77;30601:1;30594:88;30701:4;30698:1;30691:15;30725:4;30722:1;30715:15;30742:180;30790:77;30787:1;30780:88;30887:4;30884:1;30877:15;30911:4;30908:1;30901:15;30928:117;31037:1;31034;31027:12;31051:117;31160:1;31157;31150:12;31174:117;31283:1;31280;31273:12;31297:117;31406:1;31403;31396:12;31420:102;31461:6;31512:2;31508:7;31503:2;31496:5;31492:14;31488:28;31478:38;;31420:102;;;:::o;31528:161::-;31668:13;31664:1;31656:6;31652:14;31645:37;31528:161;:::o;31695:181::-;31835:33;31831:1;31823:6;31819:14;31812:57;31695:181;:::o;31882:225::-;32022:34;32018:1;32010:6;32006:14;31999:58;32091:8;32086:2;32078:6;32074:15;32067:33;31882:225;:::o;32113:169::-;32253:21;32249:1;32241:6;32237:14;32230:45;32113:169;:::o;32288:171::-;32428:23;32424:1;32416:6;32412:14;32405:47;32288:171;:::o;32465:169::-;32605:21;32601:1;32593:6;32589:14;32582:45;32465:169;:::o;32640:171::-;32780:23;32776:1;32768:6;32764:14;32757:47;32640:171;:::o;32817:155::-;32957:7;32953:1;32945:6;32941:14;32934:31;32817:155;:::o;32978:182::-;33118:34;33114:1;33106:6;33102:14;33095:58;32978:182;:::o;33166:169::-;33306:21;33302:1;33294:6;33290:14;33283:45;33166:169;:::o;33341:168::-;33481:20;33477:1;33469:6;33465:14;33458:44;33341:168;:::o;33515:167::-;33655:19;33651:1;33643:6;33639:14;33632:43;33515:167;:::o;33688:114::-;;:::o;33808:169::-;33948:21;33944:1;33936:6;33932:14;33925:45;33808:169;:::o;33983:168::-;34123:20;34119:1;34111:6;34107:14;34100:44;33983:168;:::o;34157:171::-;34297:23;34293:1;34285:6;34281:14;34274:47;34157:171;:::o;34334:122::-;34407:24;34425:5;34407:24;:::i;:::-;34400:5;34397:35;34387:63;;34446:1;34443;34436:12;34387:63;34334:122;:::o;34462:116::-;34532:21;34547:5;34532:21;:::i;:::-;34525:5;34522:32;34512:60;;34568:1;34565;34558:12;34512:60;34462:116;:::o;34584:120::-;34656:23;34673:5;34656:23;:::i;:::-;34649:5;34646:34;34636:62;;34694:1;34691;34684:12;34636:62;34584:120;:::o;34710:122::-;34783:24;34801:5;34783:24;:::i;:::-;34776:5;34773:35;34763:63;;34822:1;34819;34812:12;34763:63;34710:122;:::o
Swarm Source
ipfs://a1780e09fc92beff16e5a978db27e9e2ba8aeeb3a405124504ef874bdc664fbe
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.