Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
180 KWART
Holders
97
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KWARTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KawaiiART
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-15 */ // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // 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 tokenId of the next token 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(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ 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 virtual 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 virtual 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 virtual 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * 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); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { 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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * 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 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 (to == address(0)) revert MintToZeroAddress(); 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @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 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; } /** * @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 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 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 ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @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 have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // 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: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: contracts/KawaiiArt.sol pragma solidity ^0.8.4; pragma solidity ^0.8.0; contract KawaiiART is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://QmYHzmAMeF2uYpDxviE7bMQWLr3Vm42ytsgegHyKfS7LFQ"; uint256 public maxSupply = 5000; uint256 public MAX_MINTS_PER_TX = 10; uint256 public PUBLIC_SALE_PRICE = 0.001 ether; uint256 public NUM_FREE_MINTS = 1000; uint256 public MAX_FREE_PER_WALLET = 1; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = false; constructor( ) ERC721A("KawaiiART", "KWART") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603581526020016200375060359139600a9080519060200190620000359291906200023c565b50611388600b55600a600c5566038d7ea4c68000600d556103e8600e556001600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200008457600080fd5b506040518060400160405280600981526020017f4b617761696941525400000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4b574152540000000000000000000000000000000000000000000000000000008152508160029080519060200190620001099291906200023c565b508060039080519060200190620001229291906200023c565b50620001336200016960201b60201c565b60008190555050506200015b6200014f6200016e60201b60201c565b6200017660201b60201c565b600160098190555062000351565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024a90620002ec565b90600052602060002090601f0160209004810192826200026e5760008555620002ba565b82601f106200028957805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002b95782518255916020019190600101906200029c565b5b509050620002c99190620002cd565b5090565b5b80821115620002e8576000816000905550600101620002ce565b5090565b600060028204905060018216806200030557607f821691505b602082108114156200031c576200031b62000322565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6133ef80620003616000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061257f565b6107cf565b6040516102329190612a4d565b60405180910390f35b34801561024757600080fd5b50610250610861565b60405161025d9190612a68565b60405180910390f35b34801561027257600080fd5b5061027b6108f3565b6040516102889190612c0a565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612612565b6108f9565b6040516102c591906129e6565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061251a565b610978565b005b34801561030357600080fd5b5061031e60048036038101906103199190612612565b610abc565b005b34801561032c57600080fd5b50610335610ace565b6040516103429190612c0a565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612612565b610ae5565b005b34801561038057600080fd5b50610389610af7565b6040516103969190612c0a565b60405180910390f35b3480156103ab57600080fd5b506103b4610afd565b6040516103c19190612a4d565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612612565b610b10565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612414565b610b22565b005b34801561042857600080fd5b50610443600480360381019061043e9190612556565b610e47565b005b34801561045157600080fd5b5061045a610e6c565b005b34801561046857600080fd5b50610483600480360381019061047e9190612414565b610ed6565b005b34801561049157600080fd5b506104ac60048036038101906104a791906125d1565b610ef6565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612612565b610f18565b6040516104e291906129e6565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906123af565b610f2a565b60405161051f9190612c0a565b60405180910390f35b34801561053457600080fd5b5061053d610fe3565b005b34801561054b57600080fd5b50610554610ff7565b60405161056191906129e6565b60405180910390f35b34801561057657600080fd5b5061057f611021565b60405161058c9190612a68565b60405180910390f35b3480156105a157600080fd5b506105aa6110b3565b6040516105b79190612c0a565b60405180910390f35b3480156105cc57600080fd5b506105d56110b9565b6040516105e29190612c0a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612612565b6110bf565b005b61062e60048036038101906106299190612612565b6110d1565b005b34801561063c57600080fd5b50610657600480360381019061065291906124de565b611312565b005b34801561066557600080fd5b50610680600480360381019061067b9190612463565b61148a565b005b34801561068e57600080fd5b506106976114fd565b6040516106a49190612c0a565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612612565b611503565b6040516106e19190612a68565b60405180910390f35b3480156106f657600080fd5b506106ff61157f565b60405161070c9190612a68565b60405180910390f35b34801561072157600080fd5b5061072a61160d565b6040516107379190612c0a565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906123d8565b611613565b6040516107749190612a4d565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612612565b6116a7565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906123af565b611756565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087090612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90612eda565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b600d5481565b6000610904826117da565b61093a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098382610f18565b90508073ffffffffffffffffffffffffffffffffffffffff166109a4611839565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576109d0816109cb611839565b611613565b610a06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ac4611841565b80600e8190555050565b6000610ad86118bf565b6001546000540303905090565b610aed611841565b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610b18611841565b80600f8190555050565b6000610b2d826118c4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ba084611992565b91509150610bb68187610bb1611839565b6119b9565b610c0257610bcb86610bc6611839565b611613565b610c01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c7686868660016119fd565b8015610c8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4f85610d2b888887611a03565b7c020000000000000000000000000000000000000000000000000000000017611a2b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dd7576000600185019050600060046000838152602001908152602001600020541415610dd5576000548114610dd4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3f8686866001611a56565b505050505050565b610e4f611841565b80601160006101000a81548160ff02191690831515021790555050565b610e74611841565b60026009541415610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612bca565b60405180910390fd5b6002600981905550610ecc3347611a5c565b6001600981905550565b610ef18383836040518060200160405280600081525061148a565b505050565b610efe611841565b80600a9080519060200190610f149291906121d3565b5050565b6000610f23826118c4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610feb611841565b610ff56000611b50565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461103090612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461105c90612eda565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b600e5481565b600f5481565b6110c7611841565b80600c8190555050565b601160009054906101000a900460ff16611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612bea565b60405180910390fd5b6001600b5461112f9190612d0f565b81611138610ace565b6111429190612d0f565b10611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990612a8a565b60405180910390fd5b600e54816010546111939190612d0f565b11156111ee573481600d546111a89190612d96565b11156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612baa565b60405180910390fd5b611305565b600f54816111fb33610f2a565b6112059190612d0f565b11156112a5573481600d5461121a9190612d96565b111561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612baa565b60405180910390fd5b600c548111156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612b0a565b60405180910390fd5b611304565b600f548111156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612b0a565b60405180910390fd5b80601060008282546112fc9190612d0f565b925050819055505b5b61130f3382611c16565b50565b61131a611839565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138c611839565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611439611839565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147e9190612a4d565b60405180910390a35050565b611495848484610b22565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f7576114c084848484611c34565b6114f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061150e826117da565b61154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490612b6a565b60405180910390fd5b600a61155883611d94565b604051602001611569929190612997565b6040516020818303038152906040529050919050565b600a805461158c90612eda565b80601f01602080910402602001604051908101604052809291908181526020018280546115b890612eda565b80156116055780601f106115da57610100808354040283529160200191611605565b820191906000526020600020905b8154815290600101906020018083116115e857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116af611841565b600081116116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612b8a565b60405180910390fd5b600b54816116fe610ace565b6117089190612d0f565b1115611749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174090612b2a565b60405180910390fd5b6117533382611c16565b50565b61175e611841565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590612aaa565b60405180910390fd5b6117d781611b50565b50565b6000816117e56118bf565b111580156117f4575060005482105b8015611832575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611849611f41565b73ffffffffffffffffffffffffffffffffffffffff16611867610ff7565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490612b4a565b60405180910390fd5b565b600090565b600080829050806118d36118bf565b1161195b5760005481101561195a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611958575b600081141561194e576004600083600190039350838152602001908152602001600020549050611923565b809250505061198d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a1a868684611f49565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690612aea565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ac5906129d1565b60006040518083038185875af1925050503d8060008114611b02576040519150601f19603f3d011682016040523d82523d6000602084013e611b07565b606091505b5050905080611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290612aca565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c30828260405180602001604052806000815250611f52565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5a611839565b8786866040518563ffffffff1660e01b8152600401611c7c9493929190612a01565b602060405180830381600087803b158015611c9657600080fd5b505af1925050508015611cc757506040513d601f19601f82011682018060405250810190611cc491906125a8565b60015b611d41573d8060008114611cf7576040519150601f19603f3d011682016040523d82523d6000602084013e611cfc565b606091505b50600081511415611d39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ddc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f3c565b600082905060005b60008214611e0e578080611df790612f3d565b915050600a82611e079190612d65565b9150611de4565b60008167ffffffffffffffff811115611e50577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e825781602001600182028036833780820191505090505b5090505b60008514611f3557600182611e9b9190612df0565b9150600a85611eaa9190612f86565b6030611eb69190612d0f565b60f81b818381518110611ef2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f2e9190612d65565b9450611e86565b8093505050505b919050565b600033905090565b60009392505050565b611f5c8383611fef565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fea57600080549050600083820390505b611f9c6000868380600101945086611c34565b611fd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f89578160005414611fe757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561205c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612097576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120a460008483856119fd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061211b8361210c6000866000611a03565b612115856121c3565b17611a2b565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061213f578060008190555050506121be6000848385611a56565b505050565b60006001821460e11b9050919050565b8280546121df90612eda565b90600052602060002090601f0160209004810192826122015760008555612248565b82601f1061221a57805160ff1916838001178555612248565b82800160010185558215612248579182015b8281111561224757825182559160200191906001019061222c565b5b5090506122559190612259565b5090565b5b8082111561227257600081600090555060010161225a565b5090565b600061228961228484612c4a565b612c25565b9050828152602081018484840111156122a157600080fd5b6122ac848285612e98565b509392505050565b60006122c76122c284612c7b565b612c25565b9050828152602081018484840111156122df57600080fd5b6122ea848285612e98565b509392505050565b6000813590506123018161335d565b92915050565b60008135905061231681613374565b92915050565b60008135905061232b8161338b565b92915050565b6000815190506123408161338b565b92915050565b600082601f83011261235757600080fd5b8135612367848260208601612276565b91505092915050565b600082601f83011261238157600080fd5b81356123918482602086016122b4565b91505092915050565b6000813590506123a9816133a2565b92915050565b6000602082840312156123c157600080fd5b60006123cf848285016122f2565b91505092915050565b600080604083850312156123eb57600080fd5b60006123f9858286016122f2565b925050602061240a858286016122f2565b9150509250929050565b60008060006060848603121561242957600080fd5b6000612437868287016122f2565b9350506020612448868287016122f2565b92505060406124598682870161239a565b9150509250925092565b6000806000806080858703121561247957600080fd5b6000612487878288016122f2565b9450506020612498878288016122f2565b93505060406124a98782880161239a565b925050606085013567ffffffffffffffff8111156124c657600080fd5b6124d287828801612346565b91505092959194509250565b600080604083850312156124f157600080fd5b60006124ff858286016122f2565b925050602061251085828601612307565b9150509250929050565b6000806040838503121561252d57600080fd5b600061253b858286016122f2565b925050602061254c8582860161239a565b9150509250929050565b60006020828403121561256857600080fd5b600061257684828501612307565b91505092915050565b60006020828403121561259157600080fd5b600061259f8482850161231c565b91505092915050565b6000602082840312156125ba57600080fd5b60006125c884828501612331565b91505092915050565b6000602082840312156125e357600080fd5b600082013567ffffffffffffffff8111156125fd57600080fd5b61260984828501612370565b91505092915050565b60006020828403121561262457600080fd5b60006126328482850161239a565b91505092915050565b61264481612e24565b82525050565b61265381612e36565b82525050565b600061266482612cc1565b61266e8185612cd7565b935061267e818560208601612ea7565b61268781613073565b840191505092915050565b600061269d82612ccc565b6126a78185612cf3565b93506126b7818560208601612ea7565b6126c081613073565b840191505092915050565b60006126d682612ccc565b6126e08185612d04565b93506126f0818560208601612ea7565b80840191505092915050565b6000815461270981612eda565b6127138186612d04565b9450600182166000811461272e576001811461273f57612772565b60ff19831686528186019350612772565b61274885612cac565b60005b8381101561276a5781548189015260018201915060208101905061274b565b838801955050505b50505092915050565b6000612788600783612cf3565b915061279382613084565b602082019050919050565b60006127ab602683612cf3565b91506127b6826130ad565b604082019050919050565b60006127ce603a83612cf3565b91506127d9826130fc565b604082019050919050565b60006127f1601d83612cf3565b91506127fc8261314b565b602082019050919050565b6000612814602283612cf3565b915061281f82613174565b604082019050919050565b6000612837601783612cf3565b9150612842826131c3565b602082019050919050565b600061285a600583612d04565b9150612865826131ec565b600582019050919050565b600061287d602083612cf3565b915061288882613215565b602082019050919050565b60006128a0602f83612cf3565b91506128ab8261323e565b604082019050919050565b60006128c3600083612ce8565b91506128ce8261328d565b600082019050919050565b60006128e6601383612cf3565b91506128f182613290565b602082019050919050565b6000612909601883612cf3565b9150612914826132b9565b602082019050919050565b600061292c601f83612cf3565b9150612937826132e2565b602082019050919050565b600061294f601783612cf3565b915061295a8261330b565b602082019050919050565b6000612972600183612d04565b915061297d82613334565b600182019050919050565b61299181612e8e565b82525050565b60006129a382856126fc565b91506129ae82612965565b91506129ba82846126cb565b91506129c58261284d565b91508190509392505050565b60006129dc826128b6565b9150819050919050565b60006020820190506129fb600083018461263b565b92915050565b6000608082019050612a16600083018761263b565b612a23602083018661263b565b612a306040830185612988565b8181036060830152612a428184612659565b905095945050505050565b6000602082019050612a62600083018461264a565b92915050565b60006020820190508181036000830152612a828184612692565b905092915050565b60006020820190508181036000830152612aa38161277b565b9050919050565b60006020820190508181036000830152612ac38161279e565b9050919050565b60006020820190508181036000830152612ae3816127c1565b9050919050565b60006020820190508181036000830152612b03816127e4565b9050919050565b60006020820190508181036000830152612b2381612807565b9050919050565b60006020820190508181036000830152612b438161282a565b9050919050565b60006020820190508181036000830152612b6381612870565b9050919050565b60006020820190508181036000830152612b8381612893565b9050919050565b60006020820190508181036000830152612ba3816128d9565b9050919050565b60006020820190508181036000830152612bc3816128fc565b9050919050565b60006020820190508181036000830152612be38161291f565b9050919050565b60006020820190508181036000830152612c0381612942565b9050919050565b6000602082019050612c1f6000830184612988565b92915050565b6000612c2f612c40565b9050612c3b8282612f0c565b919050565b6000604051905090565b600067ffffffffffffffff821115612c6557612c64613044565b5b612c6e82613073565b9050602081019050919050565b600067ffffffffffffffff821115612c9657612c95613044565b5b612c9f82613073565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d1a82612e8e565b9150612d2583612e8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5a57612d59612fb7565b5b828201905092915050565b6000612d7082612e8e565b9150612d7b83612e8e565b925082612d8b57612d8a612fe6565b5b828204905092915050565b6000612da182612e8e565b9150612dac83612e8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612de557612de4612fb7565b5b828202905092915050565b6000612dfb82612e8e565b9150612e0683612e8e565b925082821015612e1957612e18612fb7565b5b828203905092915050565b6000612e2f82612e6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ec5578082015181840152602081019050612eaa565b83811115612ed4576000848401525b50505050565b60006002820490506001821680612ef257607f821691505b60208210811415612f0657612f05613015565b5b50919050565b612f1582613073565b810181811067ffffffffffffffff82111715612f3457612f33613044565b5b80604052505050565b6000612f4882612e8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f7b57612f7a612fb7565b5b600182019050919050565b6000612f9182612e8e565b9150612f9c83612e8e565b925082612fac57612fab612fe6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61336681612e24565b811461337157600080fd5b50565b61337d81612e36565b811461338857600080fd5b50565b61339481612e42565b811461339f57600080fd5b50565b6133ab81612e8e565b81146133b657600080fd5b5056fea264697066735822122021ed5394f4d20bfe0b5013cb5a7e01466079cf7de84beadeb191180dac35ee1664736f6c63430008040033697066733a2f2f516d59487a6d414d654632755970447876694537624d51574c7233566d343279747367656748794b6653374c4651
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b506102256004803603810190610220919061257f565b6107cf565b6040516102329190612a4d565b60405180910390f35b34801561024757600080fd5b50610250610861565b60405161025d9190612a68565b60405180910390f35b34801561027257600080fd5b5061027b6108f3565b6040516102889190612c0a565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612612565b6108f9565b6040516102c591906129e6565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f0919061251a565b610978565b005b34801561030357600080fd5b5061031e60048036038101906103199190612612565b610abc565b005b34801561032c57600080fd5b50610335610ace565b6040516103429190612c0a565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612612565b610ae5565b005b34801561038057600080fd5b50610389610af7565b6040516103969190612c0a565b60405180910390f35b3480156103ab57600080fd5b506103b4610afd565b6040516103c19190612a4d565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612612565b610b10565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612414565b610b22565b005b34801561042857600080fd5b50610443600480360381019061043e9190612556565b610e47565b005b34801561045157600080fd5b5061045a610e6c565b005b34801561046857600080fd5b50610483600480360381019061047e9190612414565b610ed6565b005b34801561049157600080fd5b506104ac60048036038101906104a791906125d1565b610ef6565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612612565b610f18565b6040516104e291906129e6565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906123af565b610f2a565b60405161051f9190612c0a565b60405180910390f35b34801561053457600080fd5b5061053d610fe3565b005b34801561054b57600080fd5b50610554610ff7565b60405161056191906129e6565b60405180910390f35b34801561057657600080fd5b5061057f611021565b60405161058c9190612a68565b60405180910390f35b3480156105a157600080fd5b506105aa6110b3565b6040516105b79190612c0a565b60405180910390f35b3480156105cc57600080fd5b506105d56110b9565b6040516105e29190612c0a565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612612565b6110bf565b005b61062e60048036038101906106299190612612565b6110d1565b005b34801561063c57600080fd5b50610657600480360381019061065291906124de565b611312565b005b34801561066557600080fd5b50610680600480360381019061067b9190612463565b61148a565b005b34801561068e57600080fd5b506106976114fd565b6040516106a49190612c0a565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612612565b611503565b6040516106e19190612a68565b60405180910390f35b3480156106f657600080fd5b506106ff61157f565b60405161070c9190612a68565b60405180910390f35b34801561072157600080fd5b5061072a61160d565b6040516107379190612c0a565b60405180910390f35b34801561074c57600080fd5b50610767600480360381019061076291906123d8565b611613565b6040516107749190612a4d565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612612565b6116a7565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906123af565b611756565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461087090612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90612eda565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b600d5481565b6000610904826117da565b61093a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098382610f18565b90508073ffffffffffffffffffffffffffffffffffffffff166109a4611839565b73ffffffffffffffffffffffffffffffffffffffff1614610a07576109d0816109cb611839565b611613565b610a06576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ac4611841565b80600e8190555050565b6000610ad86118bf565b6001546000540303905090565b610aed611841565b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610b18611841565b80600f8190555050565b6000610b2d826118c4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b94576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ba084611992565b91509150610bb68187610bb1611839565b6119b9565b610c0257610bcb86610bc6611839565b611613565b610c01576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610c69576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c7686868660016119fd565b8015610c8157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d4f85610d2b888887611a03565b7c020000000000000000000000000000000000000000000000000000000017611a2b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610dd7576000600185019050600060046000838152602001908152602001600020541415610dd5576000548114610dd4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e3f8686866001611a56565b505050505050565b610e4f611841565b80601160006101000a81548160ff02191690831515021790555050565b610e74611841565b60026009541415610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612bca565b60405180910390fd5b6002600981905550610ecc3347611a5c565b6001600981905550565b610ef18383836040518060200160405280600081525061148a565b505050565b610efe611841565b80600a9080519060200190610f149291906121d3565b5050565b6000610f23826118c4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f92576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610feb611841565b610ff56000611b50565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461103090612eda565b80601f016020809104026020016040519081016040528092919081815260200182805461105c90612eda565b80156110a95780601f1061107e576101008083540402835291602001916110a9565b820191906000526020600020905b81548152906001019060200180831161108c57829003601f168201915b5050505050905090565b600e5481565b600f5481565b6110c7611841565b80600c8190555050565b601160009054906101000a900460ff16611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790612bea565b60405180910390fd5b6001600b5461112f9190612d0f565b81611138610ace565b6111429190612d0f565b10611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990612a8a565b60405180910390fd5b600e54816010546111939190612d0f565b11156111ee573481600d546111a89190612d96565b11156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090612baa565b60405180910390fd5b611305565b600f54816111fb33610f2a565b6112059190612d0f565b11156112a5573481600d5461121a9190612d96565b111561125b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125290612baa565b60405180910390fd5b600c548111156112a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129790612b0a565b60405180910390fd5b611304565b600f548111156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190612b0a565b60405180910390fd5b80601060008282546112fc9190612d0f565b925050819055505b5b61130f3382611c16565b50565b61131a611839565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138c611839565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611439611839565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147e9190612a4d565b60405180910390a35050565b611495848484610b22565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f7576114c084848484611c34565b6114f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061150e826117da565b61154d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154490612b6a565b60405180910390fd5b600a61155883611d94565b604051602001611569929190612997565b6040516020818303038152906040529050919050565b600a805461158c90612eda565b80601f01602080910402602001604051908101604052809291908181526020018280546115b890612eda565b80156116055780601f106115da57610100808354040283529160200191611605565b820191906000526020600020905b8154815290600101906020018083116115e857829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116af611841565b600081116116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990612b8a565b60405180910390fd5b600b54816116fe610ace565b6117089190612d0f565b1115611749576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174090612b2a565b60405180910390fd5b6117533382611c16565b50565b61175e611841565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c590612aaa565b60405180910390fd5b6117d781611b50565b50565b6000816117e56118bf565b111580156117f4575060005482105b8015611832575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611849611f41565b73ffffffffffffffffffffffffffffffffffffffff16611867610ff7565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490612b4a565b60405180910390fd5b565b600090565b600080829050806118d36118bf565b1161195b5760005481101561195a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611958575b600081141561194e576004600083600190039350838152602001908152602001600020549050611923565b809250505061198d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a1a868684611f49565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690612aea565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ac5906129d1565b60006040518083038185875af1925050503d8060008114611b02576040519150601f19603f3d011682016040523d82523d6000602084013e611b07565b606091505b5050905080611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290612aca565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c30828260405180602001604052806000815250611f52565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c5a611839565b8786866040518563ffffffff1660e01b8152600401611c7c9493929190612a01565b602060405180830381600087803b158015611c9657600080fd5b505af1925050508015611cc757506040513d601f19601f82011682018060405250810190611cc491906125a8565b60015b611d41573d8060008114611cf7576040519150601f19603f3d011682016040523d82523d6000602084013e611cfc565b606091505b50600081511415611d39576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ddc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f3c565b600082905060005b60008214611e0e578080611df790612f3d565b915050600a82611e079190612d65565b9150611de4565b60008167ffffffffffffffff811115611e50577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e825781602001600182028036833780820191505090505b5090505b60008514611f3557600182611e9b9190612df0565b9150600a85611eaa9190612f86565b6030611eb69190612d0f565b60f81b818381518110611ef2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f2e9190612d65565b9450611e86565b8093505050505b919050565b600033905090565b60009392505050565b611f5c8383611fef565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611fea57600080549050600083820390505b611f9c6000868380600101945086611c34565b611fd2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611f89578160005414611fe757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561205c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612097576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120a460008483856119fd565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061211b8361210c6000866000611a03565b612115856121c3565b17611a2b565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061213f578060008190555050506121be6000848385611a56565b505050565b60006001821460e11b9050919050565b8280546121df90612eda565b90600052602060002090601f0160209004810192826122015760008555612248565b82601f1061221a57805160ff1916838001178555612248565b82800160010185558215612248579182015b8281111561224757825182559160200191906001019061222c565b5b5090506122559190612259565b5090565b5b8082111561227257600081600090555060010161225a565b5090565b600061228961228484612c4a565b612c25565b9050828152602081018484840111156122a157600080fd5b6122ac848285612e98565b509392505050565b60006122c76122c284612c7b565b612c25565b9050828152602081018484840111156122df57600080fd5b6122ea848285612e98565b509392505050565b6000813590506123018161335d565b92915050565b60008135905061231681613374565b92915050565b60008135905061232b8161338b565b92915050565b6000815190506123408161338b565b92915050565b600082601f83011261235757600080fd5b8135612367848260208601612276565b91505092915050565b600082601f83011261238157600080fd5b81356123918482602086016122b4565b91505092915050565b6000813590506123a9816133a2565b92915050565b6000602082840312156123c157600080fd5b60006123cf848285016122f2565b91505092915050565b600080604083850312156123eb57600080fd5b60006123f9858286016122f2565b925050602061240a858286016122f2565b9150509250929050565b60008060006060848603121561242957600080fd5b6000612437868287016122f2565b9350506020612448868287016122f2565b92505060406124598682870161239a565b9150509250925092565b6000806000806080858703121561247957600080fd5b6000612487878288016122f2565b9450506020612498878288016122f2565b93505060406124a98782880161239a565b925050606085013567ffffffffffffffff8111156124c657600080fd5b6124d287828801612346565b91505092959194509250565b600080604083850312156124f157600080fd5b60006124ff858286016122f2565b925050602061251085828601612307565b9150509250929050565b6000806040838503121561252d57600080fd5b600061253b858286016122f2565b925050602061254c8582860161239a565b9150509250929050565b60006020828403121561256857600080fd5b600061257684828501612307565b91505092915050565b60006020828403121561259157600080fd5b600061259f8482850161231c565b91505092915050565b6000602082840312156125ba57600080fd5b60006125c884828501612331565b91505092915050565b6000602082840312156125e357600080fd5b600082013567ffffffffffffffff8111156125fd57600080fd5b61260984828501612370565b91505092915050565b60006020828403121561262457600080fd5b60006126328482850161239a565b91505092915050565b61264481612e24565b82525050565b61265381612e36565b82525050565b600061266482612cc1565b61266e8185612cd7565b935061267e818560208601612ea7565b61268781613073565b840191505092915050565b600061269d82612ccc565b6126a78185612cf3565b93506126b7818560208601612ea7565b6126c081613073565b840191505092915050565b60006126d682612ccc565b6126e08185612d04565b93506126f0818560208601612ea7565b80840191505092915050565b6000815461270981612eda565b6127138186612d04565b9450600182166000811461272e576001811461273f57612772565b60ff19831686528186019350612772565b61274885612cac565b60005b8381101561276a5781548189015260018201915060208101905061274b565b838801955050505b50505092915050565b6000612788600783612cf3565b915061279382613084565b602082019050919050565b60006127ab602683612cf3565b91506127b6826130ad565b604082019050919050565b60006127ce603a83612cf3565b91506127d9826130fc565b604082019050919050565b60006127f1601d83612cf3565b91506127fc8261314b565b602082019050919050565b6000612814602283612cf3565b915061281f82613174565b604082019050919050565b6000612837601783612cf3565b9150612842826131c3565b602082019050919050565b600061285a600583612d04565b9150612865826131ec565b600582019050919050565b600061287d602083612cf3565b915061288882613215565b602082019050919050565b60006128a0602f83612cf3565b91506128ab8261323e565b604082019050919050565b60006128c3600083612ce8565b91506128ce8261328d565b600082019050919050565b60006128e6601383612cf3565b91506128f182613290565b602082019050919050565b6000612909601883612cf3565b9150612914826132b9565b602082019050919050565b600061292c601f83612cf3565b9150612937826132e2565b602082019050919050565b600061294f601783612cf3565b915061295a8261330b565b602082019050919050565b6000612972600183612d04565b915061297d82613334565b600182019050919050565b61299181612e8e565b82525050565b60006129a382856126fc565b91506129ae82612965565b91506129ba82846126cb565b91506129c58261284d565b91508190509392505050565b60006129dc826128b6565b9150819050919050565b60006020820190506129fb600083018461263b565b92915050565b6000608082019050612a16600083018761263b565b612a23602083018661263b565b612a306040830185612988565b8181036060830152612a428184612659565b905095945050505050565b6000602082019050612a62600083018461264a565b92915050565b60006020820190508181036000830152612a828184612692565b905092915050565b60006020820190508181036000830152612aa38161277b565b9050919050565b60006020820190508181036000830152612ac38161279e565b9050919050565b60006020820190508181036000830152612ae3816127c1565b9050919050565b60006020820190508181036000830152612b03816127e4565b9050919050565b60006020820190508181036000830152612b2381612807565b9050919050565b60006020820190508181036000830152612b438161282a565b9050919050565b60006020820190508181036000830152612b6381612870565b9050919050565b60006020820190508181036000830152612b8381612893565b9050919050565b60006020820190508181036000830152612ba3816128d9565b9050919050565b60006020820190508181036000830152612bc3816128fc565b9050919050565b60006020820190508181036000830152612be38161291f565b9050919050565b60006020820190508181036000830152612c0381612942565b9050919050565b6000602082019050612c1f6000830184612988565b92915050565b6000612c2f612c40565b9050612c3b8282612f0c565b919050565b6000604051905090565b600067ffffffffffffffff821115612c6557612c64613044565b5b612c6e82613073565b9050602081019050919050565b600067ffffffffffffffff821115612c9657612c95613044565b5b612c9f82613073565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d1a82612e8e565b9150612d2583612e8e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d5a57612d59612fb7565b5b828201905092915050565b6000612d7082612e8e565b9150612d7b83612e8e565b925082612d8b57612d8a612fe6565b5b828204905092915050565b6000612da182612e8e565b9150612dac83612e8e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612de557612de4612fb7565b5b828202905092915050565b6000612dfb82612e8e565b9150612e0683612e8e565b925082821015612e1957612e18612fb7565b5b828203905092915050565b6000612e2f82612e6e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612ec5578082015181840152602081019050612eaa565b83811115612ed4576000848401525b50505050565b60006002820490506001821680612ef257607f821691505b60208210811415612f0657612f05613015565b5b50919050565b612f1582613073565b810181811067ffffffffffffffff82111715612f3457612f33613044565b5b80604052505050565b6000612f4882612e8e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f7b57612f7a612fb7565b5b600182019050919050565b6000612f9182612e8e565b9150612f9c83612e8e565b925082612fac57612fab612fe6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61336681612e24565b811461337157600080fd5b50565b61337d81612e36565b811461338857600080fd5b50565b61339481612e42565b811461339f57600080fd5b50565b6133ab81612e8e565b81146133b657600080fd5b5056fea264697066735822122021ed5394f4d20bfe0b5013cb5a7e01466079cf7de84beadeb191180dac35ee1664736f6c63430008040033
Deployed Bytecode Sourcemap
71133:3320:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14820:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20539:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71423:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22499:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22033:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73935:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13850:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74070:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71561:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71605:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74324:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31638:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73781:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73174:142;;;;;;;;;;;;;:::i;:::-;;23403:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72770:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20320:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15499:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64944:103;;;;;;;;;;;;;:::i;:::-;;64296:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20708:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71475:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71517:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74191:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71716:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22789:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23659:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71381:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73322:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71253:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71344:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23168:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72884:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65202:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14820:615;14905:4;15220:10;15205:25;;:11;:25;;;;:102;;;;15297:10;15282:25;;:11;:25;;;;15205:102;:179;;;;15374:10;15359:25;;:11;:25;;;;15205:179;15185:199;;14820:615;;;:::o;20539:100::-;20593:13;20626:5;20619:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20539:100;:::o;71423:47::-;;;;:::o;22499:218::-;22575:7;22600:16;22608:7;22600;:16::i;:::-;22595:64;;22625:34;;;;;;;;;;;;;;22595:64;22679:15;:24;22695:7;22679:24;;;;;;;;;;;:30;;;;;;;;;;;;22672:37;;22499:218;;;:::o;22033:400::-;22114:13;22130:16;22138:7;22130;:16::i;:::-;22114:32;;22186:5;22163:28;;:19;:17;:19::i;:::-;:28;;;22159:175;;22211:44;22228:5;22235:19;:17;:19::i;:::-;22211:16;:44::i;:::-;22206:128;;22283:35;;;;;;;;;;;;;;22206:128;22159:175;22379:2;22346:15;:24;22362:7;22346:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;22417:7;22413:2;22397:28;;22406:5;22397:28;;;;;;;;;;;;22033:400;;;:::o;73935:129::-;64182:13;:11;:13::i;:::-;74045::::1;74028:14;:30;;;;73935:129:::0;:::o;13850:323::-;13911:7;14139:15;:13;:15::i;:::-;14124:12;;14108:13;;:28;:46;14101:53;;13850:323;:::o;74070:115::-;64182:13;:11;:13::i;:::-;74173:6:::1;74153:17;:26;;;;74070:115:::0;:::o;71561:39::-;;;;:::o;71605:38::-;;;;;;;;;;;;;:::o;74324:126::-;64182:13;:11;:13::i;:::-;74438:6:::1;74416:19;:28;;;;74324:126:::0;:::o;31638:2800::-;31772:27;31802;31821:7;31802:18;:27::i;:::-;31772:57;;31887:4;31846:45;;31862:19;31846:45;;;31842:86;;31900:28;;;;;;;;;;;;;;31842:86;31942:27;31971:23;31998:28;32018:7;31998:19;:28::i;:::-;31941:85;;;;32126:62;32145:15;32162:4;32168:19;:17;:19::i;:::-;32126:18;:62::i;:::-;32121:174;;32208:43;32225:4;32231:19;:17;:19::i;:::-;32208:16;:43::i;:::-;32203:92;;32260:35;;;;;;;;;;;;;;32203:92;32121:174;32326:1;32312:16;;:2;:16;;;32308:52;;;32337:23;;;;;;;;;;;;;;32308:52;32373:43;32395:4;32401:2;32405:7;32414:1;32373:21;:43::i;:::-;32509:15;32506:2;;;32649:1;32628:19;32621:30;32506:2;33044:18;:24;33063:4;33044:24;;;;;;;;;;;;;;;;33042:26;;;;;;;;;;;;33113:18;:22;33132:2;33113:22;;;;;;;;;;;;;;;;33111:24;;;;;;;;;;;33435:145;33472:2;33520:45;33535:4;33541:2;33545:19;33520:14;:45::i;:::-;11061:8;33493:72;33435:18;:145::i;:::-;33406:17;:26;33424:7;33406:26;;;;;;;;;;;:174;;;;33750:1;11061:8;33700:19;:46;:51;33696:626;;;33772:19;33804:1;33794:7;:11;33772:33;;33961:1;33927:17;:30;33945:11;33927:30;;;;;;;;;;;;:35;33923:384;;;34065:13;;34050:11;:28;34046:242;;34245:19;34212:17;:30;34230:11;34212:30;;;;;;;;;;;:52;;;;34046:242;33923:384;33696:626;;34369:7;34365:2;34350:27;;34359:4;34350:27;;;;;;;;;;;;34388:42;34409:4;34415:2;34419:7;34428:1;34388:20;:42::i;:::-;31638:2800;;;;;;:::o;73781:148::-;64182:13;:11;:13::i;:::-;73904:19:::1;73883:18;;:40;;;;;;;;;;;;;;;;;;73781:148:::0;:::o;73174:142::-;64182:13;:11;:13::i;:::-;70070:1:::1;70668:7;;:19;;70660:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70070:1;70801:7;:18;;;;73249:61:::2;73275:10;73288:21;73249:17;:61::i;:::-;70026:1:::1;70980:7;:22;;;;73174:142::o:0;23403:185::-;23541:39;23558:4;23564:2;23568:7;23541:39;;;;;;;;;;;;:16;:39::i;:::-;23403:185;;;:::o;72770:108::-;64182:13;:11;:13::i;:::-;72865:7:::1;72850:12;:22;;;;;;;;;;;;:::i;:::-;;72770:108:::0;:::o;20320:152::-;20392:7;20435:27;20454:7;20435:18;:27::i;:::-;20412:52;;20320:152;;;:::o;15499:232::-;15571:7;15612:1;15595:19;;:5;:19;;;15591:60;;;15623:28;;;;;;;;;;;;;;15591:60;10013:13;15669:18;:25;15688:5;15669:25;;;;;;;;;;;;;;;;:54;15662:61;;15499:232;;;:::o;64944:103::-;64182:13;:11;:13::i;:::-;65009:30:::1;65036:1;65009:18;:30::i;:::-;64944:103::o:0;64296:87::-;64342:7;64369:6;;;;;;;;;;;64362:13;;64296:87;:::o;20708:104::-;20764:13;20797:7;20790:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20708:104;:::o;71475:37::-;;;;:::o;71517:39::-;;;;:::o;74191:127::-;64182:13;:11;:13::i;:::-;74306:6:::1;74287:16;:25;;;;74191:127:::0;:::o;71716:1048::-;71803:18;;;;;;;;;;;71795:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;71909:1;71897:9;;:13;;;;:::i;:::-;71880:14;71864:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;71856:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;71974:14;;71957;71934:20;;:37;;;;:::i;:::-;:54;71931:784;;;72062:9;72043:14;72023:17;;:34;;;;:::i;:::-;72022:49;;72000:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;71931:784;;;72193:19;;72176:14;72152:21;72162:10;72152:9;:21::i;:::-;:38;;;;:::i;:::-;:60;72148:560;;;72287:9;72268:14;72248:17;;:34;;;;:::i;:::-;72247:49;;72225:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;72399:16;;72381:14;:34;;72359:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;72148:560;;;72554:19;;72536:14;:37;;72510:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;72682:14;72658:20;;:38;;;;;;;:::i;:::-;;;;;;;;72148:560;71931:784;72721:37;72731:10;72743:14;72721:9;:37::i;:::-;71716:1048;:::o;22789:308::-;22900:19;:17;:19::i;:::-;22888:31;;:8;:31;;;22884:61;;;22928:17;;;;;;;;;;;;;;22884:61;23010:8;22958:18;:39;22977:19;:17;:19::i;:::-;22958:39;;;;;;;;;;;;;;;:49;22998:8;22958:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;23070:8;23034:55;;23049:19;:17;:19::i;:::-;23034:55;;;23080:8;23034:55;;;;;;:::i;:::-;;;;;;;;22789:308;;:::o;23659:399::-;23826:31;23839:4;23845:2;23849:7;23826:12;:31::i;:::-;23890:1;23872:2;:14;;;:19;23868:183;;23911:56;23942:4;23948:2;23952:7;23961:5;23911:30;:56::i;:::-;23906:145;;23995:40;;;;;;;;;;;;;;23906:145;23868:183;23659:399;;;;:::o;71381:37::-;;;;:::o;73322:312::-;73418:13;73459:17;73467:8;73459:7;:17::i;:::-;73443:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;73579:12;73598:19;:8;:17;:19::i;:::-;73562:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73548:80;;73322:312;;;:::o;71253:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71344:32::-;;;;:::o;23168:164::-;23265:4;23289:18;:25;23308:5;23289:25;;;;;;;;;;;;;;;:35;23315:8;23289:35;;;;;;;;;;;;;;;;;;;;;;;;;23282:42;;23168:164;;;;:::o;72884:284::-;64182:13;:11;:13::i;:::-;72985:1:::1;72974:8;:12;72958:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;73074:9;;73062:8;73046:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;73030:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;73131:31;73141:10;73153:8;73131:9;:31::i;:::-;72884:284:::0;:::o;65202:201::-;64182:13;:11;:13::i;:::-;65311:1:::1;65291:22;;:8;:22;;;;65283:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65367:28;65386:8;65367:18;:28::i;:::-;65202:201:::0;:::o;24313:281::-;24378:4;24434:7;24415:15;:13;:15::i;:::-;:26;;:66;;;;;24468:13;;24458:7;:23;24415:66;:152;;;;;24566:1;10783:8;24519:17;:26;24537:7;24519:26;;;;;;;;;;;;:43;:48;24415:152;24395:172;;24313:281;;;:::o;42742:105::-;42802:7;42829:10;42822:17;;42742:105;:::o;64461:132::-;64536:12;:10;:12::i;:::-;64525:23;;:7;:5;:7::i;:::-;:23;;;64517:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64461:132::o;13366:92::-;13422:7;13366:92;:::o;17213:1129::-;17280:7;17300:12;17315:7;17300:22;;17383:4;17364:15;:13;:15::i;:::-;:23;17360:915;;17417:13;;17410:4;:20;17406:869;;;17455:14;17472:17;:23;17490:4;17472:23;;;;;;;;;;;;17455:40;;17588:1;10783:8;17561:6;:23;:28;17557:699;;;18080:113;18097:1;18087:6;:11;18080:113;;;18140:17;:25;18158:6;;;;;;;18140:25;;;;;;;;;;;;18131:34;;18080:113;;;18226:6;18219:13;;;;;;17557:699;17406:869;;17360:915;18303:31;;;;;;;;;;;;;;17213:1129;;;;:::o;30154:472::-;30249:27;30278:23;30319:38;30360:15;:24;30376:7;30360:24;;;;;;;;;;;30319:65;;30531:18;30508:41;;30588:19;30582:26;30563:45;;30493:126;;;;:::o;30739:645::-;30881:11;31043:15;31037:4;31033:26;31025:34;;31202:15;31191:9;31187:31;31174:44;;31349:15;31338:9;31335:30;31328:4;31317:9;31314:19;31311:55;31301:65;;30914:463;;;;;:::o;41575:159::-;;;;;:::o;39887:309::-;40022:7;40042:16;11184:3;40068:19;:40;;40042:67;;11184:3;40135:31;40146:4;40152:2;40156:9;40135:10;:31::i;:::-;40127:40;;:61;;40120:68;;;39887:309;;;;;:::o;19811:447::-;19891:14;20059:15;20052:5;20048:27;20039:36;;20233:5;20219:11;20195:22;20191:40;20188:51;20181:5;20178:62;20168:72;;19927:324;;;;:::o;42393:158::-;;;;;:::o;56109:317::-;56224:6;56199:21;:31;;56191:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56278:12;56296:9;:14;;56318:6;56296:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56277:52;;;56348:7;56340:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;56109:317;;;:::o;65563:191::-;65637:16;65656:6;;;;;;;;;;;65637:25;;65682:8;65673:6;;:17;;;;;;;;;;;;;;;;;;65737:8;65706:40;;65727:8;65706:40;;;;;;;;;;;;65563:191;;:::o;24678:112::-;24755:27;24765:2;24769:8;24755:27;;;;;;;;;;;;:9;:27::i;:::-;24678:112;;:::o;38389:716::-;38552:4;38598:2;38573:45;;;38619:19;:17;:19::i;:::-;38640:4;38646:7;38655:5;38573:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38569:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38873:1;38856:6;:13;:18;38852:235;;;38902:40;;;;;;;;;;;;;;38852:235;39045:6;39039:13;39030:6;39026:2;39022:15;39015:38;38569:529;38742:54;;;38732:64;;;:6;:64;;;;38725:71;;;38389:716;;;;;;:::o;66191:723::-;66247:13;66477:1;66468:5;:10;66464:53;;;66495:10;;;;;;;;;;;;;;;;;;;;;66464:53;66527:12;66542:5;66527:20;;66558:14;66583:78;66598:1;66590:4;:9;66583:78;;66616:8;;;;;:::i;:::-;;;;66647:2;66639:10;;;;;:::i;:::-;;;66583:78;;;66671:19;66703:6;66693:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66671:39;;66721:154;66737:1;66728:5;:10;66721:154;;66765:1;66755:11;;;;;:::i;:::-;;;66832:2;66824:5;:10;;;;:::i;:::-;66811:2;:24;;;;:::i;:::-;66798:39;;66781:6;66788;66781:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;66861:2;66852:11;;;;;:::i;:::-;;;66721:154;;;66899:6;66885:21;;;;;66191:723;;;;:::o;62847:98::-;62900:7;62927:10;62920:17;;62847:98;:::o;40772:147::-;40909:6;40772:147;;;;;:::o;25206:689::-;25337:19;25343:2;25347:8;25337:5;:19::i;:::-;25416:1;25398:2;:14;;;:19;25394:483;;25438:11;25452:13;;25438:27;;25484:13;25506:8;25500:3;:14;25484:30;;25533:233;25564:62;25603:1;25607:2;25611:7;;;;;;25620:5;25564:30;:62::i;:::-;25559:167;;25662:40;;;;;;;;;;;;;;25559:167;25761:3;25753:5;:11;25533:233;;25848:3;25831:13;;:20;25827:34;;25853:8;;;25827:34;25394:483;;;25206:689;;;:::o;26168:1537::-;26241:20;26264:13;;26241:36;;26306:1;26292:16;;:2;:16;;;26288:48;;;26317:19;;;;;;;;;;;;;;26288:48;26363:1;26351:8;:13;26347:44;;;26373:18;;;;;;;;;;;;;;26347:44;26404:61;26434:1;26438:2;26442:12;26456:8;26404:21;:61::i;:::-;26947:1;10150:2;26918:1;:25;;26917:31;26905:8;:44;26879:18;:22;26898:2;26879:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;27226:139;27263:2;27317:33;27340:1;27344:2;27348:1;27317:14;:33::i;:::-;27284:30;27305:8;27284:20;:30::i;:::-;:66;27226:18;:139::i;:::-;27192:17;:31;27210:12;27192:31;;;;;;;;;;;:173;;;;27382:15;27400:12;27382:30;;27427:11;27456:8;27441:12;:23;27427:37;;27479:101;27531:9;;;;;;27527:2;27506:35;;27523:1;27506:35;;;;;;;;;;;;27575:3;27565:7;:13;27479:101;;27612:3;27596:13;:19;;;;26168:1537;;27637:60;27666:1;27670:2;27674:12;27688:8;27637:20;:60::i;:::-;26168:1537;;;:::o;21649:322::-;21719:14;21950:1;21940:8;21937:15;21912:23;21908:45;21898:55;;21821:143;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7730:845::-;7833:3;7870:5;7864:12;7899:36;7925:9;7899:36;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8071:1;8060:9;8056:17;8087:1;8082:137;;;;8233:1;8228:341;;;;8049:520;;8082:137;8166:4;8162:9;8151;8147:25;8142:3;8135:38;8202:6;8197:3;8193:16;8186:23;;8082:137;;8228:341;8295:38;8327:5;8295:38;:::i;:::-;8355:1;8369:154;8383:6;8380:1;8377:13;8369:154;;;8457:7;8451:14;8447:1;8442:3;8438:11;8431:35;8507:1;8498:7;8494:15;8483:26;;8405:4;8402:1;8398:12;8393:17;;8369:154;;;8552:6;8547:3;8543:16;8536:23;;8235:334;;8049:520;;7837:738;;;;;;:::o;8581:365::-;8723:3;8744:66;8808:1;8803:3;8744:66;:::i;:::-;8737:73;;8819:93;8908:3;8819:93;:::i;:::-;8937:2;8932:3;8928:12;8921:19;;8727:219;;;:::o;8952:366::-;9094:3;9115:67;9179:2;9174:3;9115:67;:::i;:::-;9108:74;;9191:93;9280:3;9191:93;:::i;:::-;9309:2;9304:3;9300:12;9293:19;;9098:220;;;:::o;9324:366::-;9466:3;9487:67;9551:2;9546:3;9487:67;:::i;:::-;9480:74;;9563:93;9652:3;9563:93;:::i;:::-;9681:2;9676:3;9672:12;9665:19;;9470:220;;;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9842:220;;;:::o;10068:366::-;10210:3;10231:67;10295:2;10290:3;10231:67;:::i;:::-;10224:74;;10307:93;10396:3;10307:93;:::i;:::-;10425:2;10420:3;10416:12;10409:19;;10214:220;;;:::o;10440:366::-;10582:3;10603:67;10667:2;10662:3;10603:67;:::i;:::-;10596:74;;10679:93;10768:3;10679:93;:::i;:::-;10797:2;10792:3;10788:12;10781:19;;10586:220;;;:::o;10812:400::-;10972:3;10993:84;11075:1;11070:3;10993:84;:::i;:::-;10986:91;;11086:93;11175:3;11086:93;:::i;:::-;11204:1;11199:3;11195:11;11188:18;;10976:236;;;:::o;11218:366::-;11360:3;11381:67;11445:2;11440:3;11381:67;:::i;:::-;11374:74;;11457:93;11546:3;11457:93;:::i;:::-;11575:2;11570:3;11566:12;11559:19;;11364:220;;;:::o;11590:366::-;11732:3;11753:67;11817:2;11812:3;11753:67;:::i;:::-;11746:74;;11829:93;11918:3;11829:93;:::i;:::-;11947:2;11942:3;11938:12;11931:19;;11736:220;;;:::o;11962:398::-;12121:3;12142:83;12223:1;12218:3;12142:83;:::i;:::-;12135:90;;12234:93;12323:3;12234:93;:::i;:::-;12352:1;12347:3;12343:11;12336:18;;12125:235;;;:::o;12366:366::-;12508:3;12529:67;12593:2;12588:3;12529:67;:::i;:::-;12522:74;;12605:93;12694:3;12605:93;:::i;:::-;12723:2;12718:3;12714:12;12707:19;;12512:220;;;:::o;12738:366::-;12880:3;12901:67;12965:2;12960:3;12901:67;:::i;:::-;12894:74;;12977:93;13066:3;12977:93;:::i;:::-;13095:2;13090:3;13086:12;13079:19;;12884:220;;;:::o;13110:366::-;13252:3;13273:67;13337:2;13332:3;13273:67;:::i;:::-;13266:74;;13349:93;13438:3;13349:93;:::i;:::-;13467:2;13462:3;13458:12;13451:19;;13256:220;;;:::o;13482:366::-;13624:3;13645:67;13709:2;13704:3;13645:67;:::i;:::-;13638:74;;13721:93;13810:3;13721:93;:::i;:::-;13839:2;13834:3;13830:12;13823:19;;13628:220;;;:::o;13854:400::-;14014:3;14035:84;14117:1;14112:3;14035:84;:::i;:::-;14028:91;;14128:93;14217:3;14128:93;:::i;:::-;14246:1;14241:3;14237:11;14230:18;;14018:236;;;:::o;14260:118::-;14347:24;14365:5;14347:24;:::i;:::-;14342:3;14335:37;14325:53;;:::o;14384:961::-;14763:3;14785:92;14873:3;14864:6;14785:92;:::i;:::-;14778:99;;14894:148;15038:3;14894:148;:::i;:::-;14887:155;;15059:95;15150:3;15141:6;15059:95;:::i;:::-;15052:102;;15171:148;15315:3;15171:148;:::i;:::-;15164:155;;15336:3;15329:10;;14767:578;;;;;:::o;15351:379::-;15535:3;15557:147;15700:3;15557:147;:::i;:::-;15550:154;;15721:3;15714:10;;15539:191;;;:::o;15736:222::-;15829:4;15867:2;15856:9;15852:18;15844:26;;15880:71;15948:1;15937:9;15933:17;15924:6;15880:71;:::i;:::-;15834:124;;;;:::o;15964:640::-;16159:4;16197:3;16186:9;16182:19;16174:27;;16211:71;16279:1;16268:9;16264:17;16255:6;16211:71;:::i;:::-;16292:72;16360:2;16349:9;16345:18;16336:6;16292:72;:::i;:::-;16374;16442:2;16431:9;16427:18;16418:6;16374:72;:::i;:::-;16493:9;16487:4;16483:20;16478:2;16467:9;16463:18;16456:48;16521:76;16592:4;16583:6;16521:76;:::i;:::-;16513:84;;16164:440;;;;;;;:::o;16610:210::-;16697:4;16735:2;16724:9;16720:18;16712:26;;16748:65;16810:1;16799:9;16795:17;16786:6;16748:65;:::i;:::-;16702:118;;;;:::o;16826:313::-;16939:4;16977:2;16966:9;16962:18;16954:26;;17026:9;17020:4;17016:20;17012:1;17001:9;16997:17;16990:47;17054:78;17127:4;17118:6;17054:78;:::i;:::-;17046:86;;16944:195;;;;:::o;17145:419::-;17311:4;17349:2;17338:9;17334:18;17326:26;;17398:9;17392:4;17388:20;17384:1;17373:9;17369:17;17362:47;17426:131;17552:4;17426:131;:::i;:::-;17418:139;;17316:248;;;:::o;17570:419::-;17736:4;17774:2;17763:9;17759:18;17751:26;;17823:9;17817:4;17813:20;17809:1;17798:9;17794:17;17787:47;17851:131;17977:4;17851:131;:::i;:::-;17843:139;;17741:248;;;:::o;17995:419::-;18161:4;18199:2;18188:9;18184:18;18176:26;;18248:9;18242:4;18238:20;18234:1;18223:9;18219:17;18212:47;18276:131;18402:4;18276:131;:::i;:::-;18268:139;;18166:248;;;:::o;18420:419::-;18586:4;18624:2;18613:9;18609:18;18601:26;;18673:9;18667:4;18663:20;18659:1;18648:9;18644:17;18637:47;18701:131;18827:4;18701:131;:::i;:::-;18693:139;;18591:248;;;:::o;18845:419::-;19011:4;19049:2;19038:9;19034:18;19026:26;;19098:9;19092:4;19088:20;19084:1;19073:9;19069:17;19062:47;19126:131;19252:4;19126:131;:::i;:::-;19118:139;;19016:248;;;:::o;19270:419::-;19436:4;19474:2;19463:9;19459:18;19451:26;;19523:9;19517:4;19513:20;19509:1;19498:9;19494:17;19487:47;19551:131;19677:4;19551:131;:::i;:::-;19543:139;;19441:248;;;:::o;19695:419::-;19861:4;19899:2;19888:9;19884:18;19876:26;;19948:9;19942:4;19938:20;19934:1;19923:9;19919:17;19912:47;19976:131;20102:4;19976:131;:::i;:::-;19968:139;;19866:248;;;:::o;20120:419::-;20286:4;20324:2;20313:9;20309:18;20301:26;;20373:9;20367:4;20363:20;20359:1;20348:9;20344:17;20337:47;20401:131;20527:4;20401:131;:::i;:::-;20393:139;;20291:248;;;:::o;20545:419::-;20711:4;20749:2;20738:9;20734:18;20726:26;;20798:9;20792:4;20788:20;20784:1;20773:9;20769:17;20762:47;20826:131;20952:4;20826:131;:::i;:::-;20818:139;;20716:248;;;:::o;20970:419::-;21136:4;21174:2;21163:9;21159:18;21151:26;;21223:9;21217:4;21213:20;21209:1;21198:9;21194:17;21187:47;21251:131;21377:4;21251:131;:::i;:::-;21243:139;;21141:248;;;:::o;21395:419::-;21561:4;21599:2;21588:9;21584:18;21576:26;;21648:9;21642:4;21638:20;21634:1;21623:9;21619:17;21612:47;21676:131;21802:4;21676:131;:::i;:::-;21668:139;;21566:248;;;:::o;21820:419::-;21986:4;22024:2;22013:9;22009:18;22001:26;;22073:9;22067:4;22063:20;22059:1;22048:9;22044:17;22037:47;22101:131;22227:4;22101:131;:::i;:::-;22093:139;;21991:248;;;:::o;22245:222::-;22338:4;22376:2;22365:9;22361:18;22353:26;;22389:71;22457:1;22446:9;22442:17;22433:6;22389:71;:::i;:::-;22343:124;;;;:::o;22473:129::-;22507:6;22534:20;;:::i;:::-;22524:30;;22563:33;22591:4;22583:6;22563:33;:::i;:::-;22514:88;;;:::o;22608:75::-;22641:6;22674:2;22668:9;22658:19;;22648:35;:::o;22689:307::-;22750:4;22840:18;22832:6;22829:30;22826:2;;;22862:18;;:::i;:::-;22826:2;22900:29;22922:6;22900:29;:::i;:::-;22892:37;;22984:4;22978;22974:15;22966:23;;22755:241;;;:::o;23002:308::-;23064:4;23154:18;23146:6;23143:30;23140:2;;;23176:18;;:::i;:::-;23140:2;23214:29;23236:6;23214:29;:::i;:::-;23206:37;;23298:4;23292;23288:15;23280:23;;23069:241;;;:::o;23316:141::-;23365:4;23388:3;23380:11;;23411:3;23408:1;23401:14;23445:4;23442:1;23432:18;23424:26;;23370:87;;;:::o;23463:98::-;23514:6;23548:5;23542:12;23532:22;;23521:40;;;:::o;23567:99::-;23619:6;23653:5;23647:12;23637:22;;23626:40;;;:::o;23672:168::-;23755:11;23789:6;23784:3;23777:19;23829:4;23824:3;23820:14;23805:29;;23767:73;;;;:::o;23846:147::-;23947:11;23984:3;23969:18;;23959:34;;;;:::o;23999:169::-;24083:11;24117:6;24112:3;24105:19;24157:4;24152:3;24148:14;24133:29;;24095:73;;;;:::o;24174:148::-;24276:11;24313:3;24298:18;;24288:34;;;;:::o;24328:305::-;24368:3;24387:20;24405:1;24387:20;:::i;:::-;24382:25;;24421:20;24439:1;24421:20;:::i;:::-;24416:25;;24575:1;24507:66;24503:74;24500:1;24497:81;24494:2;;;24581:18;;:::i;:::-;24494:2;24625:1;24622;24618:9;24611:16;;24372:261;;;;:::o;24639:185::-;24679:1;24696:20;24714:1;24696:20;:::i;:::-;24691:25;;24730:20;24748:1;24730:20;:::i;:::-;24725:25;;24769:1;24759:2;;24774:18;;:::i;:::-;24759:2;24816:1;24813;24809:9;24804:14;;24681:143;;;;:::o;24830:348::-;24870:7;24893:20;24911:1;24893:20;:::i;:::-;24888:25;;24927:20;24945:1;24927:20;:::i;:::-;24922:25;;25115:1;25047:66;25043:74;25040:1;25037:81;25032:1;25025:9;25018:17;25014:105;25011:2;;;25122:18;;:::i;:::-;25011:2;25170:1;25167;25163:9;25152:20;;24878:300;;;;:::o;25184:191::-;25224:4;25244:20;25262:1;25244:20;:::i;:::-;25239:25;;25278:20;25296:1;25278:20;:::i;:::-;25273:25;;25317:1;25314;25311:8;25308:2;;;25322:18;;:::i;:::-;25308:2;25367:1;25364;25360:9;25352:17;;25229:146;;;;:::o;25381:96::-;25418:7;25447:24;25465:5;25447:24;:::i;:::-;25436:35;;25426:51;;;:::o;25483:90::-;25517:7;25560:5;25553:13;25546:21;25535:32;;25525:48;;;:::o;25579:149::-;25615:7;25655:66;25648:5;25644:78;25633:89;;25623:105;;;:::o;25734:126::-;25771:7;25811:42;25804:5;25800:54;25789:65;;25779:81;;;:::o;25866:77::-;25903:7;25932:5;25921:16;;25911:32;;;:::o;25949:154::-;26033:6;26028:3;26023;26010:30;26095:1;26086:6;26081:3;26077:16;26070:27;26000:103;;;:::o;26109:307::-;26177:1;26187:113;26201:6;26198:1;26195:13;26187:113;;;26286:1;26281:3;26277:11;26271:18;26267:1;26262:3;26258:11;26251:39;26223:2;26220:1;26216:10;26211:15;;26187:113;;;26318:6;26315:1;26312:13;26309:2;;;26398:1;26389:6;26384:3;26380:16;26373:27;26309:2;26158:258;;;;:::o;26422:320::-;26466:6;26503:1;26497:4;26493:12;26483:22;;26550:1;26544:4;26540:12;26571:18;26561:2;;26627:4;26619:6;26615:17;26605:27;;26561:2;26689;26681:6;26678:14;26658:18;26655:38;26652:2;;;26708:18;;:::i;:::-;26652:2;26473:269;;;;:::o;26748:281::-;26831:27;26853:4;26831:27;:::i;:::-;26823:6;26819:40;26961:6;26949:10;26946:22;26925:18;26913:10;26910:34;26907:62;26904:2;;;26972:18;;:::i;:::-;26904:2;27012:10;27008:2;27001:22;26791:238;;;:::o;27035:233::-;27074:3;27097:24;27115:5;27097:24;:::i;:::-;27088:33;;27143:66;27136:5;27133:77;27130:2;;;27213:18;;:::i;:::-;27130:2;27260:1;27253:5;27249:13;27242:20;;27078:190;;;:::o;27274:176::-;27306:1;27323:20;27341:1;27323:20;:::i;:::-;27318:25;;27357:20;27375:1;27357:20;:::i;:::-;27352:25;;27396:1;27386:2;;27401:18;;:::i;:::-;27386:2;27442:1;27439;27435:9;27430:14;;27308:142;;;;:::o;27456:180::-;27504:77;27501:1;27494:88;27601:4;27598:1;27591:15;27625:4;27622:1;27615:15;27642:180;27690:77;27687:1;27680:88;27787:4;27784:1;27777:15;27811:4;27808:1;27801:15;27828:180;27876:77;27873:1;27866:88;27973:4;27970:1;27963:15;27997:4;27994:1;27987:15;28014:180;28062:77;28059:1;28052:88;28159:4;28156:1;28149:15;28183:4;28180:1;28173:15;28200:102;28241:6;28292:2;28288:7;28283:2;28276:5;28272:14;28268:28;28258:38;;28248:54;;;:::o;28308:157::-;28448:9;28444:1;28436:6;28432:14;28425:33;28414:51;:::o;28471:225::-;28611:34;28607:1;28599:6;28595:14;28588:58;28680:8;28675:2;28667:6;28663:15;28656:33;28577:119;:::o;28702:245::-;28842:34;28838:1;28830:6;28826:14;28819:58;28911:28;28906:2;28898:6;28894:15;28887:53;28808:139;:::o;28953:179::-;29093:31;29089:1;29081:6;29077:14;29070:55;29059:73;:::o;29138:221::-;29278:34;29274:1;29266:6;29262:14;29255:58;29347:4;29342:2;29334:6;29330:15;29323:29;29244:115;:::o;29365:173::-;29505:25;29501:1;29493:6;29489:14;29482:49;29471:67;:::o;29544:155::-;29684:7;29680:1;29672:6;29668:14;29661:31;29650:49;:::o;29705:182::-;29845:34;29841:1;29833:6;29829:14;29822:58;29811:76;:::o;29893:234::-;30033:34;30029:1;30021:6;30017:14;30010:58;30102:17;30097:2;30089:6;30085:15;30078:42;29999:128;:::o;30133:114::-;30239:8;:::o;30253:169::-;30393:21;30389:1;30381:6;30377:14;30370:45;30359:63;:::o;30428:174::-;30568:26;30564:1;30556:6;30552:14;30545:50;30534:68;:::o;30608:181::-;30748:33;30744:1;30736:6;30732:14;30725:57;30714:75;:::o;30795:173::-;30935:25;30931:1;30923:6;30919:14;30912:49;30901:67;:::o;30974:151::-;31114:3;31110:1;31102:6;31098:14;31091:27;31080:45;:::o;31131:122::-;31204:24;31222:5;31204:24;:::i;:::-;31197:5;31194:35;31184:2;;31243:1;31240;31233:12;31184:2;31174:79;:::o;31259:116::-;31329:21;31344:5;31329:21;:::i;:::-;31322:5;31319:32;31309:2;;31365:1;31362;31355:12;31309:2;31299:76;:::o;31381:120::-;31453:23;31470:5;31453:23;:::i;:::-;31446:5;31443:34;31433:2;;31491:1;31488;31481:12;31433:2;31423:78;:::o;31507:122::-;31580:24;31598:5;31580:24;:::i;:::-;31573:5;31570:35;31560:2;;31619:1;31616;31609:12;31560:2;31550:79;:::o
Swarm Source
ipfs://21ed5394f4d20bfe0b5013cb5a7e01466079cf7de84beadeb191180dac35ee16
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.