Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
101 {STPSY}
Holders
51
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
15 {STPSY}Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StarWarsPsychedelics
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-26 */ // SPDX-License-Identifier: MIT // 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/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/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: @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: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/ShinigamiAI.sol pragma solidity ^0.8.0; contract StarWarsPsychedelics is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI ; uint256 public maxSupply = 101; uint256 public MAX_MINTS_PER_TX = 3; uint256 public PUBLIC_SALE_PRICE = 0.008 ether; bool private addwhitelistaddress; bool public IsWhitelistSaleActive = false; bool public isPublicSaleActive = true; constructor() ERC721A("StarWarsPsychedelics", "{STPSY}") { } function PSY(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require( totalSupply() + numberOfTokens <= maxSupply, "Maximum supply exceeded" ); require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); _safeMint(msg.sender, numberOfTokens); } function whiteListMint(uint256 numberOfTokens ) external payable { require(IsWhitelistSaleActive, "Whitelistsale not live" ); require(addwhitelistaddress, "are you whitelsted" ); _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function devmint(uint numberOfTokens, address user) public onlyOwner { require( numberOfTokens > 0, "Invalid mint amount" ); require( totalSupply() + numberOfTokens <= maxSupply, "Maximum supply exceeded" ); _safeMint(user, numberOfTokens); } function setwhitelistapprovedaddress(bool _addwhitelistaddress) external onlyOwner { addwhitelistaddress = _addwhitelistaddress; } 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 setIsWhitelistsaleActive(bool _IsWhitelistSaleActive) external onlyOwner { IsWhitelistSaleActive = _IsWhitelistSaleActive; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } }
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":"IsWhitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"PSY","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"devmint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_IsWhitelistSaleActive","type":"bool"}],"name":"setIsWhitelistsaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_addwhitelistaddress","type":"bool"}],"name":"setwhitelistapprovedaddress","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":"numberOfTokens","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526065600b556003600c55661c6bf526340000600d556000600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff0219169083151502179055503480156200005c57600080fd5b506040518060400160405280601481526020017f537461725761727350737963686564656c6963730000000000000000000000008152506040518060400160405280600781526020017f7b53545053597d000000000000000000000000000000000000000000000000008152508160029080519060200190620000e192919062000218565b508060039080519060200190620000fa92919062000218565b506200010b6200014160201b60201c565b600081905550505062000133620001276200014a60201b60201c565b6200015260201b60201c565b60016009819055506200032d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022690620002c8565b90600052602060002090601f0160209004810192826200024a576000855562000296565b82601f106200026557805160ff191683800117855562000296565b8280016001018555821562000296579182015b828111156200029557825182559160200191906001019062000278565b5b509050620002a59190620002a9565b5090565b5b80821115620002c4576000816000905550600101620002aa565b5090565b60006002820490506001821680620002e157607f821691505b60208210811415620002f857620002f7620002fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613381806200033d6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063c6a91b42116100a0578063d5abeb011161006f578063d5abeb01146106a7578063d6effa68146106d2578063e985e9c5146106fb578063f2fde38b14610738578063fa7b951314610761576101ee565b8063c6a91b42146105e9578063c86d679e14610614578063c87b56dd1461063f578063d547cfb71461067c576101ee565b806395d89b41116100dc57806395d89b41146105435780639e9fcffc1461056e578063a22cb46514610597578063b88d4fde146105c0576101ee565b80636352211e1461048757806370a08231146104c4578063715018a6146105015780638da5cb5b14610518576101ee565b80631e84c413116101855780633ccfd60b116101545780633ccfd60b146103f557806342842e0e1461040c5780634b53ad901461043557806355f804b31461045e576101ee565b80631e84c4131461035c57806323b872dd1461038757806328cad13d146103b057806337bec223146103d9576101ee565b8063081812fc116101c1578063081812fc146102a2578063095ea7b3146102df57806318160ddd146103085780631919fed714610333576101ee565b806301ffc9a7146101f357806302e001ef1461023057806306fdde031461024c57806307e89ec014610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906124a0565b61078a565b60405161022791906129c2565b60405180910390f35b61024a60048036038101906102459190612543565b61081c565b005b34801561025857600080fd5b506102616108c7565b60405161026e91906129dd565b60405180910390f35b34801561028357600080fd5b5061028c610959565b6040516102999190612b7f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612543565b61095f565b6040516102d6919061295b565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612433565b6109de565b005b34801561031457600080fd5b5061031d610b22565b60405161032a9190612b7f565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190612543565b610b39565b005b34801561036857600080fd5b50610371610b4b565b60405161037e91906129c2565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a9919061231d565b610b5e565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612473565b610e83565b005b6103f360048036038101906103ee9190612543565b610ea8565b005b34801561040157600080fd5b5061040a610fab565b005b34801561041857600080fd5b50610433600480360381019061042e919061231d565b611015565b005b34801561044157600080fd5b5061045c60048036038101906104579190612570565b611035565b005b34801561046a57600080fd5b50610485600480360381019061048091906124fa565b6110e5565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612543565b611107565b6040516104bb919061295b565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906122b0565b611119565b6040516104f89190612b7f565b60405180910390f35b34801561050d57600080fd5b506105166111d2565b005b34801561052457600080fd5b5061052d6111e6565b60405161053a919061295b565b60405180910390f35b34801561054f57600080fd5b50610558611210565b60405161056591906129dd565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190612543565b6112a2565b005b3480156105a357600080fd5b506105be60048036038101906105b991906123f3565b6112b4565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612370565b61142c565b005b3480156105f557600080fd5b506105fe61149f565b60405161060b9190612b7f565b60405180910390f35b34801561062057600080fd5b506106296114a5565b60405161063691906129c2565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612543565b6114b8565b60405161067391906129dd565b60405180910390f35b34801561068857600080fd5b50610691611534565b60405161069e91906129dd565b60405180910390f35b3480156106b357600080fd5b506106bc6115c2565b6040516106c99190612b7f565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612473565b6115c8565b005b34801561070757600080fd5b50610722600480360381019061071d91906122dd565b6115ed565b60405161072f91906129c2565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a91906122b0565b611681565b005b34801561076d57600080fd5b5061078860048036038101906107839190612473565b611705565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e60019054906101000a900460ff1661086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906129ff565b60405180910390fd5b600e60009054906101000a900460ff166108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190612a3f565b60405180910390fd5b6108c4338261172a565b50565b6060600280546108d690612e4f565b80601f016020809104026020016040519081016040528092919081815260200182805461090290612e4f565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600d5481565b600061096a82611748565b6109a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611107565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0a6117a7565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d57610a3681610a316117a7565b6115ed565b610a6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b2c6117af565b6001546000540303905090565b610b416117b8565b80600d8190555050565b600e60029054906101000a900460ff1681565b6000610b6982611836565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bdc84611904565b91509150610bf28187610bed6117a7565b61192b565b610c3e57610c0786610c026117a7565b6115ed565b610c3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ca5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb2868686600161196f565b8015610cbd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8b85610d67888887611975565b7c02000000000000000000000000000000000000000000000000000000001761199d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e13576000600185019050600060046000838152602001908152602001600020541415610e11576000548114610e10578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e7b86868660016119c8565b505050505050565b610e8b6117b8565b80600e60026101000a81548160ff02191690831515021790555050565b600e60029054906101000a900460ff16610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612b5f565b60405180910390fd5b600b5481610f03610b22565b610f0d9190612c84565b1115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612a9f565b60405180910390fd5b3481600d54610f5d9190612d0b565b1115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590612b1f565b60405180910390fd5b610fa8338261172a565b50565b610fb36117b8565b60026009541415610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090612b3f565b60405180910390fd5b600260098190555061100b33476119ce565b6001600981905550565b6110308383836040518060200160405280600081525061142c565b505050565b61103d6117b8565b60008211611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612aff565b60405180910390fd5b600b548261108c610b22565b6110969190612c84565b11156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90612a9f565b60405180910390fd5b6110e1818361172a565b5050565b6110ed6117b8565b80600a90805190602001906111039291906120c4565b5050565b600061111282611836565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611181576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111da6117b8565b6111e46000611ac2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461121f90612e4f565b80601f016020809104026020016040519081016040528092919081815260200182805461124b90612e4f565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b6112aa6117b8565b80600c8190555050565b6112bc6117a7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061132e6117a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113db6117a7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161142091906129c2565b60405180910390a35050565b611437848484610b5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114995761146284848484611b88565b611498576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b600e60019054906101000a900460ff1681565b60606114c382611748565b611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990612adf565b60405180910390fd5b600a61150d83611ce8565b60405160200161151e92919061290c565b6040516020818303038152906040529050919050565b600a805461154190612e4f565b80601f016020809104026020016040519081016040528092919081815260200182805461156d90612e4f565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b505050505081565b600b5481565b6115d06117b8565b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116896117b8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090612a1f565b60405180910390fd5b61170281611ac2565b50565b61170d6117b8565b80600e60006101000a81548160ff02191690831515021790555050565b611744828260405180602001604052806000815250611e49565b5050565b6000816117536117af565b11158015611762575060005482105b80156117a0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6117c0611ee6565b73ffffffffffffffffffffffffffffffffffffffff166117de6111e6565b73ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612abf565b60405180910390fd5b565b600080829050806118456117af565b116118cd576000548110156118cc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118ca575b60008114156118c0576004600083600190039350838152602001908152602001600020549050611895565b80925050506118ff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861198c868684611eee565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890612a7f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a3790612946565b60006040518083038185875af1925050503d8060008114611a74576040519150601f19603f3d011682016040523d82523d6000602084013e611a79565b606091505b5050905080611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490612a5f565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bae6117a7565b8786866040518563ffffffff1660e01b8152600401611bd09493929190612976565b602060405180830381600087803b158015611bea57600080fd5b505af1925050508015611c1b57506040513d601f19601f82011682018060405250810190611c1891906124cd565b60015b611c95573d8060008114611c4b576040519150601f19603f3d011682016040523d82523d6000602084013e611c50565b606091505b50600081511415611c8d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611d30576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e44565b600082905060005b60008214611d62578080611d4b90612eb2565b915050600a82611d5b9190612cda565b9150611d38565b60008167ffffffffffffffff811115611d7e57611d7d612fe8565b5b6040519080825280601f01601f191660200182016040528015611db05781602001600182028036833780820191505090505b5090505b60008514611e3d57600182611dc99190612d65565b9150600a85611dd89190612efb565b6030611de49190612c84565b60f81b818381518110611dfa57611df9612fb9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e369190612cda565b9450611db4565b8093505050505b919050565b611e538383611ef7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ee157600080549050600083820390505b611e936000868380600101945086611b88565b611ec9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e80578160005414611ede57600080fd5b50505b505050565b600033905090565b60009392505050565b6000805490506000821415611f38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f45600084838561196f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fbc83611fad6000866000611975565b611fb6856120b4565b1761199d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461205d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612022565b506000821415612099576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120af60008483856119c8565b505050565b60006001821460e11b9050919050565b8280546120d090612e4f565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a61217584612bbf565b612b9a565b9050828152602081018484840111156121965761219561301c565b5b6121a1848285612e0d565b509392505050565b60006121bc6121b784612bf0565b612b9a565b9050828152602081018484840111156121d8576121d761301c565b5b6121e3848285612e0d565b509392505050565b6000813590506121fa816132ef565b92915050565b60008135905061220f81613306565b92915050565b6000813590506122248161331d565b92915050565b6000815190506122398161331d565b92915050565b600082601f83011261225457612253613017565b5b8135612264848260208601612167565b91505092915050565b600082601f83011261228257612281613017565b5b81356122928482602086016121a9565b91505092915050565b6000813590506122aa81613334565b92915050565b6000602082840312156122c6576122c5613026565b5b60006122d4848285016121eb565b91505092915050565b600080604083850312156122f4576122f3613026565b5b6000612302858286016121eb565b9250506020612313858286016121eb565b9150509250929050565b60008060006060848603121561233657612335613026565b5b6000612344868287016121eb565b9350506020612355868287016121eb565b92505060406123668682870161229b565b9150509250925092565b6000806000806080858703121561238a57612389613026565b5b6000612398878288016121eb565b94505060206123a9878288016121eb565b93505060406123ba8782880161229b565b925050606085013567ffffffffffffffff8111156123db576123da613021565b5b6123e78782880161223f565b91505092959194509250565b6000806040838503121561240a57612409613026565b5b6000612418858286016121eb565b925050602061242985828601612200565b9150509250929050565b6000806040838503121561244a57612449613026565b5b6000612458858286016121eb565b92505060206124698582860161229b565b9150509250929050565b60006020828403121561248957612488613026565b5b600061249784828501612200565b91505092915050565b6000602082840312156124b6576124b5613026565b5b60006124c484828501612215565b91505092915050565b6000602082840312156124e3576124e2613026565b5b60006124f18482850161222a565b91505092915050565b6000602082840312156125105761250f613026565b5b600082013567ffffffffffffffff81111561252e5761252d613021565b5b61253a8482850161226d565b91505092915050565b60006020828403121561255957612558613026565b5b60006125678482850161229b565b91505092915050565b6000806040838503121561258757612586613026565b5b60006125958582860161229b565b92505060206125a6858286016121eb565b9150509250929050565b6125b981612d99565b82525050565b6125c881612dab565b82525050565b60006125d982612c36565b6125e38185612c4c565b93506125f3818560208601612e1c565b6125fc8161302b565b840191505092915050565b600061261282612c41565b61261c8185612c68565b935061262c818560208601612e1c565b6126358161302b565b840191505092915050565b600061264b82612c41565b6126558185612c79565b9350612665818560208601612e1c565b80840191505092915050565b6000815461267e81612e4f565b6126888186612c79565b945060018216600081146126a357600181146126b4576126e7565b60ff198316865281860193506126e7565b6126bd85612c21565b60005b838110156126df578154818901526001820191506020810190506126c0565b838801955050505b50505092915050565b60006126fd601683612c68565b91506127088261303c565b602082019050919050565b6000612720602683612c68565b915061272b82613065565b604082019050919050565b6000612743601283612c68565b915061274e826130b4565b602082019050919050565b6000612766603a83612c68565b9150612771826130dd565b604082019050919050565b6000612789601d83612c68565b91506127948261312c565b602082019050919050565b60006127ac601783612c68565b91506127b782613155565b602082019050919050565b60006127cf600583612c79565b91506127da8261317e565b600582019050919050565b60006127f2602083612c68565b91506127fd826131a7565b602082019050919050565b6000612815602f83612c68565b9150612820826131d0565b604082019050919050565b6000612838600083612c5d565b91506128438261321f565b600082019050919050565b600061285b601383612c68565b915061286682613222565b602082019050919050565b600061287e601883612c68565b91506128898261324b565b602082019050919050565b60006128a1601f83612c68565b91506128ac82613274565b602082019050919050565b60006128c4601783612c68565b91506128cf8261329d565b602082019050919050565b60006128e7600183612c79565b91506128f2826132c6565b600182019050919050565b61290681612e03565b82525050565b60006129188285612671565b9150612923826128da565b915061292f8284612640565b915061293a826127c2565b91508190509392505050565b60006129518261282b565b9150819050919050565b600060208201905061297060008301846125b0565b92915050565b600060808201905061298b60008301876125b0565b61299860208301866125b0565b6129a560408301856128fd565b81810360608301526129b781846125ce565b905095945050505050565b60006020820190506129d760008301846125bf565b92915050565b600060208201905081810360008301526129f78184612607565b905092915050565b60006020820190508181036000830152612a18816126f0565b9050919050565b60006020820190508181036000830152612a3881612713565b9050919050565b60006020820190508181036000830152612a5881612736565b9050919050565b60006020820190508181036000830152612a7881612759565b9050919050565b60006020820190508181036000830152612a988161277c565b9050919050565b60006020820190508181036000830152612ab88161279f565b9050919050565b60006020820190508181036000830152612ad8816127e5565b9050919050565b60006020820190508181036000830152612af881612808565b9050919050565b60006020820190508181036000830152612b188161284e565b9050919050565b60006020820190508181036000830152612b3881612871565b9050919050565b60006020820190508181036000830152612b5881612894565b9050919050565b60006020820190508181036000830152612b78816128b7565b9050919050565b6000602082019050612b9460008301846128fd565b92915050565b6000612ba4612bb5565b9050612bb08282612e81565b919050565b6000604051905090565b600067ffffffffffffffff821115612bda57612bd9612fe8565b5b612be38261302b565b9050602081019050919050565b600067ffffffffffffffff821115612c0b57612c0a612fe8565b5b612c148261302b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c8f82612e03565b9150612c9a83612e03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ccf57612cce612f2c565b5b828201905092915050565b6000612ce582612e03565b9150612cf083612e03565b925082612d0057612cff612f5b565b5b828204905092915050565b6000612d1682612e03565b9150612d2183612e03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d5a57612d59612f2c565b5b828202905092915050565b6000612d7082612e03565b9150612d7b83612e03565b925082821015612d8e57612d8d612f2c565b5b828203905092915050565b6000612da482612de3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e3a578082015181840152602081019050612e1f565b83811115612e49576000848401525b50505050565b60006002820490506001821680612e6757607f821691505b60208210811415612e7b57612e7a612f8a565b5b50919050565b612e8a8261302b565b810181811067ffffffffffffffff82111715612ea957612ea8612fe8565b5b80604052505050565b6000612ebd82612e03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef057612eef612f2c565b5b600182019050919050565b6000612f0682612e03565b9150612f1183612e03565b925082612f2157612f20612f5b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57686974656c69737473616c65206e6f74206c69766500000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f61726520796f752077686974656c737465640000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6132f881612d99565b811461330357600080fd5b50565b61330f81612dab565b811461331a57600080fd5b50565b61332681612db7565b811461333157600080fd5b50565b61333d81612e03565b811461334857600080fd5b5056fea2646970667358221220b149bd6228e72df57cfbb6776fa365072a5a915f5fcaa219d646c2da2412697864736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063c6a91b42116100a0578063d5abeb011161006f578063d5abeb01146106a7578063d6effa68146106d2578063e985e9c5146106fb578063f2fde38b14610738578063fa7b951314610761576101ee565b8063c6a91b42146105e9578063c86d679e14610614578063c87b56dd1461063f578063d547cfb71461067c576101ee565b806395d89b41116100dc57806395d89b41146105435780639e9fcffc1461056e578063a22cb46514610597578063b88d4fde146105c0576101ee565b80636352211e1461048757806370a08231146104c4578063715018a6146105015780638da5cb5b14610518576101ee565b80631e84c413116101855780633ccfd60b116101545780633ccfd60b146103f557806342842e0e1461040c5780634b53ad901461043557806355f804b31461045e576101ee565b80631e84c4131461035c57806323b872dd1461038757806328cad13d146103b057806337bec223146103d9576101ee565b8063081812fc116101c1578063081812fc146102a2578063095ea7b3146102df57806318160ddd146103085780631919fed714610333576101ee565b806301ffc9a7146101f357806302e001ef1461023057806306fdde031461024c57806307e89ec014610277575b600080fd5b3480156101ff57600080fd5b5061021a600480360381019061021591906124a0565b61078a565b60405161022791906129c2565b60405180910390f35b61024a60048036038101906102459190612543565b61081c565b005b34801561025857600080fd5b506102616108c7565b60405161026e91906129dd565b60405180910390f35b34801561028357600080fd5b5061028c610959565b6040516102999190612b7f565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612543565b61095f565b6040516102d6919061295b565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190612433565b6109de565b005b34801561031457600080fd5b5061031d610b22565b60405161032a9190612b7f565b60405180910390f35b34801561033f57600080fd5b5061035a60048036038101906103559190612543565b610b39565b005b34801561036857600080fd5b50610371610b4b565b60405161037e91906129c2565b60405180910390f35b34801561039357600080fd5b506103ae60048036038101906103a9919061231d565b610b5e565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612473565b610e83565b005b6103f360048036038101906103ee9190612543565b610ea8565b005b34801561040157600080fd5b5061040a610fab565b005b34801561041857600080fd5b50610433600480360381019061042e919061231d565b611015565b005b34801561044157600080fd5b5061045c60048036038101906104579190612570565b611035565b005b34801561046a57600080fd5b50610485600480360381019061048091906124fa565b6110e5565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612543565b611107565b6040516104bb919061295b565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e691906122b0565b611119565b6040516104f89190612b7f565b60405180910390f35b34801561050d57600080fd5b506105166111d2565b005b34801561052457600080fd5b5061052d6111e6565b60405161053a919061295b565b60405180910390f35b34801561054f57600080fd5b50610558611210565b60405161056591906129dd565b60405180910390f35b34801561057a57600080fd5b5061059560048036038101906105909190612543565b6112a2565b005b3480156105a357600080fd5b506105be60048036038101906105b991906123f3565b6112b4565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612370565b61142c565b005b3480156105f557600080fd5b506105fe61149f565b60405161060b9190612b7f565b60405180910390f35b34801561062057600080fd5b506106296114a5565b60405161063691906129c2565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612543565b6114b8565b60405161067391906129dd565b60405180910390f35b34801561068857600080fd5b50610691611534565b60405161069e91906129dd565b60405180910390f35b3480156106b357600080fd5b506106bc6115c2565b6040516106c99190612b7f565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612473565b6115c8565b005b34801561070757600080fd5b50610722600480360381019061071d91906122dd565b6115ed565b60405161072f91906129c2565b60405180910390f35b34801561074457600080fd5b5061075f600480360381019061075a91906122b0565b611681565b005b34801561076d57600080fd5b5061078860048036038101906107839190612473565b611705565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108155750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e60019054906101000a900460ff1661086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906129ff565b60405180910390fd5b600e60009054906101000a900460ff166108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190612a3f565b60405180910390fd5b6108c4338261172a565b50565b6060600280546108d690612e4f565b80601f016020809104026020016040519081016040528092919081815260200182805461090290612e4f565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600d5481565b600061096a82611748565b6109a0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611107565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0a6117a7565b73ffffffffffffffffffffffffffffffffffffffff1614610a6d57610a3681610a316117a7565b6115ed565b610a6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610b2c6117af565b6001546000540303905090565b610b416117b8565b80600d8190555050565b600e60029054906101000a900460ff1681565b6000610b6982611836565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bd0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bdc84611904565b91509150610bf28187610bed6117a7565b61192b565b610c3e57610c0786610c026117a7565b6115ed565b610c3d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ca5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cb2868686600161196f565b8015610cbd57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d8b85610d67888887611975565b7c02000000000000000000000000000000000000000000000000000000001761199d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e13576000600185019050600060046000838152602001908152602001600020541415610e11576000548114610e10578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e7b86868660016119c8565b505050505050565b610e8b6117b8565b80600e60026101000a81548160ff02191690831515021790555050565b600e60029054906101000a900460ff16610ef7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eee90612b5f565b60405180910390fd5b600b5481610f03610b22565b610f0d9190612c84565b1115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612a9f565b60405180910390fd5b3481600d54610f5d9190612d0b565b1115610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590612b1f565b60405180910390fd5b610fa8338261172a565b50565b610fb36117b8565b60026009541415610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090612b3f565b60405180910390fd5b600260098190555061100b33476119ce565b6001600981905550565b6110308383836040518060200160405280600081525061142c565b505050565b61103d6117b8565b60008211611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790612aff565b60405180910390fd5b600b548261108c610b22565b6110969190612c84565b11156110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce90612a9f565b60405180910390fd5b6110e1818361172a565b5050565b6110ed6117b8565b80600a90805190602001906111039291906120c4565b5050565b600061111282611836565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611181576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111da6117b8565b6111e46000611ac2565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461121f90612e4f565b80601f016020809104026020016040519081016040528092919081815260200182805461124b90612e4f565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b5050505050905090565b6112aa6117b8565b80600c8190555050565b6112bc6117a7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611321576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061132e6117a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113db6117a7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161142091906129c2565b60405180910390a35050565b611437848484610b5e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114995761146284848484611b88565b611498576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b600e60019054906101000a900460ff1681565b60606114c382611748565b611502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f990612adf565b60405180910390fd5b600a61150d83611ce8565b60405160200161151e92919061290c565b6040516020818303038152906040529050919050565b600a805461154190612e4f565b80601f016020809104026020016040519081016040528092919081815260200182805461156d90612e4f565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b505050505081565b600b5481565b6115d06117b8565b80600e60016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116896117b8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f090612a1f565b60405180910390fd5b61170281611ac2565b50565b61170d6117b8565b80600e60006101000a81548160ff02191690831515021790555050565b611744828260405180602001604052806000815250611e49565b5050565b6000816117536117af565b11158015611762575060005482105b80156117a0575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6117c0611ee6565b73ffffffffffffffffffffffffffffffffffffffff166117de6111e6565b73ffffffffffffffffffffffffffffffffffffffff1614611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612abf565b60405180910390fd5b565b600080829050806118456117af565b116118cd576000548110156118cc5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118ca575b60008114156118c0576004600083600190039350838152602001908152602001600020549050611895565b80925050506118ff565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861198c868684611eee565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0890612a7f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a3790612946565b60006040518083038185875af1925050503d8060008114611a74576040519150601f19603f3d011682016040523d82523d6000602084013e611a79565b606091505b5050905080611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490612a5f565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bae6117a7565b8786866040518563ffffffff1660e01b8152600401611bd09493929190612976565b602060405180830381600087803b158015611bea57600080fd5b505af1925050508015611c1b57506040513d601f19601f82011682018060405250810190611c1891906124cd565b60015b611c95573d8060008114611c4b576040519150601f19603f3d011682016040523d82523d6000602084013e611c50565b606091505b50600081511415611c8d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611d30576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e44565b600082905060005b60008214611d62578080611d4b90612eb2565b915050600a82611d5b9190612cda565b9150611d38565b60008167ffffffffffffffff811115611d7e57611d7d612fe8565b5b6040519080825280601f01601f191660200182016040528015611db05781602001600182028036833780820191505090505b5090505b60008514611e3d57600182611dc99190612d65565b9150600a85611dd89190612efb565b6030611de49190612c84565b60f81b818381518110611dfa57611df9612fb9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e369190612cda565b9450611db4565b8093505050505b919050565b611e538383611ef7565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ee157600080549050600083820390505b611e936000868380600101945086611b88565b611ec9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e80578160005414611ede57600080fd5b50505b505050565b600033905090565b60009392505050565b6000805490506000821415611f38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f45600084838561196f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fbc83611fad6000866000611975565b611fb6856120b4565b1761199d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461205d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612022565b506000821415612099576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506120af60008483856119c8565b505050565b60006001821460e11b9050919050565b8280546120d090612e4f565b90600052602060002090601f0160209004810192826120f25760008555612139565b82601f1061210b57805160ff1916838001178555612139565b82800160010185558215612139579182015b8281111561213857825182559160200191906001019061211d565b5b509050612146919061214a565b5090565b5b8082111561216357600081600090555060010161214b565b5090565b600061217a61217584612bbf565b612b9a565b9050828152602081018484840111156121965761219561301c565b5b6121a1848285612e0d565b509392505050565b60006121bc6121b784612bf0565b612b9a565b9050828152602081018484840111156121d8576121d761301c565b5b6121e3848285612e0d565b509392505050565b6000813590506121fa816132ef565b92915050565b60008135905061220f81613306565b92915050565b6000813590506122248161331d565b92915050565b6000815190506122398161331d565b92915050565b600082601f83011261225457612253613017565b5b8135612264848260208601612167565b91505092915050565b600082601f83011261228257612281613017565b5b81356122928482602086016121a9565b91505092915050565b6000813590506122aa81613334565b92915050565b6000602082840312156122c6576122c5613026565b5b60006122d4848285016121eb565b91505092915050565b600080604083850312156122f4576122f3613026565b5b6000612302858286016121eb565b9250506020612313858286016121eb565b9150509250929050565b60008060006060848603121561233657612335613026565b5b6000612344868287016121eb565b9350506020612355868287016121eb565b92505060406123668682870161229b565b9150509250925092565b6000806000806080858703121561238a57612389613026565b5b6000612398878288016121eb565b94505060206123a9878288016121eb565b93505060406123ba8782880161229b565b925050606085013567ffffffffffffffff8111156123db576123da613021565b5b6123e78782880161223f565b91505092959194509250565b6000806040838503121561240a57612409613026565b5b6000612418858286016121eb565b925050602061242985828601612200565b9150509250929050565b6000806040838503121561244a57612449613026565b5b6000612458858286016121eb565b92505060206124698582860161229b565b9150509250929050565b60006020828403121561248957612488613026565b5b600061249784828501612200565b91505092915050565b6000602082840312156124b6576124b5613026565b5b60006124c484828501612215565b91505092915050565b6000602082840312156124e3576124e2613026565b5b60006124f18482850161222a565b91505092915050565b6000602082840312156125105761250f613026565b5b600082013567ffffffffffffffff81111561252e5761252d613021565b5b61253a8482850161226d565b91505092915050565b60006020828403121561255957612558613026565b5b60006125678482850161229b565b91505092915050565b6000806040838503121561258757612586613026565b5b60006125958582860161229b565b92505060206125a6858286016121eb565b9150509250929050565b6125b981612d99565b82525050565b6125c881612dab565b82525050565b60006125d982612c36565b6125e38185612c4c565b93506125f3818560208601612e1c565b6125fc8161302b565b840191505092915050565b600061261282612c41565b61261c8185612c68565b935061262c818560208601612e1c565b6126358161302b565b840191505092915050565b600061264b82612c41565b6126558185612c79565b9350612665818560208601612e1c565b80840191505092915050565b6000815461267e81612e4f565b6126888186612c79565b945060018216600081146126a357600181146126b4576126e7565b60ff198316865281860193506126e7565b6126bd85612c21565b60005b838110156126df578154818901526001820191506020810190506126c0565b838801955050505b50505092915050565b60006126fd601683612c68565b91506127088261303c565b602082019050919050565b6000612720602683612c68565b915061272b82613065565b604082019050919050565b6000612743601283612c68565b915061274e826130b4565b602082019050919050565b6000612766603a83612c68565b9150612771826130dd565b604082019050919050565b6000612789601d83612c68565b91506127948261312c565b602082019050919050565b60006127ac601783612c68565b91506127b782613155565b602082019050919050565b60006127cf600583612c79565b91506127da8261317e565b600582019050919050565b60006127f2602083612c68565b91506127fd826131a7565b602082019050919050565b6000612815602f83612c68565b9150612820826131d0565b604082019050919050565b6000612838600083612c5d565b91506128438261321f565b600082019050919050565b600061285b601383612c68565b915061286682613222565b602082019050919050565b600061287e601883612c68565b91506128898261324b565b602082019050919050565b60006128a1601f83612c68565b91506128ac82613274565b602082019050919050565b60006128c4601783612c68565b91506128cf8261329d565b602082019050919050565b60006128e7600183612c79565b91506128f2826132c6565b600182019050919050565b61290681612e03565b82525050565b60006129188285612671565b9150612923826128da565b915061292f8284612640565b915061293a826127c2565b91508190509392505050565b60006129518261282b565b9150819050919050565b600060208201905061297060008301846125b0565b92915050565b600060808201905061298b60008301876125b0565b61299860208301866125b0565b6129a560408301856128fd565b81810360608301526129b781846125ce565b905095945050505050565b60006020820190506129d760008301846125bf565b92915050565b600060208201905081810360008301526129f78184612607565b905092915050565b60006020820190508181036000830152612a18816126f0565b9050919050565b60006020820190508181036000830152612a3881612713565b9050919050565b60006020820190508181036000830152612a5881612736565b9050919050565b60006020820190508181036000830152612a7881612759565b9050919050565b60006020820190508181036000830152612a988161277c565b9050919050565b60006020820190508181036000830152612ab88161279f565b9050919050565b60006020820190508181036000830152612ad8816127e5565b9050919050565b60006020820190508181036000830152612af881612808565b9050919050565b60006020820190508181036000830152612b188161284e565b9050919050565b60006020820190508181036000830152612b3881612871565b9050919050565b60006020820190508181036000830152612b5881612894565b9050919050565b60006020820190508181036000830152612b78816128b7565b9050919050565b6000602082019050612b9460008301846128fd565b92915050565b6000612ba4612bb5565b9050612bb08282612e81565b919050565b6000604051905090565b600067ffffffffffffffff821115612bda57612bd9612fe8565b5b612be38261302b565b9050602081019050919050565b600067ffffffffffffffff821115612c0b57612c0a612fe8565b5b612c148261302b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c8f82612e03565b9150612c9a83612e03565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ccf57612cce612f2c565b5b828201905092915050565b6000612ce582612e03565b9150612cf083612e03565b925082612d0057612cff612f5b565b5b828204905092915050565b6000612d1682612e03565b9150612d2183612e03565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d5a57612d59612f2c565b5b828202905092915050565b6000612d7082612e03565b9150612d7b83612e03565b925082821015612d8e57612d8d612f2c565b5b828203905092915050565b6000612da482612de3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e3a578082015181840152602081019050612e1f565b83811115612e49576000848401525b50505050565b60006002820490506001821680612e6757607f821691505b60208210811415612e7b57612e7a612f8a565b5b50919050565b612e8a8261302b565b810181811067ffffffffffffffff82111715612ea957612ea8612fe8565b5b80604052505050565b6000612ebd82612e03565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612ef057612eef612f2c565b5b600182019050919050565b6000612f0682612e03565b9150612f1183612e03565b925082612f2157612f20612f5b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57686974656c69737473616c65206e6f74206c69766500000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f61726520796f752077686974656c737465640000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6132f881612d99565b811461330357600080fd5b50565b61330f81612dab565b811461331a57600080fd5b50565b61332681612db7565b811461333157600080fd5b50565b61333d81612e03565b811461334857600080fd5b5056fea2646970667358221220b149bd6228e72df57cfbb6776fa365072a5a915f5fcaa219d646c2da2412697864736f6c63430008070033
Deployed Bytecode Sourcemap
68344:3072:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35874:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69265:252;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36776:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68586:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43259:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42700:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32527:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71013:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68725:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46966:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70683:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68844:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71271:142;;;;;;;;;;;;;:::i;:::-;;49879:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69748:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69525:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38169:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33711:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16622:103;;;;;;;;;;;;;:::i;:::-;;15974:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36952:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71134:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43817:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50662:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68545:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68679:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70224:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68473:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68509:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70839:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44282:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16880:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70065:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35874:639;35959:4;36298:10;36283:25;;:11;:25;;;;:102;;;;36375:10;36360:25;;:11;:25;;;;36283:102;:179;;;;36452:10;36437:25;;:11;:25;;;;36283:179;36263:199;;35874:639;;;:::o;69265:252::-;69360:21;;;;;;;;;;;69352:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69424:19;;;;;;;;;;;69416:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;69474:37;69484:10;69496:14;69474:9;:37::i;:::-;69265:252;:::o;36776:100::-;36830:13;36863:5;36856:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36776:100;:::o;68586:47::-;;;;:::o;43259:218::-;43335:7;43360:16;43368:7;43360;:16::i;:::-;43355:64;;43385:34;;;;;;;;;;;;;;43355:64;43439:15;:24;43455:7;43439:24;;;;;;;;;;;:30;;;;;;;;;;;;43432:37;;43259:218;;;:::o;42700:400::-;42781:13;42797:16;42805:7;42797;:16::i;:::-;42781:32;;42853:5;42830:28;;:19;:17;:19::i;:::-;:28;;;42826:175;;42878:44;42895:5;42902:19;:17;:19::i;:::-;42878:16;:44::i;:::-;42873:128;;42950:35;;;;;;;;;;;;;;42873:128;42826:175;43046:2;43013:15;:24;43029:7;43013:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43084:7;43080:2;43064:28;;43073:5;43064:28;;;;;;;;;;;;42770:330;42700:400;;:::o;32527:323::-;32588:7;32816:15;:13;:15::i;:::-;32801:12;;32785:13;;:28;:46;32778:53;;32527:323;:::o;71013:115::-;15860:13;:11;:13::i;:::-;71116:6:::1;71096:17;:26;;;;71013:115:::0;:::o;68725:37::-;;;;;;;;;;;;;:::o;46966:2817::-;47100:27;47130;47149:7;47130:18;:27::i;:::-;47100:57;;47215:4;47174:45;;47190:19;47174:45;;;47170:86;;47228:28;;;;;;;;;;;;;;47170:86;47270:27;47299:23;47326:35;47353:7;47326:26;:35::i;:::-;47269:92;;;;47461:68;47486:15;47503:4;47509:19;:17;:19::i;:::-;47461:24;:68::i;:::-;47456:180;;47549:43;47566:4;47572:19;:17;:19::i;:::-;47549:16;:43::i;:::-;47544:92;;47601:35;;;;;;;;;;;;;;47544:92;47456:180;47667:1;47653:16;;:2;:16;;;47649:52;;;47678:23;;;;;;;;;;;;;;47649:52;47714:43;47736:4;47742:2;47746:7;47755:1;47714:21;:43::i;:::-;47850:15;47847:160;;;47990:1;47969:19;47962:30;47847:160;48387:18;:24;48406:4;48387:24;;;;;;;;;;;;;;;;48385:26;;;;;;;;;;;;48456:18;:22;48475:2;48456:22;;;;;;;;;;;;;;;;48454:24;;;;;;;;;;;48778:146;48815:2;48864:45;48879:4;48885:2;48889:19;48864:14;:45::i;:::-;28926:8;48836:73;48778:18;:146::i;:::-;48749:17;:26;48767:7;48749:26;;;;;;;;;;;:175;;;;49095:1;28926:8;49044:19;:47;:52;49040:627;;;49117:19;49149:1;49139:7;:11;49117:33;;49306:1;49272:17;:30;49290:11;49272:30;;;;;;;;;;;;:35;49268:384;;;49410:13;;49395:11;:28;49391:242;;49590:19;49557:17;:30;49575:11;49557:30;;;;;;;;;;;:52;;;;49391:242;49268:384;49098:569;49040:627;49714:7;49710:2;49695:27;;49704:4;49695:27;;;;;;;;;;;;49733:42;49754:4;49760:2;49764:7;49773:1;49733:20;:42::i;:::-;47089:2694;;;46966:2817;;;:::o;70683:148::-;15860:13;:11;:13::i;:::-;70806:19:::1;70785:18;;:40;;;;;;;;;;;;;;;;;;70683:148:::0;:::o;68844:415::-;68930:18;;;;;;;;;;;68922:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;69033:9;;69015:14;68999:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;68983:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;69152:9;69133:14;69113:17;;:34;;;;:::i;:::-;69112:49;;69090:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;69216:37;69226:10;69238:14;69216:9;:37::i;:::-;68844:415;:::o;71271:142::-;15860:13;:11;:13::i;:::-;12899:1:::1;13497:7;;:19;;13489:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12899:1;13630:7;:18;;;;71346:61:::2;71372:10;71385:21;71346:17;:61::i;:::-;12855:1:::1;13809:7;:22;;;;71271:142::o:0;49879:185::-;50017:39;50034:4;50040:2;50044:7;50017:39;;;;;;;;;;;;:16;:39::i;:::-;49879:185;;;:::o;69748:311::-;15860:13;:11;:13::i;:::-;69870:1:::1;69853:14;:18;69837:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;69965:9;;69947:14;69931:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;69915:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;70022:31;70032:4;70038:14;70022:9;:31::i;:::-;69748:311:::0;;:::o;69525:108::-;15860:13;:11;:13::i;:::-;69620:7:::1;69605:12;:22;;;;;;;;;;;;:::i;:::-;;69525:108:::0;:::o;38169:152::-;38241:7;38284:27;38303:7;38284:18;:27::i;:::-;38261:52;;38169:152;;;:::o;33711:233::-;33783:7;33824:1;33807:19;;:5;:19;;;33803:60;;;33835:28;;;;;;;;;;;;;;33803:60;27870:13;33881:18;:25;33900:5;33881:25;;;;;;;;;;;;;;;;:55;33874:62;;33711:233;;;:::o;16622:103::-;15860:13;:11;:13::i;:::-;16687:30:::1;16714:1;16687:18;:30::i;:::-;16622:103::o:0;15974:87::-;16020:7;16047:6;;;;;;;;;;;16040:13;;15974:87;:::o;36952:104::-;37008:13;37041:7;37034:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36952:104;:::o;71134:127::-;15860:13;:11;:13::i;:::-;71249:6:::1;71230:16;:25;;;;71134:127:::0;:::o;43817:308::-;43928:19;:17;:19::i;:::-;43916:31;;:8;:31;;;43912:61;;;43956:17;;;;;;;;;;;;;;43912:61;44038:8;43986:18;:39;44005:19;:17;:19::i;:::-;43986:39;;;;;;;;;;;;;;;:49;44026:8;43986:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44098:8;44062:55;;44077:19;:17;:19::i;:::-;44062:55;;;44108:8;44062:55;;;;;;:::i;:::-;;;;;;;;43817:308;;:::o;50662:399::-;50829:31;50842:4;50848:2;50852:7;50829:12;:31::i;:::-;50893:1;50875:2;:14;;;:19;50871:183;;50914:56;50945:4;50951:2;50955:7;50964:5;50914:30;:56::i;:::-;50909:145;;50998:40;;;;;;;;;;;;;;50909:145;50871:183;50662:399;;;;:::o;68545:36::-;;;;:::o;68679:41::-;;;;;;;;;;;;;:::o;70224:312::-;70320:13;70361:17;70369:8;70361:7;:17::i;:::-;70345:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;70481:12;70500:19;:8;:17;:19::i;:::-;70464:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70450:80;;70224:312;;;:::o;68473:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68509:31::-;;;;:::o;70839:168::-;15860:13;:11;:13::i;:::-;70976:22:::1;70952:21;;:46;;;;;;;;;;;;;;;;;;70839:168:::0;:::o;44282:164::-;44379:4;44403:18;:25;44422:5;44403:25;;;;;;;;;;;;;;;:35;44429:8;44403:35;;;;;;;;;;;;;;;;;;;;;;;;;44396:42;;44282:164;;;;:::o;16880:201::-;15860:13;:11;:13::i;:::-;16989:1:::1;16969:22;;:8;:22;;;;16961:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17045:28;17064:8;17045:18;:28::i;:::-;16880:201:::0;:::o;70065:153::-;15860:13;:11;:13::i;:::-;70192:20:::1;70170:19;;:42;;;;;;;;;;;;;;;;;;70065:153:::0;:::o;60302:112::-;60379:27;60389:2;60393:8;60379:27;;;;;;;;;;;;:9;:27::i;:::-;60302:112;;:::o;44704:282::-;44769:4;44825:7;44806:15;:13;:15::i;:::-;:26;;:66;;;;;44859:13;;44849:7;:23;44806:66;:153;;;;;44958:1;28646:8;44910:17;:26;44928:7;44910:26;;;;;;;;;;;;:44;:49;44806:153;44786:173;;44704:282;;;:::o;66470:105::-;66530:7;66557:10;66550:17;;66470:105;:::o;69641:101::-;69706:7;69733:1;69726:8;;69641:101;:::o;16139:132::-;16214:12;:10;:12::i;:::-;16203:23;;:7;:5;:7::i;:::-;:23;;;16195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16139:132::o;39324:1275::-;39391:7;39411:12;39426:7;39411:22;;39494:4;39475:15;:13;:15::i;:::-;:23;39471:1061;;39528:13;;39521:4;:20;39517:1015;;;39566:14;39583:17;:23;39601:4;39583:23;;;;;;;;;;;;39566:40;;39700:1;28646:8;39672:6;:24;:29;39668:845;;;40337:113;40354:1;40344:6;:11;40337:113;;;40397:17;:25;40415:6;;;;;;;40397:25;;;;;;;;;;;;40388:34;;40337:113;;;40483:6;40476:13;;;;;;39668:845;39543:989;39517:1015;39471:1061;40560:31;;;;;;;;;;;;;;39324:1275;;;;:::o;45867:479::-;45969:27;45998:23;46039:38;46080:15;:24;46096:7;46080:24;;;;;;;;;;;46039:65;;46251:18;46228:41;;46308:19;46302:26;46283:45;;46213:126;45867:479;;;:::o;45095:659::-;45244:11;45409:16;45402:5;45398:28;45389:37;;45569:16;45558:9;45554:32;45541:45;;45719:15;45708:9;45705:30;45697:5;45686:9;45683:20;45680:56;45670:66;;45095:659;;;;;:::o;51723:159::-;;;;;:::o;65779:311::-;65914:7;65934:16;29050:3;65960:19;:41;;65934:68;;29050:3;66028:31;66039:4;66045:2;66049:9;66028:10;:31::i;:::-;66020:40;;:62;;66013:69;;;65779:311;;;;;:::o;41147:450::-;41227:14;41395:16;41388:5;41384:28;41375:37;;41572:5;41558:11;41533:23;41529:41;41526:52;41519:5;41516:63;41506:73;;41147:450;;;;:::o;52547:158::-;;;;;:::o;5028:317::-;5143:6;5118:21;:31;;5110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5197:12;5215:9;:14;;5237:6;5215:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5196:52;;;5267:7;5259:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5099:246;5028:317;;:::o;17241:191::-;17315:16;17334:6;;;;;;;;;;;17315:25;;17360:8;17351:6;;:17;;;;;;;;;;;;;;;;;;17415:8;17384:40;;17405:8;17384:40;;;;;;;;;;;;17304:128;17241:191;:::o;53145:716::-;53308:4;53354:2;53329:45;;;53375:19;:17;:19::i;:::-;53396:4;53402:7;53411:5;53329:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53325:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53629:1;53612:6;:13;:18;53608:235;;;53658:40;;;;;;;;;;;;;;53608:235;53801:6;53795:13;53786:6;53782:2;53778:15;53771:38;53325:529;53498:54;;;53488:64;;;:6;:64;;;;53481:71;;;53145:716;;;;;;:::o;467:723::-;523:13;753:1;744:5;:10;740:53;;;771:10;;;;;;;;;;;;;;;;;;;;;740:53;803:12;818:5;803:20;;834:14;859:78;874:1;866:4;:9;859:78;;892:8;;;;;:::i;:::-;;;;923:2;915:10;;;;;:::i;:::-;;;859:78;;;947:19;979:6;969:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;947:39;;997:154;1013:1;1004:5;:10;997:154;;1041:1;1031:11;;;;;:::i;:::-;;;1108:2;1100:5;:10;;;;:::i;:::-;1087:2;:24;;;;:::i;:::-;1074:39;;1057:6;1064;1057:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1137:2;1128:11;;;;;:::i;:::-;;;997:154;;;1175:6;1161:21;;;;;467:723;;;;:::o;59529:689::-;59660:19;59666:2;59670:8;59660:5;:19::i;:::-;59739:1;59721:2;:14;;;:19;59717:483;;59761:11;59775:13;;59761:27;;59807:13;59829:8;59823:3;:14;59807:30;;59856:233;59887:62;59926:1;59930:2;59934:7;;;;;;59943:5;59887:30;:62::i;:::-;59882:167;;59985:40;;;;;;;;;;;;;;59882:167;60084:3;60076:5;:11;59856:233;;60171:3;60154:13;;:20;60150:34;;60176:8;;;60150:34;59742:458;;59717:483;59529:689;;;:::o;14525:98::-;14578:7;14605:10;14598:17;;14525:98;:::o;65480:147::-;65617:6;65480:147;;;;;:::o;54323:2454::-;54396:20;54419:13;;54396:36;;54459:1;54447:8;:13;54443:44;;;54469:18;;;;;;;;;;;;;;54443:44;54500:61;54530:1;54534:2;54538:12;54552:8;54500:21;:61::i;:::-;55044:1;28008:2;55014:1;:26;;55013:32;55001:8;:45;54975:18;:22;54994:2;54975:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55323:139;55360:2;55414:33;55437:1;55441:2;55445:1;55414:14;:33::i;:::-;55381:30;55402:8;55381:20;:30::i;:::-;:66;55323:18;:139::i;:::-;55289:17;:31;55307:12;55289:31;;;;;;;;;;;:173;;;;55479:16;55510:11;55539:8;55524:12;:23;55510:37;;55794:16;55790:2;55786:25;55774:37;;56166:12;56126:8;56085:1;56023:25;55964:1;55903;55876:335;56291:1;56277:12;56273:20;56231:346;56332:3;56323:7;56320:16;56231:346;;56550:7;56540:8;56537:1;56510:25;56507:1;56504;56499:59;56385:1;56376:7;56372:15;56361:26;;56231:346;;;56235:77;56622:1;56610:8;:13;56606:45;;;56632:19;;;;;;;;;;;;;;56606:45;56684:3;56668:13;:19;;;;54749:1950;;56709:60;56738:1;56742:2;56746:12;56760:8;56709:20;:60::i;:::-;54385:2392;54323:2454;;:::o;41699:324::-;41769:14;42002:1;41992:8;41989:15;41963:24;41959:46;41949:56;;41699:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:400::-;12592:3;12613:84;12695:1;12690:3;12613:84;:::i;:::-;12606:91;;12706:93;12795:3;12706:93;:::i;:::-;12824:1;12819:3;12815:11;12808:18;;12432:400;;;:::o;12838:366::-;12980:3;13001:67;13065:2;13060:3;13001:67;:::i;:::-;12994:74;;13077:93;13166:3;13077:93;:::i;:::-;13195:2;13190:3;13186:12;13179:19;;12838:366;;;:::o;13210:::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:398::-;13741:3;13762:83;13843:1;13838:3;13762:83;:::i;:::-;13755:90;;13854:93;13943:3;13854:93;:::i;:::-;13972:1;13967:3;13963:11;13956:18;;13582:398;;;:::o;13986:366::-;14128:3;14149:67;14213:2;14208:3;14149:67;:::i;:::-;14142:74;;14225:93;14314:3;14225:93;:::i;:::-;14343:2;14338:3;14334:12;14327:19;;13986:366;;;:::o;14358:::-;14500:3;14521:67;14585:2;14580:3;14521:67;:::i;:::-;14514:74;;14597:93;14686:3;14597:93;:::i;:::-;14715:2;14710:3;14706:12;14699:19;;14358:366;;;:::o;14730:::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:::-;15244:3;15265:67;15329:2;15324:3;15265:67;:::i;:::-;15258:74;;15341:93;15430:3;15341:93;:::i;:::-;15459:2;15454:3;15450:12;15443:19;;15102:366;;;:::o;15474:400::-;15634:3;15655:84;15737:1;15732:3;15655:84;:::i;:::-;15648:91;;15748:93;15837:3;15748:93;:::i;:::-;15866:1;15861:3;15857:11;15850:18;;15474:400;;;:::o;15880:118::-;15967:24;15985:5;15967:24;:::i;:::-;15962:3;15955:37;15880:118;;:::o;16004:961::-;16383:3;16405:92;16493:3;16484:6;16405:92;:::i;:::-;16398:99;;16514:148;16658:3;16514:148;:::i;:::-;16507:155;;16679:95;16770:3;16761:6;16679:95;:::i;:::-;16672:102;;16791:148;16935:3;16791:148;:::i;:::-;16784:155;;16956:3;16949:10;;16004:961;;;;;:::o;16971:379::-;17155:3;17177:147;17320:3;17177:147;:::i;:::-;17170:154;;17341:3;17334:10;;16971:379;;;:::o;17356:222::-;17449:4;17487:2;17476:9;17472:18;17464:26;;17500:71;17568:1;17557:9;17553:17;17544:6;17500:71;:::i;:::-;17356:222;;;;:::o;17584:640::-;17779:4;17817:3;17806:9;17802:19;17794:27;;17831:71;17899:1;17888:9;17884:17;17875:6;17831:71;:::i;:::-;17912:72;17980:2;17969:9;17965:18;17956:6;17912:72;:::i;:::-;17994;18062:2;18051:9;18047:18;18038:6;17994:72;:::i;:::-;18113:9;18107:4;18103:20;18098:2;18087:9;18083:18;18076:48;18141:76;18212:4;18203:6;18141:76;:::i;:::-;18133:84;;17584:640;;;;;;;:::o;18230:210::-;18317:4;18355:2;18344:9;18340:18;18332:26;;18368:65;18430:1;18419:9;18415:17;18406:6;18368:65;:::i;:::-;18230:210;;;;:::o;18446:313::-;18559:4;18597:2;18586:9;18582:18;18574:26;;18646:9;18640:4;18636:20;18632:1;18621:9;18617:17;18610:47;18674:78;18747:4;18738:6;18674:78;:::i;:::-;18666:86;;18446:313;;;;:::o;18765:419::-;18931:4;18969:2;18958:9;18954:18;18946:26;;19018:9;19012:4;19008:20;19004:1;18993:9;18989:17;18982:47;19046:131;19172:4;19046:131;:::i;:::-;19038:139;;18765:419;;;:::o;19190:::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:::-;19781:4;19819:2;19808:9;19804:18;19796:26;;19868:9;19862:4;19858:20;19854:1;19843:9;19839:17;19832:47;19896:131;20022:4;19896:131;:::i;:::-;19888:139;;19615:419;;;:::o;20040:::-;20206:4;20244:2;20233:9;20229:18;20221:26;;20293:9;20287:4;20283:20;20279:1;20268:9;20264:17;20257:47;20321:131;20447:4;20321:131;:::i;:::-;20313:139;;20040:419;;;:::o;20465:::-;20631:4;20669:2;20658:9;20654:18;20646:26;;20718:9;20712:4;20708:20;20704:1;20693:9;20689:17;20682:47;20746:131;20872:4;20746:131;:::i;:::-;20738:139;;20465:419;;;:::o;20890:::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;20890:419;;;:::o;21315:::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21315:419;;;:::o;21740:::-;21906:4;21944:2;21933:9;21929:18;21921:26;;21993:9;21987:4;21983:20;21979:1;21968:9;21964:17;21957:47;22021:131;22147:4;22021:131;:::i;:::-;22013:139;;21740:419;;;:::o;22165:::-;22331:4;22369:2;22358:9;22354:18;22346:26;;22418:9;22412:4;22408:20;22404:1;22393:9;22389:17;22382:47;22446:131;22572:4;22446:131;:::i;:::-;22438:139;;22165:419;;;:::o;22590:::-;22756:4;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:131;22997:4;22871:131;:::i;:::-;22863:139;;22590:419;;;:::o;23015:::-;23181:4;23219:2;23208:9;23204:18;23196:26;;23268:9;23262:4;23258:20;23254:1;23243:9;23239:17;23232:47;23296:131;23422:4;23296:131;:::i;:::-;23288:139;;23015:419;;;:::o;23440:::-;23606:4;23644:2;23633:9;23629:18;23621:26;;23693:9;23687:4;23683:20;23679:1;23668:9;23664:17;23657:47;23721:131;23847:4;23721:131;:::i;:::-;23713:139;;23440:419;;;:::o;23865:222::-;23958:4;23996:2;23985:9;23981:18;23973:26;;24009:71;24077:1;24066:9;24062:17;24053:6;24009:71;:::i;:::-;23865:222;;;;:::o;24093:129::-;24127:6;24154:20;;:::i;:::-;24144:30;;24183:33;24211:4;24203:6;24183:33;:::i;:::-;24093:129;;;:::o;24228:75::-;24261:6;24294:2;24288:9;24278:19;;24228:75;:::o;24309:307::-;24370:4;24460:18;24452:6;24449:30;24446:56;;;24482:18;;:::i;:::-;24446:56;24520:29;24542:6;24520:29;:::i;:::-;24512:37;;24604:4;24598;24594:15;24586:23;;24309:307;;;:::o;24622:308::-;24684:4;24774:18;24766:6;24763:30;24760:56;;;24796:18;;:::i;:::-;24760:56;24834:29;24856:6;24834:29;:::i;:::-;24826:37;;24918:4;24912;24908:15;24900:23;;24622:308;;;:::o;24936:141::-;24985:4;25008:3;25000:11;;25031:3;25028:1;25021:14;25065:4;25062:1;25052:18;25044:26;;24936:141;;;:::o;25083:98::-;25134:6;25168:5;25162:12;25152:22;;25083:98;;;:::o;25187:99::-;25239:6;25273:5;25267:12;25257:22;;25187:99;;;:::o;25292:168::-;25375:11;25409:6;25404:3;25397:19;25449:4;25444:3;25440:14;25425:29;;25292:168;;;;:::o;25466:147::-;25567:11;25604:3;25589:18;;25466:147;;;;:::o;25619:169::-;25703:11;25737:6;25732:3;25725:19;25777:4;25772:3;25768:14;25753:29;;25619:169;;;;:::o;25794:148::-;25896:11;25933:3;25918:18;;25794:148;;;;:::o;25948:305::-;25988:3;26007:20;26025:1;26007:20;:::i;:::-;26002:25;;26041:20;26059:1;26041:20;:::i;:::-;26036:25;;26195:1;26127:66;26123:74;26120:1;26117:81;26114:107;;;26201:18;;:::i;:::-;26114:107;26245:1;26242;26238:9;26231:16;;25948:305;;;;:::o;26259:185::-;26299:1;26316:20;26334:1;26316:20;:::i;:::-;26311:25;;26350:20;26368:1;26350:20;:::i;:::-;26345:25;;26389:1;26379:35;;26394:18;;:::i;:::-;26379:35;26436:1;26433;26429:9;26424:14;;26259:185;;;;:::o;26450:348::-;26490:7;26513:20;26531:1;26513:20;:::i;:::-;26508:25;;26547:20;26565:1;26547:20;:::i;:::-;26542:25;;26735:1;26667:66;26663:74;26660:1;26657:81;26652:1;26645:9;26638:17;26634:105;26631:131;;;26742:18;;:::i;:::-;26631:131;26790:1;26787;26783:9;26772:20;;26450:348;;;;:::o;26804:191::-;26844:4;26864:20;26882:1;26864:20;:::i;:::-;26859:25;;26898:20;26916:1;26898:20;:::i;:::-;26893:25;;26937:1;26934;26931:8;26928:34;;;26942:18;;:::i;:::-;26928:34;26987:1;26984;26980:9;26972:17;;26804:191;;;;:::o;27001:96::-;27038:7;27067:24;27085:5;27067:24;:::i;:::-;27056:35;;27001:96;;;:::o;27103:90::-;27137:7;27180:5;27173:13;27166:21;27155:32;;27103:90;;;:::o;27199:149::-;27235:7;27275:66;27268:5;27264:78;27253:89;;27199:149;;;:::o;27354:126::-;27391:7;27431:42;27424:5;27420:54;27409:65;;27354:126;;;:::o;27486:77::-;27523:7;27552:5;27541:16;;27486:77;;;:::o;27569:154::-;27653:6;27648:3;27643;27630:30;27715:1;27706:6;27701:3;27697:16;27690:27;27569:154;;;:::o;27729:307::-;27797:1;27807:113;27821:6;27818:1;27815:13;27807:113;;;27906:1;27901:3;27897:11;27891:18;27887:1;27882:3;27878:11;27871:39;27843:2;27840:1;27836:10;27831:15;;27807:113;;;27938:6;27935:1;27932:13;27929:101;;;28018:1;28009:6;28004:3;28000:16;27993:27;27929:101;27778:258;27729:307;;;:::o;28042:320::-;28086:6;28123:1;28117:4;28113:12;28103:22;;28170:1;28164:4;28160:12;28191:18;28181:81;;28247:4;28239:6;28235:17;28225:27;;28181:81;28309:2;28301:6;28298:14;28278:18;28275:38;28272:84;;;28328:18;;:::i;:::-;28272:84;28093:269;28042:320;;;:::o;28368:281::-;28451:27;28473:4;28451:27;:::i;:::-;28443:6;28439:40;28581:6;28569:10;28566:22;28545:18;28533:10;28530:34;28527:62;28524:88;;;28592:18;;:::i;:::-;28524:88;28632:10;28628:2;28621:22;28411:238;28368:281;;:::o;28655:233::-;28694:3;28717:24;28735:5;28717:24;:::i;:::-;28708:33;;28763:66;28756:5;28753:77;28750:103;;;28833:18;;:::i;:::-;28750:103;28880:1;28873:5;28869:13;28862:20;;28655:233;;;:::o;28894:176::-;28926:1;28943:20;28961:1;28943:20;:::i;:::-;28938:25;;28977:20;28995:1;28977:20;:::i;:::-;28972:25;;29016:1;29006:35;;29021:18;;:::i;:::-;29006:35;29062:1;29059;29055:9;29050:14;;28894:176;;;;:::o;29076:180::-;29124:77;29121:1;29114:88;29221:4;29218:1;29211:15;29245:4;29242:1;29235:15;29262:180;29310:77;29307:1;29300:88;29407:4;29404:1;29397:15;29431:4;29428:1;29421:15;29448:180;29496:77;29493:1;29486:88;29593:4;29590:1;29583:15;29617:4;29614:1;29607:15;29634:180;29682:77;29679:1;29672:88;29779:4;29776:1;29769:15;29803:4;29800:1;29793:15;29820:180;29868:77;29865:1;29858:88;29965:4;29962:1;29955:15;29989:4;29986:1;29979:15;30006:117;30115:1;30112;30105:12;30129:117;30238:1;30235;30228:12;30252:117;30361:1;30358;30351:12;30375:117;30484:1;30481;30474:12;30498:102;30539:6;30590:2;30586:7;30581:2;30574:5;30570:14;30566:28;30556:38;;30498:102;;;:::o;30606:172::-;30746:24;30742:1;30734:6;30730:14;30723:48;30606:172;:::o;30784:225::-;30924:34;30920:1;30912:6;30908:14;30901:58;30993:8;30988:2;30980:6;30976:15;30969:33;30784:225;:::o;31015:168::-;31155:20;31151:1;31143:6;31139:14;31132:44;31015:168;:::o;31189:245::-;31329:34;31325:1;31317:6;31313:14;31306:58;31398:28;31393:2;31385:6;31381:15;31374:53;31189:245;:::o;31440:179::-;31580:31;31576:1;31568:6;31564:14;31557:55;31440:179;:::o;31625:173::-;31765:25;31761:1;31753:6;31749:14;31742:49;31625:173;:::o;31804:155::-;31944:7;31940:1;31932:6;31928:14;31921:31;31804:155;:::o;31965:182::-;32105:34;32101:1;32093:6;32089:14;32082:58;31965:182;:::o;32153:234::-;32293:34;32289:1;32281:6;32277:14;32270:58;32362:17;32357:2;32349:6;32345:15;32338:42;32153:234;:::o;32393:114::-;;:::o;32513:169::-;32653:21;32649:1;32641:6;32637:14;32630:45;32513:169;:::o;32688:174::-;32828:26;32824:1;32816:6;32812:14;32805:50;32688:174;:::o;32868:181::-;33008:33;33004:1;32996:6;32992:14;32985:57;32868:181;:::o;33055:173::-;33195:25;33191:1;33183:6;33179:14;33172:49;33055:173;:::o;33234:151::-;33374:3;33370:1;33362:6;33358:14;33351:27;33234:151;:::o;33391:122::-;33464:24;33482:5;33464:24;:::i;:::-;33457:5;33454:35;33444:63;;33503:1;33500;33493:12;33444:63;33391:122;:::o;33519:116::-;33589:21;33604:5;33589:21;:::i;:::-;33582:5;33579:32;33569:60;;33625:1;33622;33615:12;33569:60;33519:116;:::o;33641:120::-;33713:23;33730:5;33713:23;:::i;:::-;33706:5;33703:34;33693:62;;33751:1;33748;33741:12;33693:62;33641:120;:::o;33767:122::-;33840:24;33858:5;33840:24;:::i;:::-;33833:5;33830:35;33820:63;;33879:1;33876;33869:12;33820:63;33767:122;:::o
Swarm Source
ipfs://b149bd6228e72df57cfbb6776fa365072a5a915f5fcaa219d646c2da24126978
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.