ERC-721
Overview
Max Total Supply
2,065 SHROOMZ
Holders
750
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 SHROOMZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SHROOMZ
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-23 */ /** *Submitted for verification at Etherscan.io on 2022-07-09 */ // SPDX-License-Identifier: MIT // 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.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } pragma solidity ^0.8.0; contract SHROOMZ is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://"; uint256 public maxSupply = 5555; uint256 public MAX_MINTS_PER_TX = 5; uint256 public FREE_MINTS_PER_WALLET = 2; uint256 public PUBLIC_SALE_PRICE = 0.0069 ether; uint256 public TOTAL_FREE_MINTS = 1500; bool public isPublicSaleActive = false; constructor() ERC721A("Shroomz", "SHROOMZ") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens <= maxSupply, "Maximum supply exceeded"); require(numberOfTokens <= MAX_MINTS_PER_TX, "Max per wallet exceeded"); if(totalSupply() + numberOfTokens > TOTAL_FREE_MINTS || numberMinted(msg.sender) + numberOfTokens > FREE_MINTS_PER_WALLET){ require((PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Insufficient ETH sent"); } _safeMint(msg.sender, numberOfTokens); } function _startTokenId() internal view virtual override returns (uint256) { return 0; } function treasuryMint(address[] calldata to_, uint256 quantity_ ) public onlyOwner { require(quantity_ > 0, "Invalid mint amount"); require( totalSupply() + to_.length*quantity_ <= maxSupply, "Maximum supply exceeded"); for (uint256 i = 0; i < to_.length; i++) { _safeMint(to_[i], quantity_); } } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { TOTAL_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } }
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":"FREE_MINTS_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","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":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to_","type":"address[]"},{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600a90816200004a9190620004b8565b506115b3600b556005600c556002600d556618838370f34000600e556105dc600f556000601060006101000a81548160ff0219169083151502179055503480156200009457600080fd5b506040518060400160405280600781526020017f5368726f6f6d7a000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5348524f4f4d5a000000000000000000000000000000000000000000000000008152508160029081620001129190620004b8565b508060039081620001249190620004b8565b50620001356200016b60201b60201c565b60008190555050506200015d620001516200017060201b60201c565b6200017860201b60201c565b60016009819055506200059f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c057607f821691505b602082108103620002d657620002d562000278565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000301565b6200034c868362000301565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000399620003936200038d8462000364565b6200036e565b62000364565b9050919050565b6000819050919050565b620003b58362000378565b620003cd620003c482620003a0565b8484546200030e565b825550505050565b600090565b620003e4620003d5565b620003f1818484620003aa565b505050565b5b8181101562000419576200040d600082620003da565b600181019050620003f7565b5050565b601f82111562000468576200043281620002dc565b6200043d84620002f1565b810160208510156200044d578190505b620004656200045c85620002f1565b830182620003f6565b50505b505050565b600082821c905092915050565b60006200048d600019846008026200046d565b1980831691505092915050565b6000620004a883836200047a565b9150826002028217905092915050565b620004c3826200023e565b67ffffffffffffffff811115620004df57620004de62000249565b5b620004eb8254620002a7565b620004f88282856200041d565b600060209050601f8311600181146200053057600084156200051b578287015190505b6200052785826200049a565b86555062000597565b601f1984166200054086620002dc565b60005b828110156200056a5784890151825560018201915060208501945060208101905062000543565b868310156200058a578489015162000586601f8916826200047a565b8355505b6001600288020188555050505b505050505050565b6132e380620005af6000396000f3fe6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106b4578063d5abeb01146106df578063dc33e6811461070a578063e985e9c514610747578063f2fde38b14610784576101ee565b8063a22cb465146105fa578063b88d4fde14610623578063c6a91b421461064c578063c87b56dd14610677576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055f57806395d89b411461058a5780639e9fcffc146105b5578063a0712d68146105de576101ee565b806355f804b3146104a55780636352211e146104ce57806370a082311461050b578063715018a614610548576101ee565b80631919fed71161018557806328cad13d1161015457806328cad13d14610411578063395f4be61461043a5780633ccfd60b1461046557806342842e0e1461047c576101ee565b80631919fed71461036b5780631e84c4131461039457806323b872dd146103bf57806324e20b18146103e8576101ee565b8063089d4665116101c1578063089d4665146102c3578063095ea7b3146102ee5780630a00ae831461031757806318160ddd14610340576101ee565b806301ffc9a7146101f357806306fdde031461023057806307e89ec01461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061213e565b6107ad565b6040516102279190612186565b60405180910390f35b34801561023c57600080fd5b5061024561083f565b604051610252919061223a565b60405180910390f35b34801561026757600080fd5b506102706108d1565b60405161027d9190612275565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906122bc565b6108d7565b6040516102ba919061232a565b60405180910390f35b3480156102cf57600080fd5b506102d8610953565b6040516102e59190612275565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612371565b610959565b005b34801561032357600080fd5b5061033e600480360381019061033991906122bc565b610a9a565b005b34801561034c57600080fd5b50610355610aac565b6040516103629190612275565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d91906122bc565b610ac3565b005b3480156103a057600080fd5b506103a9610ad5565b6040516103b69190612186565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e191906123b1565b610ae8565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612469565b610e0a565b005b34801561041d57600080fd5b50610438600480360381019061043391906124f5565b610f12565b005b34801561044657600080fd5b5061044f610f37565b60405161045c9190612275565b60405180910390f35b34801561047157600080fd5b5061047a610f3d565b005b34801561048857600080fd5b506104a3600480360381019061049e91906123b1565b610fa6565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612652565b610fc6565b005b3480156104da57600080fd5b506104f560048036038101906104f091906122bc565b610fe1565b604051610502919061232a565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061269b565b610ff3565b60405161053f9190612275565b60405180910390f35b34801561055457600080fd5b5061055d6110ab565b005b34801561056b57600080fd5b506105746110bf565b604051610581919061232a565b60405180910390f35b34801561059657600080fd5b5061059f6110e9565b6040516105ac919061223a565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d791906122bc565b61117b565b005b6105f860048036038101906105f391906122bc565b61118d565b005b34801561060657600080fd5b50610621600480360381019061061c91906126c8565b611311565b005b34801561062f57600080fd5b5061064a600480360381019061064591906127a9565b611488565b005b34801561065857600080fd5b506106616114fb565b60405161066e9190612275565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906122bc565b611501565b6040516106ab919061223a565b60405180910390f35b3480156106c057600080fd5b506106c961159f565b6040516106d6919061223a565b60405180910390f35b3480156106eb57600080fd5b506106f461162d565b6040516107019190612275565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c919061269b565b611633565b60405161073e9190612275565b60405180910390f35b34801561075357600080fd5b5061076e6004803603810190610769919061282c565b611645565b60405161077b9190612186565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a6919061269b565b6116d9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108385750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084e9061289b565b80601f016020809104026020016040519081016040528092919081815260200182805461087a9061289b565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b600e5481565b60006108e28261175c565b610918576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061096482610fe1565b90508073ffffffffffffffffffffffffffffffffffffffff166109856117bb565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576109b1816109ac6117bb565b611645565b6109e7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aa26117c3565b80600f8190555050565b6000610ab6611841565b6001546000540303905090565b610acb6117c3565b80600e8190555050565b601060009054906101000a900460ff1681565b6000610af382611846565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6684611912565b91509150610b7c8187610b776117bb565b611934565b610bc857610b9186610b8c6117bb565b611645565b610bc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8686866001611978565b8015610c4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1485610cf088888761197e565b7c0200000000000000000000000000000000000000000000000000000000176119a6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9a5760006001850190506000600460008381526020019081526020016000205403610d98576000548114610d97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0286868660016119d1565b505050505050565b610e126117c3565b60008111610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612918565b60405180910390fd5b600b548184849050610e679190612967565b610e6f610aac565b610e7991906129c1565b1115610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612a63565b60405180910390fd5b60005b83839050811015610f0c57610ef9848483818110610ede57610edd612a83565b5b9050602002016020810190610ef3919061269b565b836119d7565b8080610f0490612ab2565b915050610ebd565b50505050565b610f1a6117c3565b80601060006101000a81548160ff02191690831515021790555050565b600d5481565b610f456117c3565b600260095403610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190612b46565b60405180910390fd5b6002600981905550610f9c33476119f5565b6001600981905550565b610fc183838360405180602001604052806000815250611488565b505050565b610fce6117c3565b80600a9081610fdd9190612d12565b5050565b6000610fec82611846565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b36117c3565b6110bd6000611ae9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f89061289b565b80601f01602080910402602001604051908101604052809291908181526020018280546111249061289b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b5050505050905090565b6111836117c3565b80600c8190555050565b601060009054906101000a900460ff166111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390612e30565b60405180910390fd5b600b54816111e8610aac565b6111f291906129c1565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612a63565b60405180910390fd5b600c54811115611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90612e9c565b60405180910390fd5b600f5481611284610aac565b61128e91906129c1565b11806112ae5750600d54816112a233611633565b6112ac91906129c1565b115b15611304573481600e546112c29190612967565b1115611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90612f08565b60405180910390fd5b5b61130e33826119d7565b50565b6113196117bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138a6117bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114376117bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147c9190612186565b60405180910390a35050565b611493848484610ae8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f5576114be84848484611baf565b6114f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061150c8261175c565b611542576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061154c611cff565b9050600081510361156c5760405180602001604052806000815250611597565b8061157684611d91565b604051602001611587929190612f64565b6040516020818303038152906040525b915050919050565b600a80546115ac9061289b565b80601f01602080910402602001604051908101604052809291908181526020018280546115d89061289b565b80156116255780601f106115fa57610100808354040283529160200191611625565b820191906000526020600020905b81548152906001019060200180831161160857829003601f168201915b505050505081565b600b5481565b600061163e82611deb565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e16117c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790612ffa565b60405180910390fd5b61175981611ae9565b50565b600081611767611841565b11158015611776575060005482105b80156117b4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117cb611e42565b73ffffffffffffffffffffffffffffffffffffffff166117e96110bf565b73ffffffffffffffffffffffffffffffffffffffff161461183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613066565b60405180910390fd5b565b600090565b60008082905080611855611841565b116118db576000548110156118da5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118d8575b600081036118ce5760046000836001900393508381526020019081526020016000205490506118a4565b809250505061190d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611995868684611e4a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119f1828260405180602001604052806000815250611e53565b5050565b80471015611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906130d2565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a5e90613123565b60006040518083038185875af1925050503d8060008114611a9b576040519150601f19603f3d011682016040523d82523d6000602084013e611aa0565b606091505b5050905080611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb906131aa565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd56117bb565b8786866040518563ffffffff1660e01b8152600401611bf7949392919061321f565b6020604051808303816000875af1925050508015611c3357506040513d601f19601f82011682018060405250810190611c309190613280565b60015b611cac573d8060008114611c63576040519150601f19603f3d011682016040523d82523d6000602084013e611c68565b606091505b506000815103611ca4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d0e9061289b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3a9061289b565b8015611d875780601f10611d5c57610100808354040283529160200191611d87565b820191906000526020600020905b815481529060010190602001808311611d6a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611dd757600183039250600a81066030018353600a81049050611db7565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b611e5d8383611ef0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eeb57600080549050600083820390505b611e9d6000868380600101945086611baf565b611ed3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e8a578160005414611ee857600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f5c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611f96576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa36000848385611978565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061201a8361200b600086600061197e565b612014856120c2565b176119a6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061203e578060008190555050506120bd60008483856119d1565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61211b816120e6565b811461212657600080fd5b50565b60008135905061213881612112565b92915050565b600060208284031215612154576121536120dc565b5b600061216284828501612129565b91505092915050565b60008115159050919050565b6121808161216b565b82525050565b600060208201905061219b6000830184612177565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121db5780820151818401526020810190506121c0565b838111156121ea576000848401525b50505050565b6000601f19601f8301169050919050565b600061220c826121a1565b61221681856121ac565b93506122268185602086016121bd565b61222f816121f0565b840191505092915050565b600060208201905081810360008301526122548184612201565b905092915050565b6000819050919050565b61226f8161225c565b82525050565b600060208201905061228a6000830184612266565b92915050565b6122998161225c565b81146122a457600080fd5b50565b6000813590506122b681612290565b92915050565b6000602082840312156122d2576122d16120dc565b5b60006122e0848285016122a7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612314826122e9565b9050919050565b61232481612309565b82525050565b600060208201905061233f600083018461231b565b92915050565b61234e81612309565b811461235957600080fd5b50565b60008135905061236b81612345565b92915050565b60008060408385031215612388576123876120dc565b5b60006123968582860161235c565b92505060206123a7858286016122a7565b9150509250929050565b6000806000606084860312156123ca576123c96120dc565b5b60006123d88682870161235c565b93505060206123e98682870161235c565b92505060406123fa868287016122a7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261242957612428612404565b5b8235905067ffffffffffffffff81111561244657612445612409565b5b6020830191508360208202830111156124625761246161240e565b5b9250929050565b600080600060408486031215612482576124816120dc565b5b600084013567ffffffffffffffff8111156124a05761249f6120e1565b5b6124ac86828701612413565b935093505060206124bf868287016122a7565b9150509250925092565b6124d28161216b565b81146124dd57600080fd5b50565b6000813590506124ef816124c9565b92915050565b60006020828403121561250b5761250a6120dc565b5b6000612519848285016124e0565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61255f826121f0565b810181811067ffffffffffffffff8211171561257e5761257d612527565b5b80604052505050565b60006125916120d2565b905061259d8282612556565b919050565b600067ffffffffffffffff8211156125bd576125bc612527565b5b6125c6826121f0565b9050602081019050919050565b82818337600083830152505050565b60006125f56125f0846125a2565b612587565b90508281526020810184848401111561261157612610612522565b5b61261c8482856125d3565b509392505050565b600082601f83011261263957612638612404565b5b81356126498482602086016125e2565b91505092915050565b600060208284031215612668576126676120dc565b5b600082013567ffffffffffffffff811115612686576126856120e1565b5b61269284828501612624565b91505092915050565b6000602082840312156126b1576126b06120dc565b5b60006126bf8482850161235c565b91505092915050565b600080604083850312156126df576126de6120dc565b5b60006126ed8582860161235c565b92505060206126fe858286016124e0565b9150509250929050565b600067ffffffffffffffff82111561272357612722612527565b5b61272c826121f0565b9050602081019050919050565b600061274c61274784612708565b612587565b90508281526020810184848401111561276857612767612522565b5b6127738482856125d3565b509392505050565b600082601f8301126127905761278f612404565b5b81356127a0848260208601612739565b91505092915050565b600080600080608085870312156127c3576127c26120dc565b5b60006127d18782880161235c565b94505060206127e28782880161235c565b93505060406127f3878288016122a7565b925050606085013567ffffffffffffffff811115612814576128136120e1565b5b6128208782880161277b565b91505092959194509250565b60008060408385031215612843576128426120dc565b5b60006128518582860161235c565b92505060206128628582860161235c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128b357607f821691505b6020821081036128c6576128c561286c565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006129026013836121ac565b915061290d826128cc565b602082019050919050565b60006020820190508181036000830152612931816128f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129728261225c565b915061297d8361225c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129b6576129b5612938565b5b828202905092915050565b60006129cc8261225c565b91506129d78361225c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a0c57612a0b612938565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612a4d6017836121ac565b9150612a5882612a17565b602082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612abd8261225c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612aef57612aee612938565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b30601f836121ac565b9150612b3b82612afa565b602082019050919050565b60006020820190508181036000830152612b5f81612b23565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b8b565b612bd28683612b8b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c0f612c0a612c058461225c565b612bea565b61225c565b9050919050565b6000819050919050565b612c2983612bf4565b612c3d612c3582612c16565b848454612b98565b825550505050565b600090565b612c52612c45565b612c5d818484612c20565b505050565b5b81811015612c8157612c76600082612c4a565b600181019050612c63565b5050565b601f821115612cc657612c9781612b66565b612ca084612b7b565b81016020851015612caf578190505b612cc3612cbb85612b7b565b830182612c62565b50505b505050565b600082821c905092915050565b6000612ce960001984600802612ccb565b1980831691505092915050565b6000612d028383612cd8565b9150826002028217905092915050565b612d1b826121a1565b67ffffffffffffffff811115612d3457612d33612527565b5b612d3e825461289b565b612d49828285612c85565b600060209050601f831160018114612d7c5760008415612d6a578287015190505b612d748582612cf6565b865550612ddc565b601f198416612d8a86612b66565b60005b82811015612db257848901518255600182019150602085019450602081019050612d8d565b86831015612dcf5784890151612dcb601f891682612cd8565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000612e1a6017836121ac565b9150612e2582612de4565b602082019050919050565b60006020820190508181036000830152612e4981612e0d565b9050919050565b7f4d6178207065722077616c6c6574206578636565646564000000000000000000600082015250565b6000612e866017836121ac565b9150612e9182612e50565b602082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b6000612ef26015836121ac565b9150612efd82612ebc565b602082019050919050565b60006020820190508181036000830152612f2181612ee5565b9050919050565b600081905092915050565b6000612f3e826121a1565b612f488185612f28565b9350612f588185602086016121bd565b80840191505092915050565b6000612f708285612f33565b9150612f7c8284612f33565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fe46026836121ac565b9150612fef82612f88565b604082019050919050565b6000602082019050818103600083015261301381612fd7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130506020836121ac565b915061305b8261301a565b602082019050919050565b6000602082019050818103600083015261307f81613043565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006130bc601d836121ac565b91506130c782613086565b602082019050919050565b600060208201905081810360008301526130eb816130af565b9050919050565b600081905092915050565b50565b600061310d6000836130f2565b9150613118826130fd565b600082019050919050565b600061312e82613100565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613194603a836121ac565b915061319f82613138565b604082019050919050565b600060208201905081810360008301526131c381613187565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131f1826131ca565b6131fb81856131d5565b935061320b8185602086016121bd565b613214816121f0565b840191505092915050565b6000608082019050613234600083018761231b565b613241602083018661231b565b61324e6040830185612266565b818103606083015261326081846131e6565b905095945050505050565b60008151905061327a81612112565b92915050565b600060208284031215613296576132956120dc565b5b60006132a48482850161326b565b9150509291505056fea2646970667358221220d85152322e0b8b61549ef9722e494b2aca468452470495546700176a0894c82764736f6c634300080f0033
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806355f804b31161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106b4578063d5abeb01146106df578063dc33e6811461070a578063e985e9c514610747578063f2fde38b14610784576101ee565b8063a22cb465146105fa578063b88d4fde14610623578063c6a91b421461064c578063c87b56dd14610677576101ee565b80638da5cb5b116100dc5780638da5cb5b1461055f57806395d89b411461058a5780639e9fcffc146105b5578063a0712d68146105de576101ee565b806355f804b3146104a55780636352211e146104ce57806370a082311461050b578063715018a614610548576101ee565b80631919fed71161018557806328cad13d1161015457806328cad13d14610411578063395f4be61461043a5780633ccfd60b1461046557806342842e0e1461047c576101ee565b80631919fed71461036b5780631e84c4131461039457806323b872dd146103bf57806324e20b18146103e8576101ee565b8063089d4665116101c1578063089d4665146102c3578063095ea7b3146102ee5780630a00ae831461031757806318160ddd14610340576101ee565b806301ffc9a7146101f357806306fdde031461023057806307e89ec01461025b578063081812fc14610286575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061213e565b6107ad565b6040516102279190612186565b60405180910390f35b34801561023c57600080fd5b5061024561083f565b604051610252919061223a565b60405180910390f35b34801561026757600080fd5b506102706108d1565b60405161027d9190612275565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906122bc565b6108d7565b6040516102ba919061232a565b60405180910390f35b3480156102cf57600080fd5b506102d8610953565b6040516102e59190612275565b60405180910390f35b3480156102fa57600080fd5b5061031560048036038101906103109190612371565b610959565b005b34801561032357600080fd5b5061033e600480360381019061033991906122bc565b610a9a565b005b34801561034c57600080fd5b50610355610aac565b6040516103629190612275565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d91906122bc565b610ac3565b005b3480156103a057600080fd5b506103a9610ad5565b6040516103b69190612186565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e191906123b1565b610ae8565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612469565b610e0a565b005b34801561041d57600080fd5b50610438600480360381019061043391906124f5565b610f12565b005b34801561044657600080fd5b5061044f610f37565b60405161045c9190612275565b60405180910390f35b34801561047157600080fd5b5061047a610f3d565b005b34801561048857600080fd5b506104a3600480360381019061049e91906123b1565b610fa6565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612652565b610fc6565b005b3480156104da57600080fd5b506104f560048036038101906104f091906122bc565b610fe1565b604051610502919061232a565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d919061269b565b610ff3565b60405161053f9190612275565b60405180910390f35b34801561055457600080fd5b5061055d6110ab565b005b34801561056b57600080fd5b506105746110bf565b604051610581919061232a565b60405180910390f35b34801561059657600080fd5b5061059f6110e9565b6040516105ac919061223a565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d791906122bc565b61117b565b005b6105f860048036038101906105f391906122bc565b61118d565b005b34801561060657600080fd5b50610621600480360381019061061c91906126c8565b611311565b005b34801561062f57600080fd5b5061064a600480360381019061064591906127a9565b611488565b005b34801561065857600080fd5b506106616114fb565b60405161066e9190612275565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906122bc565b611501565b6040516106ab919061223a565b60405180910390f35b3480156106c057600080fd5b506106c961159f565b6040516106d6919061223a565b60405180910390f35b3480156106eb57600080fd5b506106f461162d565b6040516107019190612275565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c919061269b565b611633565b60405161073e9190612275565b60405180910390f35b34801561075357600080fd5b5061076e6004803603810190610769919061282c565b611645565b60405161077b9190612186565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a6919061269b565b6116d9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108385750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461084e9061289b565b80601f016020809104026020016040519081016040528092919081815260200182805461087a9061289b565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b600e5481565b60006108e28261175c565b610918576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f5481565b600061096482610fe1565b90508073ffffffffffffffffffffffffffffffffffffffff166109856117bb565b73ffffffffffffffffffffffffffffffffffffffff16146109e8576109b1816109ac6117bb565b611645565b6109e7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610aa26117c3565b80600f8190555050565b6000610ab6611841565b6001546000540303905090565b610acb6117c3565b80600e8190555050565b601060009054906101000a900460ff1681565b6000610af382611846565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610b6684611912565b91509150610b7c8187610b776117bb565b611934565b610bc857610b9186610b8c6117bb565b611645565b610bc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c3b8686866001611978565b8015610c4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d1485610cf088888761197e565b7c0200000000000000000000000000000000000000000000000000000000176119a6565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610d9a5760006001850190506000600460008381526020019081526020016000205403610d98576000548114610d97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e0286868660016119d1565b505050505050565b610e126117c3565b60008111610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612918565b60405180910390fd5b600b548184849050610e679190612967565b610e6f610aac565b610e7991906129c1565b1115610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612a63565b60405180910390fd5b60005b83839050811015610f0c57610ef9848483818110610ede57610edd612a83565b5b9050602002016020810190610ef3919061269b565b836119d7565b8080610f0490612ab2565b915050610ebd565b50505050565b610f1a6117c3565b80601060006101000a81548160ff02191690831515021790555050565b600d5481565b610f456117c3565b600260095403610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190612b46565b60405180910390fd5b6002600981905550610f9c33476119f5565b6001600981905550565b610fc183838360405180602001604052806000815250611488565b505050565b610fce6117c3565b80600a9081610fdd9190612d12565b5050565b6000610fec82611846565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361105a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110b36117c3565b6110bd6000611ae9565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546110f89061289b565b80601f01602080910402602001604051908101604052809291908181526020018280546111249061289b565b80156111715780601f1061114657610100808354040283529160200191611171565b820191906000526020600020905b81548152906001019060200180831161115457829003601f168201915b5050505050905090565b6111836117c3565b80600c8190555050565b601060009054906101000a900460ff166111dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d390612e30565b60405180910390fd5b600b54816111e8610aac565b6111f291906129c1565b1115611233576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122a90612a63565b60405180910390fd5b600c54811115611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90612e9c565b60405180910390fd5b600f5481611284610aac565b61128e91906129c1565b11806112ae5750600d54816112a233611633565b6112ac91906129c1565b115b15611304573481600e546112c29190612967565b1115611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90612f08565b60405180910390fd5b5b61130e33826119d7565b50565b6113196117bb565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361137d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061138a6117bb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114376117bb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147c9190612186565b60405180910390a35050565b611493848484610ae8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114f5576114be84848484611baf565b6114f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b606061150c8261175c565b611542576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061154c611cff565b9050600081510361156c5760405180602001604052806000815250611597565b8061157684611d91565b604051602001611587929190612f64565b6040516020818303038152906040525b915050919050565b600a80546115ac9061289b565b80601f01602080910402602001604051908101604052809291908181526020018280546115d89061289b565b80156116255780601f106115fa57610100808354040283529160200191611625565b820191906000526020600020905b81548152906001019060200180831161160857829003601f168201915b505050505081565b600b5481565b600061163e82611deb565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116e16117c3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174790612ffa565b60405180910390fd5b61175981611ae9565b50565b600081611767611841565b11158015611776575060005482105b80156117b4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6117cb611e42565b73ffffffffffffffffffffffffffffffffffffffff166117e96110bf565b73ffffffffffffffffffffffffffffffffffffffff161461183f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690613066565b60405180910390fd5b565b600090565b60008082905080611855611841565b116118db576000548110156118da5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036118d8575b600081036118ce5760046000836001900393508381526020019081526020016000205490506118a4565b809250505061190d565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611995868684611e4a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6119f1828260405180602001604052806000815250611e53565b5050565b80471015611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f906130d2565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611a5e90613123565b60006040518083038185875af1925050503d8060008114611a9b576040519150601f19603f3d011682016040523d82523d6000602084013e611aa0565b606091505b5050905080611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb906131aa565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bd56117bb565b8786866040518563ffffffff1660e01b8152600401611bf7949392919061321f565b6020604051808303816000875af1925050508015611c3357506040513d601f19601f82011682018060405250810190611c309190613280565b60015b611cac573d8060008114611c63576040519150601f19603f3d011682016040523d82523d6000602084013e611c68565b606091505b506000815103611ca4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611d0e9061289b565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3a9061289b565b8015611d875780601f10611d5c57610100808354040283529160200191611d87565b820191906000526020600020905b815481529060010190602001808311611d6a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611dd757600183039250600a81066030018353600a81049050611db7565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600033905090565b60009392505050565b611e5d8383611ef0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611eeb57600080549050600083820390505b611e9d6000868380600101945086611baf565b611ed3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e8a578160005414611ee857600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f5c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611f96576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa36000848385611978565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061201a8361200b600086600061197e565b612014856120c2565b176119a6565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061203e578060008190555050506120bd60008483856119d1565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61211b816120e6565b811461212657600080fd5b50565b60008135905061213881612112565b92915050565b600060208284031215612154576121536120dc565b5b600061216284828501612129565b91505092915050565b60008115159050919050565b6121808161216b565b82525050565b600060208201905061219b6000830184612177565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121db5780820151818401526020810190506121c0565b838111156121ea576000848401525b50505050565b6000601f19601f8301169050919050565b600061220c826121a1565b61221681856121ac565b93506122268185602086016121bd565b61222f816121f0565b840191505092915050565b600060208201905081810360008301526122548184612201565b905092915050565b6000819050919050565b61226f8161225c565b82525050565b600060208201905061228a6000830184612266565b92915050565b6122998161225c565b81146122a457600080fd5b50565b6000813590506122b681612290565b92915050565b6000602082840312156122d2576122d16120dc565b5b60006122e0848285016122a7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612314826122e9565b9050919050565b61232481612309565b82525050565b600060208201905061233f600083018461231b565b92915050565b61234e81612309565b811461235957600080fd5b50565b60008135905061236b81612345565b92915050565b60008060408385031215612388576123876120dc565b5b60006123968582860161235c565b92505060206123a7858286016122a7565b9150509250929050565b6000806000606084860312156123ca576123c96120dc565b5b60006123d88682870161235c565b93505060206123e98682870161235c565b92505060406123fa868287016122a7565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261242957612428612404565b5b8235905067ffffffffffffffff81111561244657612445612409565b5b6020830191508360208202830111156124625761246161240e565b5b9250929050565b600080600060408486031215612482576124816120dc565b5b600084013567ffffffffffffffff8111156124a05761249f6120e1565b5b6124ac86828701612413565b935093505060206124bf868287016122a7565b9150509250925092565b6124d28161216b565b81146124dd57600080fd5b50565b6000813590506124ef816124c9565b92915050565b60006020828403121561250b5761250a6120dc565b5b6000612519848285016124e0565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61255f826121f0565b810181811067ffffffffffffffff8211171561257e5761257d612527565b5b80604052505050565b60006125916120d2565b905061259d8282612556565b919050565b600067ffffffffffffffff8211156125bd576125bc612527565b5b6125c6826121f0565b9050602081019050919050565b82818337600083830152505050565b60006125f56125f0846125a2565b612587565b90508281526020810184848401111561261157612610612522565b5b61261c8482856125d3565b509392505050565b600082601f83011261263957612638612404565b5b81356126498482602086016125e2565b91505092915050565b600060208284031215612668576126676120dc565b5b600082013567ffffffffffffffff811115612686576126856120e1565b5b61269284828501612624565b91505092915050565b6000602082840312156126b1576126b06120dc565b5b60006126bf8482850161235c565b91505092915050565b600080604083850312156126df576126de6120dc565b5b60006126ed8582860161235c565b92505060206126fe858286016124e0565b9150509250929050565b600067ffffffffffffffff82111561272357612722612527565b5b61272c826121f0565b9050602081019050919050565b600061274c61274784612708565b612587565b90508281526020810184848401111561276857612767612522565b5b6127738482856125d3565b509392505050565b600082601f8301126127905761278f612404565b5b81356127a0848260208601612739565b91505092915050565b600080600080608085870312156127c3576127c26120dc565b5b60006127d18782880161235c565b94505060206127e28782880161235c565b93505060406127f3878288016122a7565b925050606085013567ffffffffffffffff811115612814576128136120e1565b5b6128208782880161277b565b91505092959194509250565b60008060408385031215612843576128426120dc565b5b60006128518582860161235c565b92505060206128628582860161235c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128b357607f821691505b6020821081036128c6576128c561286c565b5b50919050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b60006129026013836121ac565b915061290d826128cc565b602082019050919050565b60006020820190508181036000830152612931816128f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129728261225c565b915061297d8361225c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129b6576129b5612938565b5b828202905092915050565b60006129cc8261225c565b91506129d78361225c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a0c57612a0b612938565b5b828201905092915050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000612a4d6017836121ac565b9150612a5882612a17565b602082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612abd8261225c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612aef57612aee612938565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612b30601f836121ac565b9150612b3b82612afa565b602082019050919050565b60006020820190508181036000830152612b5f81612b23565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b8b565b612bd28683612b8b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612c0f612c0a612c058461225c565b612bea565b61225c565b9050919050565b6000819050919050565b612c2983612bf4565b612c3d612c3582612c16565b848454612b98565b825550505050565b600090565b612c52612c45565b612c5d818484612c20565b505050565b5b81811015612c8157612c76600082612c4a565b600181019050612c63565b5050565b601f821115612cc657612c9781612b66565b612ca084612b7b565b81016020851015612caf578190505b612cc3612cbb85612b7b565b830182612c62565b50505b505050565b600082821c905092915050565b6000612ce960001984600802612ccb565b1980831691505092915050565b6000612d028383612cd8565b9150826002028217905092915050565b612d1b826121a1565b67ffffffffffffffff811115612d3457612d33612527565b5b612d3e825461289b565b612d49828285612c85565b600060209050601f831160018114612d7c5760008415612d6a578287015190505b612d748582612cf6565b865550612ddc565b601f198416612d8a86612b66565b60005b82811015612db257848901518255600182019150602085019450602081019050612d8d565b86831015612dcf5784890151612dcb601f891682612cd8565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b6000612e1a6017836121ac565b9150612e2582612de4565b602082019050919050565b60006020820190508181036000830152612e4981612e0d565b9050919050565b7f4d6178207065722077616c6c6574206578636565646564000000000000000000600082015250565b6000612e866017836121ac565b9150612e9182612e50565b602082019050919050565b60006020820190508181036000830152612eb581612e79565b9050919050565b7f496e73756666696369656e74204554482073656e740000000000000000000000600082015250565b6000612ef26015836121ac565b9150612efd82612ebc565b602082019050919050565b60006020820190508181036000830152612f2181612ee5565b9050919050565b600081905092915050565b6000612f3e826121a1565b612f488185612f28565b9350612f588185602086016121bd565b80840191505092915050565b6000612f708285612f33565b9150612f7c8284612f33565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fe46026836121ac565b9150612fef82612f88565b604082019050919050565b6000602082019050818103600083015261301381612fd7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130506020836121ac565b915061305b8261301a565b602082019050919050565b6000602082019050818103600083015261307f81613043565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b60006130bc601d836121ac565b91506130c782613086565b602082019050919050565b600060208201905081810360008301526130eb816130af565b9050919050565b600081905092915050565b50565b600061310d6000836130f2565b9150613118826130fd565b600082019050919050565b600061312e82613100565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613194603a836121ac565b915061319f82613138565b604082019050919050565b600060208201905081810360008301526131c381613187565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131f1826131ca565b6131fb81856131d5565b935061320b8185602086016121bd565b613214816121f0565b840191505092915050565b6000608082019050613234600083018761231b565b613241602083018661231b565b61324e6040830185612266565b818103606083015261326081846131e6565b905095945050505050565b60008151905061327a81612112565b92915050565b600060208284031215613296576132956120dc565b5b60006132a48482850161326b565b9150509291505056fea2646970667358221220d85152322e0b8b61549ef9722e494b2aca468452470495546700176a0894c82764736f6c634300080f0033
Deployed Bytecode Sourcemap
63970:2600:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33771:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39418:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64259:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41364:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64312:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40912:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66067:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32825:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66204:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64356:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50629:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65160:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65913:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64213:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65508:142;;;;;;;;;;;;;:::i;:::-;;42254:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65797:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39207:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34450:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18362:103;;;;;;;;;;;;;:::i;:::-;;17714:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39587:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66325:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64459:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41640:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42510:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64172:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39762:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64088:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64135:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66458:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42019:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18620:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33771:615;33856:4;34171:10;34156:25;;:11;:25;;;;:102;;;;34248:10;34233:25;;:11;:25;;;;34156:102;:179;;;;34325:10;34310:25;;:11;:25;;;;34156:179;34136:199;;33771:615;;;:::o;39418:100::-;39472:13;39505:5;39498:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39418:100;:::o;64259:48::-;;;;:::o;41364:204::-;41432:7;41457:16;41465:7;41457;:16::i;:::-;41452:64;;41482:34;;;;;;;;;;;;;;41452:64;41536:15;:24;41552:7;41536:24;;;;;;;;;;;;;;;;;;;;;41529:31;;41364:204;;;:::o;64312:39::-;;;;:::o;40912:386::-;40985:13;41001:16;41009:7;41001;:16::i;:::-;40985:32;;41057:5;41034:28;;:19;:17;:19::i;:::-;:28;;;41030:175;;41082:44;41099:5;41106:19;:17;:19::i;:::-;41082:16;:44::i;:::-;41077:128;;41154:35;;;;;;;;;;;;;;41077:128;41030:175;41244:2;41217:15;:24;41233:7;41217:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41282:7;41278:2;41262:28;;41271:5;41262:28;;;;;;;;;;;;40974:324;40912:386;;:::o;66067:131::-;17600:13;:11;:13::i;:::-;66179::::1;66160:16;:32;;;;66067:131:::0;:::o;32825:315::-;32878:7;33106:15;:13;:15::i;:::-;33091:12;;33075:13;;:28;:46;33068:53;;32825:315;:::o;66204:115::-;17600:13;:11;:13::i;:::-;66307:6:::1;66287:17;:26;;;;66204:115:::0;:::o;64356:38::-;;;;;;;;;;;;;:::o;50629:2800::-;50763:27;50793;50812:7;50793:18;:27::i;:::-;50763:57;;50878:4;50837:45;;50853:19;50837:45;;;50833:86;;50891:28;;;;;;;;;;;;;;50833:86;50933:27;50962:23;50989:28;51009:7;50989:19;:28::i;:::-;50932:85;;;;51117:62;51136:15;51153:4;51159:19;:17;:19::i;:::-;51117:18;:62::i;:::-;51112:174;;51199:43;51216:4;51222:19;:17;:19::i;:::-;51199:16;:43::i;:::-;51194:92;;51251:35;;;;;;;;;;;;;;51194:92;51112:174;51317:1;51303:16;;:2;:16;;;51299:52;;51328:23;;;;;;;;;;;;;;51299:52;51364:43;51386:4;51392:2;51396:7;51405:1;51364:21;:43::i;:::-;51500:15;51497:160;;;51640:1;51619:19;51612:30;51497:160;52035:18;:24;52054:4;52035:24;;;;;;;;;;;;;;;;52033:26;;;;;;;;;;;;52104:18;:22;52123:2;52104:22;;;;;;;;;;;;;;;;52102:24;;;;;;;;;;;52426:145;52463:2;52511:45;52526:4;52532:2;52536:19;52511:14;:45::i;:::-;30053:8;52484:72;52426:18;:145::i;:::-;52397:17;:26;52415:7;52397:26;;;;;;;;;;;:174;;;;52741:1;30053:8;52691:19;:46;:51;52687:626;;52763:19;52795:1;52785:7;:11;52763:33;;52952:1;52918:17;:30;52936:11;52918:30;;;;;;;;;;;;:35;52914:384;;53056:13;;53041:11;:28;53037:242;;53236:19;53203:17;:30;53221:11;53203:30;;;;;;;;;;;:52;;;;53037:242;52914:384;52744:569;52687:626;53360:7;53356:2;53341:27;;53350:4;53341:27;;;;;;;;;;;;53379:42;53400:4;53406:2;53410:7;53419:1;53379:20;:42::i;:::-;50752:2677;;;50629:2800;;;:::o;65160:342::-;17600:13;:11;:13::i;:::-;65278:1:::1;65266:9;:13;65258:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;65359:9;;65346;65335:3;;:10;;:20;;;;:::i;:::-;65319:13;:11;:13::i;:::-;:36;;;;:::i;:::-;:49;;65310:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;65410:9;65405:90;65429:3;;:10;;65425:1;:14;65405:90;;;65457:28;65467:3;;65471:1;65467:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;65475:9;65457;:28::i;:::-;65441:3;;;;;:::i;:::-;;;;65405:90;;;;65160:342:::0;;;:::o;65913:148::-;17600:13;:11;:13::i;:::-;66036:19:::1;66015:18;;:40;;;;;;;;;;;;;;;;;;65913:148:::0;:::o;64213:41::-;;;;:::o;65508:142::-;17600:13;:11;:13::i;:::-;14639:1:::1;15237:7;;:19:::0;15229:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;14639:1;15370:7;:18;;;;65583:61:::2;65609:10;65622:21;65583:17;:61::i;:::-;14595:1:::1;15549:7;:22;;;;65508:142::o:0;42254:185::-;42392:39;42409:4;42415:2;42419:7;42392:39;;;;;;;;;;;;:16;:39::i;:::-;42254:185;;;:::o;65797:108::-;17600:13;:11;:13::i;:::-;65892:7:::1;65877:12;:22;;;;;;:::i;:::-;;65797:108:::0;:::o;39207:144::-;39271:7;39314:27;39333:7;39314:18;:27::i;:::-;39291:52;;39207:144;;;:::o;34450:224::-;34514:7;34555:1;34538:19;;:5;:19;;;34534:60;;34566:28;;;;;;;;;;;;;;34534:60;29005:13;34612:18;:25;34631:5;34612:25;;;;;;;;;;;;;;;;:54;34605:61;;34450:224;;;:::o;18362:103::-;17600:13;:11;:13::i;:::-;18427:30:::1;18454:1;18427:18;:30::i;:::-;18362:103::o:0;17714:87::-;17760:7;17787:6;;;;;;;;;;;17780:13;;17714:87;:::o;39587:104::-;39643:13;39676:7;39669:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39587:104;:::o;66325:127::-;17600:13;:11;:13::i;:::-;66440:6:::1;66421:16;:25;;;;66325:127:::0;:::o;64459:586::-;64546:18;;;;;;;;;;;64538:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64641:9;;64623:14;64607:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;64599:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;64711:16;;64693:14;:34;;64685:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;64798:16;;64781:14;64765:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:49;:128;;;;64872:21;;64855:14;64828:24;64841:10;64828:12;:24::i;:::-;:41;;;;:::i;:::-;:65;64765:128;64762:234;;;64953:9;64934:14;64914:17;;:34;;;;:::i;:::-;64913:49;;64905:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;64762:234;65002:37;65012:10;65024:14;65002:9;:37::i;:::-;64459:586;:::o;41640:308::-;41751:19;:17;:19::i;:::-;41739:31;;:8;:31;;;41735:61;;41779:17;;;;;;;;;;;;;;41735:61;41861:8;41809:18;:39;41828:19;:17;:19::i;:::-;41809:39;;;;;;;;;;;;;;;:49;41849:8;41809:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41921:8;41885:55;;41900:19;:17;:19::i;:::-;41885:55;;;41931:8;41885:55;;;;;;:::i;:::-;;;;;;;;41640:308;;:::o;42510:399::-;42677:31;42690:4;42696:2;42700:7;42677:12;:31::i;:::-;42741:1;42723:2;:14;;;:19;42719:183;;42762:56;42793:4;42799:2;42803:7;42812:5;42762:30;:56::i;:::-;42757:145;;42846:40;;;;;;;;;;;;;;42757:145;42719:183;42510:399;;;;:::o;64172:36::-;;;;:::o;39762:318::-;39835:13;39866:16;39874:7;39866;:16::i;:::-;39861:59;;39891:29;;;;;;;;;;;;;;39861:59;39933:21;39957:10;:8;:10::i;:::-;39933:34;;40010:1;39991:7;39985:21;:26;:87;;;;;;;;;;;;;;;;;40038:7;40047:18;40057:7;40047:9;:18::i;:::-;40021:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39985:87;39978:94;;;39762:318;;;:::o;64088:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64135:32::-;;;;:::o;66458:107::-;66516:7;66539:20;66553:5;66539:13;:20::i;:::-;66532:27;;66458:107;;;:::o;42019:164::-;42116:4;42140:18;:25;42159:5;42140:25;;;;;;;;;;;;;;;:35;42166:8;42140:35;;;;;;;;;;;;;;;;;;;;;;;;;42133:42;;42019:164;;;;:::o;18620:201::-;17600:13;:11;:13::i;:::-;18729:1:::1;18709:22;;:8;:22;;::::0;18701:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18785:28;18804:8;18785:18;:28::i;:::-;18620:201:::0;:::o;43164:273::-;43221:4;43277:7;43258:15;:13;:15::i;:::-;:26;;:66;;;;;43311:13;;43301:7;:23;43258:66;:152;;;;;43409:1;29775:8;43362:17;:26;43380:7;43362:26;;;;;;;;;;;;:43;:48;43258:152;43238:172;;43164:273;;;:::o;61725:105::-;61785:7;61812:10;61805:17;;61725:105;:::o;17879:132::-;17954:12;:10;:12::i;:::-;17943:23;;:7;:5;:7::i;:::-;:23;;;17935:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17879:132::o;65051:101::-;65116:7;65051:101;:::o;36124:1129::-;36191:7;36211:12;36226:7;36211:22;;36294:4;36275:15;:13;:15::i;:::-;:23;36271:915;;36328:13;;36321:4;:20;36317:869;;;36366:14;36383:17;:23;36401:4;36383:23;;;;;;;;;;;;36366:40;;36499:1;29775:8;36472:6;:23;:28;36468:699;;36991:113;37008:1;36998:6;:11;36991:113;;37051:17;:25;37069:6;;;;;;;37051:25;;;;;;;;;;;;37042:34;;36991:113;;;37137:6;37130:13;;;;;;36468:699;36343:843;36317:869;36271:915;37214:31;;;;;;;;;;;;;;36124:1129;;;;:::o;48965:652::-;49060:27;49089:23;49130:53;49186:15;49130:71;;49372:7;49366:4;49359:21;49407:22;49401:4;49394:36;49483:4;49477;49467:21;49444:44;;49579:19;49573:26;49554:45;;49310:300;48965:652;;;:::o;49730:645::-;49872:11;50034:15;50028:4;50024:26;50016:34;;50193:15;50182:9;50178:31;50165:44;;50340:15;50329:9;50326:30;50319:4;50308:9;50305:19;50302:55;50292:65;;49730:645;;;;;:::o;60558:159::-;;;;;:::o;58870:309::-;59005:7;59025:16;30176:3;59051:19;:40;;59025:67;;30176:3;59118:31;59129:4;59135:2;59139:9;59118:10;:31::i;:::-;59110:40;;:61;;59103:68;;;58870:309;;;;;:::o;38698:447::-;38778:14;38946:15;38939:5;38935:27;38926:36;;39120:5;39106:11;39082:22;39078:40;39075:51;39068:5;39065:62;39055:72;;38698:447;;;;:::o;61376:158::-;;;;;:::o;43521:104::-;43590:27;43600:2;43604:8;43590:27;;;;;;;;;;;;:9;:27::i;:::-;43521:104;;:::o;6768:317::-;6883:6;6858:21;:31;;6850:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6937:12;6955:9;:14;;6977:6;6955:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6936:52;;;7007:7;6999:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;6839:246;6768:317;;:::o;18981:191::-;19055:16;19074:6;;;;;;;;;;;19055:25;;19100:8;19091:6;;:17;;;;;;;;;;;;;;;;;;19155:8;19124:40;;19145:8;19124:40;;;;;;;;;;;;19044:128;18981:191;:::o;57380:716::-;57543:4;57589:2;57564:45;;;57610:19;:17;:19::i;:::-;57631:4;57637:7;57646:5;57564:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;57560:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57864:1;57847:6;:13;:18;57843:235;;57893:40;;;;;;;;;;;;;;57843:235;58036:6;58030:13;58021:6;58017:2;58013:15;58006:38;57560:529;57733:54;;;57723:64;;;:6;:64;;;;57716:71;;;57380:716;;;;;;:::o;65656:135::-;65741:13;65773:12;65766:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65656:135;:::o;61936:1960::-;61993:17;62412:3;62405:4;62399:11;62395:21;62388:28;;62503:3;62497:4;62490:17;62609:3;63065:5;63195:1;63190:3;63186:11;63179:18;;63332:2;63326:4;63322:13;63318:2;63314:22;63309:3;63301:36;63373:2;63367:4;63363:13;63355:21;;62957:697;63392:4;62957:697;;;63583:1;63578:3;63574:11;63567:18;;63634:2;63628:4;63624:13;63620:2;63616:22;63611:3;63603:36;63487:2;63481:4;63477:13;63469:21;;62957:697;;;62961:430;63693:3;63688;63684:13;63808:2;63803:3;63799:12;63792:19;;63871:6;63866:3;63859:19;62032:1857;;61936:1960;;;:::o;34756:176::-;34817:7;29005:13;29142:2;34845:18;:25;34864:5;34845:25;;;;;;;;;;;;;;;;:49;;34844:80;34837:87;;34756:176;;;:::o;16265:98::-;16318:7;16345:10;16338:17;;16265:98;:::o;59755:147::-;59892:6;59755:147;;;;;:::o;44041:681::-;44164:19;44170:2;44174:8;44164:5;:19::i;:::-;44243:1;44225:2;:14;;;:19;44221:483;;44265:11;44279:13;;44265:27;;44311:13;44333:8;44327:3;:14;44311:30;;44360:233;44391:62;44430:1;44434:2;44438:7;;;;;;44447:5;44391:30;:62::i;:::-;44386:167;;44489:40;;;;;;;;;;;;;;44386:167;44588:3;44580:5;:11;44360:233;;44675:3;44658:13;;:20;44654:34;;44680:8;;;44654:34;44246:458;;44221:483;44041:681;;;:::o;44995:1529::-;45060:20;45083:13;;45060:36;;45125:1;45111:16;;:2;:16;;;45107:48;;45136:19;;;;;;;;;;;;;;45107:48;45182:1;45170:8;:13;45166:44;;45192:18;;;;;;;;;;;;;;45166:44;45223:61;45253:1;45257:2;45261:12;45275:8;45223:21;:61::i;:::-;45766:1;29142:2;45737:1;:25;;45736:31;45724:8;:44;45698:18;:22;45717:2;45698:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;46045:139;46082:2;46136:33;46159:1;46163:2;46167:1;46136:14;:33::i;:::-;46103:30;46124:8;46103:20;:30::i;:::-;:66;46045:18;:139::i;:::-;46011:17;:31;46029:12;46011:31;;;;;;;;;;;:173;;;;46201:15;46219:12;46201:30;;46246:11;46275:8;46260:12;:23;46246:37;;46298:101;46350:9;;;;;;46346:2;46325:35;;46342:1;46325:35;;;;;;;;;;;;46394:3;46384:7;:13;46298:101;;46431:3;46415:13;:19;;;;45472:974;;46456:60;46485:1;46489:2;46493:12;46507:8;46456:20;:60::i;:::-;45049:1475;44995:1529;;:::o;40528:322::-;40598:14;40829:1;40819:8;40816:15;40791:23;40787:45;40777:55;;40528:322;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:118::-;3078:24;3096:5;3078:24;:::i;:::-;3073:3;3066:37;2991:118;;:::o;3115:222::-;3208:4;3246:2;3235:9;3231:18;3223:26;;3259:71;3327:1;3316:9;3312:17;3303:6;3259:71;:::i;:::-;3115:222;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6301:568;6374:8;6384:6;6434:3;6427:4;6419:6;6415:17;6411:27;6401:122;;6442:79;;:::i;:::-;6401:122;6555:6;6542:20;6532:30;;6585:18;6577:6;6574:30;6571:117;;;6607:79;;:::i;:::-;6571:117;6721:4;6713:6;6709:17;6697:29;;6775:3;6767:4;6759:6;6755:17;6745:8;6741:32;6738:41;6735:128;;;6782:79;;:::i;:::-;6735:128;6301:568;;;;;:::o;6875:704::-;6970:6;6978;6986;7035:2;7023:9;7014:7;7010:23;7006:32;7003:119;;;7041:79;;:::i;:::-;7003:119;7189:1;7178:9;7174:17;7161:31;7219:18;7211:6;7208:30;7205:117;;;7241:79;;:::i;:::-;7205:117;7354:80;7426:7;7417:6;7406:9;7402:22;7354:80;:::i;:::-;7336:98;;;;7132:312;7483:2;7509:53;7554:7;7545:6;7534:9;7530:22;7509:53;:::i;:::-;7499:63;;7454:118;6875:704;;;;;:::o;7585:116::-;7655:21;7670:5;7655:21;:::i;:::-;7648:5;7645:32;7635:60;;7691:1;7688;7681:12;7635:60;7585:116;:::o;7707:133::-;7750:5;7788:6;7775:20;7766:29;;7804:30;7828:5;7804:30;:::i;:::-;7707:133;;;;:::o;7846:323::-;7902:6;7951:2;7939:9;7930:7;7926:23;7922:32;7919:119;;;7957:79;;:::i;:::-;7919:119;8077:1;8102:50;8144:7;8135:6;8124:9;8120:22;8102:50;:::i;:::-;8092:60;;8048:114;7846:323;;;;:::o;8175:117::-;8284:1;8281;8274:12;8298:180;8346:77;8343:1;8336:88;8443:4;8440:1;8433:15;8467:4;8464:1;8457:15;8484:281;8567:27;8589:4;8567:27;:::i;:::-;8559:6;8555:40;8697:6;8685:10;8682:22;8661:18;8649:10;8646:34;8643:62;8640:88;;;8708:18;;:::i;:::-;8640:88;8748:10;8744:2;8737:22;8527:238;8484:281;;:::o;8771:129::-;8805:6;8832:20;;:::i;:::-;8822:30;;8861:33;8889:4;8881:6;8861:33;:::i;:::-;8771:129;;;:::o;8906:308::-;8968:4;9058:18;9050:6;9047:30;9044:56;;;9080:18;;:::i;:::-;9044:56;9118:29;9140:6;9118:29;:::i;:::-;9110:37;;9202:4;9196;9192:15;9184:23;;8906:308;;;:::o;9220:154::-;9304:6;9299:3;9294;9281:30;9366:1;9357:6;9352:3;9348:16;9341:27;9220:154;;;:::o;9380:412::-;9458:5;9483:66;9499:49;9541:6;9499:49;:::i;:::-;9483:66;:::i;:::-;9474:75;;9572:6;9565:5;9558:21;9610:4;9603:5;9599:16;9648:3;9639:6;9634:3;9630:16;9627:25;9624:112;;;9655:79;;:::i;:::-;9624:112;9745:41;9779:6;9774:3;9769;9745:41;:::i;:::-;9464:328;9380:412;;;;;:::o;9812:340::-;9868:5;9917:3;9910:4;9902:6;9898:17;9894:27;9884:122;;9925:79;;:::i;:::-;9884:122;10042:6;10029:20;10067:79;10142:3;10134:6;10127:4;10119:6;10115:17;10067:79;:::i;:::-;10058:88;;9874:278;9812:340;;;;:::o;10158:509::-;10227:6;10276:2;10264:9;10255:7;10251:23;10247:32;10244:119;;;10282:79;;:::i;:::-;10244:119;10430:1;10419:9;10415:17;10402:31;10460:18;10452:6;10449:30;10446:117;;;10482:79;;:::i;:::-;10446:117;10587:63;10642:7;10633:6;10622:9;10618:22;10587:63;:::i;:::-;10577:73;;10373:287;10158:509;;;;:::o;10673:329::-;10732:6;10781:2;10769:9;10760:7;10756:23;10752:32;10749:119;;;10787:79;;:::i;:::-;10749:119;10907:1;10932:53;10977:7;10968:6;10957:9;10953:22;10932:53;:::i;:::-;10922:63;;10878:117;10673:329;;;;:::o;11008:468::-;11073:6;11081;11130:2;11118:9;11109:7;11105:23;11101:32;11098:119;;;11136:79;;:::i;:::-;11098:119;11256:1;11281:53;11326:7;11317:6;11306:9;11302:22;11281:53;:::i;:::-;11271:63;;11227:117;11383:2;11409:50;11451:7;11442:6;11431:9;11427:22;11409:50;:::i;:::-;11399:60;;11354:115;11008:468;;;;;:::o;11482:307::-;11543:4;11633:18;11625:6;11622:30;11619:56;;;11655:18;;:::i;:::-;11619:56;11693:29;11715:6;11693:29;:::i;:::-;11685:37;;11777:4;11771;11767:15;11759:23;;11482:307;;;:::o;11795:410::-;11872:5;11897:65;11913:48;11954:6;11913:48;:::i;:::-;11897:65;:::i;:::-;11888:74;;11985:6;11978:5;11971:21;12023:4;12016:5;12012:16;12061:3;12052:6;12047:3;12043:16;12040:25;12037:112;;;12068:79;;:::i;:::-;12037:112;12158:41;12192:6;12187:3;12182;12158:41;:::i;:::-;11878:327;11795:410;;;;;:::o;12224:338::-;12279:5;12328:3;12321:4;12313:6;12309:17;12305:27;12295:122;;12336:79;;:::i;:::-;12295:122;12453:6;12440:20;12478:78;12552:3;12544:6;12537:4;12529:6;12525:17;12478:78;:::i;:::-;12469:87;;12285:277;12224:338;;;;:::o;12568:943::-;12663:6;12671;12679;12687;12736:3;12724:9;12715:7;12711:23;12707:33;12704:120;;;12743:79;;:::i;:::-;12704:120;12863:1;12888:53;12933:7;12924:6;12913:9;12909:22;12888:53;:::i;:::-;12878:63;;12834:117;12990:2;13016:53;13061:7;13052:6;13041:9;13037:22;13016:53;:::i;:::-;13006:63;;12961:118;13118:2;13144:53;13189:7;13180:6;13169:9;13165:22;13144:53;:::i;:::-;13134:63;;13089:118;13274:2;13263:9;13259:18;13246:32;13305:18;13297:6;13294:30;13291:117;;;13327:79;;:::i;:::-;13291:117;13432:62;13486:7;13477:6;13466:9;13462:22;13432:62;:::i;:::-;13422:72;;13217:287;12568:943;;;;;;;:::o;13517:474::-;13585:6;13593;13642:2;13630:9;13621:7;13617:23;13613:32;13610:119;;;13648:79;;:::i;:::-;13610:119;13768:1;13793:53;13838:7;13829:6;13818:9;13814:22;13793:53;:::i;:::-;13783:63;;13739:117;13895:2;13921:53;13966:7;13957:6;13946:9;13942:22;13921:53;:::i;:::-;13911:63;;13866:118;13517:474;;;;;:::o;13997:180::-;14045:77;14042:1;14035:88;14142:4;14139:1;14132:15;14166:4;14163:1;14156:15;14183:320;14227:6;14264:1;14258:4;14254:12;14244:22;;14311:1;14305:4;14301:12;14332:18;14322:81;;14388:4;14380:6;14376:17;14366:27;;14322:81;14450:2;14442:6;14439:14;14419:18;14416:38;14413:84;;14469:18;;:::i;:::-;14413:84;14234:269;14183:320;;;:::o;14509:169::-;14649:21;14645:1;14637:6;14633:14;14626:45;14509:169;:::o;14684:366::-;14826:3;14847:67;14911:2;14906:3;14847:67;:::i;:::-;14840:74;;14923:93;15012:3;14923:93;:::i;:::-;15041:2;15036:3;15032:12;15025:19;;14684:366;;;:::o;15056:419::-;15222:4;15260:2;15249:9;15245:18;15237:26;;15309:9;15303:4;15299:20;15295:1;15284:9;15280:17;15273:47;15337:131;15463:4;15337:131;:::i;:::-;15329:139;;15056:419;;;:::o;15481:180::-;15529:77;15526:1;15519:88;15626:4;15623:1;15616:15;15650:4;15647:1;15640:15;15667:348;15707:7;15730:20;15748:1;15730:20;:::i;:::-;15725:25;;15764:20;15782:1;15764:20;:::i;:::-;15759:25;;15952:1;15884:66;15880:74;15877:1;15874:81;15869:1;15862:9;15855:17;15851:105;15848:131;;;15959:18;;:::i;:::-;15848:131;16007:1;16004;16000:9;15989:20;;15667:348;;;;:::o;16021:305::-;16061:3;16080:20;16098:1;16080:20;:::i;:::-;16075:25;;16114:20;16132:1;16114:20;:::i;:::-;16109:25;;16268:1;16200:66;16196:74;16193:1;16190:81;16187:107;;;16274:18;;:::i;:::-;16187:107;16318:1;16315;16311:9;16304:16;;16021:305;;;;:::o;16332:173::-;16472:25;16468:1;16460:6;16456:14;16449:49;16332:173;:::o;16511:366::-;16653:3;16674:67;16738:2;16733:3;16674:67;:::i;:::-;16667:74;;16750:93;16839:3;16750:93;:::i;:::-;16868:2;16863:3;16859:12;16852:19;;16511:366;;;:::o;16883:419::-;17049:4;17087:2;17076:9;17072:18;17064:26;;17136:9;17130:4;17126:20;17122:1;17111:9;17107:17;17100:47;17164:131;17290:4;17164:131;:::i;:::-;17156:139;;16883:419;;;:::o;17308:180::-;17356:77;17353:1;17346:88;17453:4;17450:1;17443:15;17477:4;17474:1;17467:15;17494:233;17533:3;17556:24;17574:5;17556:24;:::i;:::-;17547:33;;17602:66;17595:5;17592:77;17589:103;;17672:18;;:::i;:::-;17589:103;17719:1;17712:5;17708:13;17701:20;;17494:233;;;:::o;17733:181::-;17873:33;17869:1;17861:6;17857:14;17850:57;17733:181;:::o;17920:366::-;18062:3;18083:67;18147:2;18142:3;18083:67;:::i;:::-;18076:74;;18159:93;18248:3;18159:93;:::i;:::-;18277:2;18272:3;18268:12;18261:19;;17920:366;;;:::o;18292:419::-;18458:4;18496:2;18485:9;18481:18;18473:26;;18545:9;18539:4;18535:20;18531:1;18520:9;18516:17;18509:47;18573:131;18699:4;18573:131;:::i;:::-;18565:139;;18292:419;;;:::o;18717:141::-;18766:4;18789:3;18781:11;;18812:3;18809:1;18802:14;18846:4;18843:1;18833:18;18825:26;;18717:141;;;:::o;18864:93::-;18901:6;18948:2;18943;18936:5;18932:14;18928:23;18918:33;;18864:93;;;:::o;18963:107::-;19007:8;19057:5;19051:4;19047:16;19026:37;;18963:107;;;;:::o;19076:393::-;19145:6;19195:1;19183:10;19179:18;19218:97;19248:66;19237:9;19218:97;:::i;:::-;19336:39;19366:8;19355:9;19336:39;:::i;:::-;19324:51;;19408:4;19404:9;19397:5;19393:21;19384:30;;19457:4;19447:8;19443:19;19436:5;19433:30;19423:40;;19152:317;;19076:393;;;;;:::o;19475:60::-;19503:3;19524:5;19517:12;;19475:60;;;:::o;19541:142::-;19591:9;19624:53;19642:34;19651:24;19669:5;19651:24;:::i;:::-;19642:34;:::i;:::-;19624:53;:::i;:::-;19611:66;;19541:142;;;:::o;19689:75::-;19732:3;19753:5;19746:12;;19689:75;;;:::o;19770:269::-;19880:39;19911:7;19880:39;:::i;:::-;19941:91;19990:41;20014:16;19990:41;:::i;:::-;19982:6;19975:4;19969:11;19941:91;:::i;:::-;19935:4;19928:105;19846:193;19770:269;;;:::o;20045:73::-;20090:3;20045:73;:::o;20124:189::-;20201:32;;:::i;:::-;20242:65;20300:6;20292;20286:4;20242:65;:::i;:::-;20177:136;20124:189;;:::o;20319:186::-;20379:120;20396:3;20389:5;20386:14;20379:120;;;20450:39;20487:1;20480:5;20450:39;:::i;:::-;20423:1;20416:5;20412:13;20403:22;;20379:120;;;20319:186;;:::o;20511:543::-;20612:2;20607:3;20604:11;20601:446;;;20646:38;20678:5;20646:38;:::i;:::-;20730:29;20748:10;20730:29;:::i;:::-;20720:8;20716:44;20913:2;20901:10;20898:18;20895:49;;;20934:8;20919:23;;20895:49;20957:80;21013:22;21031:3;21013:22;:::i;:::-;21003:8;20999:37;20986:11;20957:80;:::i;:::-;20616:431;;20601:446;20511:543;;;:::o;21060:117::-;21114:8;21164:5;21158:4;21154:16;21133:37;;21060:117;;;;:::o;21183:169::-;21227:6;21260:51;21308:1;21304:6;21296:5;21293:1;21289:13;21260:51;:::i;:::-;21256:56;21341:4;21335;21331:15;21321:25;;21234:118;21183:169;;;;:::o;21357:295::-;21433:4;21579:29;21604:3;21598:4;21579:29;:::i;:::-;21571:37;;21641:3;21638:1;21634:11;21628:4;21625:21;21617:29;;21357:295;;;;:::o;21657:1395::-;21774:37;21807:3;21774:37;:::i;:::-;21876:18;21868:6;21865:30;21862:56;;;21898:18;;:::i;:::-;21862:56;21942:38;21974:4;21968:11;21942:38;:::i;:::-;22027:67;22087:6;22079;22073:4;22027:67;:::i;:::-;22121:1;22145:4;22132:17;;22177:2;22169:6;22166:14;22194:1;22189:618;;;;22851:1;22868:6;22865:77;;;22917:9;22912:3;22908:19;22902:26;22893:35;;22865:77;22968:67;23028:6;23021:5;22968:67;:::i;:::-;22962:4;22955:81;22824:222;22159:887;;22189:618;22241:4;22237:9;22229:6;22225:22;22275:37;22307:4;22275:37;:::i;:::-;22334:1;22348:208;22362:7;22359:1;22356:14;22348:208;;;22441:9;22436:3;22432:19;22426:26;22418:6;22411:42;22492:1;22484:6;22480:14;22470:24;;22539:2;22528:9;22524:18;22511:31;;22385:4;22382:1;22378:12;22373:17;;22348:208;;;22584:6;22575:7;22572:19;22569:179;;;22642:9;22637:3;22633:19;22627:26;22685:48;22727:4;22719:6;22715:17;22704:9;22685:48;:::i;:::-;22677:6;22670:64;22592:156;22569:179;22794:1;22790;22782:6;22778:14;22774:22;22768:4;22761:36;22196:611;;;22159:887;;21749:1303;;;21657:1395;;:::o;23058:173::-;23198:25;23194:1;23186:6;23182:14;23175:49;23058:173;:::o;23237:366::-;23379:3;23400:67;23464:2;23459:3;23400:67;:::i;:::-;23393:74;;23476:93;23565:3;23476:93;:::i;:::-;23594:2;23589:3;23585:12;23578:19;;23237:366;;;:::o;23609:419::-;23775:4;23813:2;23802:9;23798:18;23790:26;;23862:9;23856:4;23852:20;23848:1;23837:9;23833:17;23826:47;23890:131;24016:4;23890:131;:::i;:::-;23882:139;;23609:419;;;:::o;24034:173::-;24174:25;24170:1;24162:6;24158:14;24151:49;24034:173;:::o;24213:366::-;24355:3;24376:67;24440:2;24435:3;24376:67;:::i;:::-;24369:74;;24452:93;24541:3;24452:93;:::i;:::-;24570:2;24565:3;24561:12;24554:19;;24213:366;;;:::o;24585:419::-;24751:4;24789:2;24778:9;24774:18;24766:26;;24838:9;24832:4;24828:20;24824:1;24813:9;24809:17;24802:47;24866:131;24992:4;24866:131;:::i;:::-;24858:139;;24585:419;;;:::o;25010:171::-;25150:23;25146:1;25138:6;25134:14;25127:47;25010:171;:::o;25187:366::-;25329:3;25350:67;25414:2;25409:3;25350:67;:::i;:::-;25343:74;;25426:93;25515:3;25426:93;:::i;:::-;25544:2;25539:3;25535:12;25528:19;;25187:366;;;:::o;25559:419::-;25725:4;25763:2;25752:9;25748:18;25740:26;;25812:9;25806:4;25802:20;25798:1;25787:9;25783:17;25776:47;25840:131;25966:4;25840:131;:::i;:::-;25832:139;;25559:419;;;:::o;25984:148::-;26086:11;26123:3;26108:18;;25984:148;;;;:::o;26138:377::-;26244:3;26272:39;26305:5;26272:39;:::i;:::-;26327:89;26409:6;26404:3;26327:89;:::i;:::-;26320:96;;26425:52;26470:6;26465:3;26458:4;26451:5;26447:16;26425:52;:::i;:::-;26502:6;26497:3;26493:16;26486:23;;26248:267;26138:377;;;;:::o;26521:435::-;26701:3;26723:95;26814:3;26805:6;26723:95;:::i;:::-;26716:102;;26835:95;26926:3;26917:6;26835:95;:::i;:::-;26828:102;;26947:3;26940:10;;26521:435;;;;;:::o;26962:225::-;27102:34;27098:1;27090:6;27086:14;27079:58;27171:8;27166:2;27158:6;27154:15;27147:33;26962:225;:::o;27193:366::-;27335:3;27356:67;27420:2;27415:3;27356:67;:::i;:::-;27349:74;;27432:93;27521:3;27432:93;:::i;:::-;27550:2;27545:3;27541:12;27534:19;;27193:366;;;:::o;27565:419::-;27731:4;27769:2;27758:9;27754:18;27746:26;;27818:9;27812:4;27808:20;27804:1;27793:9;27789:17;27782:47;27846:131;27972:4;27846:131;:::i;:::-;27838:139;;27565:419;;;:::o;27990:182::-;28130:34;28126:1;28118:6;28114:14;28107:58;27990:182;:::o;28178:366::-;28320:3;28341:67;28405:2;28400:3;28341:67;:::i;:::-;28334:74;;28417:93;28506:3;28417:93;:::i;:::-;28535:2;28530:3;28526:12;28519:19;;28178:366;;;:::o;28550:419::-;28716:4;28754:2;28743:9;28739:18;28731:26;;28803:9;28797:4;28793:20;28789:1;28778:9;28774:17;28767:47;28831:131;28957:4;28831:131;:::i;:::-;28823:139;;28550:419;;;:::o;28975:179::-;29115:31;29111:1;29103:6;29099:14;29092:55;28975:179;:::o;29160:366::-;29302:3;29323:67;29387:2;29382:3;29323:67;:::i;:::-;29316:74;;29399:93;29488:3;29399:93;:::i;:::-;29517:2;29512:3;29508:12;29501:19;;29160:366;;;:::o;29532:419::-;29698:4;29736:2;29725:9;29721:18;29713:26;;29785:9;29779:4;29775:20;29771:1;29760:9;29756:17;29749:47;29813:131;29939:4;29813:131;:::i;:::-;29805:139;;29532:419;;;:::o;29957:147::-;30058:11;30095:3;30080:18;;29957:147;;;;:::o;30110:114::-;;:::o;30230:398::-;30389:3;30410:83;30491:1;30486:3;30410:83;:::i;:::-;30403:90;;30502:93;30591:3;30502:93;:::i;:::-;30620:1;30615:3;30611:11;30604:18;;30230:398;;;:::o;30634:379::-;30818:3;30840:147;30983:3;30840:147;:::i;:::-;30833:154;;31004:3;30997:10;;30634:379;;;:::o;31019:245::-;31159:34;31155:1;31147:6;31143:14;31136:58;31228:28;31223:2;31215:6;31211:15;31204:53;31019:245;:::o;31270:366::-;31412:3;31433:67;31497:2;31492:3;31433:67;:::i;:::-;31426:74;;31509:93;31598:3;31509:93;:::i;:::-;31627:2;31622:3;31618:12;31611:19;;31270:366;;;:::o;31642:419::-;31808:4;31846:2;31835:9;31831:18;31823:26;;31895:9;31889:4;31885:20;31881:1;31870:9;31866:17;31859:47;31923:131;32049:4;31923:131;:::i;:::-;31915:139;;31642:419;;;:::o;32067:98::-;32118:6;32152:5;32146:12;32136:22;;32067:98;;;:::o;32171:168::-;32254:11;32288:6;32283:3;32276:19;32328:4;32323:3;32319:14;32304:29;;32171:168;;;;:::o;32345:360::-;32431:3;32459:38;32491:5;32459:38;:::i;:::-;32513:70;32576:6;32571:3;32513:70;:::i;:::-;32506:77;;32592:52;32637:6;32632:3;32625:4;32618:5;32614:16;32592:52;:::i;:::-;32669:29;32691:6;32669:29;:::i;:::-;32664:3;32660:39;32653:46;;32435:270;32345:360;;;;:::o;32711:640::-;32906:4;32944:3;32933:9;32929:19;32921:27;;32958:71;33026:1;33015:9;33011:17;33002:6;32958:71;:::i;:::-;33039:72;33107:2;33096:9;33092:18;33083:6;33039:72;:::i;:::-;33121;33189:2;33178:9;33174:18;33165:6;33121:72;:::i;:::-;33240:9;33234:4;33230:20;33225:2;33214:9;33210:18;33203:48;33268:76;33339:4;33330:6;33268:76;:::i;:::-;33260:84;;32711:640;;;;;;;:::o;33357:141::-;33413:5;33444:6;33438:13;33429:22;;33460:32;33486:5;33460:32;:::i;:::-;33357:141;;;;:::o;33504:349::-;33573:6;33622:2;33610:9;33601:7;33597:23;33593:32;33590:119;;;33628:79;;:::i;:::-;33590:119;33748:1;33773:63;33828:7;33819:6;33808:9;33804:22;33773:63;:::i;:::-;33763:73;;33719:127;33504:349;;;;:::o
Swarm Source
ipfs://d85152322e0b8b61549ef9722e494b2aca468452470495546700176a0894c827
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.