ERC-721
Overview
Max Total Supply
7,535 DLP
Holders
55
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 DLPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DegentLotteryPlatinum
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-04 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs 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(); /** * 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 payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @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 payable; /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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 payable 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 payable 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 payable 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 payable 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`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. 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) } } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // 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: DegentLotteryPlatinum.sol pragma solidity ^0.8.7; contract DegentLotteryPlatinum is Ownable, ERC721A, ReentrancyGuard { bool public mPublicSaleIsActive = false; uint256 public mMaxTokenSupply = 35000; string public mBaseURI = ""; // Pricing uint256[3] public mAllowedQuantities = [5, 20, 50]; mapping(uint256 => uint256) public mPriceMap; constructor() ERC721A("DegentLotteryPlatinum", "DLP") { mPriceMap[5] = 0.00777 ether; mPriceMap[20] = 0.02 ether; mPriceMap[50] = 0.03 ether; } /// Functions for minting function mint(uint256 quantity) external payable { require(mPublicSaleIsActive, "Public sale must be active to mint"); require(quantity + totalSupply() <= mMaxTokenSupply, "Purchase would exceed max supply"); bool isQuantityMapped = false; for(uint8 i = 0; i < mAllowedQuantities.length; i++) { if(quantity == mAllowedQuantities[i]){ isQuantityMapped = true; break; } } require(isQuantityMapped, "Quantity not accepted"); require(msg.value >= mPriceMap[quantity], "Ether value sent was not enough"); _safeMint(msg.sender, quantity); } function reserveMint(address[] calldata recipients, uint256[] calldata quantities) external onlyOwner nonReentrant { require(recipients.length == quantities.length, "Array lengths must match"); // Ensure total quantities doesn't exceed supply uint256 totalQuantity = 0; for(uint256 i = 0; i < quantities.length; i++){ totalQuantity += quantities[i]; } require(totalQuantity + totalSupply() <= mMaxTokenSupply, "Reserve mint would exceed max supply"); // Mint for each address for (uint256 i = 0; i < recipients.length; i++) { _safeMint(recipients[i], quantities[i]); } } /// Functions for managing token metadata function setBaseURI(string calldata baseURI) external onlyOwner { mBaseURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return mBaseURI; } /// Turns sale state on/off - ONLY OWNER function flipPublicSaleState() external onlyOwner { mPublicSaleIsActive = !mPublicSaleIsActive; } /// Ether withdrawal - ONLY OWNER function changeMintPrice(uint256[] calldata newprices) external onlyOwner { mPriceMap[5] = newprices[0]; mPriceMap[20] = newprices[1]; mPriceMap[50] = newprices[2]; } /// Ether withdrawal - ONLY OWNER function forceWithdraw(uint256 amount, address payable to) external onlyOwner nonReentrant { (bool success, ) = payable(to).call{value: amount}(""); require(success, "Transfer failed."); } }
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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"newprices","type":"uint256[]"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"forceWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mAllowedQuantities","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mMaxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mPriceMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPublicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"reserveMint","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":"payable","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":"payable","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":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055506188b8600b5560405180602001604052806000815250600c90805190602001906200004c929190620002aa565b506040518060600160405280600560ff168152602001601460ff168152602001603260ff16815250600d906003620000869291906200033b565b503480156200009457600080fd5b506040518060400160405280601581526020017f446567656e744c6f7474657279506c6174696e756d00000000000000000000008152506040518060400160405280600381526020017f444c5000000000000000000000000000000000000000000000000000000000008152506200012162000115620001d960201b60201c565b620001e160201b60201c565b816003908051906020019062000139929190620002aa565b50806004908051906020019062000152929190620002aa565b5062000163620002a560201b60201c565b60018190555050506001600981905550661b9ac619e7a00060106000600581526020019081526020016000208190555066470de4df820000601060006014815260200190815260200160002081905550666a94d74f43000060106000603281526020019081526020016000208190555062000409565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002b890620003a4565b90600052602060002090601f016020900481019282620002dc576000855562000328565b82601f10620002f757805160ff191683800117855562000328565b8280016001018555821562000328579182015b82811115620003275782518255916020019190600101906200030a565b5b50905062000337919062000385565b5090565b826003810192821562000372579160200282015b8281111562000371578251829060ff169055916020019190600101906200034f565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b60006002820490506001821680620003bd57607f821691505b60208210811415620003d457620003d3620003da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6130c780620004196000396000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a1578063e985e9c5146105de578063f2fde38b1461061b578063faabbb0614610644576101b7565b8063a22cb46514610531578063b88d4fde1461055a578063c0a58fa914610576576101b7565b806395d89b41116100c657806395d89b41146104aa578063963565e1146104d5578063a0712d68146104fe578063a10866ef1461051a576101b7565b8063715018a61461043d5780638734c6ea146104545780638da5cb5b1461047f576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461035d57806366a7e21d1461039a5780636ebb7f20146103c357806370a0823114610400576101b7565b806342842e0e146102ef5780634ef020b21461030b57806355f804b314610334576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d5780632149b8ed146102a857806323b872dd146102d3576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906124e2565b610681565b6040516101f091906128e7565b60405180910390f35b34801561020557600080fd5b5061020e610713565b60405161021b9190612902565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612589565b6107a5565b6040516102589190612880565b60405180910390f35b61027b600480360381019061027691906123d4565b610824565b005b34801561028957600080fd5b50610292610968565b60405161029f9190612a64565b60405180910390f35b3480156102b457600080fd5b506102bd61097f565b6040516102ca9190612902565b60405180910390f35b6102ed60048036038101906102e891906122be565b610a0d565b005b610309600480360381019061030491906122be565b610d32565b005b34801561031757600080fd5b50610332600480360381019061032d91906125b6565b610d52565b005b34801561034057600080fd5b5061035b6004803603810190610356919061253c565b610e1b565b005b34801561036957600080fd5b50610384600480360381019061037f9190612589565b610e39565b6040516103919190612880565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612495565b610e4b565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612589565b610ef0565b6040516103f79190612a64565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612251565b610f08565b6040516104349190612a64565b60405180910390f35b34801561044957600080fd5b50610452610fc1565b005b34801561046057600080fd5b50610469610fd5565b60405161047691906128e7565b60405180910390f35b34801561048b57600080fd5b50610494610fe8565b6040516104a19190612880565b60405180910390f35b3480156104b657600080fd5b506104bf611011565b6040516104cc9190612902565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612414565b6110a3565b005b61051860048036038101906105139190612589565b611217565b005b34801561052657600080fd5b5061052f6113ae565b005b34801561053d57600080fd5b5061055860048036038101906105539190612394565b6113e2565b005b610574600480360381019061056f9190612311565b6114ed565b005b34801561058257600080fd5b5061058b611560565b6040516105989190612a64565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190612589565b611566565b6040516105d59190612902565b60405180910390f35b3480156105ea57600080fd5b506106056004803603810190610600919061227e565b611605565b60405161061291906128e7565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612251565b611699565b005b34801561065057600080fd5b5061066b60048036038101906106669190612589565b61171d565b6040516106789190612a64565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106dc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461072290612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90612c4e565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b082611738565b6107e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082f82610e39565b90508073ffffffffffffffffffffffffffffffffffffffff16610850611797565b73ffffffffffffffffffffffffffffffffffffffff16146108b35761087c81610877611797565b611605565b6108b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097261179f565b6002546001540303905090565b600c805461098c90612c4e565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890612c4e565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b505050505081565b6000610a18826117a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a8b84611872565b91509150610aa18187610a9c611797565b611899565b610aed57610ab686610ab1611797565b611605565b610aec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6186868660016118dd565b8015610b6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c3a85610c168888876118e3565b7c02000000000000000000000000000000000000000000000000000000001761190b565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cc2576000600185019050600060056000838152602001908152602001600020541415610cc0576001548114610cbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d2a8686866001611936565b505050505050565b610d4d838383604051806020016040528060008152506114ed565b505050565b610d5a61193c565b610d626119ba565b60008173ffffffffffffffffffffffffffffffffffffffff1683604051610d889061286b565b60006040518083038185875af1925050503d8060008114610dc5576040519150601f19603f3d011682016040523d82523d6000602084013e610dca565b606091505b5050905080610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590612a24565b60405180910390fd5b50610e17611a0a565b5050565b610e2361193c565b8181600c9190610e34929190611fbe565b505050565b6000610e44826117a4565b9050919050565b610e5361193c565b81816000818110610e6757610e66612d82565b5b9050602002013560106000600581526020019081526020016000208190555081816001818110610e9a57610e99612d82565b5b9050602002013560106000601481526020019081526020016000208190555081816002818110610ecd57610ecc612d82565b5b905060200201356010600060328152602001908152602001600020819055505050565b60106020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f70576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc961193c565b610fd36000611a14565b565b600a60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461102090612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461104c90612c4e565b80156110995780601f1061106e57610100808354040283529160200191611099565b820191906000526020600020905b81548152906001019060200180831161107c57829003601f168201915b5050505050905090565b6110ab61193c565b6110b36119ba565b8181905084849050146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612a04565b60405180910390fd5b6000805b838390508110156111445783838281811061111d5761111c612d82565b5b905060200201358261112f9190612b23565b9150808061113c90612cb1565b9150506110ff565b50600b54611150610968565b8261115b9190612b23565b111561119c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906129c4565b60405180910390fd5b60005b85859050811015611207576111f48686838181106111c0576111bf612d82565b5b90506020020160208101906111d59190612251565b8585848181106111e8576111e7612d82565b5b90506020020135611ad8565b80806111ff90612cb1565b91505061119f565b5050611211611a0a565b50505050565b600a60009054906101000a900460ff16611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612924565b60405180910390fd5b600b54611271610968565b8261127c9190612b23565b11156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b4906129a4565b60405180910390fd5b6000805b60038160ff16101561130957600d8160ff16600381106112e4576112e3612d82565b5b01548314156112f65760019150611309565b808061130190612cfa565b9150506112c1565b508061134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190612964565b60405180910390fd5b60106000838152602001908152602001600020543410156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790612984565b60405180910390fd5b6113aa3383611ad8565b5050565b6113b661193c565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b80600860006113ef611797565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149c611797565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e191906128e7565b60405180910390a35050565b6114f8848484610a0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461155a5761152384848484611af6565b611559576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b606061157182611738565b6115a7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115b1611c56565b90506000815114156115d257604051806020016040528060008152506115fd565b806115dc84611ce8565b6040516020016115ed929190612847565b6040516020818303038152906040525b915050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a161193c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890612944565b60405180910390fd5b61171a81611a14565b50565b600d816003811061172d57600080fd5b016000915090505481565b60008161174361179f565b11158015611752575060015482105b8015611790575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117b361179f565b1161183b5760015481101561183a5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611838575b600081141561182e576005600083600190039350838152602001908152602001600020549050611803565b809250505061186d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118fa868684611d41565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611944611d4a565b73ffffffffffffffffffffffffffffffffffffffff16611962610fe8565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af906129e4565b60405180910390fd5b565b60026009541415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612a44565b60405180910390fd5b6002600981905550565b6001600981905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611af2828260405180602001604052806000815250611d52565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b1c611797565b8786866040518563ffffffff1660e01b8152600401611b3e949392919061289b565b602060405180830381600087803b158015611b5857600080fd5b505af1925050508015611b8957506040513d601f19601f82011682018060405250810190611b86919061250f565b60015b611c03573d8060008114611bb9576040519150601f19603f3d011682016040523d82523d6000602084013e611bbe565b606091505b50600081511415611bfb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611c6590612c4e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9190612c4e565b8015611cde5780601f10611cb357610100808354040283529160200191611cde565b820191906000526020600020905b815481529060010190602001808311611cc157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d2c57600184039350600a81066030018453600a8104905080611d2757611d2c565b611d01565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611d5c8383611df0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611deb5760006001549050600083820390505b611d9d6000868380600101945086611af6565b611dd3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d8a578160015414611de857600080fd5b50505b505050565b600060015490506000821415611e32576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e3f60008483856118dd565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eb683611ea760008660006118e3565b611eb085611fae565b1761190b565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f5757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f1c565b506000821415611f93576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611fa96000848385611936565b505050565b60006001821460e11b9050919050565b828054611fca90612c4e565b90600052602060002090601f016020900481019282611fec5760008555612033565b82601f1061200557803560ff1916838001178555612033565b82800160010185558215612033579182015b82811115612032578235825591602001919060010190612017565b5b5090506120409190612044565b5090565b5b8082111561205d576000816000905550600101612045565b5090565b600061207461206f84612aa4565b612a7f565b9050828152602081018484840111156120905761208f612def565b5b61209b848285612c0c565b509392505050565b6000813590506120b28161301e565b92915050565b6000813590506120c781613035565b92915050565b60008083601f8401126120e3576120e2612de5565b5b8235905067ffffffffffffffff811115612100576120ff612de0565b5b60208301915083602082028301111561211c5761211b612dea565b5b9250929050565b60008083601f84011261213957612138612de5565b5b8235905067ffffffffffffffff81111561215657612155612de0565b5b60208301915083602082028301111561217257612171612dea565b5b9250929050565b6000813590506121888161304c565b92915050565b60008135905061219d81613063565b92915050565b6000815190506121b281613063565b92915050565b600082601f8301126121cd576121cc612de5565b5b81356121dd848260208601612061565b91505092915050565b60008083601f8401126121fc576121fb612de5565b5b8235905067ffffffffffffffff81111561221957612218612de0565b5b60208301915083600182028301111561223557612234612dea565b5b9250929050565b60008135905061224b8161307a565b92915050565b60006020828403121561226757612266612df9565b5b6000612275848285016120a3565b91505092915050565b6000806040838503121561229557612294612df9565b5b60006122a3858286016120a3565b92505060206122b4858286016120a3565b9150509250929050565b6000806000606084860312156122d7576122d6612df9565b5b60006122e5868287016120a3565b93505060206122f6868287016120a3565b92505060406123078682870161223c565b9150509250925092565b6000806000806080858703121561232b5761232a612df9565b5b6000612339878288016120a3565b945050602061234a878288016120a3565b935050604061235b8782880161223c565b925050606085013567ffffffffffffffff81111561237c5761237b612df4565b5b612388878288016121b8565b91505092959194509250565b600080604083850312156123ab576123aa612df9565b5b60006123b9858286016120a3565b92505060206123ca85828601612179565b9150509250929050565b600080604083850312156123eb576123ea612df9565b5b60006123f9858286016120a3565b925050602061240a8582860161223c565b9150509250929050565b6000806000806040858703121561242e5761242d612df9565b5b600085013567ffffffffffffffff81111561244c5761244b612df4565b5b612458878288016120cd565b9450945050602085013567ffffffffffffffff81111561247b5761247a612df4565b5b61248787828801612123565b925092505092959194509250565b600080602083850312156124ac576124ab612df9565b5b600083013567ffffffffffffffff8111156124ca576124c9612df4565b5b6124d685828601612123565b92509250509250929050565b6000602082840312156124f8576124f7612df9565b5b60006125068482850161218e565b91505092915050565b60006020828403121561252557612524612df9565b5b6000612533848285016121a3565b91505092915050565b6000806020838503121561255357612552612df9565b5b600083013567ffffffffffffffff81111561257157612570612df4565b5b61257d858286016121e6565b92509250509250929050565b60006020828403121561259f5761259e612df9565b5b60006125ad8482850161223c565b91505092915050565b600080604083850312156125cd576125cc612df9565b5b60006125db8582860161223c565b92505060206125ec858286016120b8565b9150509250929050565b6125ff81612b79565b82525050565b61260e81612b9d565b82525050565b600061261f82612ad5565b6126298185612aeb565b9350612639818560208601612c1b565b61264281612dfe565b840191505092915050565b600061265882612ae0565b6126628185612b07565b9350612672818560208601612c1b565b61267b81612dfe565b840191505092915050565b600061269182612ae0565b61269b8185612b18565b93506126ab818560208601612c1b565b80840191505092915050565b60006126c4602283612b07565b91506126cf82612e0f565b604082019050919050565b60006126e7602683612b07565b91506126f282612e5e565b604082019050919050565b600061270a601583612b07565b915061271582612ead565b602082019050919050565b600061272d601f83612b07565b915061273882612ed6565b602082019050919050565b6000612750602083612b07565b915061275b82612eff565b602082019050919050565b6000612773602483612b07565b915061277e82612f28565b604082019050919050565b6000612796602083612b07565b91506127a182612f77565b602082019050919050565b60006127b9601883612b07565b91506127c482612fa0565b602082019050919050565b60006127dc600083612afc565b91506127e782612fc9565b600082019050919050565b60006127ff601083612b07565b915061280a82612fcc565b602082019050919050565b6000612822601f83612b07565b915061282d82612ff5565b602082019050919050565b61284181612bf5565b82525050565b60006128538285612686565b915061285f8284612686565b91508190509392505050565b6000612876826127cf565b9150819050919050565b600060208201905061289560008301846125f6565b92915050565b60006080820190506128b060008301876125f6565b6128bd60208301866125f6565b6128ca6040830185612838565b81810360608301526128dc8184612614565b905095945050505050565b60006020820190506128fc6000830184612605565b92915050565b6000602082019050818103600083015261291c818461264d565b905092915050565b6000602082019050818103600083015261293d816126b7565b9050919050565b6000602082019050818103600083015261295d816126da565b9050919050565b6000602082019050818103600083015261297d816126fd565b9050919050565b6000602082019050818103600083015261299d81612720565b9050919050565b600060208201905081810360008301526129bd81612743565b9050919050565b600060208201905081810360008301526129dd81612766565b9050919050565b600060208201905081810360008301526129fd81612789565b9050919050565b60006020820190508181036000830152612a1d816127ac565b9050919050565b60006020820190508181036000830152612a3d816127f2565b9050919050565b60006020820190508181036000830152612a5d81612815565b9050919050565b6000602082019050612a796000830184612838565b92915050565b6000612a89612a9a565b9050612a958282612c80565b919050565b6000604051905090565b600067ffffffffffffffff821115612abf57612abe612db1565b5b612ac882612dfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2e82612bf5565b9150612b3983612bf5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6e57612b6d612d24565b5b828201905092915050565b6000612b8482612bd5565b9050919050565b6000612b9682612bd5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c39578082015181840152602081019050612c1e565b83811115612c48576000848401525b50505050565b60006002820490506001821680612c6657607f821691505b60208210811415612c7a57612c79612d53565b5b50919050565b612c8982612dfe565b810181811067ffffffffffffffff82111715612ca857612ca7612db1565b5b80604052505050565b6000612cbc82612bf5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cef57612cee612d24565b5b600182019050919050565b6000612d0582612bff565b915060ff821415612d1957612d18612d24565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206e6f742061636365707465640000000000000000000000600082015250565b7f45746865722076616c75652073656e7420776173206e6f7420656e6f75676800600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f52657365727665206d696e7420776f756c6420657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4172726179206c656e67746873206d757374206d617463680000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61302781612b79565b811461303257600080fd5b50565b61303e81612b8b565b811461304957600080fd5b50565b61305581612b9d565b811461306057600080fd5b50565b61306c81612ba9565b811461307757600080fd5b50565b61308381612bf5565b811461308e57600080fd5b5056fea2646970667358221220bc345486d594d2db66c3175cb70bc85339180ff9319da4cd5a2d9b8b5962885e64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146105a1578063e985e9c5146105de578063f2fde38b1461061b578063faabbb0614610644576101b7565b8063a22cb46514610531578063b88d4fde1461055a578063c0a58fa914610576576101b7565b806395d89b41116100c657806395d89b41146104aa578063963565e1146104d5578063a0712d68146104fe578063a10866ef1461051a576101b7565b8063715018a61461043d5780638734c6ea146104545780638da5cb5b1461047f576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461035d57806366a7e21d1461039a5780636ebb7f20146103c357806370a0823114610400576101b7565b806342842e0e146102ef5780634ef020b21461030b57806355f804b314610334576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461027d5780632149b8ed146102a857806323b872dd146102d3576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906124e2565b610681565b6040516101f091906128e7565b60405180910390f35b34801561020557600080fd5b5061020e610713565b60405161021b9190612902565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612589565b6107a5565b6040516102589190612880565b60405180910390f35b61027b600480360381019061027691906123d4565b610824565b005b34801561028957600080fd5b50610292610968565b60405161029f9190612a64565b60405180910390f35b3480156102b457600080fd5b506102bd61097f565b6040516102ca9190612902565b60405180910390f35b6102ed60048036038101906102e891906122be565b610a0d565b005b610309600480360381019061030491906122be565b610d32565b005b34801561031757600080fd5b50610332600480360381019061032d91906125b6565b610d52565b005b34801561034057600080fd5b5061035b6004803603810190610356919061253c565b610e1b565b005b34801561036957600080fd5b50610384600480360381019061037f9190612589565b610e39565b6040516103919190612880565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190612495565b610e4b565b005b3480156103cf57600080fd5b506103ea60048036038101906103e59190612589565b610ef0565b6040516103f79190612a64565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612251565b610f08565b6040516104349190612a64565b60405180910390f35b34801561044957600080fd5b50610452610fc1565b005b34801561046057600080fd5b50610469610fd5565b60405161047691906128e7565b60405180910390f35b34801561048b57600080fd5b50610494610fe8565b6040516104a19190612880565b60405180910390f35b3480156104b657600080fd5b506104bf611011565b6040516104cc9190612902565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612414565b6110a3565b005b61051860048036038101906105139190612589565b611217565b005b34801561052657600080fd5b5061052f6113ae565b005b34801561053d57600080fd5b5061055860048036038101906105539190612394565b6113e2565b005b610574600480360381019061056f9190612311565b6114ed565b005b34801561058257600080fd5b5061058b611560565b6040516105989190612a64565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190612589565b611566565b6040516105d59190612902565b60405180910390f35b3480156105ea57600080fd5b506106056004803603810190610600919061227e565b611605565b60405161061291906128e7565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612251565b611699565b005b34801561065057600080fd5b5061066b60048036038101906106669190612589565b61171d565b6040516106789190612a64565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106dc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061070c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461072290612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461074e90612c4e565b801561079b5780601f106107705761010080835404028352916020019161079b565b820191906000526020600020905b81548152906001019060200180831161077e57829003601f168201915b5050505050905090565b60006107b082611738565b6107e6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061082f82610e39565b90508073ffffffffffffffffffffffffffffffffffffffff16610850611797565b73ffffffffffffffffffffffffffffffffffffffff16146108b35761087c81610877611797565b611605565b6108b2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061097261179f565b6002546001540303905090565b600c805461098c90612c4e565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890612c4e565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b505050505081565b6000610a18826117a4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a8b84611872565b91509150610aa18187610a9c611797565b611899565b610aed57610ab686610ab1611797565b611605565b610aec576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b54576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6186868660016118dd565b8015610b6c57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c3a85610c168888876118e3565b7c02000000000000000000000000000000000000000000000000000000001761190b565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cc2576000600185019050600060056000838152602001908152602001600020541415610cc0576001548114610cbf578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d2a8686866001611936565b505050505050565b610d4d838383604051806020016040528060008152506114ed565b505050565b610d5a61193c565b610d626119ba565b60008173ffffffffffffffffffffffffffffffffffffffff1683604051610d889061286b565b60006040518083038185875af1925050503d8060008114610dc5576040519150601f19603f3d011682016040523d82523d6000602084013e610dca565b606091505b5050905080610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590612a24565b60405180910390fd5b50610e17611a0a565b5050565b610e2361193c565b8181600c9190610e34929190611fbe565b505050565b6000610e44826117a4565b9050919050565b610e5361193c565b81816000818110610e6757610e66612d82565b5b9050602002013560106000600581526020019081526020016000208190555081816001818110610e9a57610e99612d82565b5b9050602002013560106000601481526020019081526020016000208190555081816002818110610ecd57610ecc612d82565b5b905060200201356010600060328152602001908152602001600020819055505050565b60106020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f70576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610fc961193c565b610fd36000611a14565b565b600a60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461102090612c4e565b80601f016020809104026020016040519081016040528092919081815260200182805461104c90612c4e565b80156110995780601f1061106e57610100808354040283529160200191611099565b820191906000526020600020905b81548152906001019060200180831161107c57829003601f168201915b5050505050905090565b6110ab61193c565b6110b36119ba565b8181905084849050146110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f290612a04565b60405180910390fd5b6000805b838390508110156111445783838281811061111d5761111c612d82565b5b905060200201358261112f9190612b23565b9150808061113c90612cb1565b9150506110ff565b50600b54611150610968565b8261115b9190612b23565b111561119c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906129c4565b60405180910390fd5b60005b85859050811015611207576111f48686838181106111c0576111bf612d82565b5b90506020020160208101906111d59190612251565b8585848181106111e8576111e7612d82565b5b90506020020135611ad8565b80806111ff90612cb1565b91505061119f565b5050611211611a0a565b50505050565b600a60009054906101000a900460ff16611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612924565b60405180910390fd5b600b54611271610968565b8261127c9190612b23565b11156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b4906129a4565b60405180910390fd5b6000805b60038160ff16101561130957600d8160ff16600381106112e4576112e3612d82565b5b01548314156112f65760019150611309565b808061130190612cfa565b9150506112c1565b508061134a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134190612964565b60405180910390fd5b60106000838152602001908152602001600020543410156113a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139790612984565b60405180910390fd5b6113aa3383611ad8565b5050565b6113b661193c565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b80600860006113ef611797565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149c611797565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e191906128e7565b60405180910390a35050565b6114f8848484610a0d565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461155a5761152384848484611af6565b611559576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b606061157182611738565b6115a7576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006115b1611c56565b90506000815114156115d257604051806020016040528060008152506115fd565b806115dc84611ce8565b6040516020016115ed929190612847565b6040516020818303038152906040525b915050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116a161193c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170890612944565b60405180910390fd5b61171a81611a14565b50565b600d816003811061172d57600080fd5b016000915090505481565b60008161174361179f565b11158015611752575060015482105b8015611790575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806117b361179f565b1161183b5760015481101561183a5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611838575b600081141561182e576005600083600190039350838152602001908152602001600020549050611803565b809250505061186d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118fa868684611d41565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611944611d4a565b73ffffffffffffffffffffffffffffffffffffffff16611962610fe8565b73ffffffffffffffffffffffffffffffffffffffff16146119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af906129e4565b60405180910390fd5b565b60026009541415611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612a44565b60405180910390fd5b6002600981905550565b6001600981905550565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611af2828260405180602001604052806000815250611d52565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b1c611797565b8786866040518563ffffffff1660e01b8152600401611b3e949392919061289b565b602060405180830381600087803b158015611b5857600080fd5b505af1925050508015611b8957506040513d601f19601f82011682018060405250810190611b86919061250f565b60015b611c03573d8060008114611bb9576040519150601f19603f3d011682016040523d82523d6000602084013e611bbe565b606091505b50600081511415611bfb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054611c6590612c4e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9190612c4e565b8015611cde5780601f10611cb357610100808354040283529160200191611cde565b820191906000526020600020905b815481529060010190602001808311611cc157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d2c57600184039350600a81066030018453600a8104905080611d2757611d2c565b611d01565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611d5c8383611df0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611deb5760006001549050600083820390505b611d9d6000868380600101945086611af6565b611dd3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d8a578160015414611de857600080fd5b50505b505050565b600060015490506000821415611e32576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e3f60008483856118dd565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611eb683611ea760008660006118e3565b611eb085611fae565b1761190b565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f5757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611f1c565b506000821415611f93576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806001819055505050611fa96000848385611936565b505050565b60006001821460e11b9050919050565b828054611fca90612c4e565b90600052602060002090601f016020900481019282611fec5760008555612033565b82601f1061200557803560ff1916838001178555612033565b82800160010185558215612033579182015b82811115612032578235825591602001919060010190612017565b5b5090506120409190612044565b5090565b5b8082111561205d576000816000905550600101612045565b5090565b600061207461206f84612aa4565b612a7f565b9050828152602081018484840111156120905761208f612def565b5b61209b848285612c0c565b509392505050565b6000813590506120b28161301e565b92915050565b6000813590506120c781613035565b92915050565b60008083601f8401126120e3576120e2612de5565b5b8235905067ffffffffffffffff811115612100576120ff612de0565b5b60208301915083602082028301111561211c5761211b612dea565b5b9250929050565b60008083601f84011261213957612138612de5565b5b8235905067ffffffffffffffff81111561215657612155612de0565b5b60208301915083602082028301111561217257612171612dea565b5b9250929050565b6000813590506121888161304c565b92915050565b60008135905061219d81613063565b92915050565b6000815190506121b281613063565b92915050565b600082601f8301126121cd576121cc612de5565b5b81356121dd848260208601612061565b91505092915050565b60008083601f8401126121fc576121fb612de5565b5b8235905067ffffffffffffffff81111561221957612218612de0565b5b60208301915083600182028301111561223557612234612dea565b5b9250929050565b60008135905061224b8161307a565b92915050565b60006020828403121561226757612266612df9565b5b6000612275848285016120a3565b91505092915050565b6000806040838503121561229557612294612df9565b5b60006122a3858286016120a3565b92505060206122b4858286016120a3565b9150509250929050565b6000806000606084860312156122d7576122d6612df9565b5b60006122e5868287016120a3565b93505060206122f6868287016120a3565b92505060406123078682870161223c565b9150509250925092565b6000806000806080858703121561232b5761232a612df9565b5b6000612339878288016120a3565b945050602061234a878288016120a3565b935050604061235b8782880161223c565b925050606085013567ffffffffffffffff81111561237c5761237b612df4565b5b612388878288016121b8565b91505092959194509250565b600080604083850312156123ab576123aa612df9565b5b60006123b9858286016120a3565b92505060206123ca85828601612179565b9150509250929050565b600080604083850312156123eb576123ea612df9565b5b60006123f9858286016120a3565b925050602061240a8582860161223c565b9150509250929050565b6000806000806040858703121561242e5761242d612df9565b5b600085013567ffffffffffffffff81111561244c5761244b612df4565b5b612458878288016120cd565b9450945050602085013567ffffffffffffffff81111561247b5761247a612df4565b5b61248787828801612123565b925092505092959194509250565b600080602083850312156124ac576124ab612df9565b5b600083013567ffffffffffffffff8111156124ca576124c9612df4565b5b6124d685828601612123565b92509250509250929050565b6000602082840312156124f8576124f7612df9565b5b60006125068482850161218e565b91505092915050565b60006020828403121561252557612524612df9565b5b6000612533848285016121a3565b91505092915050565b6000806020838503121561255357612552612df9565b5b600083013567ffffffffffffffff81111561257157612570612df4565b5b61257d858286016121e6565b92509250509250929050565b60006020828403121561259f5761259e612df9565b5b60006125ad8482850161223c565b91505092915050565b600080604083850312156125cd576125cc612df9565b5b60006125db8582860161223c565b92505060206125ec858286016120b8565b9150509250929050565b6125ff81612b79565b82525050565b61260e81612b9d565b82525050565b600061261f82612ad5565b6126298185612aeb565b9350612639818560208601612c1b565b61264281612dfe565b840191505092915050565b600061265882612ae0565b6126628185612b07565b9350612672818560208601612c1b565b61267b81612dfe565b840191505092915050565b600061269182612ae0565b61269b8185612b18565b93506126ab818560208601612c1b565b80840191505092915050565b60006126c4602283612b07565b91506126cf82612e0f565b604082019050919050565b60006126e7602683612b07565b91506126f282612e5e565b604082019050919050565b600061270a601583612b07565b915061271582612ead565b602082019050919050565b600061272d601f83612b07565b915061273882612ed6565b602082019050919050565b6000612750602083612b07565b915061275b82612eff565b602082019050919050565b6000612773602483612b07565b915061277e82612f28565b604082019050919050565b6000612796602083612b07565b91506127a182612f77565b602082019050919050565b60006127b9601883612b07565b91506127c482612fa0565b602082019050919050565b60006127dc600083612afc565b91506127e782612fc9565b600082019050919050565b60006127ff601083612b07565b915061280a82612fcc565b602082019050919050565b6000612822601f83612b07565b915061282d82612ff5565b602082019050919050565b61284181612bf5565b82525050565b60006128538285612686565b915061285f8284612686565b91508190509392505050565b6000612876826127cf565b9150819050919050565b600060208201905061289560008301846125f6565b92915050565b60006080820190506128b060008301876125f6565b6128bd60208301866125f6565b6128ca6040830185612838565b81810360608301526128dc8184612614565b905095945050505050565b60006020820190506128fc6000830184612605565b92915050565b6000602082019050818103600083015261291c818461264d565b905092915050565b6000602082019050818103600083015261293d816126b7565b9050919050565b6000602082019050818103600083015261295d816126da565b9050919050565b6000602082019050818103600083015261297d816126fd565b9050919050565b6000602082019050818103600083015261299d81612720565b9050919050565b600060208201905081810360008301526129bd81612743565b9050919050565b600060208201905081810360008301526129dd81612766565b9050919050565b600060208201905081810360008301526129fd81612789565b9050919050565b60006020820190508181036000830152612a1d816127ac565b9050919050565b60006020820190508181036000830152612a3d816127f2565b9050919050565b60006020820190508181036000830152612a5d81612815565b9050919050565b6000602082019050612a796000830184612838565b92915050565b6000612a89612a9a565b9050612a958282612c80565b919050565b6000604051905090565b600067ffffffffffffffff821115612abf57612abe612db1565b5b612ac882612dfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b2e82612bf5565b9150612b3983612bf5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b6e57612b6d612d24565b5b828201905092915050565b6000612b8482612bd5565b9050919050565b6000612b9682612bd5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c39578082015181840152602081019050612c1e565b83811115612c48576000848401525b50505050565b60006002820490506001821680612c6657607f821691505b60208210811415612c7a57612c79612d53565b5b50919050565b612c8982612dfe565b810181811067ffffffffffffffff82111715612ca857612ca7612db1565b5b80604052505050565b6000612cbc82612bf5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cef57612cee612d24565b5b600182019050919050565b6000612d0582612bff565b915060ff821415612d1957612d18612d24565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479206e6f742061636365707465640000000000000000000000600082015250565b7f45746865722076616c75652073656e7420776173206e6f7420656e6f75676800600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f52657365727665206d696e7420776f756c6420657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4172726179206c656e67746873206d757374206d617463680000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61302781612b79565b811461303257600080fd5b50565b61303e81612b8b565b811461304957600080fd5b50565b61305581612b9d565b811461306057600080fd5b50565b61306c81612ba9565b811461307757600080fd5b50565b61308381612bf5565b811461308e57600080fd5b5056fea2646970667358221220bc345486d594d2db66c3175cb70bc85339180ff9319da4cd5a2d9b8b5962885e64736f6c63430008070033
Deployed Bytecode Sourcemap
58047:2886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58219:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60719:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60042:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60474:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58328:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57157:103;;;;;;;;;;;;;:::i;:::-;;58128:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56509:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59285:702;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58595:682;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60314:112;;;;;;;;;;;;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58174:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19692:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57415:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58271:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;58219:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;60719:211::-;56395:13;:11;:13::i;:::-;53780:21:::1;:19;:21::i;:::-;60822:12:::2;60848:2;60840:16;;60864:6;60840:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60821:54;;;60894:7;60886:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;60810:120;53824:20:::1;:18;:20::i;:::-;60719:211:::0;;:::o;60042:101::-;56395:13;:11;:13::i;:::-;60128:7:::1;;60117:8;:18;;;;;;;:::i;:::-;;60042:101:::0;;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;60474:198::-;56395:13;:11;:13::i;:::-;60574:9:::1;;60584:1;60574:12;;;;;;;:::i;:::-;;;;;;;;60559:9;:12;60569:1;60559:12;;;;;;;;;;;:27;;;;60613:9;;60623:1;60613:12;;;;;;;:::i;:::-;;;;;;;;60597:9;:13;60607:2;60597:13;;;;;;;;;;;:28;;;;60652:9;;60662:1;60652:12;;;;;;;:::i;:::-;;;;;;;;60636:9;:13;60646:2;60636:13;;;;;;;;;;;:28;;;;60474:198:::0;;:::o;58328:44::-;;;;;;;;;;;;;;;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;57157:103::-;56395:13;:11;:13::i;:::-;57222:30:::1;57249:1;57222:18;:30::i;:::-;57157:103::o:0;58128:39::-;;;;;;;;;;;;;:::o;56509:87::-;56555:7;56582:6;;;;;;;;;;;56575:13;;56509:87;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;59285:702::-;56395:13;:11;:13::i;:::-;53780:21:::1;:19;:21::i;:::-;59440:10:::2;;:17;;59419:10;;:17;;:38;59411:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59565:21;59605:9:::0;59601:103:::2;59624:10;;:17;;59620:1;:21;59601:103;;;59679:10;;59690:1;59679:13;;;;;;;:::i;:::-;;;;;;;;59662:30;;;;;:::i;:::-;;;59643:3;;;;;:::i;:::-;;;;59601:103;;;;59755:15;;59738:13;:11;:13::i;:::-;59722;:29;;;;:::i;:::-;:48;;59714:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;59871:9;59866:114;59890:10;;:17;;59886:1;:21;59866:114;;;59929:39;59939:10;;59950:1;59939:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;59954:10;;59965:1;59954:13;;;;;;;:::i;:::-;;;;;;;;59929:9;:39::i;:::-;59909:3;;;;;:::i;:::-;;;;59866:114;;;;59400:587;53824:20:::1;:18;:20::i;:::-;59285:702:::0;;;;:::o;58595:682::-;58663:19;;;;;;;;;;;58655:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58768:15;;58751:13;:11;:13::i;:::-;58740:8;:24;;;;:::i;:::-;:43;;58732:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;58831:21;58875:7;58871:207;58892:25;58888:1;:29;;;58871:207;;;58963:18;58982:1;58963:21;;;;;;;;;:::i;:::-;;;;58951:8;:33;58948:119;;;59023:4;59004:23;;59046:5;;58948:119;58919:3;;;;;:::i;:::-;;;;58871:207;;;;59096:16;59088:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;59170:9;:19;59180:8;59170:19;;;;;;;;;;;;59157:9;:32;;59149:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59238:31;59248:10;59260:8;59238:9;:31::i;:::-;58644:633;58595:682;:::o;60314:112::-;56395:13;:11;:13::i;:::-;60399:19:::1;;;;;;;;;;;60398:20;60376:19;;:42;;;;;;;;;;;;;;;;;;60314:112::o:0;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;58174:38::-;;;;:::o;19692:318::-;19765:13;19796:16;19804:7;19796;:16::i;:::-;19791:59;;19821:29;;;;;;;;;;;;;;19791:59;19863:21;19887:10;:8;:10::i;:::-;19863:34;;19940:1;19921:7;19915:21;:26;;:87;;;;;;;;;;;;;;;;;19968:7;19977:18;19987:7;19977:9;:18::i;:::-;19951:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19915:87;19908:94;;;19692:318;;;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;57415:201::-;56395:13;:11;:13::i;:::-;57524:1:::1;57504:22;;:8;:22;;;;57496:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;57580:28;57599:8;57580:18;:28::i;:::-;57415:201:::0;:::o;58271:50::-;;;;;;;;;;;;;;;;;;;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;14573:92::-;14629:7;14573:92;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;;22867:113;22884:1;22874:6;:11;22867:113;;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;56674:132::-;56749:12;:10;:12::i;:::-;56738:23;;:7;:5;:7::i;:::-;:23;;;56730:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56674:132::o;53860:293::-;53262:1;53994:7;;:19;;53986:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53262:1;54127:7;:18;;;;53860:293::o;54161:213::-;53218:1;54344:7;:22;;;;54161:213::o;57776:191::-;57850:16;57869:6;;;;;;;;;;;57850:25;;57895:8;57886:6;;:17;;;;;;;;;;;;;;;;;;57950:8;57919:40;;57940:8;57919:40;;;;;;;;;;;;57839:128;57776:191;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;60151:109::-;60211:13;60244:8;60237:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60151:109;:::o;49683:1745::-;49748:17;50182:4;50175;50169:11;50165:22;50274:1;50268:4;50261:15;50349:4;50346:1;50342:12;50335:19;;50431:1;50426:3;50419:14;50535:3;50774:5;50756:428;50782:1;50756:428;;;50822:1;50817:3;50813:11;50806:18;;50993:2;50987:4;50983:13;50979:2;50975:22;50970:3;50962:36;51087:2;51081:4;51077:13;51069:21;;51154:4;51144:25;;51162:5;;51144:25;50756:428;;;50760:21;51223:3;51218;51214:13;51338:4;51333:3;51329:14;51322:21;;51403:6;51398:3;51391:19;49787:1634;;;49683:1745;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;55060:98::-;55113:7;55140:10;55133:17;;55060:98;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229: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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:155::-;622:5;660:6;647:20;638:29;;676:41;711:5;676:41;:::i;:::-;568:155;;;;:::o;746:568::-;819:8;829:6;879:3;872:4;864:6;860:17;856:27;846:122;;887:79;;:::i;:::-;846:122;1000:6;987:20;977:30;;1030:18;1022:6;1019:30;1016:117;;;1052:79;;:::i;:::-;1016:117;1166:4;1158:6;1154:17;1142:29;;1220:3;1212:4;1204:6;1200:17;1190:8;1186:32;1183:41;1180:128;;;1227:79;;:::i;:::-;1180:128;746:568;;;;;:::o;1337:::-;1410:8;1420:6;1470:3;1463:4;1455:6;1451:17;1447:27;1437:122;;1478:79;;:::i;:::-;1437:122;1591:6;1578:20;1568:30;;1621:18;1613:6;1610:30;1607:117;;;1643:79;;:::i;:::-;1607:117;1757:4;1749:6;1745:17;1733:29;;1811:3;1803:4;1795:6;1791:17;1781:8;1777:32;1774:41;1771:128;;;1818:79;;:::i;:::-;1771:128;1337:568;;;;;:::o;1911:133::-;1954:5;1992:6;1979:20;1970:29;;2008:30;2032:5;2008:30;:::i;:::-;1911:133;;;;:::o;2050:137::-;2095:5;2133:6;2120:20;2111:29;;2149:32;2175:5;2149:32;:::i;:::-;2050:137;;;;:::o;2193:141::-;2249:5;2280:6;2274:13;2265:22;;2296:32;2322:5;2296:32;:::i;:::-;2193:141;;;;:::o;2353:338::-;2408:5;2457:3;2450:4;2442:6;2438:17;2434:27;2424:122;;2465:79;;:::i;:::-;2424:122;2582:6;2569:20;2607:78;2681:3;2673:6;2666:4;2658:6;2654:17;2607:78;:::i;:::-;2598:87;;2414:277;2353:338;;;;:::o;2711:553::-;2769:8;2779:6;2829:3;2822:4;2814:6;2810:17;2806:27;2796:122;;2837:79;;:::i;:::-;2796:122;2950:6;2937:20;2927:30;;2980:18;2972:6;2969:30;2966:117;;;3002:79;;:::i;:::-;2966:117;3116:4;3108:6;3104:17;3092:29;;3170:3;3162:4;3154:6;3150:17;3140:8;3136:32;3133:41;3130:128;;;3177:79;;:::i;:::-;3130:128;2711:553;;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:934::-;6880:6;6888;6896;6904;6953:2;6941:9;6932:7;6928:23;6924:32;6921:119;;;6959:79;;:::i;:::-;6921:119;7107:1;7096:9;7092:17;7079:31;7137:18;7129:6;7126:30;7123:117;;;7159:79;;:::i;:::-;7123:117;7272:80;7344:7;7335:6;7324:9;7320:22;7272:80;:::i;:::-;7254:98;;;;7050:312;7429:2;7418:9;7414:18;7401:32;7460:18;7452:6;7449:30;7446:117;;;7482:79;;:::i;:::-;7446:117;7595:80;7667:7;7658:6;7647:9;7643:22;7595:80;:::i;:::-;7577:98;;;;7372:313;6758:934;;;;;;;:::o;7698:559::-;7784:6;7792;7841:2;7829:9;7820:7;7816:23;7812:32;7809:119;;;7847:79;;:::i;:::-;7809:119;7995:1;7984:9;7980:17;7967:31;8025:18;8017:6;8014:30;8011:117;;;8047:79;;:::i;:::-;8011:117;8160:80;8232:7;8223:6;8212:9;8208:22;8160:80;:::i;:::-;8142:98;;;;7938:312;7698:559;;;;;:::o;8263:327::-;8321:6;8370:2;8358:9;8349:7;8345:23;8341:32;8338:119;;;8376:79;;:::i;:::-;8338:119;8496:1;8521:52;8565:7;8556:6;8545:9;8541:22;8521:52;:::i;:::-;8511:62;;8467:116;8263:327;;;;:::o;8596:349::-;8665:6;8714:2;8702:9;8693:7;8689:23;8685:32;8682:119;;;8720:79;;:::i;:::-;8682:119;8840:1;8865:63;8920:7;8911:6;8900:9;8896:22;8865:63;:::i;:::-;8855:73;;8811:127;8596:349;;;;:::o;8951:529::-;9022:6;9030;9079:2;9067:9;9058:7;9054:23;9050:32;9047:119;;;9085:79;;:::i;:::-;9047:119;9233:1;9222:9;9218:17;9205:31;9263:18;9255:6;9252:30;9249:117;;;9285:79;;:::i;:::-;9249:117;9398:65;9455:7;9446:6;9435:9;9431:22;9398:65;:::i;:::-;9380:83;;;;9176:297;8951:529;;;;;:::o;9486:329::-;9545:6;9594:2;9582:9;9573:7;9569:23;9565:32;9562:119;;;9600:79;;:::i;:::-;9562:119;9720:1;9745:53;9790:7;9781:6;9770:9;9766:22;9745:53;:::i;:::-;9735:63;;9691:117;9486:329;;;;:::o;9821:490::-;9897:6;9905;9954:2;9942:9;9933:7;9929:23;9925:32;9922:119;;;9960:79;;:::i;:::-;9922:119;10080:1;10105:53;10150:7;10141:6;10130:9;10126:22;10105:53;:::i;:::-;10095:63;;10051:117;10207:2;10233:61;10286:7;10277:6;10266:9;10262:22;10233:61;:::i;:::-;10223:71;;10178:126;9821:490;;;;;:::o;10317:118::-;10404:24;10422:5;10404:24;:::i;:::-;10399:3;10392:37;10317:118;;:::o;10441:109::-;10522:21;10537:5;10522:21;:::i;:::-;10517:3;10510:34;10441:109;;:::o;10556:360::-;10642:3;10670:38;10702:5;10670:38;:::i;:::-;10724:70;10787:6;10782:3;10724:70;:::i;:::-;10717:77;;10803:52;10848:6;10843:3;10836:4;10829:5;10825:16;10803:52;:::i;:::-;10880:29;10902:6;10880:29;:::i;:::-;10875:3;10871:39;10864:46;;10646:270;10556:360;;;;:::o;10922:364::-;11010:3;11038:39;11071:5;11038:39;:::i;:::-;11093:71;11157:6;11152:3;11093:71;:::i;:::-;11086:78;;11173:52;11218:6;11213:3;11206:4;11199:5;11195:16;11173:52;:::i;:::-;11250:29;11272:6;11250:29;:::i;:::-;11245:3;11241:39;11234:46;;11014:272;10922:364;;;;:::o;11292:377::-;11398:3;11426:39;11459:5;11426:39;:::i;:::-;11481:89;11563:6;11558:3;11481:89;:::i;:::-;11474:96;;11579:52;11624:6;11619:3;11612:4;11605:5;11601:16;11579:52;:::i;:::-;11656:6;11651:3;11647:16;11640:23;;11402:267;11292:377;;;;:::o;11675:366::-;11817:3;11838:67;11902:2;11897:3;11838:67;:::i;:::-;11831:74;;11914:93;12003:3;11914:93;:::i;:::-;12032:2;12027:3;12023:12;12016:19;;11675:366;;;:::o;12047:::-;12189:3;12210:67;12274:2;12269:3;12210:67;:::i;:::-;12203:74;;12286:93;12375:3;12286:93;:::i;:::-;12404:2;12399:3;12395:12;12388:19;;12047:366;;;:::o;12419:::-;12561:3;12582:67;12646:2;12641:3;12582:67;:::i;:::-;12575:74;;12658:93;12747:3;12658:93;:::i;:::-;12776:2;12771:3;12767:12;12760:19;;12419:366;;;:::o;12791:::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:::-;13305:3;13326:67;13390:2;13385:3;13326:67;:::i;:::-;13319:74;;13402:93;13491:3;13402:93;:::i;:::-;13520:2;13515:3;13511:12;13504:19;;13163:366;;;:::o;13535:::-;13677:3;13698:67;13762:2;13757:3;13698:67;:::i;:::-;13691:74;;13774:93;13863:3;13774:93;:::i;:::-;13892:2;13887:3;13883:12;13876:19;;13535:366;;;:::o;13907:::-;14049:3;14070:67;14134:2;14129:3;14070:67;:::i;:::-;14063:74;;14146:93;14235:3;14146:93;:::i;:::-;14264:2;14259:3;14255:12;14248:19;;13907:366;;;:::o;14279:::-;14421:3;14442:67;14506:2;14501:3;14442:67;:::i;:::-;14435:74;;14518:93;14607:3;14518:93;:::i;:::-;14636:2;14631:3;14627:12;14620:19;;14279:366;;;:::o;14651:398::-;14810:3;14831:83;14912:1;14907:3;14831:83;:::i;:::-;14824:90;;14923:93;15012:3;14923:93;:::i;:::-;15041:1;15036:3;15032:11;15025:18;;14651:398;;;:::o;15055:366::-;15197:3;15218:67;15282:2;15277:3;15218:67;:::i;:::-;15211:74;;15294:93;15383:3;15294:93;:::i;:::-;15412:2;15407:3;15403:12;15396:19;;15055:366;;;:::o;15427:::-;15569:3;15590:67;15654:2;15649:3;15590:67;:::i;:::-;15583:74;;15666:93;15755:3;15666:93;:::i;:::-;15784:2;15779:3;15775:12;15768:19;;15427:366;;;:::o;15799:118::-;15886:24;15904:5;15886:24;:::i;:::-;15881:3;15874:37;15799:118;;:::o;15923:435::-;16103:3;16125:95;16216:3;16207:6;16125:95;:::i;:::-;16118:102;;16237:95;16328:3;16319:6;16237:95;:::i;:::-;16230:102;;16349:3;16342:10;;15923:435;;;;;:::o;16364:379::-;16548:3;16570:147;16713:3;16570:147;:::i;:::-;16563:154;;16734:3;16727:10;;16364:379;;;:::o;16749:222::-;16842:4;16880:2;16869:9;16865:18;16857:26;;16893:71;16961:1;16950:9;16946:17;16937:6;16893:71;:::i;:::-;16749:222;;;;:::o;16977:640::-;17172:4;17210:3;17199:9;17195:19;17187:27;;17224:71;17292:1;17281:9;17277:17;17268:6;17224:71;:::i;:::-;17305:72;17373:2;17362:9;17358:18;17349:6;17305:72;:::i;:::-;17387;17455:2;17444:9;17440:18;17431:6;17387:72;:::i;:::-;17506:9;17500:4;17496:20;17491:2;17480:9;17476:18;17469:48;17534:76;17605:4;17596:6;17534:76;:::i;:::-;17526:84;;16977:640;;;;;;;:::o;17623:210::-;17710:4;17748:2;17737:9;17733:18;17725:26;;17761:65;17823:1;17812:9;17808:17;17799:6;17761:65;:::i;:::-;17623:210;;;;:::o;17839:313::-;17952:4;17990:2;17979:9;17975:18;17967:26;;18039:9;18033:4;18029:20;18025:1;18014:9;18010:17;18003:47;18067:78;18140:4;18131:6;18067:78;:::i;:::-;18059:86;;17839:313;;;;:::o;18158:419::-;18324:4;18362:2;18351:9;18347:18;18339:26;;18411:9;18405:4;18401:20;18397:1;18386:9;18382:17;18375:47;18439:131;18565:4;18439:131;:::i;:::-;18431:139;;18158:419;;;:::o;18583:::-;18749:4;18787:2;18776:9;18772:18;18764:26;;18836:9;18830:4;18826:20;18822:1;18811:9;18807:17;18800:47;18864:131;18990:4;18864:131;:::i;:::-;18856:139;;18583:419;;;:::o;19008:::-;19174:4;19212:2;19201:9;19197:18;19189:26;;19261:9;19255:4;19251:20;19247:1;19236:9;19232:17;19225:47;19289:131;19415:4;19289:131;:::i;:::-;19281:139;;19008:419;;;:::o;19433:::-;19599:4;19637:2;19626:9;19622:18;19614:26;;19686:9;19680:4;19676:20;19672:1;19661:9;19657:17;19650:47;19714:131;19840:4;19714:131;:::i;:::-;19706:139;;19433:419;;;:::o;19858:::-;20024:4;20062:2;20051:9;20047:18;20039:26;;20111:9;20105:4;20101:20;20097:1;20086:9;20082:17;20075:47;20139:131;20265:4;20139:131;:::i;:::-;20131:139;;19858:419;;;:::o;20283:::-;20449:4;20487:2;20476:9;20472:18;20464:26;;20536:9;20530:4;20526:20;20522:1;20511:9;20507:17;20500:47;20564:131;20690:4;20564:131;:::i;:::-;20556:139;;20283:419;;;:::o;20708:::-;20874:4;20912:2;20901:9;20897:18;20889:26;;20961:9;20955:4;20951:20;20947:1;20936:9;20932:17;20925:47;20989:131;21115:4;20989:131;:::i;:::-;20981:139;;20708:419;;;:::o;21133:::-;21299:4;21337:2;21326:9;21322:18;21314:26;;21386:9;21380:4;21376:20;21372:1;21361:9;21357:17;21350:47;21414:131;21540:4;21414:131;:::i;:::-;21406:139;;21133:419;;;:::o;21558:::-;21724:4;21762:2;21751:9;21747:18;21739:26;;21811:9;21805:4;21801:20;21797:1;21786:9;21782:17;21775:47;21839:131;21965:4;21839:131;:::i;:::-;21831:139;;21558:419;;;:::o;21983:::-;22149:4;22187:2;22176:9;22172:18;22164:26;;22236:9;22230:4;22226:20;22222:1;22211:9;22207:17;22200:47;22264:131;22390:4;22264:131;:::i;:::-;22256:139;;21983:419;;;:::o;22408:222::-;22501:4;22539:2;22528:9;22524:18;22516:26;;22552:71;22620:1;22609:9;22605:17;22596:6;22552:71;:::i;:::-;22408:222;;;;:::o;22636:129::-;22670:6;22697:20;;:::i;:::-;22687:30;;22726:33;22754:4;22746:6;22726:33;:::i;:::-;22636:129;;;:::o;22771:75::-;22804:6;22837:2;22831:9;22821:19;;22771:75;:::o;22852:307::-;22913:4;23003:18;22995:6;22992:30;22989:56;;;23025:18;;:::i;:::-;22989:56;23063:29;23085:6;23063:29;:::i;:::-;23055:37;;23147:4;23141;23137:15;23129:23;;22852:307;;;:::o;23165:98::-;23216:6;23250:5;23244:12;23234:22;;23165:98;;;:::o;23269:99::-;23321:6;23355:5;23349:12;23339:22;;23269:99;;;:::o;23374:168::-;23457:11;23491:6;23486:3;23479:19;23531:4;23526:3;23522:14;23507:29;;23374:168;;;;:::o;23548:147::-;23649:11;23686:3;23671:18;;23548:147;;;;:::o;23701:169::-;23785:11;23819:6;23814:3;23807:19;23859:4;23854:3;23850:14;23835:29;;23701:169;;;;:::o;23876:148::-;23978:11;24015:3;24000:18;;23876:148;;;;:::o;24030:305::-;24070:3;24089:20;24107:1;24089:20;:::i;:::-;24084:25;;24123:20;24141:1;24123:20;:::i;:::-;24118:25;;24277:1;24209:66;24205:74;24202:1;24199:81;24196:107;;;24283:18;;:::i;:::-;24196:107;24327:1;24324;24320:9;24313:16;;24030:305;;;;:::o;24341:96::-;24378:7;24407:24;24425:5;24407:24;:::i;:::-;24396:35;;24341:96;;;:::o;24443:104::-;24488:7;24517:24;24535:5;24517:24;:::i;:::-;24506:35;;24443:104;;;:::o;24553:90::-;24587:7;24630:5;24623:13;24616:21;24605:32;;24553:90;;;:::o;24649:149::-;24685:7;24725:66;24718:5;24714:78;24703:89;;24649:149;;;:::o;24804:126::-;24841:7;24881:42;24874:5;24870:54;24859:65;;24804:126;;;:::o;24936:77::-;24973:7;25002:5;24991:16;;24936:77;;;:::o;25019:86::-;25054:7;25094:4;25087:5;25083:16;25072:27;;25019:86;;;:::o;25111:154::-;25195:6;25190:3;25185;25172:30;25257:1;25248:6;25243:3;25239:16;25232:27;25111:154;;;:::o;25271:307::-;25339:1;25349:113;25363:6;25360:1;25357:13;25349:113;;;25448:1;25443:3;25439:11;25433:18;25429:1;25424:3;25420:11;25413:39;25385:2;25382:1;25378:10;25373:15;;25349:113;;;25480:6;25477:1;25474:13;25471:101;;;25560:1;25551:6;25546:3;25542:16;25535:27;25471:101;25320:258;25271:307;;;:::o;25584:320::-;25628:6;25665:1;25659:4;25655:12;25645:22;;25712:1;25706:4;25702:12;25733:18;25723:81;;25789:4;25781:6;25777:17;25767:27;;25723:81;25851:2;25843:6;25840:14;25820:18;25817:38;25814:84;;;25870:18;;:::i;:::-;25814:84;25635:269;25584:320;;;:::o;25910:281::-;25993:27;26015:4;25993:27;:::i;:::-;25985:6;25981:40;26123:6;26111:10;26108:22;26087:18;26075:10;26072:34;26069:62;26066:88;;;26134:18;;:::i;:::-;26066:88;26174:10;26170:2;26163:22;25953:238;25910:281;;:::o;26197:233::-;26236:3;26259:24;26277:5;26259:24;:::i;:::-;26250:33;;26305:66;26298:5;26295:77;26292:103;;;26375:18;;:::i;:::-;26292:103;26422:1;26415:5;26411:13;26404:20;;26197:233;;;:::o;26436:167::-;26473:3;26496:22;26512:5;26496:22;:::i;:::-;26487:31;;26540:4;26533:5;26530:15;26527:41;;;26548:18;;:::i;:::-;26527:41;26595:1;26588:5;26584:13;26577:20;;26436:167;;;:::o;26609:180::-;26657:77;26654:1;26647:88;26754:4;26751:1;26744:15;26778:4;26775:1;26768:15;26795:180;26843:77;26840:1;26833:88;26940:4;26937:1;26930:15;26964:4;26961:1;26954:15;26981:180;27029:77;27026:1;27019:88;27126:4;27123:1;27116:15;27150:4;27147:1;27140:15;27167:180;27215:77;27212:1;27205:88;27312:4;27309:1;27302:15;27336:4;27333:1;27326:15;27353:117;27462:1;27459;27452:12;27476:117;27585:1;27582;27575:12;27599:117;27708:1;27705;27698:12;27722:117;27831:1;27828;27821:12;27845:117;27954:1;27951;27944:12;27968:117;28077:1;28074;28067:12;28091:102;28132:6;28183:2;28179:7;28174:2;28167:5;28163:14;28159:28;28149:38;;28091:102;;;:::o;28199:221::-;28339:34;28335:1;28327:6;28323:14;28316:58;28408:4;28403:2;28395:6;28391:15;28384:29;28199:221;:::o;28426:225::-;28566:34;28562:1;28554:6;28550:14;28543:58;28635:8;28630:2;28622:6;28618:15;28611:33;28426:225;:::o;28657:171::-;28797:23;28793:1;28785:6;28781:14;28774:47;28657:171;:::o;28834:181::-;28974:33;28970:1;28962:6;28958:14;28951:57;28834:181;:::o;29021:182::-;29161:34;29157:1;29149:6;29145:14;29138:58;29021:182;:::o;29209:223::-;29349:34;29345:1;29337:6;29333:14;29326:58;29418:6;29413:2;29405:6;29401:15;29394:31;29209:223;:::o;29438:182::-;29578:34;29574:1;29566:6;29562:14;29555:58;29438:182;:::o;29626:174::-;29766:26;29762:1;29754:6;29750:14;29743:50;29626:174;:::o;29806:114::-;;:::o;29926:166::-;30066:18;30062:1;30054:6;30050:14;30043:42;29926:166;:::o;30098:181::-;30238:33;30234:1;30226:6;30222:14;30215:57;30098:181;:::o;30285:122::-;30358:24;30376:5;30358:24;:::i;:::-;30351:5;30348:35;30338:63;;30397:1;30394;30387:12;30338:63;30285:122;:::o;30413:138::-;30494:32;30520:5;30494:32;:::i;:::-;30487:5;30484:43;30474:71;;30541:1;30538;30531:12;30474:71;30413:138;:::o;30557:116::-;30627:21;30642:5;30627:21;:::i;:::-;30620:5;30617:32;30607:60;;30663:1;30660;30653:12;30607:60;30557:116;:::o;30679:120::-;30751:23;30768:5;30751:23;:::i;:::-;30744:5;30741:34;30731:62;;30789:1;30786;30779:12;30731:62;30679:120;:::o;30805:122::-;30878:24;30896:5;30878:24;:::i;:::-;30871:5;30868:35;30858:63;;30917:1;30914;30907:12;30858:63;30805:122;:::o
Swarm Source
ipfs://bc345486d594d2db66c3175cb70bc85339180ff9319da4cd5a2d9b8b5962885e
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.