ETH Price: $3,005.30 (+4.15%)
Gas: 7 Gwei

Token

SHA256 (SHA256)
 

Overview

Max Total Supply

290 SHA256

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
d3rwisj.eth
Balance
2 SHA256
0xeb0e6ecd0e78b0a84ecd9663a041f453c454a99d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHA256

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-11
*/

// SPDX-License-Identifier: MIT

//   █████████  █████   █████   █████████               ████████  ██████████  ████████ 
//  ███░░░░░███░░███   ░░███   ███░░░░░███             ███░░░░███░███░░░░░░█ ███░░░░███
// ░███    ░░░  ░███    ░███  ░███    ░███            ░░░    ░███░███     ░ ░███   ░░░ 
// ░░█████████  ░███████████  ░███████████  ██████████   ███████ ░█████████ ░█████████ 
//  ░░░░░░░░███ ░███░░░░░███  ░███░░░░░███ ░░░░░░░░░░   ███░░░░  ░░░░░░░░███░███░░░░███
//  ███    ░███ ░███    ░███  ░███    ░███             ███      █ ███   ░███░███   ░███
// ░░█████████  █████   █████ █████   █████           ░██████████░░████████ ░░████████ 
//  ░░░░░░░░░  ░░░░░   ░░░░░ ░░░░░   ░░░░░            ░░░░░░░░░░  ░░░░░░░░   ░░░░░░░░  

// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contracts/SHA256.sol



pragma solidity ^0.8.21;



contract SHA256 is ERC721A, Ownable {
    uint256 public maxSupply = 1256;
    uint256 public cost = 0.00256 ether;
    uint256 public maxPerTx = 3;
    uint256 public maxMintsPerWallet = 3;
    mapping(address => uint) public mintedNFTs;
    string public baseURI;
    bool public sale;

    error SaleNotActive();
    error MaxSupplyReached();
    error MaxPerTxReached();
    error NotEnoughETH();

    constructor(string memory _initURI) payable ERC721A("SHA256", "SHA256") {
        baseURI = _initURI;
    }

    function mint(uint256 _amount) external payable {
        if (!sale) revert SaleNotActive();
        if (_totalMinted() + _amount > maxSupply) revert MaxSupplyReached();
        if (_amount > maxPerTx) revert MaxPerTxReached();
        if (msg.value < cost * _amount) revert NotEnoughETH();
        require(mintedNFTs[msg.sender] + _amount <= maxMintsPerWallet, "You're too greedy!");
        mintedNFTs[msg.sender] += _amount;
        _mint(msg.sender, _amount);
    }

    function airdrop(address _to, uint256 _amount) external onlyOwner {
        _mint(_to, _amount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return string(abi.encodePacked(baseURI, _toString(tokenId), ".json"));
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string calldata _newURI) external onlyOwner {
        baseURI = _newURI;
    }

    function setCost(uint256 _cost) external onlyOwner {
        cost = _cost;
    }

    function setSupply(uint256 _maxSupply) external onlyOwner {
        maxSupply = _maxSupply;
    }

    function setMaxPerTx(uint256 _maxPerTx) external onlyOwner {
        maxPerTx = _maxPerTx;
    }

    function setMaxMintsPerWallet(uint256 _maxMintsPerWallet) external onlyOwner {
        maxMintsPerWallet = _maxMintsPerWallet;
    }

    function startSale() external onlyOwner {
        sale = !sale;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initURI","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxPerTxReached","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintsPerWallet","type":"uint256"}],"name":"setMaxMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104e86009556609184e72a00000600a556003600b556003600c55604051620031983803806200319883398181016040528101906200004491906200037b565b6040518060400160405280600681526020017f53484132353600000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53484132353600000000000000000000000000000000000000000000000000008152508160029081620000c1919062000601565b508060039081620000d3919062000601565b50620000e46200012460201b60201c565b5f8190555050506200010b620000ff6200012c60201b60201c565b6200013360201b60201c565b80600e90816200011c919062000601565b5050620006e5565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b62000257826200020f565b810181811067ffffffffffffffff821117156200027957620002786200021f565b5b80604052505050565b5f6200028d620001f6565b90506200029b82826200024c565b919050565b5f67ffffffffffffffff821115620002bd57620002bc6200021f565b5b620002c8826200020f565b9050602081019050919050565b5f5b83811015620002f4578082015181840152602081019050620002d7565b5f8484015250505050565b5f620003156200030f84620002a0565b62000282565b9050828152602081018484840111156200033457620003336200020b565b5b62000341848285620002d5565b509392505050565b5f82601f83011262000360576200035f62000207565b5b815162000372848260208601620002ff565b91505092915050565b5f60208284031215620003935762000392620001ff565b5b5f82015167ffffffffffffffff811115620003b357620003b262000203565b5b620003c18482850162000349565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041957607f821691505b6020821081036200042f576200042e620003d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000456565b6200049f868362000456565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004e9620004e3620004dd84620004b7565b620004c0565b620004b7565b9050919050565b5f819050919050565b6200050483620004c9565b6200051c6200051382620004f0565b84845462000462565b825550505050565b5f90565b6200053262000524565b6200053f818484620004f9565b505050565b5b8181101562000566576200055a5f8262000528565b60018101905062000545565b5050565b601f821115620005b5576200057f8162000435565b6200058a8462000447565b810160208510156200059a578190505b620005b2620005a98562000447565b83018262000544565b50505b505050565b5f82821c905092915050565b5f620005d75f1984600802620005ba565b1980831691505092915050565b5f620005f18383620005c6565b9150826002028217905092915050565b6200060c82620003ca565b67ffffffffffffffff8111156200062857620006276200021f565b5b62000634825462000401565b620006418282856200056a565b5f60209050601f83116001811462000677575f841562000662578287015190505b6200066e8582620005e4565b865550620006dd565b601f198416620006878662000435565b5f5b82811015620006b05784890151825560018201915060208501945060208101905062000689565b86831015620006d05784890151620006cc601f891682620005c6565b8355505b6001600288020188555050505b505050505050565b612aa580620006f35f395ff3fe6080604052600436106101ed575f3560e01c8063715018a61161010c578063b88d4fde1161009f578063d5abeb011161006e578063d5abeb0114610665578063e985e9c51461068f578063f2fde38b146106cb578063f516a2e6146106f3578063f968adbe1461071d576101ed565b8063b88d4fde146105a9578063ba060bed146105c5578063c6f6f21614610601578063c87b56dd14610629576101ed565b8063963c3546116100db578063963c354614610527578063a0712d681461054f578063a22cb4651461056b578063b66a0e5d14610593576101ed565b8063715018a6146104955780638ba4cc3c146104ab5780638da5cb5b146104d357806395d89b41146104fd576101ed565b80633ccfd60b116101845780636352211e116101535780636352211e146103c95780636ad1fe02146104055780636c0360eb1461042f57806370a0823114610459576101ed565b80633ccfd60b1461034757806342842e0e1461035d57806344a0d68a1461037957806355f804b3146103a1576101ed565b806313faede6116101c057806313faede6146102af57806318160ddd146102d957806323b872dd146103035780633b4c4b251461031f576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190611d26565b610747565b6040516102249190611d6b565b60405180910390f35b348015610238575f80fd5b506102416107d8565b60405161024e9190611e0e565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190611e61565b610868565b60405161028a9190611ecb565b60405180910390f35b6102ad60048036038101906102a89190611f0e565b6108e2565b005b3480156102ba575f80fd5b506102c3610a21565b6040516102d09190611f5b565b60405180910390f35b3480156102e4575f80fd5b506102ed610a27565b6040516102fa9190611f5b565b60405180910390f35b61031d60048036038101906103189190611f74565b610a3c565b005b34801561032a575f80fd5b5061034560048036038101906103409190611e61565b610d4a565b005b348015610352575f80fd5b5061035b610d5c565b005b61037760048036038101906103729190611f74565b610e0f565b005b348015610384575f80fd5b5061039f600480360381019061039a9190611e61565b610e2e565b005b3480156103ac575f80fd5b506103c760048036038101906103c29190612025565b610e40565b005b3480156103d4575f80fd5b506103ef60048036038101906103ea9190611e61565b610e5e565b6040516103fc9190611ecb565b60405180910390f35b348015610410575f80fd5b50610419610e6f565b6040516104269190611d6b565b60405180910390f35b34801561043a575f80fd5b50610443610e81565b6040516104509190611e0e565b60405180910390f35b348015610464575f80fd5b5061047f600480360381019061047a9190612070565b610f0d565b60405161048c9190611f5b565b60405180910390f35b3480156104a0575f80fd5b506104a9610fc2565b005b3480156104b6575f80fd5b506104d160048036038101906104cc9190611f0e565b610fd5565b005b3480156104de575f80fd5b506104e7610feb565b6040516104f49190611ecb565b60405180910390f35b348015610508575f80fd5b50610511611013565b60405161051e9190611e0e565b60405180910390f35b348015610532575f80fd5b5061054d60048036038101906105489190611e61565b6110a3565b005b61056960048036038101906105649190611e61565b6110b5565b005b348015610576575f80fd5b50610591600480360381019061058c91906120c5565b6112b8565b005b34801561059e575f80fd5b506105a76113be565b005b6105c360048036038101906105be919061222b565b6113f0565b005b3480156105d0575f80fd5b506105eb60048036038101906105e69190612070565b611462565b6040516105f89190611f5b565b60405180910390f35b34801561060c575f80fd5b5061062760048036038101906106229190611e61565b611477565b005b348015610634575f80fd5b5061064f600480360381019061064a9190611e61565b611489565b60405161065c9190611e0e565b60405180910390f35b348015610670575f80fd5b506106796114fc565b6040516106869190611f5b565b60405180910390f35b34801561069a575f80fd5b506106b560048036038101906106b091906122ab565b611502565b6040516106c29190611d6b565b60405180910390f35b3480156106d6575f80fd5b506106f160048036038101906106ec9190612070565b611590565b005b3480156106fe575f80fd5b50610707611612565b6040516107149190611f5b565b60405180910390f35b348015610728575f80fd5b50610731611618565b60405161073e9190611f5b565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e790612316565b80601f016020809104026020016040519081016040528092919081815260200182805461081390612316565b801561085e5780601f106108355761010080835404028352916020019161085e565b820191905f5260205f20905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b5f6108728261161e565b6108a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108ec82610e5e565b90508073ffffffffffffffffffffffffffffffffffffffff1661090d611678565b73ffffffffffffffffffffffffffffffffffffffff16146109705761093981610934611678565b611502565b61096f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b5f610a3061167f565b6001545f540303905090565b5f610a4682611687565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ab88461174a565b91509150610ace8187610ac9611678565b61176d565b610b1a57610ae386610ade611678565b611502565b610b19576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b8c86868660016117b0565b8015610b96575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c5e85610c3a8888876117b6565b7c0200000000000000000000000000000000000000000000000000000000176117dd565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cda575f6001850190505f60045f8381526020019081526020015f205403610cd8575f548114610cd7578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d428686866001611807565b505050505050565b610d5261180d565b8060098190555050565b610d6461180d565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d8990612373565b5f6040518083038185875af1925050503d805f8114610dc3576040519150601f19603f3d011682016040523d82523d5f602084013e610dc8565b606091505b5050905080610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e03906123d1565b60405180910390fd5b50565b610e2983838360405180602001604052805f8152506113f0565b505050565b610e3661180d565b80600a8190555050565b610e4861180d565b8181600e9182610e59929190612596565b505050565b5f610e6882611687565b9050919050565b600f5f9054906101000a900460ff1681565b600e8054610e8e90612316565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba90612316565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f73576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fca61180d565b610fd35f61188b565b565b610fdd61180d565b610fe7828261194e565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461102290612316565b80601f016020809104026020016040519081016040528092919081815260200182805461104e90612316565b80156110995780601f1061107057610100808354040283529160200191611099565b820191905f5260205f20905b81548152906001019060200180831161107c57829003601f168201915b5050505050905090565b6110ab61180d565b80600c8190555050565b600f5f9054906101000a900460ff166110fa576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095481611106611af7565b6111109190612690565b1115611148576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115611184576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a5461119291906126c3565b3410156111cb576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5481600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112179190612690565b1115611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061274e565b60405180910390fd5b80600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112a49190612690565b925050819055506112b5338261194e565b50565b8060075f6112c4611678565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661136d611678565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b29190611d6b565b60405180910390a35050565b6113c661180d565b600f5f9054906101000a900460ff1615600f5f6101000a81548160ff021916908315150217905550565b6113fb848484610a3c565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461145c5761142584848484611b08565b61145b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d602052805f5260405f205f915090505481565b61147f61180d565b80600b8190555050565b60606114948261161e565b6114ca576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e6114d583611c53565b6040516020016114e6929190612870565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61159861180d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd9061290e565b60405180910390fd5b61160f8161188b565b50565b600c5481565b600b5481565b5f8161162861167f565b1115801561163657505f5482105b801561167157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061169561167f565b11611713575f54811015611712575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611710575b5f81036117065760045f836001900393508381526020019081526020015f205490506116df565b8092505050611745565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86117cc868684611ca2565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611815611caa565b73ffffffffffffffffffffffffffffffffffffffff16611833610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090612976565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820361198c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119985f8483856117b0565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611a0a836119fb5f865f6117b6565b611a0485611cb1565b176117dd565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611aa45780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611a6b565b505f8203611ade576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611af25f848385611807565b505050565b5f611b0061167f565b5f5403905090565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b2d611678565b8786866040518563ffffffff1660e01b8152600401611b4f94939291906129e6565b6020604051808303815f875af1925050508015611b8a57506040513d601f19601f82011682018060405250810190611b879190612a44565b60015b611c00573d805f8114611bb8576040519150601f19603f3d011682016040523d82523d5f602084013e611bbd565b606091505b505f815103611bf8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611c8d57600184039350600a81066030018453600a8104905080611c6b575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d0581611cd1565b8114611d0f575f80fd5b50565b5f81359050611d2081611cfc565b92915050565b5f60208284031215611d3b57611d3a611cc9565b5b5f611d4884828501611d12565b91505092915050565b5f8115159050919050565b611d6581611d51565b82525050565b5f602082019050611d7e5f830184611d5c565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611dbb578082015181840152602081019050611da0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611de082611d84565b611dea8185611d8e565b9350611dfa818560208601611d9e565b611e0381611dc6565b840191505092915050565b5f6020820190508181035f830152611e268184611dd6565b905092915050565b5f819050919050565b611e4081611e2e565b8114611e4a575f80fd5b50565b5f81359050611e5b81611e37565b92915050565b5f60208284031215611e7657611e75611cc9565b5b5f611e8384828501611e4d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611eb582611e8c565b9050919050565b611ec581611eab565b82525050565b5f602082019050611ede5f830184611ebc565b92915050565b611eed81611eab565b8114611ef7575f80fd5b50565b5f81359050611f0881611ee4565b92915050565b5f8060408385031215611f2457611f23611cc9565b5b5f611f3185828601611efa565b9250506020611f4285828601611e4d565b9150509250929050565b611f5581611e2e565b82525050565b5f602082019050611f6e5f830184611f4c565b92915050565b5f805f60608486031215611f8b57611f8a611cc9565b5b5f611f9886828701611efa565b9350506020611fa986828701611efa565b9250506040611fba86828701611e4d565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611fe557611fe4611fc4565b5b8235905067ffffffffffffffff81111561200257612001611fc8565b5b60208301915083600182028301111561201e5761201d611fcc565b5b9250929050565b5f806020838503121561203b5761203a611cc9565b5b5f83013567ffffffffffffffff81111561205857612057611ccd565b5b61206485828601611fd0565b92509250509250929050565b5f6020828403121561208557612084611cc9565b5b5f61209284828501611efa565b91505092915050565b6120a481611d51565b81146120ae575f80fd5b50565b5f813590506120bf8161209b565b92915050565b5f80604083850312156120db576120da611cc9565b5b5f6120e885828601611efa565b92505060206120f9858286016120b1565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61213d82611dc6565b810181811067ffffffffffffffff8211171561215c5761215b612107565b5b80604052505050565b5f61216e611cc0565b905061217a8282612134565b919050565b5f67ffffffffffffffff82111561219957612198612107565b5b6121a282611dc6565b9050602081019050919050565b828183375f83830152505050565b5f6121cf6121ca8461217f565b612165565b9050828152602081018484840111156121eb576121ea612103565b5b6121f68482856121af565b509392505050565b5f82601f83011261221257612211611fc4565b5b81356122228482602086016121bd565b91505092915050565b5f805f806080858703121561224357612242611cc9565b5b5f61225087828801611efa565b945050602061226187828801611efa565b935050604061227287828801611e4d565b925050606085013567ffffffffffffffff81111561229357612292611ccd565b5b61229f878288016121fe565b91505092959194509250565b5f80604083850312156122c1576122c0611cc9565b5b5f6122ce85828601611efa565b92505060206122df85828601611efa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061232d57607f821691505b6020821081036123405761233f6122e9565b5b50919050565b5f81905092915050565b50565b5f61235e5f83612346565b915061236982612350565b5f82019050919050565b5f61237d82612353565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6123bb600f83611d8e565b91506123c682612387565b602082019050919050565b5f6020820190508181035f8301526123e8816123af565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261241a565b61245f868361241a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61249a61249561249084611e2e565b612477565b611e2e565b9050919050565b5f819050919050565b6124b383612480565b6124c76124bf826124a1565b848454612426565b825550505050565b5f90565b6124db6124cf565b6124e68184846124aa565b505050565b5b81811015612509576124fe5f826124d3565b6001810190506124ec565b5050565b601f82111561254e5761251f816123f9565b6125288461240b565b81016020851015612537578190505b61254b6125438561240b565b8301826124eb565b50505b505050565b5f82821c905092915050565b5f61256e5f1984600802612553565b1980831691505092915050565b5f612586838361255f565b9150826002028217905092915050565b6125a083836123ef565b67ffffffffffffffff8111156125b9576125b8612107565b5b6125c38254612316565b6125ce82828561250d565b5f601f8311600181146125fb575f84156125e9578287013590505b6125f3858261257b565b86555061265a565b601f198416612609866123f9565b5f5b828110156126305784890135825560018201915060208501945060208101905061260b565b8683101561264d5784890135612649601f89168261255f565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61269a82611e2e565b91506126a583611e2e565b92508282019050808211156126bd576126bc612663565b5b92915050565b5f6126cd82611e2e565b91506126d883611e2e565b92508282026126e681611e2e565b915082820484148315176126fd576126fc612663565b5b5092915050565b7f596f7527726520746f6f206772656564792100000000000000000000000000005f82015250565b5f612738601283611d8e565b915061274382612704565b602082019050919050565b5f6020820190508181035f8301526127658161272c565b9050919050565b5f81905092915050565b5f815461278281612316565b61278c818661276c565b9450600182165f81146127a657600181146127bb576127ed565b60ff19831686528115158202860193506127ed565b6127c4856123f9565b5f5b838110156127e5578154818901526001820191506020810190506127c6565b838801955050505b50505092915050565b5f61280082611d84565b61280a818561276c565b935061281a818560208601611d9e565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f61285a60058361276c565b915061286582612826565b600582019050919050565b5f61287b8285612776565b915061288782846127f6565b91506128928261284e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6128f8602683611d8e565b91506129038261289e565b604082019050919050565b5f6020820190508181035f830152612925816128ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612960602083611d8e565b915061296b8261292c565b602082019050919050565b5f6020820190508181035f83015261298d81612954565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6129b882612994565b6129c2818561299e565b93506129d2818560208601611d9e565b6129db81611dc6565b840191505092915050565b5f6080820190506129f95f830187611ebc565b612a066020830186611ebc565b612a136040830185611f4c565b8181036060830152612a2581846129ae565b905095945050505050565b5f81519050612a3e81611cfc565b92915050565b5f60208284031215612a5957612a58611cc9565b5b5f612a6684828501612a30565b9150509291505056fea2646970667358221220dbb3677e319f6ee6755e611eaa7ef4ed07fe015351262024c6ab976429fd283664736f6c63430008150033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000012d00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101ed575f3560e01c8063715018a61161010c578063b88d4fde1161009f578063d5abeb011161006e578063d5abeb0114610665578063e985e9c51461068f578063f2fde38b146106cb578063f516a2e6146106f3578063f968adbe1461071d576101ed565b8063b88d4fde146105a9578063ba060bed146105c5578063c6f6f21614610601578063c87b56dd14610629576101ed565b8063963c3546116100db578063963c354614610527578063a0712d681461054f578063a22cb4651461056b578063b66a0e5d14610593576101ed565b8063715018a6146104955780638ba4cc3c146104ab5780638da5cb5b146104d357806395d89b41146104fd576101ed565b80633ccfd60b116101845780636352211e116101535780636352211e146103c95780636ad1fe02146104055780636c0360eb1461042f57806370a0823114610459576101ed565b80633ccfd60b1461034757806342842e0e1461035d57806344a0d68a1461037957806355f804b3146103a1576101ed565b806313faede6116101c057806313faede6146102af57806318160ddd146102d957806323b872dd146103035780633b4c4b251461031f576101ed565b806301ffc9a7146101f157806306fdde031461022d578063081812fc14610257578063095ea7b314610293575b5f80fd5b3480156101fc575f80fd5b5061021760048036038101906102129190611d26565b610747565b6040516102249190611d6b565b60405180910390f35b348015610238575f80fd5b506102416107d8565b60405161024e9190611e0e565b60405180910390f35b348015610262575f80fd5b5061027d60048036038101906102789190611e61565b610868565b60405161028a9190611ecb565b60405180910390f35b6102ad60048036038101906102a89190611f0e565b6108e2565b005b3480156102ba575f80fd5b506102c3610a21565b6040516102d09190611f5b565b60405180910390f35b3480156102e4575f80fd5b506102ed610a27565b6040516102fa9190611f5b565b60405180910390f35b61031d60048036038101906103189190611f74565b610a3c565b005b34801561032a575f80fd5b5061034560048036038101906103409190611e61565b610d4a565b005b348015610352575f80fd5b5061035b610d5c565b005b61037760048036038101906103729190611f74565b610e0f565b005b348015610384575f80fd5b5061039f600480360381019061039a9190611e61565b610e2e565b005b3480156103ac575f80fd5b506103c760048036038101906103c29190612025565b610e40565b005b3480156103d4575f80fd5b506103ef60048036038101906103ea9190611e61565b610e5e565b6040516103fc9190611ecb565b60405180910390f35b348015610410575f80fd5b50610419610e6f565b6040516104269190611d6b565b60405180910390f35b34801561043a575f80fd5b50610443610e81565b6040516104509190611e0e565b60405180910390f35b348015610464575f80fd5b5061047f600480360381019061047a9190612070565b610f0d565b60405161048c9190611f5b565b60405180910390f35b3480156104a0575f80fd5b506104a9610fc2565b005b3480156104b6575f80fd5b506104d160048036038101906104cc9190611f0e565b610fd5565b005b3480156104de575f80fd5b506104e7610feb565b6040516104f49190611ecb565b60405180910390f35b348015610508575f80fd5b50610511611013565b60405161051e9190611e0e565b60405180910390f35b348015610532575f80fd5b5061054d60048036038101906105489190611e61565b6110a3565b005b61056960048036038101906105649190611e61565b6110b5565b005b348015610576575f80fd5b50610591600480360381019061058c91906120c5565b6112b8565b005b34801561059e575f80fd5b506105a76113be565b005b6105c360048036038101906105be919061222b565b6113f0565b005b3480156105d0575f80fd5b506105eb60048036038101906105e69190612070565b611462565b6040516105f89190611f5b565b60405180910390f35b34801561060c575f80fd5b5061062760048036038101906106229190611e61565b611477565b005b348015610634575f80fd5b5061064f600480360381019061064a9190611e61565b611489565b60405161065c9190611e0e565b60405180910390f35b348015610670575f80fd5b506106796114fc565b6040516106869190611f5b565b60405180910390f35b34801561069a575f80fd5b506106b560048036038101906106b091906122ab565b611502565b6040516106c29190611d6b565b60405180910390f35b3480156106d6575f80fd5b506106f160048036038101906106ec9190612070565b611590565b005b3480156106fe575f80fd5b50610707611612565b6040516107149190611f5b565b60405180910390f35b348015610728575f80fd5b50610731611618565b60405161073e9190611f5b565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107d15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107e790612316565b80601f016020809104026020016040519081016040528092919081815260200182805461081390612316565b801561085e5780601f106108355761010080835404028352916020019161085e565b820191905f5260205f20905b81548152906001019060200180831161084157829003601f168201915b5050505050905090565b5f6108728261161e565b6108a8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f6108ec82610e5e565b90508073ffffffffffffffffffffffffffffffffffffffff1661090d611678565b73ffffffffffffffffffffffffffffffffffffffff16146109705761093981610934611678565b611502565b61096f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b5f610a3061167f565b6001545f540303905090565b5f610a4682611687565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aad576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f80610ab88461174a565b91509150610ace8187610ac9611678565b61176d565b610b1a57610ae386610ade611678565b611502565b610b19576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b7f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b8c86868660016117b0565b8015610b96575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815460010191905081905550610c5e85610c3a8888876117b6565b7c0200000000000000000000000000000000000000000000000000000000176117dd565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603610cda575f6001850190505f60045f8381526020019081526020015f205403610cd8575f548114610cd7578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d428686866001611807565b505050505050565b610d5261180d565b8060098190555050565b610d6461180d565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051610d8990612373565b5f6040518083038185875af1925050503d805f8114610dc3576040519150601f19603f3d011682016040523d82523d5f602084013e610dc8565b606091505b5050905080610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e03906123d1565b60405180910390fd5b50565b610e2983838360405180602001604052805f8152506113f0565b505050565b610e3661180d565b80600a8190555050565b610e4861180d565b8181600e9182610e59929190612596565b505050565b5f610e6882611687565b9050919050565b600f5f9054906101000a900460ff1681565b600e8054610e8e90612316565b80601f0160208091040260200160405190810160405280929190818152602001828054610eba90612316565b8015610f055780601f10610edc57610100808354040283529160200191610f05565b820191905f5260205f20905b815481529060010190602001808311610ee857829003601f168201915b505050505081565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f73576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610fca61180d565b610fd35f61188b565b565b610fdd61180d565b610fe7828261194e565b5050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461102290612316565b80601f016020809104026020016040519081016040528092919081815260200182805461104e90612316565b80156110995780601f1061107057610100808354040283529160200191611099565b820191905f5260205f20905b81548152906001019060200180831161107c57829003601f168201915b5050505050905090565b6110ab61180d565b80600c8190555050565b600f5f9054906101000a900460ff166110fa576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60095481611106611af7565b6111109190612690565b1115611148576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54811115611184576040517f84eef40b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a5461119291906126c3565b3410156111cb576040517f583aa02600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c5481600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546112179190612690565b1115611258576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124f9061274e565b60405180910390fd5b80600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546112a49190612690565b925050819055506112b5338261194e565b50565b8060075f6112c4611678565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661136d611678565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113b29190611d6b565b60405180910390a35050565b6113c661180d565b600f5f9054906101000a900460ff1615600f5f6101000a81548160ff021916908315150217905550565b6113fb848484610a3c565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461145c5761142584848484611b08565b61145b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d602052805f5260405f205f915090505481565b61147f61180d565b80600b8190555050565b60606114948261161e565b6114ca576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e6114d583611c53565b6040516020016114e6929190612870565b6040516020818303038152906040529050919050565b60095481565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61159861180d565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611606576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fd9061290e565b60405180910390fd5b61160f8161188b565b50565b600c5481565b600b5481565b5f8161162861167f565b1115801561163657505f5482105b801561167157505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f33905090565b5f6001905090565b5f808290508061169561167f565b11611713575f54811015611712575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603611710575b5f81036117065760045f836001900393508381526020019081526020015f205490506116df565b8092505050611745565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86117cc868684611ca2565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611815611caa565b73ffffffffffffffffffffffffffffffffffffffff16611833610feb565b73ffffffffffffffffffffffffffffffffffffffff1614611889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188090612976565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f805490505f820361198c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119985f8483856117b0565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550611a0a836119fb5f865f6117b6565b611a0485611cb1565b176117dd565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114611aa45780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050611a6b565b505f8203611ade576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050611af25f848385611807565b505050565b5f611b0061167f565b5f5403905090565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b2d611678565b8786866040518563ffffffff1660e01b8152600401611b4f94939291906129e6565b6020604051808303815f875af1925050508015611b8a57506040513d601f19601f82011682018060405250810190611b879190612a44565b60015b611c00573d805f8114611bb8576040519150601f19603f3d011682016040523d82523d5f602084013e611bbd565b606091505b505f815103611bf8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060a060405101806040526020810391505f825281835b600115611c8d57600184039350600a81066030018453600a8104905080611c6b575b50828103602084039350808452505050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d0581611cd1565b8114611d0f575f80fd5b50565b5f81359050611d2081611cfc565b92915050565b5f60208284031215611d3b57611d3a611cc9565b5b5f611d4884828501611d12565b91505092915050565b5f8115159050919050565b611d6581611d51565b82525050565b5f602082019050611d7e5f830184611d5c565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611dbb578082015181840152602081019050611da0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611de082611d84565b611dea8185611d8e565b9350611dfa818560208601611d9e565b611e0381611dc6565b840191505092915050565b5f6020820190508181035f830152611e268184611dd6565b905092915050565b5f819050919050565b611e4081611e2e565b8114611e4a575f80fd5b50565b5f81359050611e5b81611e37565b92915050565b5f60208284031215611e7657611e75611cc9565b5b5f611e8384828501611e4d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611eb582611e8c565b9050919050565b611ec581611eab565b82525050565b5f602082019050611ede5f830184611ebc565b92915050565b611eed81611eab565b8114611ef7575f80fd5b50565b5f81359050611f0881611ee4565b92915050565b5f8060408385031215611f2457611f23611cc9565b5b5f611f3185828601611efa565b9250506020611f4285828601611e4d565b9150509250929050565b611f5581611e2e565b82525050565b5f602082019050611f6e5f830184611f4c565b92915050565b5f805f60608486031215611f8b57611f8a611cc9565b5b5f611f9886828701611efa565b9350506020611fa986828701611efa565b9250506040611fba86828701611e4d565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112611fe557611fe4611fc4565b5b8235905067ffffffffffffffff81111561200257612001611fc8565b5b60208301915083600182028301111561201e5761201d611fcc565b5b9250929050565b5f806020838503121561203b5761203a611cc9565b5b5f83013567ffffffffffffffff81111561205857612057611ccd565b5b61206485828601611fd0565b92509250509250929050565b5f6020828403121561208557612084611cc9565b5b5f61209284828501611efa565b91505092915050565b6120a481611d51565b81146120ae575f80fd5b50565b5f813590506120bf8161209b565b92915050565b5f80604083850312156120db576120da611cc9565b5b5f6120e885828601611efa565b92505060206120f9858286016120b1565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61213d82611dc6565b810181811067ffffffffffffffff8211171561215c5761215b612107565b5b80604052505050565b5f61216e611cc0565b905061217a8282612134565b919050565b5f67ffffffffffffffff82111561219957612198612107565b5b6121a282611dc6565b9050602081019050919050565b828183375f83830152505050565b5f6121cf6121ca8461217f565b612165565b9050828152602081018484840111156121eb576121ea612103565b5b6121f68482856121af565b509392505050565b5f82601f83011261221257612211611fc4565b5b81356122228482602086016121bd565b91505092915050565b5f805f806080858703121561224357612242611cc9565b5b5f61225087828801611efa565b945050602061226187828801611efa565b935050604061227287828801611e4d565b925050606085013567ffffffffffffffff81111561229357612292611ccd565b5b61229f878288016121fe565b91505092959194509250565b5f80604083850312156122c1576122c0611cc9565b5b5f6122ce85828601611efa565b92505060206122df85828601611efa565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061232d57607f821691505b6020821081036123405761233f6122e9565b5b50919050565b5f81905092915050565b50565b5f61235e5f83612346565b915061236982612350565b5f82019050919050565b5f61237d82612353565b9150819050919050565b7f5472616e73666572206661696c656400000000000000000000000000000000005f82015250565b5f6123bb600f83611d8e565b91506123c682612387565b602082019050919050565b5f6020820190508181035f8301526123e8816123af565b9050919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026124557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261241a565b61245f868361241a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61249a61249561249084611e2e565b612477565b611e2e565b9050919050565b5f819050919050565b6124b383612480565b6124c76124bf826124a1565b848454612426565b825550505050565b5f90565b6124db6124cf565b6124e68184846124aa565b505050565b5b81811015612509576124fe5f826124d3565b6001810190506124ec565b5050565b601f82111561254e5761251f816123f9565b6125288461240b565b81016020851015612537578190505b61254b6125438561240b565b8301826124eb565b50505b505050565b5f82821c905092915050565b5f61256e5f1984600802612553565b1980831691505092915050565b5f612586838361255f565b9150826002028217905092915050565b6125a083836123ef565b67ffffffffffffffff8111156125b9576125b8612107565b5b6125c38254612316565b6125ce82828561250d565b5f601f8311600181146125fb575f84156125e9578287013590505b6125f3858261257b565b86555061265a565b601f198416612609866123f9565b5f5b828110156126305784890135825560018201915060208501945060208101905061260b565b8683101561264d5784890135612649601f89168261255f565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61269a82611e2e565b91506126a583611e2e565b92508282019050808211156126bd576126bc612663565b5b92915050565b5f6126cd82611e2e565b91506126d883611e2e565b92508282026126e681611e2e565b915082820484148315176126fd576126fc612663565b5b5092915050565b7f596f7527726520746f6f206772656564792100000000000000000000000000005f82015250565b5f612738601283611d8e565b915061274382612704565b602082019050919050565b5f6020820190508181035f8301526127658161272c565b9050919050565b5f81905092915050565b5f815461278281612316565b61278c818661276c565b9450600182165f81146127a657600181146127bb576127ed565b60ff19831686528115158202860193506127ed565b6127c4856123f9565b5f5b838110156127e5578154818901526001820191506020810190506127c6565b838801955050505b50505092915050565b5f61280082611d84565b61280a818561276c565b935061281a818560208601611d9e565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f61285a60058361276c565b915061286582612826565b600582019050919050565b5f61287b8285612776565b915061288782846127f6565b91506128928261284e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6128f8602683611d8e565b91506129038261289e565b604082019050919050565b5f6020820190508181035f830152612925816128ec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612960602083611d8e565b915061296b8261292c565b602082019050919050565b5f6020820190508181035f83015261298d81612954565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6129b882612994565b6129c2818561299e565b93506129d2818560208601611d9e565b6129db81611dc6565b840191505092915050565b5f6080820190506129f95f830187611ebc565b612a066020830186611ebc565b612a136040830185611f4c565b8181036060830152612a2581846129ae565b905095945050505050565b5f81519050612a3e81611cfc565b92915050565b5f60208284031215612a5957612a58611cc9565b5b5f612a6684828501612a30565b9150509291505056fea2646970667358221220dbb3677e319f6ee6755e611eaa7ef4ed07fe015351262024c6ab976429fd283664736f6c63430008150033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000012d00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initURI (string): -

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 2d00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56762:2462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24564:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31055:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30488:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56843:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20315:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34694:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58615:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59049:172;;;;;;;;;;;;;:::i;:::-;;37615:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58525:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58417:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25957:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57039:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57011:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21499:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4445:103;;;;;;;;;;;;;:::i;:::-;;57784:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3797:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24740:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58828:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57299:477;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31613:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58970:71;;;;;;;;;;;;;:::i;:::-;;38406:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56962:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58722:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57896:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56805:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32004:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4703:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56919:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56885:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23662:639;23747:4;24086:10;24071:25;;:11;:25;;;;:102;;;;24163:10;24148:25;;:11;:25;;;;24071:102;:179;;;;24240:10;24225:25;;:11;:25;;;;24071:179;24051:199;;23662:639;;;:::o;24564:100::-;24618:13;24651:5;24644:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24564:100;:::o;31055:218::-;31131:7;31156:16;31164:7;31156;:16::i;:::-;31151:64;;31181:34;;;;;;;;;;;;;;31151:64;31235:15;:24;31251:7;31235:24;;;;;;;;;;;:30;;;;;;;;;;;;31228:37;;31055:218;;;:::o;30488:408::-;30577:13;30593:16;30601:7;30593;:16::i;:::-;30577:32;;30649:5;30626:28;;:19;:17;:19::i;:::-;:28;;;30622:175;;30674:44;30691:5;30698:19;:17;:19::i;:::-;30674:16;:44::i;:::-;30669:128;;30746:35;;;;;;;;;;;;;;30669:128;30622:175;30842:2;30809:15;:24;30825:7;30809:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;30880:7;30876:2;30860:28;;30869:5;30860:28;;;;;;;;;;;;30566:330;30488:408;;:::o;56843:35::-;;;;:::o;20315:323::-;20376:7;20604:15;:13;:15::i;:::-;20589:12;;20573:13;;:28;:46;20566:53;;20315:323;:::o;34694:2825::-;34836:27;34866;34885:7;34866:18;:27::i;:::-;34836:57;;34951:4;34910:45;;34926:19;34910:45;;;34906:86;;34964:28;;;;;;;;;;;;;;34906:86;35006:27;35035:23;35062:35;35089:7;35062:26;:35::i;:::-;35005:92;;;;35197:68;35222:15;35239:4;35245:19;:17;:19::i;:::-;35197:24;:68::i;:::-;35192:180;;35285:43;35302:4;35308:19;:17;:19::i;:::-;35285:16;:43::i;:::-;35280:92;;35337:35;;;;;;;;;;;;;;35280:92;35192:180;35403:1;35389:16;;:2;:16;;;35385:52;;35414:23;;;;;;;;;;;;;;35385:52;35450:43;35472:4;35478:2;35482:7;35491:1;35450:21;:43::i;:::-;35586:15;35583:160;;;35726:1;35705:19;35698:30;35583:160;36123:18;:24;36142:4;36123:24;;;;;;;;;;;;;;;;36121:26;;;;;;;;;;;;36192:18;:22;36211:2;36192:22;;;;;;;;;;;;;;;;36190:24;;;;;;;;;;;36514:146;36551:2;36600:45;36615:4;36621:2;36625:19;36600:14;:45::i;:::-;16714:8;36572:73;36514:18;:146::i;:::-;36485:17;:26;36503:7;36485:26;;;;;;;;;;;:175;;;;36831:1;16714:8;36780:19;:47;:52;36776:627;;36853:19;36885:1;36875:7;:11;36853:33;;37042:1;37008:17;:30;37026:11;37008:30;;;;;;;;;;;;:35;37004:384;;37146:13;;37131:11;:28;37127:242;;37326:19;37293:17;:30;37311:11;37293:30;;;;;;;;;;;:52;;;;37127:242;37004:384;36834:569;36776:627;37450:7;37446:2;37431:27;;37440:4;37431:27;;;;;;;;;;;;37469:42;37490:4;37496:2;37500:7;37509:1;37469:20;:42::i;:::-;34825:2694;;;34694:2825;;;:::o;58615:99::-;3683:13;:11;:13::i;:::-;58696:10:::1;58684:9;:22;;;;58615:99:::0;:::o;59049:172::-;3683:13;:11;:13::i;:::-;59100:12:::1;59118:10;:15;;59141:21;59118:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59099:68;;;59186:7;59178:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;59088:133;59049:172::o:0;37615:193::-;37761:39;37778:4;37784:2;37788:7;37761:39;;;;;;;;;;;;:16;:39::i;:::-;37615:193;;;:::o;58525:82::-;3683:13;:11;:13::i;:::-;58594:5:::1;58587:4;:12;;;;58525:82:::0;:::o;58417:100::-;3683:13;:11;:13::i;:::-;58502:7:::1;;58492;:17;;;;;;;:::i;:::-;;58417:100:::0;;:::o;25957:152::-;26029:7;26072:27;26091:7;26072:18;:27::i;:::-;26049:52;;25957:152;;;:::o;57039:16::-;;;;;;;;;;;;;:::o;57011:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21499:233::-;21571:7;21612:1;21595:19;;:5;:19;;;21591:60;;21623:28;;;;;;;;;;;;;;21591:60;15658:13;21669:18;:25;21688:5;21669:25;;;;;;;;;;;;;;;;:55;21662:62;;21499:233;;;:::o;4445:103::-;3683:13;:11;:13::i;:::-;4510:30:::1;4537:1;4510:18;:30::i;:::-;4445:103::o:0;57784:104::-;3683:13;:11;:13::i;:::-;57861:19:::1;57867:3;57872:7;57861:5;:19::i;:::-;57784:104:::0;;:::o;3797:87::-;3843:7;3870:6;;;;;;;;;;;3863:13;;3797:87;:::o;24740:104::-;24796:13;24829:7;24822:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24740:104;:::o;58828:134::-;3683:13;:11;:13::i;:::-;58936:18:::1;58916:17;:38;;;;58828:134:::0;:::o;57299:477::-;57363:4;;;;;;;;;;;57358:33;;57376:15;;;;;;;;;;;;;;57358:33;57433:9;;57423:7;57406:14;:12;:14::i;:::-;:24;;;;:::i;:::-;:36;57402:67;;;57451:18;;;;;;;;;;;;;;57402:67;57494:8;;57484:7;:18;57480:48;;;57511:17;;;;;;;;;;;;;;57480:48;57562:7;57555:4;;:14;;;;:::i;:::-;57543:9;:26;57539:53;;;57578:14;;;;;;;;;;;;;;57539:53;57647:17;;57636:7;57611:10;:22;57622:10;57611:22;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:53;;57603:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;57724:7;57698:10;:22;57709:10;57698:22;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;57742:26;57748:10;57760:7;57742:5;:26::i;:::-;57299:477;:::o;31613:234::-;31760:8;31708:18;:39;31727:19;:17;:19::i;:::-;31708:39;;;;;;;;;;;;;;;:49;31748:8;31708:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31820:8;31784:55;;31799:19;:17;:19::i;:::-;31784:55;;;31830:8;31784:55;;;;;;:::i;:::-;;;;;;;;31613:234;;:::o;58970:71::-;3683:13;:11;:13::i;:::-;59029:4:::1;;;;;;;;;;;59028:5;59021:4;;:12;;;;;;;;;;;;;;;;;;58970:71::o:0;38406:407::-;38581:31;38594:4;38600:2;38604:7;38581:12;:31::i;:::-;38645:1;38627:2;:14;;;:19;38623:183;;38666:56;38697:4;38703:2;38707:7;38716:5;38666:30;:56::i;:::-;38661:145;;38750:40;;;;;;;;;;;;;;38661:145;38623:183;38406:407;;;;:::o;56962:42::-;;;;;;;;;;;;;;;;;:::o;58722:98::-;3683:13;:11;:13::i;:::-;58803:9:::1;58792:8;:20;;;;58722:98:::0;:::o;57896:296::-;58014:13;58050:16;58058:7;58050;:16::i;:::-;58045:59;;58075:29;;;;;;;;;;;;;;58045:59;58146:7;58155:18;58165:7;58155:9;:18::i;:::-;58129:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58115:69;;57896:296;;;:::o;56805:31::-;;;;:::o;32004:164::-;32101:4;32125:18;:25;32144:5;32125:25;;;;;;;;;;;;;;;:35;32151:8;32125:35;;;;;;;;;;;;;;;;;;;;;;;;;32118:42;;32004:164;;;;:::o;4703:201::-;3683:13;:11;:13::i;:::-;4812:1:::1;4792:22;;:8;:22;;::::0;4784:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4868:28;4887:8;4868:18;:28::i;:::-;4703:201:::0;:::o;56919:36::-;;;;:::o;56885:27::-;;;;:::o;32426:282::-;32491:4;32547:7;32528:15;:13;:15::i;:::-;:26;;:66;;;;;32581:13;;32571:7;:23;32528:66;:153;;;;;32680:1;16434:8;32632:17;:26;32650:7;32632:26;;;;;;;;;;;;:44;:49;32528:153;32508:173;;32426:282;;;:::o;54734:105::-;54794:7;54821:10;54814:17;;54734:105;:::o;58200:93::-;58257:7;58284:1;58277:8;;58200:93;:::o;27112:1275::-;27179:7;27199:12;27214:7;27199:22;;27282:4;27263:15;:13;:15::i;:::-;:23;27259:1061;;27316:13;;27309:4;:20;27305:1015;;;27354:14;27371:17;:23;27389:4;27371:23;;;;;;;;;;;;27354:40;;27488:1;16434:8;27460:6;:24;:29;27456:845;;28125:113;28142:1;28132:6;:11;28125:113;;28185:17;:25;28203:6;;;;;;;28185:25;;;;;;;;;;;;28176:34;;28125:113;;;28271:6;28264:13;;;;;;27456:845;27331:989;27305:1015;27259:1061;28348:31;;;;;;;;;;;;;;27112:1275;;;;:::o;33589:485::-;33691:27;33720:23;33761:38;33802:15;:24;33818:7;33802:24;;;;;;;;;;;33761:65;;33979:18;33956:41;;34036:19;34030:26;34011:45;;33941:126;33589:485;;;:::o;32817:659::-;32966:11;33131:16;33124:5;33120:28;33111:37;;33291:16;33280:9;33276:32;33263:45;;33441:15;33430:9;33427:30;33419:5;33408:9;33405:20;33402:56;33392:66;;32817:659;;;;;:::o;39475:159::-;;;;;:::o;54043:311::-;54178:7;54198:16;16838:3;54224:19;:41;;54198:68;;16838:3;54292:31;54303:4;54309:2;54313:9;54292:10;:31::i;:::-;54284:40;;:62;;54277:69;;;54043:311;;;;;:::o;28935:450::-;29015:14;29183:16;29176:5;29172:28;29163:37;;29360:5;29346:11;29321:23;29317:41;29314:52;29307:5;29304:63;29294:73;;28935:450;;;;:::o;40299:158::-;;;;;:::o;3962:132::-;4037:12;:10;:12::i;:::-;4026:23;;:7;:5;:7::i;:::-;:23;;;4018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3962:132::o;5064:191::-;5138:16;5157:6;;;;;;;;;;;5138:25;;5183:8;5174:6;;:17;;;;;;;;;;;;;;;;;;5238:8;5207:40;;5228:8;5207:40;;;;;;;;;;;;5127:128;5064:191;:::o;42075:2966::-;42148:20;42171:13;;42148:36;;42211:1;42199:8;:13;42195:44;;42221:18;;;;;;;;;;;;;;42195:44;42252:61;42282:1;42286:2;42290:12;42304:8;42252:21;:61::i;:::-;42796:1;15796:2;42766:1;:26;;42765:32;42753:8;:45;42727:18;:22;42746:2;42727:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43075:139;43112:2;43166:33;43189:1;43193:2;43197:1;43166:14;:33::i;:::-;43133:30;43154:8;43133:20;:30::i;:::-;:66;43075:18;:139::i;:::-;43041:17;:31;43059:12;43041:31;;;;;;;;;;;:173;;;;43231:16;43262:11;43291:8;43276:12;:23;43262:37;;43812:16;43808:2;43804:25;43792:37;;44184:12;44144:8;44103:1;44041:25;43982:1;43921;43894:335;44555:1;44541:12;44537:20;44495:346;44596:3;44587:7;44584:16;44495:346;;44814:7;44804:8;44801:1;44774:25;44771:1;44768;44763:59;44649:1;44640:7;44636:15;44625:26;;44495:346;;;44499:77;44886:1;44874:8;:13;44870:45;;44896:19;;;;;;;;;;;;;;44870:45;44948:3;44932:13;:19;;;;42501:2462;;44973:60;45002:1;45006:2;45010:12;45024:8;44973:20;:60::i;:::-;42137:2904;42075:2966;;:::o;20736:296::-;20791:7;20998:15;:13;:15::i;:::-;20982:13;;:31;20975:38;;20736:296;:::o;40897:716::-;41060:4;41106:2;41081:45;;;41127:19;:17;:19::i;:::-;41148:4;41154:7;41163:5;41081:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41077:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41381:1;41364:6;:13;:18;41360:235;;41410:40;;;;;;;;;;;;;;41360:235;41553:6;41547:13;41538:6;41534:2;41530:15;41523:38;41077:529;41250:54;;;41240:64;;;:6;:64;;;;41233:71;;;40897:716;;;;;;:::o;54941:1745::-;55006:17;55440:4;55433;55427:11;55423:22;55532:1;55526:4;55519:15;55607:4;55604:1;55600:12;55593:19;;55689:1;55684:3;55677:14;55793:3;56032:5;56014:428;56040:1;56014:428;;;56080:1;56075:3;56071:11;56064:18;;56251:2;56245:4;56241:13;56237:2;56233:22;56228:3;56220:36;56345:2;56339:4;56335:13;56327:21;;56412:4;56014:428;56402:25;56014:428;56018:21;56481:3;56476;56472:13;56596:4;56591:3;56587:14;56580:21;;56661:6;56656:3;56649:19;55045:1634;;;54941:1745;;;:::o;53744:147::-;53881:6;53744:147;;;;;:::o;2352:98::-;2405:7;2432:10;2425:17;;2352:98;:::o;29487:324::-;29557:14;29790:1;29780:8;29777:15;29751:24;29747:46;29737:56;;29487:324;;;:::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:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:116::-;7749:21;7764:5;7749:21;:::i;:::-;7742:5;7739:32;7729:60;;7785:1;7782;7775:12;7729:60;7679:116;:::o;7801:133::-;7844:5;7882:6;7869:20;7860:29;;7898:30;7922:5;7898:30;:::i;:::-;7801:133;;;;:::o;7940:468::-;8005:6;8013;8062:2;8050:9;8041:7;8037:23;8033:32;8030:119;;;8068:79;;:::i;:::-;8030:119;8188:1;8213:53;8258:7;8249:6;8238:9;8234:22;8213:53;:::i;:::-;8203:63;;8159:117;8315:2;8341:50;8383:7;8374:6;8363:9;8359:22;8341:50;:::i;:::-;8331:60;;8286:115;7940:468;;;;;:::o;8414:117::-;8523:1;8520;8513:12;8537:180;8585:77;8582:1;8575:88;8682:4;8679:1;8672:15;8706:4;8703:1;8696:15;8723:281;8806:27;8828:4;8806:27;:::i;:::-;8798:6;8794:40;8936:6;8924:10;8921:22;8900:18;8888:10;8885:34;8882:62;8879:88;;;8947:18;;:::i;:::-;8879:88;8987:10;8983:2;8976:22;8766:238;8723:281;;:::o;9010:129::-;9044:6;9071:20;;:::i;:::-;9061:30;;9100:33;9128:4;9120:6;9100:33;:::i;:::-;9010:129;;;:::o;9145:307::-;9206:4;9296:18;9288:6;9285:30;9282:56;;;9318:18;;:::i;:::-;9282:56;9356:29;9378:6;9356:29;:::i;:::-;9348:37;;9440:4;9434;9430:15;9422:23;;9145:307;;;:::o;9458:146::-;9555:6;9550:3;9545;9532:30;9596:1;9587:6;9582:3;9578:16;9571:27;9458:146;;;:::o;9610:423::-;9687:5;9712:65;9728:48;9769:6;9728:48;:::i;:::-;9712:65;:::i;:::-;9703:74;;9800:6;9793:5;9786:21;9838:4;9831:5;9827:16;9876:3;9867:6;9862:3;9858:16;9855:25;9852:112;;;9883:79;;:::i;:::-;9852:112;9973:54;10020:6;10015:3;10010;9973:54;:::i;:::-;9693:340;9610:423;;;;;:::o;10052:338::-;10107:5;10156:3;10149:4;10141:6;10137:17;10133:27;10123:122;;10164:79;;:::i;:::-;10123:122;10281:6;10268:20;10306:78;10380:3;10372:6;10365:4;10357:6;10353:17;10306:78;:::i;:::-;10297:87;;10113:277;10052:338;;;;:::o;10396:943::-;10491:6;10499;10507;10515;10564:3;10552:9;10543:7;10539:23;10535:33;10532:120;;;10571:79;;:::i;:::-;10532:120;10691:1;10716:53;10761:7;10752:6;10741:9;10737:22;10716:53;:::i;:::-;10706:63;;10662:117;10818:2;10844:53;10889:7;10880:6;10869:9;10865:22;10844:53;:::i;:::-;10834:63;;10789:118;10946:2;10972:53;11017:7;11008:6;10997:9;10993:22;10972:53;:::i;:::-;10962:63;;10917:118;11102:2;11091:9;11087:18;11074:32;11133:18;11125:6;11122:30;11119:117;;;11155:79;;:::i;:::-;11119:117;11260:62;11314:7;11305:6;11294:9;11290:22;11260:62;:::i;:::-;11250:72;;11045:287;10396:943;;;;;;;:::o;11345:474::-;11413:6;11421;11470:2;11458:9;11449:7;11445:23;11441:32;11438:119;;;11476:79;;:::i;:::-;11438:119;11596:1;11621:53;11666:7;11657:6;11646:9;11642:22;11621:53;:::i;:::-;11611:63;;11567:117;11723:2;11749:53;11794:7;11785:6;11774:9;11770:22;11749:53;:::i;:::-;11739:63;;11694:118;11345:474;;;;;:::o;11825:180::-;11873:77;11870:1;11863:88;11970:4;11967:1;11960:15;11994:4;11991:1;11984:15;12011:320;12055:6;12092:1;12086:4;12082:12;12072:22;;12139:1;12133:4;12129:12;12160:18;12150:81;;12216:4;12208:6;12204:17;12194:27;;12150:81;12278:2;12270:6;12267:14;12247:18;12244:38;12241:84;;12297:18;;:::i;:::-;12241:84;12062:269;12011:320;;;:::o;12337:147::-;12438:11;12475:3;12460:18;;12337:147;;;;:::o;12490:114::-;;:::o;12610:398::-;12769:3;12790:83;12871:1;12866:3;12790:83;:::i;:::-;12783:90;;12882:93;12971:3;12882:93;:::i;:::-;13000:1;12995:3;12991:11;12984:18;;12610:398;;;:::o;13014:379::-;13198:3;13220:147;13363:3;13220:147;:::i;:::-;13213:154;;13384:3;13377:10;;13014:379;;;:::o;13399:165::-;13539:17;13535:1;13527:6;13523:14;13516:41;13399:165;:::o;13570:366::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13570:366;;;:::o;13942:419::-;14108:4;14146:2;14135:9;14131:18;14123:26;;14195:9;14189:4;14185:20;14181:1;14170:9;14166:17;14159:47;14223:131;14349:4;14223:131;:::i;:::-;14215:139;;13942:419;;;:::o;14367:97::-;14426:6;14454:3;14444:13;;14367:97;;;;:::o;14470:141::-;14519:4;14542:3;14534:11;;14565:3;14562:1;14555:14;14599:4;14596:1;14586:18;14578:26;;14470:141;;;:::o;14617:93::-;14654:6;14701:2;14696;14689:5;14685:14;14681:23;14671:33;;14617:93;;;:::o;14716:107::-;14760:8;14810:5;14804:4;14800:16;14779:37;;14716:107;;;;:::o;14829:393::-;14898:6;14948:1;14936:10;14932:18;14971:97;15001:66;14990:9;14971:97;:::i;:::-;15089:39;15119:8;15108:9;15089:39;:::i;:::-;15077:51;;15161:4;15157:9;15150:5;15146:21;15137:30;;15210:4;15200:8;15196:19;15189:5;15186:30;15176:40;;14905:317;;14829:393;;;;;:::o;15228:60::-;15256:3;15277:5;15270:12;;15228:60;;;:::o;15294:142::-;15344:9;15377:53;15395:34;15404:24;15422:5;15404:24;:::i;:::-;15395:34;:::i;:::-;15377:53;:::i;:::-;15364:66;;15294:142;;;:::o;15442:75::-;15485:3;15506:5;15499:12;;15442:75;;;:::o;15523:269::-;15633:39;15664:7;15633:39;:::i;:::-;15694:91;15743:41;15767:16;15743:41;:::i;:::-;15735:6;15728:4;15722:11;15694:91;:::i;:::-;15688:4;15681:105;15599:193;15523:269;;;:::o;15798:73::-;15843:3;15798:73;:::o;15877:189::-;15954:32;;:::i;:::-;15995:65;16053:6;16045;16039:4;15995:65;:::i;:::-;15930:136;15877:189;;:::o;16072:186::-;16132:120;16149:3;16142:5;16139:14;16132:120;;;16203:39;16240:1;16233:5;16203:39;:::i;:::-;16176:1;16169:5;16165:13;16156:22;;16132:120;;;16072:186;;:::o;16264:543::-;16365:2;16360:3;16357:11;16354:446;;;16399:38;16431:5;16399:38;:::i;:::-;16483:29;16501:10;16483:29;:::i;:::-;16473:8;16469:44;16666:2;16654:10;16651:18;16648:49;;;16687:8;16672:23;;16648:49;16710:80;16766:22;16784:3;16766:22;:::i;:::-;16756:8;16752:37;16739:11;16710:80;:::i;:::-;16369:431;;16354:446;16264:543;;;:::o;16813:117::-;16867:8;16917:5;16911:4;16907:16;16886:37;;16813:117;;;;:::o;16936:169::-;16980:6;17013:51;17061:1;17057:6;17049:5;17046:1;17042:13;17013:51;:::i;:::-;17009:56;17094:4;17088;17084:15;17074:25;;16987:118;16936:169;;;;:::o;17110:295::-;17186:4;17332:29;17357:3;17351:4;17332:29;:::i;:::-;17324:37;;17394:3;17391:1;17387:11;17381:4;17378:21;17370:29;;17110:295;;;;:::o;17410:1403::-;17534:44;17574:3;17569;17534:44;:::i;:::-;17643:18;17635:6;17632:30;17629:56;;;17665:18;;:::i;:::-;17629:56;17709:38;17741:4;17735:11;17709:38;:::i;:::-;17794:67;17854:6;17846;17840:4;17794:67;:::i;:::-;17888:1;17917:2;17909:6;17906:14;17934:1;17929:632;;;;18605:1;18622:6;18619:84;;;18678:9;18673:3;18669:19;18656:33;18647:42;;18619:84;18729:67;18789:6;18782:5;18729:67;:::i;:::-;18723:4;18716:81;18578:229;17899:908;;17929:632;17981:4;17977:9;17969:6;17965:22;18015:37;18047:4;18015:37;:::i;:::-;18074:1;18088:215;18102:7;18099:1;18096:14;18088:215;;;18188:9;18183:3;18179:19;18166:33;18158:6;18151:49;18239:1;18231:6;18227:14;18217:24;;18286:2;18275:9;18271:18;18258:31;;18125:4;18122:1;18118:12;18113:17;;18088:215;;;18331:6;18322:7;18319:19;18316:186;;;18396:9;18391:3;18387:19;18374:33;18439:48;18481:4;18473:6;18469:17;18458:9;18439:48;:::i;:::-;18431:6;18424:64;18339:163;18316:186;18548:1;18544;18536:6;18532:14;18528:22;18522:4;18515:36;17936:625;;;17899:908;;17509:1304;;;17410:1403;;;:::o;18819:180::-;18867:77;18864:1;18857:88;18964:4;18961:1;18954:15;18988:4;18985:1;18978:15;19005:191;19045:3;19064:20;19082:1;19064:20;:::i;:::-;19059:25;;19098:20;19116:1;19098:20;:::i;:::-;19093:25;;19141:1;19138;19134:9;19127:16;;19162:3;19159:1;19156:10;19153:36;;;19169:18;;:::i;:::-;19153:36;19005:191;;;;:::o;19202:410::-;19242:7;19265:20;19283:1;19265:20;:::i;:::-;19260:25;;19299:20;19317:1;19299:20;:::i;:::-;19294:25;;19354:1;19351;19347:9;19376:30;19394:11;19376:30;:::i;:::-;19365:41;;19555:1;19546:7;19542:15;19539:1;19536:22;19516:1;19509:9;19489:83;19466:139;;19585:18;;:::i;:::-;19466:139;19250:362;19202:410;;;;:::o;19618:168::-;19758:20;19754:1;19746:6;19742:14;19735:44;19618:168;:::o;19792:366::-;19934:3;19955:67;20019:2;20014:3;19955:67;:::i;:::-;19948:74;;20031:93;20120:3;20031:93;:::i;:::-;20149:2;20144:3;20140:12;20133:19;;19792:366;;;:::o;20164:419::-;20330:4;20368:2;20357:9;20353:18;20345:26;;20417:9;20411:4;20407:20;20403:1;20392:9;20388:17;20381:47;20445:131;20571:4;20445:131;:::i;:::-;20437:139;;20164:419;;;:::o;20589:148::-;20691:11;20728:3;20713:18;;20589:148;;;;:::o;20767:874::-;20870:3;20907:5;20901:12;20936:36;20962:9;20936:36;:::i;:::-;20988:89;21070:6;21065:3;20988:89;:::i;:::-;20981:96;;21108:1;21097:9;21093:17;21124:1;21119:166;;;;21299:1;21294:341;;;;21086:549;;21119:166;21203:4;21199:9;21188;21184:25;21179:3;21172:38;21265:6;21258:14;21251:22;21243:6;21239:35;21234:3;21230:45;21223:52;;21119:166;;21294:341;21361:38;21393:5;21361:38;:::i;:::-;21421:1;21435:154;21449:6;21446:1;21443:13;21435:154;;;21523:7;21517:14;21513:1;21508:3;21504:11;21497:35;21573:1;21564:7;21560:15;21549:26;;21471:4;21468:1;21464:12;21459:17;;21435:154;;;21618:6;21613:3;21609:16;21602:23;;21301:334;;21086:549;;20874:767;;20767:874;;;;:::o;21647:390::-;21753:3;21781:39;21814:5;21781:39;:::i;:::-;21836:89;21918:6;21913:3;21836:89;:::i;:::-;21829:96;;21934:65;21992:6;21987:3;21980:4;21973:5;21969:16;21934:65;:::i;:::-;22024:6;22019:3;22015:16;22008:23;;21757:280;21647:390;;;;:::o;22043:155::-;22183:7;22179:1;22171:6;22167:14;22160:31;22043:155;:::o;22204:400::-;22364:3;22385:84;22467:1;22462:3;22385:84;:::i;:::-;22378:91;;22478:93;22567:3;22478:93;:::i;:::-;22596:1;22591:3;22587:11;22580:18;;22204:400;;;:::o;22610:695::-;22888:3;22910:92;22998:3;22989:6;22910:92;:::i;:::-;22903:99;;23019:95;23110:3;23101:6;23019:95;:::i;:::-;23012:102;;23131:148;23275:3;23131:148;:::i;:::-;23124:155;;23296:3;23289:10;;22610:695;;;;;:::o;23311:225::-;23451:34;23447:1;23439:6;23435:14;23428:58;23520:8;23515:2;23507:6;23503:15;23496:33;23311:225;:::o;23542:366::-;23684:3;23705:67;23769:2;23764:3;23705:67;:::i;:::-;23698:74;;23781:93;23870:3;23781:93;:::i;:::-;23899:2;23894:3;23890:12;23883:19;;23542:366;;;:::o;23914:419::-;24080:4;24118:2;24107:9;24103:18;24095:26;;24167:9;24161:4;24157:20;24153:1;24142:9;24138:17;24131:47;24195:131;24321:4;24195:131;:::i;:::-;24187:139;;23914:419;;;:::o;24339:182::-;24479:34;24475:1;24467:6;24463:14;24456:58;24339:182;:::o;24527:366::-;24669:3;24690:67;24754:2;24749:3;24690:67;:::i;:::-;24683:74;;24766:93;24855:3;24766:93;:::i;:::-;24884:2;24879:3;24875:12;24868:19;;24527:366;;;:::o;24899:419::-;25065:4;25103:2;25092:9;25088:18;25080:26;;25152:9;25146:4;25142:20;25138:1;25127:9;25123:17;25116:47;25180:131;25306:4;25180:131;:::i;:::-;25172:139;;24899:419;;;:::o;25324:98::-;25375:6;25409:5;25403:12;25393:22;;25324:98;;;:::o;25428:168::-;25511:11;25545:6;25540:3;25533:19;25585:4;25580:3;25576:14;25561:29;;25428:168;;;;:::o;25602:373::-;25688:3;25716:38;25748:5;25716:38;:::i;:::-;25770:70;25833:6;25828:3;25770:70;:::i;:::-;25763:77;;25849:65;25907:6;25902:3;25895:4;25888:5;25884:16;25849:65;:::i;:::-;25939:29;25961:6;25939:29;:::i;:::-;25934:3;25930:39;25923:46;;25692:283;25602:373;;;;:::o;25981:640::-;26176:4;26214:3;26203:9;26199:19;26191:27;;26228:71;26296:1;26285:9;26281:17;26272:6;26228:71;:::i;:::-;26309:72;26377:2;26366:9;26362:18;26353:6;26309:72;:::i;:::-;26391;26459:2;26448:9;26444:18;26435:6;26391:72;:::i;:::-;26510:9;26504:4;26500:20;26495:2;26484:9;26480:18;26473:48;26538:76;26609:4;26600:6;26538:76;:::i;:::-;26530:84;;25981:640;;;;;;;:::o;26627:141::-;26683:5;26714:6;26708:13;26699:22;;26730:32;26756:5;26730:32;:::i;:::-;26627:141;;;;:::o;26774:349::-;26843:6;26892:2;26880:9;26871:7;26867:23;26863:32;26860:119;;;26898:79;;:::i;:::-;26860:119;27018:1;27043:63;27098:7;27089:6;27078:9;27074:22;27043:63;:::i;:::-;27033:73;;26989:127;26774:349;;;;:::o

Swarm Source

ipfs://dbb3677e319f6ee6755e611eaa7ef4ed07fe015351262024c6ab976429fd2836
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.