ETH Price: $2,517.78 (+2.32%)
Gas: 0.8 Gwei

Token

GenesisTom (TOM)
 

Overview

Max Total Supply

366 TOM

Holders

33

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TOM
0x3D90c9efc295e3c9C4F1655D9354c384bc630Efb
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:
TomJerryDefendHomeland

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-01
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// 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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: TomJerryDefendHomeland.sol


pragma solidity >=0.8.9 <0.9.0;




interface ITomDefendCoin {
	function claimCoins(address _holder, uint256 _amount) external;
}

//enjoy decentralization
contract TomJerryDefendHomeland is ERC721A, Ownable, ReentrancyGuard {
	string public jerryContract;
	string public tomsHomelandContract;
	string public newAttribute;
	uint256 public genesisPrice = 0.005 ether;
	uint256 public maxSupply = 10000;
	uint256 public maxFree = 3000;
	uint256 public maxFreePerWallet = 2;
	uint256 public maxPayPerWallet = 20;
	uint256 public totalFreeMinted = 0;
	bool public saleEnable = false;

	ITomDefendCoin public immutable tomDefendCoin;

	mapping(address => uint256) public walletState;

	constructor(address _coin)
		ERC721A("GenesisTom", "TOM")
	{
		tomDefendCoin = ITomDefendCoin(_coin);
	}

	//PUBLIC
	function freeMint(uint256 _amount) public {
		require(isValidRequest(_amount));
		require(_amount + totalFreeMinted <= maxFree);
		require(_amount + (walletState[msg.sender] % 100) <= maxFreePerWallet);
		totalFreeMinted += _amount;
		walletState[msg.sender] += _amount;
		_safeMint(_msgSender(), _amount);
	}

	function genesisMint(uint256 _amount) public payable {
		require(isValidRequest(_amount));
		require(msg.value == genesisPrice * _amount);
		require(_amount + walletState[msg.sender] / 100 <= maxPayPerWallet);
		walletState[msg.sender] += _amount * 100;
		_safeMint(_msgSender(), _amount);
		tomDefendCoin.claimCoins(msg.sender, _amount * 10000000000 * (10 ** 18));
	}
	
	//VALID
	function isValidRequest(uint256 _amount) private view returns (bool) {
		return
			msg.sender == tx.origin &&
			saleEnable &&
			_amount > 0 &&
			_amount + totalSupply() <= maxSupply;
	}

	//OWNER
	function teamMint(uint256 _amount) public onlyOwner {
		require(_amount + totalSupply() <= maxSupply);
		_safeMint(_msgSender(), _amount);
	}
	function setSaleEnable(bool _start) public onlyOwner {
		saleEnable = _start;
	}

	function setPrice(uint256 _price) public onlyOwner {
		genesisPrice = _price;
	}

	function setMaxFreePerWallet(uint256 _maxFreePerWallet) public onlyOwner {
		maxFreePerWallet = _maxFreePerWallet;
	}

	function setMaxPayPerWallet(uint256 _maxPayPerWallet) public onlyOwner {
		maxPayPerWallet = _maxPayPerWallet;
	}

	function setMaxFree(uint256 _maxFree) public onlyOwner {
		maxFree = _maxFree;
	}

	function tomEvolution(string memory _attribute) public onlyOwner {
		newAttribute = _attribute;
	}

	function setPublicMessage(
		string memory _jerryContract,
		string memory _tomsHomelandContract
	) public onlyOwner {
		jerryContract = _jerryContract;
		tomsHomelandContract = _tomsHomelandContract;
	}

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

	//OVERRIDES
	function _startTokenId() internal view virtual override returns (uint256) {
		return 1;
	}

	function tokenURI(uint256 _tokenId)
		public
		view
		virtual
		override
		returns (string memory)
	{
		require(_exists(_tokenId), "query for nonexistent token");
		string memory currentBaseURI = _baseURI();
		return
			bytes(currentBaseURI).length > 0
				? string(
					abi.encodePacked(
						currentBaseURI,
						_toString(_tokenId),
						".json"
					)
				)
				: "";
	}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_coin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"genesisMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"genesisPrice","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":"jerryContract","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPayPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newAttribute","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","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":"uint256","name":"_maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreePerWallet","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPayPerWallet","type":"uint256"}],"name":"setMaxPayPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_jerryContract","type":"string"},{"internalType":"string","name":"_tomsHomelandContract","type":"string"}],"name":"setPublicMessage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setSaleEnable","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":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tomDefendCoin","outputs":[{"internalType":"contract ITomDefendCoin","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_attribute","type":"string"}],"name":"tomEvolution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tomsHomelandContract","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526611c37937e08000600d55612710600e55610bb8600f556002601055601460115560006012556000601360006101000a81548160ff0219169083151502179055503480156200005257600080fd5b5060405162003e5438038062003e548339818101604052810190620000789190620002c4565b6040518060400160405280600a81526020017f47656e65736973546f6d000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f544f4d00000000000000000000000000000000000000000000000000000000008152508160029081620000f5919062000570565b50806003908162000107919062000570565b50620001186200018360201b60201c565b600081905550505062000140620001346200018c60201b60201c565b6200019460201b60201c565b60016009819055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505062000657565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200028c826200025f565b9050919050565b6200029e816200027f565b8114620002aa57600080fd5b50565b600081519050620002be8162000293565b92915050565b600060208284031215620002dd57620002dc6200025a565b5b6000620002ed84828501620002ad565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037857607f821691505b6020821081036200038e576200038d62000330565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003b9565b620004048683620003b9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004516200044b62000445846200041c565b62000426565b6200041c565b9050919050565b6000819050919050565b6200046d8362000430565b620004856200047c8262000458565b848454620003c6565b825550505050565b600090565b6200049c6200048d565b620004a981848462000462565b505050565b5b81811015620004d157620004c560008262000492565b600181019050620004af565b5050565b601f8211156200052057620004ea8162000394565b620004f584620003a9565b8101602085101562000505578190505b6200051d6200051485620003a9565b830182620004ae565b50505b505050565b600082821c905092915050565b6000620005456000198460080262000525565b1980831691505092915050565b600062000560838362000532565b9150826002028217905092915050565b6200057b82620002f6565b67ffffffffffffffff81111562000597576200059662000301565b5b620005a382546200035f565b620005b0828285620004d5565b600060209050601f831160018114620005e85760008415620005d3578287015190505b620005df858262000552565b8655506200064f565b601f198416620005f88662000394565b60005b828110156200062257848901518255600182019150602085019450602081019050620005fb565b868310156200064257848901516200063e601f89168262000532565b8355505b6001600288020188555050505b505050505050565b6080516137da6200067a600039600081816116620152611f3001526137da6000f3fe60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063ca6c5216116100ab578063dad7b5c91161006f578063dad7b5c914610849578063e985e9c514610874578063f2fde38b146108b1578063fb5d96c3146108da578063fe4ca847146108f65761023b565b8063ca6c521614610764578063cbaaaa2a1461078f578063d1f0f7e3146107cc578063d5abeb01146107f5578063d755bf99146108205761023b565b8063ab6e2e11116100f2578063ab6e2e1114610681578063af784581146106aa578063b88d4fde146106d3578063bd99a96e146106fc578063c87b56dd146107275761023b565b806391b7f5ed146105ae57806395d89b41146105d75780639b558dca14610602578063a22cb4651461062d578063a7027357146106565761023b565b8063485a68a3116101bc578063715018a611610180578063715018a6146104ef578063728cce7c146105065780637a62a98a146105315780637c928fe91461055a5780638da5cb5b146105835761023b565b8063485a68a3146103f65780636352211e146104215780636d7c4a4b1461045e5780636f48ced31461048757806370a08231146104b25761023b565b806323b872dd1161020357806323b872dd146103395780632fbba115146103625780633ccfd60b1461038b57806342842e0e146103a2578063483335a1146103cb5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061288d565b610921565b60405161027491906128d5565b60405180910390f35b34801561028957600080fd5b506102926109b3565b60405161029f9190612989565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906129e1565b610a45565b6040516102dc9190612a4f565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612a96565b610ac1565b005b34801561031a57600080fd5b50610323610c02565b6040516103309190612ae5565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612b00565b610c19565b005b34801561036e57600080fd5b50610389600480360381019061038491906129e1565b610f3b565b005b34801561039757600080fd5b506103a0610fec565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612b00565b6110e1565b005b3480156103d757600080fd5b506103e0611101565b6040516103ed9190612989565b60405180910390f35b34801561040257600080fd5b5061040b61118f565b6040516104189190612ae5565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906129e1565b611195565b6040516104559190612a4f565b60405180910390f35b34801561046a57600080fd5b50610485600480360381019061048091906129e1565b6111a7565b005b34801561049357600080fd5b5061049c61122d565b6040516104a99190612ae5565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612b53565b611233565b6040516104e69190612ae5565b60405180910390f35b3480156104fb57600080fd5b506105046112eb565b005b34801561051257600080fd5b5061051b611373565b6040516105289190612ae5565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612cb5565b611379565b005b34801561056657600080fd5b50610581600480360381019061057c91906129e1565b611408565b005b34801561058f57600080fd5b5061059861151e565b6040516105a59190612a4f565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906129e1565b611548565b005b3480156105e357600080fd5b506105ec6115ce565b6040516105f99190612989565b60405180910390f35b34801561060e57600080fd5b50610617611660565b6040516106249190612d5d565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612da4565b611684565b005b34801561066257600080fd5b5061066b6117fb565b6040516106789190612ae5565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a391906129e1565b611801565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612de4565b611887565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612efd565b611927565b005b34801561070857600080fd5b5061071161199a565b60405161071e9190612989565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906129e1565b611a28565b60405161075b9190612989565b60405180910390f35b34801561077057600080fd5b50610779611acf565b6040516107869190612989565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612b53565b611b5d565b6040516107c39190612ae5565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190612f80565b611b75565b005b34801561080157600080fd5b5061080a611c0e565b6040516108179190612ae5565b60405180910390f35b34801561082c57600080fd5b50610847600480360381019061084291906129e1565b611c14565b005b34801561085557600080fd5b5061085e611c9a565b60405161086b9190612ae5565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190612fad565b611ca0565b6040516108a891906128d5565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190612b53565b611d34565b005b6108f460048036038101906108ef91906129e1565b611e2b565b005b34801561090257600080fd5b5061090b611fe1565b60405161091891906128d5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c29061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee9061301c565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611ff4565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82611195565b90508073ffffffffffffffffffffffffffffffffffffffff16610aed612053565b73ffffffffffffffffffffffffffffffffffffffff1614610b5057610b1981610b14612053565b611ca0565b610b4f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c0c61205b565b6001546000540303905090565b6000610c2482612064565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c9784612130565b91509150610cad8187610ca8612053565b612152565b610cf957610cc286610cbd612053565b611ca0565b610cf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6c8686866001612196565b8015610d7757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e4585610e2188888761219c565b7c0200000000000000000000000000000000000000000000000000000000176121c4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ecb5760006001850190506000600460008381526020019081526020016000205403610ec9576000548114610ec8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f3386868660016121ef565b505050505050565b610f436121f5565b73ffffffffffffffffffffffffffffffffffffffff16610f6161151e565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90613099565b60405180910390fd5b600e54610fc2610c02565b82610fcd91906130e8565b1115610fd857600080fd5b610fe9610fe36121f5565b826121fd565b50565b610ff46121f5565b73ffffffffffffffffffffffffffffffffffffffff1661101261151e565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613099565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161108e9061316f565b60006040518083038185875af1925050503d80600081146110cb576040519150601f19603f3d011682016040523d82523d6000602084013e6110d0565b606091505b50509050806110de57600080fd5b50565b6110fc83838360405180602001604052806000815250611927565b505050565b600c805461110e9061301c565b80601f016020809104026020016040519081016040528092919081815260200182805461113a9061301c565b80156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b505050505081565b600f5481565b60006111a082612064565b9050919050565b6111af6121f5565b73ffffffffffffffffffffffffffffffffffffffff166111cd61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613099565b60405180910390fd5b8060108190555050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f36121f5565b73ffffffffffffffffffffffffffffffffffffffff1661131161151e565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613099565b60405180910390fd5b611371600061221b565b565b600d5481565b6113816121f5565b73ffffffffffffffffffffffffffffffffffffffff1661139f61151e565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90613099565b60405180910390fd5b80600c90816114049190613326565b5050565b611411816122e1565b61141a57600080fd5b600f546012548261142b91906130e8565b111561143657600080fd5b6010546064601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114859190613427565b8261149091906130e8565b111561149b57600080fd5b80601260008282546114ad91906130e8565b9250508190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150391906130e8565b9250508190555061151b6115156121f5565b826121fd565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115506121f5565b73ffffffffffffffffffffffffffffffffffffffff1661156e61151e565b73ffffffffffffffffffffffffffffffffffffffff16146115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90613099565b60405180910390fd5b80600d8190555050565b6060600380546115dd9061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546116099061301c565b80156116565780601f1061162b57610100808354040283529160200191611656565b820191906000526020600020905b81548152906001019060200180831161163957829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b61168c612053565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116fd612053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117aa612053565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ef91906128d5565b60405180910390a35050565b60105481565b6118096121f5565b73ffffffffffffffffffffffffffffffffffffffff1661182761151e565b73ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613099565b60405180910390fd5b8060118190555050565b61188f6121f5565b73ffffffffffffffffffffffffffffffffffffffff166118ad61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613099565b60405180910390fd5b81600a90816119129190613326565b5080600b90816119229190613326565b505050565b611932848484610c19565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119945761195d8484848461235d565b611993576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a80546119a79061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546119d39061301c565b8015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b505050505081565b6060611a3382611ff4565b611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a69906134a4565b60405180910390fd5b6000611a7c6124ad565b90506000815111611a9c5760405180602001604052806000815250611ac7565b80611aa68461253f565b604051602001611ab792919061354c565b6040516020818303038152906040525b915050919050565b600b8054611adc9061301c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b089061301c565b8015611b555780601f10611b2a57610100808354040283529160200191611b55565b820191906000526020600020905b815481529060010190602001808311611b3857829003601f168201915b505050505081565b60146020528060005260406000206000915090505481565b611b7d6121f5565b73ffffffffffffffffffffffffffffffffffffffff16611b9b61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890613099565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b600e5481565b611c1c6121f5565b73ffffffffffffffffffffffffffffffffffffffff16611c3a61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613099565b60405180910390fd5b80600f8190555050565b60125481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d3c6121f5565b73ffffffffffffffffffffffffffffffffffffffff16611d5a61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906135ed565b60405180910390fd5b611e288161221b565b50565b611e34816122e1565b611e3d57600080fd5b80600d54611e4b919061360d565b3414611e5657600080fd5b6011546064601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea59190613667565b82611eb091906130e8565b1115611ebb57600080fd5b606481611ec8919061360d565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1691906130e8565b92505081905550611f2e611f286121f5565b826121fd565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663852d826533670de0b6b3a76400006402540be40085611f85919061360d565b611f8f919061360d565b6040518363ffffffff1660e01b8152600401611fac929190613698565b600060405180830381600087803b158015611fc657600080fd5b505af1158015611fda573d6000803e3d6000fd5b5050505050565b601360009054906101000a900460ff1681565b600081611fff61205b565b1115801561200e575060005482105b801561204c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061207361205b565b116120f9576000548110156120f85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120f6575b600081036120ec5760046000836001900393508381526020019081526020016000205490506120c2565b809250505061212b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121b3868684612599565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6122178282604051806020016040528060008152506125a2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60003273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614801561232a5750601360009054906101000a900460ff165b80156123365750600082115b80156123565750600e54612348610c02565b8361235391906130e8565b11155b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612383612053565b8786866040518563ffffffff1660e01b81526004016123a59493929190613716565b6020604051808303816000875af19250505080156123e157506040513d601f19601f820116820180604052508101906123de9190613777565b60015b61245a573d8060008114612411576040519150601f19603f3d011682016040523d82523d6000602084013e612416565b606091505b506000815103612452576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546124bc9061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546124e89061301c565b80156125355780601f1061250a57610100808354040283529160200191612535565b820191906000526020600020905b81548152906001019060200180831161251857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561258557600183039250600a81066030018353600a81049050612565565b508181036020830392508083525050919050565b60009392505050565b6125ac838361263f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461263a57600080549050600083820390505b6125ec600086838060010194508661235d565b612622576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125d957816000541461263757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036126e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f26000848385612196565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127698361275a600086600061219c565b61276385612811565b176121c4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061278d5780600081905550505061280c60008483856121ef565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61286a81612835565b811461287557600080fd5b50565b60008135905061288781612861565b92915050565b6000602082840312156128a3576128a261282b565b5b60006128b184828501612878565b91505092915050565b60008115159050919050565b6128cf816128ba565b82525050565b60006020820190506128ea60008301846128c6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561292a57808201518184015260208101905061290f565b83811115612939576000848401525b50505050565b6000601f19601f8301169050919050565b600061295b826128f0565b61296581856128fb565b935061297581856020860161290c565b61297e8161293f565b840191505092915050565b600060208201905081810360008301526129a38184612950565b905092915050565b6000819050919050565b6129be816129ab565b81146129c957600080fd5b50565b6000813590506129db816129b5565b92915050565b6000602082840312156129f7576129f661282b565b5b6000612a05848285016129cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3982612a0e565b9050919050565b612a4981612a2e565b82525050565b6000602082019050612a646000830184612a40565b92915050565b612a7381612a2e565b8114612a7e57600080fd5b50565b600081359050612a9081612a6a565b92915050565b60008060408385031215612aad57612aac61282b565b5b6000612abb85828601612a81565b9250506020612acc858286016129cc565b9150509250929050565b612adf816129ab565b82525050565b6000602082019050612afa6000830184612ad6565b92915050565b600080600060608486031215612b1957612b1861282b565b5b6000612b2786828701612a81565b9350506020612b3886828701612a81565b9250506040612b49868287016129cc565b9150509250925092565b600060208284031215612b6957612b6861282b565b5b6000612b7784828501612a81565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bc28261293f565b810181811067ffffffffffffffff82111715612be157612be0612b8a565b5b80604052505050565b6000612bf4612821565b9050612c008282612bb9565b919050565b600067ffffffffffffffff821115612c2057612c1f612b8a565b5b612c298261293f565b9050602081019050919050565b82818337600083830152505050565b6000612c58612c5384612c05565b612bea565b905082815260208101848484011115612c7457612c73612b85565b5b612c7f848285612c36565b509392505050565b600082601f830112612c9c57612c9b612b80565b5b8135612cac848260208601612c45565b91505092915050565b600060208284031215612ccb57612cca61282b565b5b600082013567ffffffffffffffff811115612ce957612ce8612830565b5b612cf584828501612c87565b91505092915050565b6000819050919050565b6000612d23612d1e612d1984612a0e565b612cfe565b612a0e565b9050919050565b6000612d3582612d08565b9050919050565b6000612d4782612d2a565b9050919050565b612d5781612d3c565b82525050565b6000602082019050612d726000830184612d4e565b92915050565b612d81816128ba565b8114612d8c57600080fd5b50565b600081359050612d9e81612d78565b92915050565b60008060408385031215612dbb57612dba61282b565b5b6000612dc985828601612a81565b9250506020612dda85828601612d8f565b9150509250929050565b60008060408385031215612dfb57612dfa61282b565b5b600083013567ffffffffffffffff811115612e1957612e18612830565b5b612e2585828601612c87565b925050602083013567ffffffffffffffff811115612e4657612e45612830565b5b612e5285828601612c87565b9150509250929050565b600067ffffffffffffffff821115612e7757612e76612b8a565b5b612e808261293f565b9050602081019050919050565b6000612ea0612e9b84612e5c565b612bea565b905082815260208101848484011115612ebc57612ebb612b85565b5b612ec7848285612c36565b509392505050565b600082601f830112612ee457612ee3612b80565b5b8135612ef4848260208601612e8d565b91505092915050565b60008060008060808587031215612f1757612f1661282b565b5b6000612f2587828801612a81565b9450506020612f3687828801612a81565b9350506040612f47878288016129cc565b925050606085013567ffffffffffffffff811115612f6857612f67612830565b5b612f7487828801612ecf565b91505092959194509250565b600060208284031215612f9657612f9561282b565b5b6000612fa484828501612d8f565b91505092915050565b60008060408385031215612fc457612fc361282b565b5b6000612fd285828601612a81565b9250506020612fe385828601612a81565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061303457607f821691505b60208210810361304757613046612fed565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130836020836128fb565b915061308e8261304d565b602082019050919050565b600060208201905081810360008301526130b281613076565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f3826129ab565b91506130fe836129ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613133576131326130b9565b5b828201905092915050565b600081905092915050565b50565b600061315960008361313e565b915061316482613149565b600082019050919050565b600061317a8261314c565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131a9565b6131f086836131a9565b95508019841693508086168417925050509392505050565b600061322361321e613219846129ab565b612cfe565b6129ab565b9050919050565b6000819050919050565b61323d83613208565b6132516132498261322a565b8484546131b6565b825550505050565b600090565b613266613259565b613271818484613234565b505050565b5b818110156132955761328a60008261325e565b600181019050613277565b5050565b601f8211156132da576132ab81613184565b6132b484613199565b810160208510156132c3578190505b6132d76132cf85613199565b830182613276565b50505b505050565b600082821c905092915050565b60006132fd600019846008026132df565b1980831691505092915050565b600061331683836132ec565b9150826002028217905092915050565b61332f826128f0565b67ffffffffffffffff81111561334857613347612b8a565b5b613352825461301c565b61335d828285613299565b600060209050601f831160018114613390576000841561337e578287015190505b613388858261330a565b8655506133f0565b601f19841661339e86613184565b60005b828110156133c6578489015182556001820191506020850194506020810190506133a1565b868310156133e357848901516133df601f8916826132ec565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613432826129ab565b915061343d836129ab565b92508261344d5761344c6133f8565b5b828206905092915050565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b600061348e601b836128fb565b915061349982613458565b602082019050919050565b600060208201905081810360008301526134bd81613481565b9050919050565b600081905092915050565b60006134da826128f0565b6134e481856134c4565b93506134f481856020860161290c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135366005836134c4565b915061354182613500565b600582019050919050565b600061355882856134cf565b915061356482846134cf565b915061356f82613529565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135d76026836128fb565b91506135e28261357b565b604082019050919050565b60006020820190508181036000830152613606816135ca565b9050919050565b6000613618826129ab565b9150613623836129ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365c5761365b6130b9565b5b828202905092915050565b6000613672826129ab565b915061367d836129ab565b92508261368d5761368c6133f8565b5b828204905092915050565b60006040820190506136ad6000830185612a40565b6136ba6020830184612ad6565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006136e8826136c1565b6136f281856136cc565b935061370281856020860161290c565b61370b8161293f565b840191505092915050565b600060808201905061372b6000830187612a40565b6137386020830186612a40565b6137456040830185612ad6565b818103606083015261375781846136dd565b905095945050505050565b60008151905061377181612861565b92915050565b60006020828403121561378d5761378c61282b565b5b600061379b84828501613762565b9150509291505056fea2646970667358221220f7b0d14014324f057261c72ad287a547d31e620e424d1697028d18dcaa60455264736f6c634300080f003300000000000000000000000041cb973fe713cd25d7b3270542e376c700b3763d

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806391b7f5ed1161012e578063ca6c5216116100ab578063dad7b5c91161006f578063dad7b5c914610849578063e985e9c514610874578063f2fde38b146108b1578063fb5d96c3146108da578063fe4ca847146108f65761023b565b8063ca6c521614610764578063cbaaaa2a1461078f578063d1f0f7e3146107cc578063d5abeb01146107f5578063d755bf99146108205761023b565b8063ab6e2e11116100f2578063ab6e2e1114610681578063af784581146106aa578063b88d4fde146106d3578063bd99a96e146106fc578063c87b56dd146107275761023b565b806391b7f5ed146105ae57806395d89b41146105d75780639b558dca14610602578063a22cb4651461062d578063a7027357146106565761023b565b8063485a68a3116101bc578063715018a611610180578063715018a6146104ef578063728cce7c146105065780637a62a98a146105315780637c928fe91461055a5780638da5cb5b146105835761023b565b8063485a68a3146103f65780636352211e146104215780636d7c4a4b1461045e5780636f48ced31461048757806370a08231146104b25761023b565b806323b872dd1161020357806323b872dd146103395780632fbba115146103625780633ccfd60b1461038b57806342842e0e146103a2578063483335a1146103cb5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806318160ddd1461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061288d565b610921565b60405161027491906128d5565b60405180910390f35b34801561028957600080fd5b506102926109b3565b60405161029f9190612989565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906129e1565b610a45565b6040516102dc9190612a4f565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612a96565b610ac1565b005b34801561031a57600080fd5b50610323610c02565b6040516103309190612ae5565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612b00565b610c19565b005b34801561036e57600080fd5b50610389600480360381019061038491906129e1565b610f3b565b005b34801561039757600080fd5b506103a0610fec565b005b3480156103ae57600080fd5b506103c960048036038101906103c49190612b00565b6110e1565b005b3480156103d757600080fd5b506103e0611101565b6040516103ed9190612989565b60405180910390f35b34801561040257600080fd5b5061040b61118f565b6040516104189190612ae5565b60405180910390f35b34801561042d57600080fd5b50610448600480360381019061044391906129e1565b611195565b6040516104559190612a4f565b60405180910390f35b34801561046a57600080fd5b50610485600480360381019061048091906129e1565b6111a7565b005b34801561049357600080fd5b5061049c61122d565b6040516104a99190612ae5565b60405180910390f35b3480156104be57600080fd5b506104d960048036038101906104d49190612b53565b611233565b6040516104e69190612ae5565b60405180910390f35b3480156104fb57600080fd5b506105046112eb565b005b34801561051257600080fd5b5061051b611373565b6040516105289190612ae5565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190612cb5565b611379565b005b34801561056657600080fd5b50610581600480360381019061057c91906129e1565b611408565b005b34801561058f57600080fd5b5061059861151e565b6040516105a59190612a4f565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d091906129e1565b611548565b005b3480156105e357600080fd5b506105ec6115ce565b6040516105f99190612989565b60405180910390f35b34801561060e57600080fd5b50610617611660565b6040516106249190612d5d565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612da4565b611684565b005b34801561066257600080fd5b5061066b6117fb565b6040516106789190612ae5565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a391906129e1565b611801565b005b3480156106b657600080fd5b506106d160048036038101906106cc9190612de4565b611887565b005b3480156106df57600080fd5b506106fa60048036038101906106f59190612efd565b611927565b005b34801561070857600080fd5b5061071161199a565b60405161071e9190612989565b60405180910390f35b34801561073357600080fd5b5061074e600480360381019061074991906129e1565b611a28565b60405161075b9190612989565b60405180910390f35b34801561077057600080fd5b50610779611acf565b6040516107869190612989565b60405180910390f35b34801561079b57600080fd5b506107b660048036038101906107b19190612b53565b611b5d565b6040516107c39190612ae5565b60405180910390f35b3480156107d857600080fd5b506107f360048036038101906107ee9190612f80565b611b75565b005b34801561080157600080fd5b5061080a611c0e565b6040516108179190612ae5565b60405180910390f35b34801561082c57600080fd5b50610847600480360381019061084291906129e1565b611c14565b005b34801561085557600080fd5b5061085e611c9a565b60405161086b9190612ae5565b60405180910390f35b34801561088057600080fd5b5061089b60048036038101906108969190612fad565b611ca0565b6040516108a891906128d5565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190612b53565b611d34565b005b6108f460048036038101906108ef91906129e1565b611e2b565b005b34801561090257600080fd5b5061090b611fe1565b60405161091891906128d5565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ac5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c29061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546109ee9061301c565b8015610a3b5780601f10610a1057610100808354040283529160200191610a3b565b820191906000526020600020905b815481529060010190602001808311610a1e57829003601f168201915b5050505050905090565b6000610a5082611ff4565b610a86576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acc82611195565b90508073ffffffffffffffffffffffffffffffffffffffff16610aed612053565b73ffffffffffffffffffffffffffffffffffffffff1614610b5057610b1981610b14612053565b611ca0565b610b4f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c0c61205b565b6001546000540303905090565b6000610c2482612064565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c8b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c9784612130565b91509150610cad8187610ca8612053565b612152565b610cf957610cc286610cbd612053565b611ca0565b610cf8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d6c8686866001612196565b8015610d7757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e4585610e2188888761219c565b7c0200000000000000000000000000000000000000000000000000000000176121c4565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ecb5760006001850190506000600460008381526020019081526020016000205403610ec9576000548114610ec8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f3386868660016121ef565b505050505050565b610f436121f5565b73ffffffffffffffffffffffffffffffffffffffff16610f6161151e565b73ffffffffffffffffffffffffffffffffffffffff1614610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90613099565b60405180910390fd5b600e54610fc2610c02565b82610fcd91906130e8565b1115610fd857600080fd5b610fe9610fe36121f5565b826121fd565b50565b610ff46121f5565b73ffffffffffffffffffffffffffffffffffffffff1661101261151e565b73ffffffffffffffffffffffffffffffffffffffff1614611068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105f90613099565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161108e9061316f565b60006040518083038185875af1925050503d80600081146110cb576040519150601f19603f3d011682016040523d82523d6000602084013e6110d0565b606091505b50509050806110de57600080fd5b50565b6110fc83838360405180602001604052806000815250611927565b505050565b600c805461110e9061301c565b80601f016020809104026020016040519081016040528092919081815260200182805461113a9061301c565b80156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b505050505081565b600f5481565b60006111a082612064565b9050919050565b6111af6121f5565b73ffffffffffffffffffffffffffffffffffffffff166111cd61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90613099565b60405180910390fd5b8060108190555050565b60115481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361129a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6112f36121f5565b73ffffffffffffffffffffffffffffffffffffffff1661131161151e565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90613099565b60405180910390fd5b611371600061221b565b565b600d5481565b6113816121f5565b73ffffffffffffffffffffffffffffffffffffffff1661139f61151e565b73ffffffffffffffffffffffffffffffffffffffff16146113f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ec90613099565b60405180910390fd5b80600c90816114049190613326565b5050565b611411816122e1565b61141a57600080fd5b600f546012548261142b91906130e8565b111561143657600080fd5b6010546064601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114859190613427565b8261149091906130e8565b111561149b57600080fd5b80601260008282546114ad91906130e8565b9250508190555080601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461150391906130e8565b9250508190555061151b6115156121f5565b826121fd565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115506121f5565b73ffffffffffffffffffffffffffffffffffffffff1661156e61151e565b73ffffffffffffffffffffffffffffffffffffffff16146115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90613099565b60405180910390fd5b80600d8190555050565b6060600380546115dd9061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546116099061301c565b80156116565780601f1061162b57610100808354040283529160200191611656565b820191906000526020600020905b81548152906001019060200180831161163957829003601f168201915b5050505050905090565b7f00000000000000000000000041cb973fe713cd25d7b3270542e376c700b3763d81565b61168c612053565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116f0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006116fd612053565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117aa612053565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ef91906128d5565b60405180910390a35050565b60105481565b6118096121f5565b73ffffffffffffffffffffffffffffffffffffffff1661182761151e565b73ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613099565b60405180910390fd5b8060118190555050565b61188f6121f5565b73ffffffffffffffffffffffffffffffffffffffff166118ad61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613099565b60405180910390fd5b81600a90816119129190613326565b5080600b90816119229190613326565b505050565b611932848484610c19565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119945761195d8484848461235d565b611993576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a80546119a79061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546119d39061301c565b8015611a205780601f106119f557610100808354040283529160200191611a20565b820191906000526020600020905b815481529060010190602001808311611a0357829003601f168201915b505050505081565b6060611a3382611ff4565b611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a69906134a4565b60405180910390fd5b6000611a7c6124ad565b90506000815111611a9c5760405180602001604052806000815250611ac7565b80611aa68461253f565b604051602001611ab792919061354c565b6040516020818303038152906040525b915050919050565b600b8054611adc9061301c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b089061301c565b8015611b555780601f10611b2a57610100808354040283529160200191611b55565b820191906000526020600020905b815481529060010190602001808311611b3857829003601f168201915b505050505081565b60146020528060005260406000206000915090505481565b611b7d6121f5565b73ffffffffffffffffffffffffffffffffffffffff16611b9b61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be890613099565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b600e5481565b611c1c6121f5565b73ffffffffffffffffffffffffffffffffffffffff16611c3a61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8790613099565b60405180910390fd5b80600f8190555050565b60125481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d3c6121f5565b73ffffffffffffffffffffffffffffffffffffffff16611d5a61151e565b73ffffffffffffffffffffffffffffffffffffffff1614611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e16906135ed565b60405180910390fd5b611e288161221b565b50565b611e34816122e1565b611e3d57600080fd5b80600d54611e4b919061360d565b3414611e5657600080fd5b6011546064601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ea59190613667565b82611eb091906130e8565b1115611ebb57600080fd5b606481611ec8919061360d565b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f1691906130e8565b92505081905550611f2e611f286121f5565b826121fd565b7f00000000000000000000000041cb973fe713cd25d7b3270542e376c700b3763d73ffffffffffffffffffffffffffffffffffffffff1663852d826533670de0b6b3a76400006402540be40085611f85919061360d565b611f8f919061360d565b6040518363ffffffff1660e01b8152600401611fac929190613698565b600060405180830381600087803b158015611fc657600080fd5b505af1158015611fda573d6000803e3d6000fd5b5050505050565b601360009054906101000a900460ff1681565b600081611fff61205b565b1115801561200e575060005482105b801561204c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061207361205b565b116120f9576000548110156120f85760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120f6575b600081036120ec5760046000836001900393508381526020019081526020016000205490506120c2565b809250505061212b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121b3868684612599565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6122178282604051806020016040528060008152506125a2565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60003273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614801561232a5750601360009054906101000a900460ff165b80156123365750600082115b80156123565750600e54612348610c02565b8361235391906130e8565b11155b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612383612053565b8786866040518563ffffffff1660e01b81526004016123a59493929190613716565b6020604051808303816000875af19250505080156123e157506040513d601f19601f820116820180604052508101906123de9190613777565b60015b61245a573d8060008114612411576040519150601f19603f3d011682016040523d82523d6000602084013e612416565b606091505b506000815103612452576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c80546124bc9061301c565b80601f01602080910402602001604051908101604052809291908181526020018280546124e89061301c565b80156125355780601f1061250a57610100808354040283529160200191612535565b820191906000526020600020905b81548152906001019060200180831161251857829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561258557600183039250600a81066030018353600a81049050612565565b508181036020830392508083525050919050565b60009392505050565b6125ac838361263f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461263a57600080549050600083820390505b6125ec600086838060010194508661235d565b612622576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125d957816000541461263757600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082036126e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126f26000848385612196565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127698361275a600086600061219c565b61276385612811565b176121c4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061278d5780600081905550505061280c60008483856121ef565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61286a81612835565b811461287557600080fd5b50565b60008135905061288781612861565b92915050565b6000602082840312156128a3576128a261282b565b5b60006128b184828501612878565b91505092915050565b60008115159050919050565b6128cf816128ba565b82525050565b60006020820190506128ea60008301846128c6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561292a57808201518184015260208101905061290f565b83811115612939576000848401525b50505050565b6000601f19601f8301169050919050565b600061295b826128f0565b61296581856128fb565b935061297581856020860161290c565b61297e8161293f565b840191505092915050565b600060208201905081810360008301526129a38184612950565b905092915050565b6000819050919050565b6129be816129ab565b81146129c957600080fd5b50565b6000813590506129db816129b5565b92915050565b6000602082840312156129f7576129f661282b565b5b6000612a05848285016129cc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a3982612a0e565b9050919050565b612a4981612a2e565b82525050565b6000602082019050612a646000830184612a40565b92915050565b612a7381612a2e565b8114612a7e57600080fd5b50565b600081359050612a9081612a6a565b92915050565b60008060408385031215612aad57612aac61282b565b5b6000612abb85828601612a81565b9250506020612acc858286016129cc565b9150509250929050565b612adf816129ab565b82525050565b6000602082019050612afa6000830184612ad6565b92915050565b600080600060608486031215612b1957612b1861282b565b5b6000612b2786828701612a81565b9350506020612b3886828701612a81565b9250506040612b49868287016129cc565b9150509250925092565b600060208284031215612b6957612b6861282b565b5b6000612b7784828501612a81565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bc28261293f565b810181811067ffffffffffffffff82111715612be157612be0612b8a565b5b80604052505050565b6000612bf4612821565b9050612c008282612bb9565b919050565b600067ffffffffffffffff821115612c2057612c1f612b8a565b5b612c298261293f565b9050602081019050919050565b82818337600083830152505050565b6000612c58612c5384612c05565b612bea565b905082815260208101848484011115612c7457612c73612b85565b5b612c7f848285612c36565b509392505050565b600082601f830112612c9c57612c9b612b80565b5b8135612cac848260208601612c45565b91505092915050565b600060208284031215612ccb57612cca61282b565b5b600082013567ffffffffffffffff811115612ce957612ce8612830565b5b612cf584828501612c87565b91505092915050565b6000819050919050565b6000612d23612d1e612d1984612a0e565b612cfe565b612a0e565b9050919050565b6000612d3582612d08565b9050919050565b6000612d4782612d2a565b9050919050565b612d5781612d3c565b82525050565b6000602082019050612d726000830184612d4e565b92915050565b612d81816128ba565b8114612d8c57600080fd5b50565b600081359050612d9e81612d78565b92915050565b60008060408385031215612dbb57612dba61282b565b5b6000612dc985828601612a81565b9250506020612dda85828601612d8f565b9150509250929050565b60008060408385031215612dfb57612dfa61282b565b5b600083013567ffffffffffffffff811115612e1957612e18612830565b5b612e2585828601612c87565b925050602083013567ffffffffffffffff811115612e4657612e45612830565b5b612e5285828601612c87565b9150509250929050565b600067ffffffffffffffff821115612e7757612e76612b8a565b5b612e808261293f565b9050602081019050919050565b6000612ea0612e9b84612e5c565b612bea565b905082815260208101848484011115612ebc57612ebb612b85565b5b612ec7848285612c36565b509392505050565b600082601f830112612ee457612ee3612b80565b5b8135612ef4848260208601612e8d565b91505092915050565b60008060008060808587031215612f1757612f1661282b565b5b6000612f2587828801612a81565b9450506020612f3687828801612a81565b9350506040612f47878288016129cc565b925050606085013567ffffffffffffffff811115612f6857612f67612830565b5b612f7487828801612ecf565b91505092959194509250565b600060208284031215612f9657612f9561282b565b5b6000612fa484828501612d8f565b91505092915050565b60008060408385031215612fc457612fc361282b565b5b6000612fd285828601612a81565b9250506020612fe385828601612a81565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061303457607f821691505b60208210810361304757613046612fed565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130836020836128fb565b915061308e8261304d565b602082019050919050565b600060208201905081810360008301526130b281613076565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130f3826129ab565b91506130fe836129ab565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613133576131326130b9565b5b828201905092915050565b600081905092915050565b50565b600061315960008361313e565b915061316482613149565b600082019050919050565b600061317a8261314c565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131a9565b6131f086836131a9565b95508019841693508086168417925050509392505050565b600061322361321e613219846129ab565b612cfe565b6129ab565b9050919050565b6000819050919050565b61323d83613208565b6132516132498261322a565b8484546131b6565b825550505050565b600090565b613266613259565b613271818484613234565b505050565b5b818110156132955761328a60008261325e565b600181019050613277565b5050565b601f8211156132da576132ab81613184565b6132b484613199565b810160208510156132c3578190505b6132d76132cf85613199565b830182613276565b50505b505050565b600082821c905092915050565b60006132fd600019846008026132df565b1980831691505092915050565b600061331683836132ec565b9150826002028217905092915050565b61332f826128f0565b67ffffffffffffffff81111561334857613347612b8a565b5b613352825461301c565b61335d828285613299565b600060209050601f831160018114613390576000841561337e578287015190505b613388858261330a565b8655506133f0565b601f19841661339e86613184565b60005b828110156133c6578489015182556001820191506020850194506020810190506133a1565b868310156133e357848901516133df601f8916826132ec565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613432826129ab565b915061343d836129ab565b92508261344d5761344c6133f8565b5b828206905092915050565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b600061348e601b836128fb565b915061349982613458565b602082019050919050565b600060208201905081810360008301526134bd81613481565b9050919050565b600081905092915050565b60006134da826128f0565b6134e481856134c4565b93506134f481856020860161290c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006135366005836134c4565b915061354182613500565b600582019050919050565b600061355882856134cf565b915061356482846134cf565b915061356f82613529565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006135d76026836128fb565b91506135e28261357b565b604082019050919050565b60006020820190508181036000830152613606816135ca565b9050919050565b6000613618826129ab565b9150613623836129ab565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365c5761365b6130b9565b5b828202905092915050565b6000613672826129ab565b915061367d836129ab565b92508261368d5761368c6133f8565b5b828204905092915050565b60006040820190506136ad6000830185612a40565b6136ba6020830184612ad6565b9392505050565b600081519050919050565b600082825260208201905092915050565b60006136e8826136c1565b6136f281856136cc565b935061370281856020860161290c565b61370b8161293f565b840191505092915050565b600060808201905061372b6000830187612a40565b6137386020830186612a40565b6137456040830185612ad6565b818103606083015261375781846136dd565b905095945050505050565b60008151905061377181612861565b92915050565b60006020828403121561378d5761378c61282b565b5b600061379b84828501613762565b9150509291505056fea2646970667358221220f7b0d14014324f057261c72ad287a547d31e620e424d1697028d18dcaa60455264736f6c634300080f0033

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

00000000000000000000000041cb973fe713cd25d7b3270542e376c700b3763d

-----Decoded View---------------
Arg [0] : _coin (address): 0x41cB973Fe713cd25D7b3270542E376C700b3763d

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000041cb973fe713cd25d7b3270542e376c700b3763d


Deployed Bytecode Sourcemap

51113:3321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17351:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22998:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24944:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24492:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16405:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34209:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52699:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53671:138;;;;;;;;;;;;;:::i;:::-;;25834:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51255:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51366:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22787:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53020:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51438:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18030:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50089:103;;;;;;;;;;;;;:::i;:::-;;51285:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53352:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51778:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49438:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52933:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23167:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51551:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25220:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51399:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53144:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53457:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26090:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51186:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53925:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51217:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51602:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52846:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51330:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53264:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51477:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25599:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50347:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52099:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51515:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17351:615;17436:4;17751:10;17736:25;;:11;:25;;;;:102;;;;17828:10;17813:25;;:11;:25;;;;17736:102;:179;;;;17905:10;17890:25;;:11;:25;;;;17736:179;17716:199;;17351:615;;;:::o;22998:100::-;23052:13;23085:5;23078:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22998:100;:::o;24944:204::-;25012:7;25037:16;25045:7;25037;:16::i;:::-;25032:64;;25062:34;;;;;;;;;;;;;;25032:64;25116:15;:24;25132:7;25116:24;;;;;;;;;;;;;;;;;;;;;25109:31;;24944:204;;;:::o;24492:386::-;24565:13;24581:16;24589:7;24581;:16::i;:::-;24565:32;;24637:5;24614:28;;:19;:17;:19::i;:::-;:28;;;24610:175;;24662:44;24679:5;24686:19;:17;:19::i;:::-;24662:16;:44::i;:::-;24657:128;;24734:35;;;;;;;;;;;;;;24657:128;24610:175;24824:2;24797:15;:24;24813:7;24797:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24862:7;24858:2;24842:28;;24851:5;24842:28;;;;;;;;;;;;24554:324;24492:386;;:::o;16405:315::-;16458:7;16686:15;:13;:15::i;:::-;16671:12;;16655:13;;:28;:46;16648:53;;16405:315;:::o;34209:2800::-;34343:27;34373;34392:7;34373:18;:27::i;:::-;34343:57;;34458:4;34417:45;;34433:19;34417:45;;;34413:86;;34471:28;;;;;;;;;;;;;;34413:86;34513:27;34542:23;34569:28;34589:7;34569:19;:28::i;:::-;34512:85;;;;34697:62;34716:15;34733:4;34739:19;:17;:19::i;:::-;34697:18;:62::i;:::-;34692:174;;34779:43;34796:4;34802:19;:17;:19::i;:::-;34779:16;:43::i;:::-;34774:92;;34831:35;;;;;;;;;;;;;;34774:92;34692:174;34897:1;34883:16;;:2;:16;;;34879:52;;34908:23;;;;;;;;;;;;;;34879:52;34944:43;34966:4;34972:2;34976:7;34985:1;34944:21;:43::i;:::-;35080:15;35077:160;;;35220:1;35199:19;35192:30;35077:160;35615:18;:24;35634:4;35615:24;;;;;;;;;;;;;;;;35613:26;;;;;;;;;;;;35684:18;:22;35703:2;35684:22;;;;;;;;;;;;;;;;35682:24;;;;;;;;;;;36006:145;36043:2;36091:45;36106:4;36112:2;36116:19;36091:14;:45::i;:::-;13633:8;36064:72;36006:18;:145::i;:::-;35977:17;:26;35995:7;35977:26;;;;;;;;;;;:174;;;;36321:1;13633:8;36271:19;:46;:51;36267:626;;36343:19;36375:1;36365:7;:11;36343:33;;36532:1;36498:17;:30;36516:11;36498:30;;;;;;;;;;;;:35;36494:384;;36636:13;;36621:11;:28;36617:242;;36816:19;36783:17;:30;36801:11;36783:30;;;;;;;;;;;:52;;;;36617:242;36494:384;36324:569;36267:626;36940:7;36936:2;36921:27;;36930:4;36921:27;;;;;;;;;;;;36959:42;36980:4;36986:2;36990:7;36999:1;36959:20;:42::i;:::-;34332:2677;;;34209:2800;;;:::o;52699:144::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52791:9:::1;;52774:13;:11;:13::i;:::-;52764:7;:23;;;;:::i;:::-;:36;;52756:45;;;::::0;::::1;;52806:32;52816:12;:10;:12::i;:::-;52830:7;52806:9;:32::i;:::-;52699:144:::0;:::o;53671:138::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53714:12:::1;53732:10;:15;;53756:21;53732:51;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53713:70;;;53796:7;53788:16;;;::::0;::::1;;53708:101;53671:138::o:0;25834:185::-;25972:39;25989:4;25995:2;25999:7;25972:39;;;;;;;;;;;;:16;:39::i;:::-;25834:185;;;:::o;51255:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51366:29::-;;;;:::o;22787:144::-;22851:7;22894:27;22913:7;22894:18;:27::i;:::-;22871:52;;22787:144;;;:::o;53020:119::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53117:17:::1;53098:16;:36;;;;53020:119:::0;:::o;51438:35::-;;;;:::o;18030:224::-;18094:7;18135:1;18118:19;;:5;:19;;;18114:60;;18146:28;;;;;;;;;;;;;;18114:60;12585:13;18192:18;:25;18211:5;18192:25;;;;;;;;;;;;;;;;:54;18185:61;;18030:224;;;:::o;50089:103::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50154:30:::1;50181:1;50154:18;:30::i;:::-;50089:103::o:0;51285:41::-;;;;:::o;53352:100::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53437:10:::1;53422:12;:25;;;;;;:::i;:::-;;53352:100:::0;:::o;51778:316::-;51833:23;51848:7;51833:14;:23::i;:::-;51825:32;;;;;;51899:7;;51880:15;;51870:7;:25;;;;:::i;:::-;:36;;51862:45;;;;;;51965:16;;51957:3;51931:11;:23;51943:10;51931:23;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;51920:7;:41;;;;:::i;:::-;:61;;51912:70;;;;;;52006:7;51987:15;;:26;;;;;;;:::i;:::-;;;;;;;;52045:7;52018:11;:23;52030:10;52018:23;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;52057:32;52067:12;:10;:12::i;:::-;52081:7;52057:9;:32::i;:::-;51778:316;:::o;49438:87::-;49484:7;49511:6;;;;;;;;;;;49504:13;;49438:87;:::o;52933:82::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53004:6:::1;52989:12;:21;;;;52933:82:::0;:::o;23167:104::-;23223:13;23256:7;23249:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23167:104;:::o;51551:45::-;;;:::o;25220:308::-;25331:19;:17;:19::i;:::-;25319:31;;:8;:31;;;25315:61;;25359:17;;;;;;;;;;;;;;25315:61;25441:8;25389:18;:39;25408:19;:17;:19::i;:::-;25389:39;;;;;;;;;;;;;;;:49;25429:8;25389:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25501:8;25465:55;;25480:19;:17;:19::i;:::-;25465:55;;;25511:8;25465:55;;;;;;:::i;:::-;;;;;;;;25220:308;;:::o;51399:35::-;;;;:::o;53144:115::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53238:16:::1;53220:15;:34;;;;53144:115:::0;:::o;53457:209::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53598:14:::1;53582:13;:30;;;;;;:::i;:::-;;53640:21;53617:20;:44;;;;;;:::i;:::-;;53457:209:::0;;:::o;26090:399::-;26257:31;26270:4;26276:2;26280:7;26257:12;:31::i;:::-;26321:1;26303:2;:14;;;:19;26299:183;;26342:56;26373:4;26379:2;26383:7;26392:5;26342:30;:56::i;:::-;26337:145;;26426:40;;;;;;;;;;;;;;26337:145;26299:183;26090:399;;;;:::o;51186:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53925:397::-;54014:13;54044:17;54052:8;54044:7;:17::i;:::-;54036:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54098:28;54129:10;:8;:10::i;:::-;54098:41;;54186:1;54161:14;54155:28;:32;:162;;;;;;;;;;;;;;;;;54234:14;54257:19;54267:8;54257:9;:19::i;:::-;54209:91;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54155:162;54144:173;;;53925:397;;;:::o;51217:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51602:46::-;;;;;;;;;;;;;;;;;:::o;52846:82::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52917:6:::1;52904:10;;:19;;;;;;;;;;;;;;;;;;52846:82:::0;:::o;51330:32::-;;;;:::o;53264:83::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53334:8:::1;53324:7;:18;;;;53264:83:::0;:::o;51477:34::-;;;;:::o;25599:164::-;25696:4;25720:18;:25;25739:5;25720:25;;;;;;;;;;;;;;;:35;25746:8;25720:35;;;;;;;;;;;;;;;;;;;;;;;;;25713:42;;25599:164;;;;:::o;50347:201::-;49669:12;:10;:12::i;:::-;49658:23;;:7;:5;:7::i;:::-;:23;;;49650:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50456:1:::1;50436:22;;:8;:22;;::::0;50428:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;50512:28;50531:8;50512:18;:28::i;:::-;50347:201:::0;:::o;52099:375::-;52165:23;52180:7;52165:14;:23::i;:::-;52157:32;;;;;;52230:7;52215:12;;:22;;;;:::i;:::-;52202:9;:35;52194:44;;;;;;52294:15;;52287:3;52261:11;:23;52273:10;52261:23;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;52251:7;:39;;;;:::i;:::-;:58;;52243:67;;;;;;52352:3;52342:7;:13;;;;:::i;:::-;52315:11;:23;52327:10;52315:23;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;52360:32;52370:12;:10;:12::i;:::-;52384:7;52360:9;:32::i;:::-;52397:13;:24;;;52422:10;52459:8;52444:11;52434:7;:21;;;;:::i;:::-;:34;;;;:::i;:::-;52397:72;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52099:375;:::o;51515:30::-;;;;;;;;;;;;;:::o;26744:273::-;26801:4;26857:7;26838:15;:13;:15::i;:::-;:26;;:66;;;;;26891:13;;26881:7;:23;26838:66;:152;;;;;26989:1;13355:8;26942:17;:26;26960:7;26942:26;;;;;;;;;;;;:43;:48;26838:152;26818:172;;26744:273;;;:::o;45305:105::-;45365:7;45392:10;45385:17;;45305:105;:::o;53828:92::-;53893:7;53914:1;53907:8;;53828:92;:::o;19704:1129::-;19771:7;19791:12;19806:7;19791:22;;19874:4;19855:15;:13;:15::i;:::-;:23;19851:915;;19908:13;;19901:4;:20;19897:869;;;19946:14;19963:17;:23;19981:4;19963:23;;;;;;;;;;;;19946:40;;20079:1;13355:8;20052:6;:23;:28;20048:699;;20571:113;20588:1;20578:6;:11;20571:113;;20631:17;:25;20649:6;;;;;;;20631:25;;;;;;;;;;;;20622:34;;20571:113;;;20717:6;20710:13;;;;;;20048:699;19923:843;19897:869;19851:915;20794:31;;;;;;;;;;;;;;19704:1129;;;;:::o;32545:652::-;32640:27;32669:23;32710:53;32766:15;32710:71;;32952:7;32946:4;32939:21;32987:22;32981:4;32974:36;33063:4;33057;33047:21;33024:44;;33159:19;33153:26;33134:45;;32890:300;32545:652;;;:::o;33310:645::-;33452:11;33614:15;33608:4;33604:26;33596:34;;33773:15;33762:9;33758:31;33745:44;;33920:15;33909:9;33906:30;33899:4;33888:9;33885:19;33882:55;33872:65;;33310:645;;;;;:::o;44138:159::-;;;;;:::o;42450:309::-;42585:7;42605:16;13756:3;42631:19;:40;;42605:67;;13756:3;42698:31;42709:4;42715:2;42719:9;42698:10;:31::i;:::-;42690:40;;:61;;42683:68;;;42450:309;;;;;:::o;22278:447::-;22358:14;22526:15;22519:5;22515:27;22506:36;;22700:5;22686:11;22662:22;22658:40;22655:51;22648:5;22645:62;22635:72;;22278:447;;;;:::o;44956:158::-;;;;;:::o;48162:98::-;48215:7;48242:10;48235:17;;48162:98;:::o;27101:104::-;27170:27;27180:2;27184:8;27170:27;;;;;;;;;;;;:9;:27::i;:::-;27101:104;;:::o;50708:191::-;50782:16;50801:6;;;;;;;;;;;50782:25;;50827:8;50818:6;;:17;;;;;;;;;;;;;;;;;;50882:8;50851:40;;50872:8;50851:40;;;;;;;;;;;;50771:128;50708:191;:::o;52490:194::-;52553:4;52589:9;52575:23;;:10;:23;;;:41;;;;;52606:10;;;;;;;;;;;52575:41;:60;;;;;52634:1;52624:7;:11;52575:60;:104;;;;;52670:9;;52653:13;:11;:13::i;:::-;52643:7;:23;;;;:::i;:::-;:36;;52575:104;52564:115;;52490:194;;;:::o;40960:716::-;41123:4;41169:2;41144:45;;;41190:19;:17;:19::i;:::-;41211:4;41217:7;41226:5;41144:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41140:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41444:1;41427:6;:13;:18;41423:235;;41473:40;;;;;;;;;;;;;;41423:235;41616:6;41610:13;41601:6;41597:2;41593:15;41586:38;41140:529;41313:54;;;41303:64;;;:6;:64;;;;41296:71;;;40960:716;;;;;;:::o;54327:104::-;54387:13;54414:12;54407:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54327:104;:::o;45516:1960::-;45573:17;45992:3;45985:4;45979:11;45975:21;45968:28;;46083:3;46077:4;46070:17;46189:3;46645:5;46775:1;46770:3;46766:11;46759:18;;46912:2;46906:4;46902:13;46898:2;46894:22;46889:3;46881:36;46953:2;46947:4;46943:13;46935:21;;46537:697;46972:4;46537:697;;;47163:1;47158:3;47154:11;47147:18;;47214:2;47208:4;47204:13;47200:2;47196:22;47191:3;47183:36;47067:2;47061:4;47057:13;47049:21;;46537:697;;;46541:430;47273:3;47268;47264:13;47388:2;47383:3;47379:12;47372:19;;47451:6;47446:3;47439:19;45612:1857;;45516:1960;;;:::o;43335:147::-;43472:6;43335:147;;;;;:::o;27621:681::-;27744:19;27750:2;27754:8;27744:5;:19::i;:::-;27823:1;27805:2;:14;;;:19;27801:483;;27845:11;27859:13;;27845:27;;27891:13;27913:8;27907:3;:14;27891:30;;27940:233;27971:62;28010:1;28014:2;28018:7;;;;;;28027:5;27971:30;:62::i;:::-;27966:167;;28069:40;;;;;;;;;;;;;;27966:167;28168:3;28160:5;:11;27940:233;;28255:3;28238:13;;:20;28234:34;;28260:8;;;28234:34;27826:458;;27801:483;27621:681;;;:::o;28575:1529::-;28640:20;28663:13;;28640:36;;28705:1;28691:16;;:2;:16;;;28687:48;;28716:19;;;;;;;;;;;;;;28687:48;28762:1;28750:8;:13;28746:44;;28772:18;;;;;;;;;;;;;;28746:44;28803:61;28833:1;28837:2;28841:12;28855:8;28803:21;:61::i;:::-;29346:1;12722:2;29317:1;:25;;29316:31;29304:8;:44;29278:18;:22;29297:2;29278:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;29625:139;29662:2;29716:33;29739:1;29743:2;29747:1;29716:14;:33::i;:::-;29683:30;29704:8;29683:20;:30::i;:::-;:66;29625:18;:139::i;:::-;29591:17;:31;29609:12;29591:31;;;;;;;;;;;:173;;;;29781:15;29799:12;29781:30;;29826:11;29855:8;29840:12;:23;29826:37;;29878:101;29930:9;;;;;;29926:2;29905:35;;29922:1;29905:35;;;;;;;;;;;;29974:3;29964:7;:13;29878:101;;30011:3;29995:13;:19;;;;29052:974;;30036:60;30065:1;30069:2;30073:12;30087:8;30036:20;:60::i;:::-;28629:1475;28575:1529;;:::o;24108:322::-;24178:14;24409:1;24399:8;24396:15;24371:23;24367:45;24357:55;;24108:322;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:117::-;6359:1;6356;6349:12;6373:117;6482:1;6479;6472:12;6496:180;6544:77;6541:1;6534:88;6641:4;6638:1;6631:15;6665:4;6662:1;6655:15;6682:281;6765:27;6787:4;6765:27;:::i;:::-;6757:6;6753:40;6895:6;6883:10;6880:22;6859:18;6847:10;6844:34;6841:62;6838:88;;;6906:18;;:::i;:::-;6838:88;6946:10;6942:2;6935:22;6725:238;6682:281;;:::o;6969:129::-;7003:6;7030:20;;:::i;:::-;7020:30;;7059:33;7087:4;7079:6;7059:33;:::i;:::-;6969:129;;;:::o;7104:308::-;7166:4;7256:18;7248:6;7245:30;7242:56;;;7278:18;;:::i;:::-;7242:56;7316:29;7338:6;7316:29;:::i;:::-;7308:37;;7400:4;7394;7390:15;7382:23;;7104:308;;;:::o;7418:154::-;7502:6;7497:3;7492;7479:30;7564:1;7555:6;7550:3;7546:16;7539:27;7418:154;;;:::o;7578:412::-;7656:5;7681:66;7697:49;7739:6;7697:49;:::i;:::-;7681:66;:::i;:::-;7672:75;;7770:6;7763:5;7756:21;7808:4;7801:5;7797:16;7846:3;7837:6;7832:3;7828:16;7825:25;7822:112;;;7853:79;;:::i;:::-;7822:112;7943:41;7977:6;7972:3;7967;7943:41;:::i;:::-;7662:328;7578:412;;;;;:::o;8010:340::-;8066:5;8115:3;8108:4;8100:6;8096:17;8092:27;8082:122;;8123:79;;:::i;:::-;8082:122;8240:6;8227:20;8265:79;8340:3;8332:6;8325:4;8317:6;8313:17;8265:79;:::i;:::-;8256:88;;8072:278;8010:340;;;;:::o;8356:509::-;8425:6;8474:2;8462:9;8453:7;8449:23;8445:32;8442:119;;;8480:79;;:::i;:::-;8442:119;8628:1;8617:9;8613:17;8600:31;8658:18;8650:6;8647:30;8644:117;;;8680:79;;:::i;:::-;8644:117;8785:63;8840:7;8831:6;8820:9;8816:22;8785:63;:::i;:::-;8775:73;;8571:287;8356:509;;;;:::o;8871:60::-;8899:3;8920:5;8913:12;;8871:60;;;:::o;8937:142::-;8987:9;9020:53;9038:34;9047:24;9065:5;9047:24;:::i;:::-;9038:34;:::i;:::-;9020:53;:::i;:::-;9007:66;;8937:142;;;:::o;9085:126::-;9135:9;9168:37;9199:5;9168:37;:::i;:::-;9155:50;;9085:126;;;:::o;9217:149::-;9290:9;9323:37;9354:5;9323:37;:::i;:::-;9310:50;;9217:149;;;:::o;9372:177::-;9482:60;9536:5;9482:60;:::i;:::-;9477:3;9470:73;9372:177;;:::o;9555:268::-;9671:4;9709:2;9698:9;9694:18;9686:26;;9722:94;9813:1;9802:9;9798:17;9789:6;9722:94;:::i;:::-;9555:268;;;;:::o;9829:116::-;9899:21;9914:5;9899:21;:::i;:::-;9892:5;9889:32;9879:60;;9935:1;9932;9925:12;9879:60;9829:116;:::o;9951:133::-;9994:5;10032:6;10019:20;10010:29;;10048:30;10072:5;10048:30;:::i;:::-;9951:133;;;;:::o;10090:468::-;10155:6;10163;10212:2;10200:9;10191:7;10187:23;10183:32;10180:119;;;10218:79;;:::i;:::-;10180:119;10338:1;10363:53;10408:7;10399:6;10388:9;10384:22;10363:53;:::i;:::-;10353:63;;10309:117;10465:2;10491:50;10533:7;10524:6;10513:9;10509:22;10491:50;:::i;:::-;10481:60;;10436:115;10090:468;;;;;:::o;10564:834::-;10652:6;10660;10709:2;10697:9;10688:7;10684:23;10680:32;10677:119;;;10715:79;;:::i;:::-;10677:119;10863:1;10852:9;10848:17;10835:31;10893:18;10885:6;10882:30;10879:117;;;10915:79;;:::i;:::-;10879:117;11020:63;11075:7;11066:6;11055:9;11051:22;11020:63;:::i;:::-;11010:73;;10806:287;11160:2;11149:9;11145:18;11132:32;11191:18;11183:6;11180:30;11177:117;;;11213:79;;:::i;:::-;11177:117;11318:63;11373:7;11364:6;11353:9;11349:22;11318:63;:::i;:::-;11308:73;;11103:288;10564:834;;;;;:::o;11404:307::-;11465:4;11555:18;11547:6;11544:30;11541:56;;;11577:18;;:::i;:::-;11541:56;11615:29;11637:6;11615:29;:::i;:::-;11607:37;;11699:4;11693;11689:15;11681:23;;11404:307;;;:::o;11717:410::-;11794:5;11819:65;11835:48;11876:6;11835:48;:::i;:::-;11819:65;:::i;:::-;11810:74;;11907:6;11900:5;11893:21;11945:4;11938:5;11934:16;11983:3;11974:6;11969:3;11965:16;11962:25;11959:112;;;11990:79;;:::i;:::-;11959:112;12080:41;12114:6;12109:3;12104;12080:41;:::i;:::-;11800:327;11717:410;;;;;:::o;12146:338::-;12201:5;12250:3;12243:4;12235:6;12231:17;12227:27;12217:122;;12258:79;;:::i;:::-;12217:122;12375:6;12362:20;12400:78;12474:3;12466:6;12459:4;12451:6;12447:17;12400:78;:::i;:::-;12391:87;;12207:277;12146:338;;;;:::o;12490:943::-;12585:6;12593;12601;12609;12658:3;12646:9;12637:7;12633:23;12629:33;12626:120;;;12665:79;;:::i;:::-;12626:120;12785:1;12810:53;12855:7;12846:6;12835:9;12831:22;12810:53;:::i;:::-;12800:63;;12756:117;12912:2;12938:53;12983:7;12974:6;12963:9;12959:22;12938:53;:::i;:::-;12928:63;;12883:118;13040:2;13066:53;13111:7;13102:6;13091:9;13087:22;13066:53;:::i;:::-;13056:63;;13011:118;13196:2;13185:9;13181:18;13168:32;13227:18;13219:6;13216:30;13213:117;;;13249:79;;:::i;:::-;13213:117;13354:62;13408:7;13399:6;13388:9;13384:22;13354:62;:::i;:::-;13344:72;;13139:287;12490:943;;;;;;;:::o;13439:323::-;13495:6;13544:2;13532:9;13523:7;13519:23;13515:32;13512:119;;;13550:79;;:::i;:::-;13512:119;13670:1;13695:50;13737:7;13728:6;13717:9;13713:22;13695:50;:::i;:::-;13685:60;;13641:114;13439:323;;;;:::o;13768:474::-;13836:6;13844;13893:2;13881:9;13872:7;13868:23;13864:32;13861:119;;;13899:79;;:::i;:::-;13861:119;14019:1;14044:53;14089:7;14080:6;14069:9;14065:22;14044:53;:::i;:::-;14034:63;;13990:117;14146:2;14172:53;14217:7;14208:6;14197:9;14193:22;14172:53;:::i;:::-;14162:63;;14117:118;13768:474;;;;;:::o;14248:180::-;14296:77;14293:1;14286:88;14393:4;14390:1;14383:15;14417:4;14414:1;14407:15;14434:320;14478:6;14515:1;14509:4;14505:12;14495:22;;14562:1;14556:4;14552:12;14583:18;14573:81;;14639:4;14631:6;14627:17;14617:27;;14573:81;14701:2;14693:6;14690:14;14670:18;14667:38;14664:84;;14720:18;;:::i;:::-;14664:84;14485:269;14434:320;;;:::o;14760:182::-;14900:34;14896:1;14888:6;14884:14;14877:58;14760:182;:::o;14948:366::-;15090:3;15111:67;15175:2;15170:3;15111:67;:::i;:::-;15104:74;;15187:93;15276:3;15187:93;:::i;:::-;15305:2;15300:3;15296:12;15289:19;;14948:366;;;:::o;15320:419::-;15486:4;15524:2;15513:9;15509:18;15501:26;;15573:9;15567:4;15563:20;15559:1;15548:9;15544:17;15537:47;15601:131;15727:4;15601:131;:::i;:::-;15593:139;;15320:419;;;:::o;15745:180::-;15793:77;15790:1;15783:88;15890:4;15887:1;15880:15;15914:4;15911:1;15904:15;15931:305;15971:3;15990:20;16008:1;15990:20;:::i;:::-;15985:25;;16024:20;16042:1;16024:20;:::i;:::-;16019:25;;16178:1;16110:66;16106:74;16103:1;16100:81;16097:107;;;16184:18;;:::i;:::-;16097:107;16228:1;16225;16221:9;16214:16;;15931:305;;;;:::o;16242:147::-;16343:11;16380:3;16365:18;;16242:147;;;;:::o;16395:114::-;;:::o;16515:398::-;16674:3;16695:83;16776:1;16771:3;16695:83;:::i;:::-;16688:90;;16787:93;16876:3;16787:93;:::i;:::-;16905:1;16900:3;16896:11;16889:18;;16515:398;;;:::o;16919:379::-;17103:3;17125:147;17268:3;17125:147;:::i;:::-;17118:154;;17289:3;17282:10;;16919:379;;;:::o;17304:141::-;17353:4;17376:3;17368:11;;17399:3;17396:1;17389:14;17433:4;17430:1;17420:18;17412:26;;17304:141;;;:::o;17451:93::-;17488:6;17535:2;17530;17523:5;17519:14;17515:23;17505:33;;17451:93;;;:::o;17550:107::-;17594:8;17644:5;17638:4;17634:16;17613:37;;17550:107;;;;:::o;17663:393::-;17732:6;17782:1;17770:10;17766:18;17805:97;17835:66;17824:9;17805:97;:::i;:::-;17923:39;17953:8;17942:9;17923:39;:::i;:::-;17911:51;;17995:4;17991:9;17984:5;17980:21;17971:30;;18044:4;18034:8;18030:19;18023:5;18020:30;18010:40;;17739:317;;17663:393;;;;;:::o;18062:142::-;18112:9;18145:53;18163:34;18172:24;18190:5;18172:24;:::i;:::-;18163:34;:::i;:::-;18145:53;:::i;:::-;18132:66;;18062:142;;;:::o;18210:75::-;18253:3;18274:5;18267:12;;18210:75;;;:::o;18291:269::-;18401:39;18432:7;18401:39;:::i;:::-;18462:91;18511:41;18535:16;18511:41;:::i;:::-;18503:6;18496:4;18490:11;18462:91;:::i;:::-;18456:4;18449:105;18367:193;18291:269;;;:::o;18566:73::-;18611:3;18566:73;:::o;18645:189::-;18722:32;;:::i;:::-;18763:65;18821:6;18813;18807:4;18763:65;:::i;:::-;18698:136;18645:189;;:::o;18840:186::-;18900:120;18917:3;18910:5;18907:14;18900:120;;;18971:39;19008:1;19001:5;18971:39;:::i;:::-;18944:1;18937:5;18933:13;18924:22;;18900:120;;;18840:186;;:::o;19032:543::-;19133:2;19128:3;19125:11;19122:446;;;19167:38;19199:5;19167:38;:::i;:::-;19251:29;19269:10;19251:29;:::i;:::-;19241:8;19237:44;19434:2;19422:10;19419:18;19416:49;;;19455:8;19440:23;;19416:49;19478:80;19534:22;19552:3;19534:22;:::i;:::-;19524:8;19520:37;19507:11;19478:80;:::i;:::-;19137:431;;19122:446;19032:543;;;:::o;19581:117::-;19635:8;19685:5;19679:4;19675:16;19654:37;;19581:117;;;;:::o;19704:169::-;19748:6;19781:51;19829:1;19825:6;19817:5;19814:1;19810:13;19781:51;:::i;:::-;19777:56;19862:4;19856;19852:15;19842:25;;19755:118;19704:169;;;;:::o;19878:295::-;19954:4;20100:29;20125:3;20119:4;20100:29;:::i;:::-;20092:37;;20162:3;20159:1;20155:11;20149:4;20146:21;20138:29;;19878:295;;;;:::o;20178:1395::-;20295:37;20328:3;20295:37;:::i;:::-;20397:18;20389:6;20386:30;20383:56;;;20419:18;;:::i;:::-;20383:56;20463:38;20495:4;20489:11;20463:38;:::i;:::-;20548:67;20608:6;20600;20594:4;20548:67;:::i;:::-;20642:1;20666:4;20653:17;;20698:2;20690:6;20687:14;20715:1;20710:618;;;;21372:1;21389:6;21386:77;;;21438:9;21433:3;21429:19;21423:26;21414:35;;21386:77;21489:67;21549:6;21542:5;21489:67;:::i;:::-;21483:4;21476:81;21345:222;20680:887;;20710:618;20762:4;20758:9;20750:6;20746:22;20796:37;20828:4;20796:37;:::i;:::-;20855:1;20869:208;20883:7;20880:1;20877:14;20869:208;;;20962:9;20957:3;20953:19;20947:26;20939:6;20932:42;21013:1;21005:6;21001:14;20991:24;;21060:2;21049:9;21045:18;21032:31;;20906:4;20903:1;20899:12;20894:17;;20869:208;;;21105:6;21096:7;21093:19;21090:179;;;21163:9;21158:3;21154:19;21148:26;21206:48;21248:4;21240:6;21236:17;21225:9;21206:48;:::i;:::-;21198:6;21191:64;21113:156;21090:179;21315:1;21311;21303:6;21299:14;21295:22;21289:4;21282:36;20717:611;;;20680:887;;20270:1303;;;20178:1395;;:::o;21579:180::-;21627:77;21624:1;21617:88;21724:4;21721:1;21714:15;21748:4;21745:1;21738:15;21765:176;21797:1;21814:20;21832:1;21814:20;:::i;:::-;21809:25;;21848:20;21866:1;21848:20;:::i;:::-;21843:25;;21887:1;21877:35;;21892:18;;:::i;:::-;21877:35;21933:1;21930;21926:9;21921:14;;21765:176;;;;:::o;21947:177::-;22087:29;22083:1;22075:6;22071:14;22064:53;21947:177;:::o;22130:366::-;22272:3;22293:67;22357:2;22352:3;22293:67;:::i;:::-;22286:74;;22369:93;22458:3;22369:93;:::i;:::-;22487:2;22482:3;22478:12;22471:19;;22130:366;;;:::o;22502:419::-;22668:4;22706:2;22695:9;22691:18;22683:26;;22755:9;22749:4;22745:20;22741:1;22730:9;22726:17;22719:47;22783:131;22909:4;22783:131;:::i;:::-;22775:139;;22502:419;;;:::o;22927:148::-;23029:11;23066:3;23051:18;;22927:148;;;;:::o;23081:377::-;23187:3;23215:39;23248:5;23215:39;:::i;:::-;23270:89;23352:6;23347:3;23270:89;:::i;:::-;23263:96;;23368:52;23413:6;23408:3;23401:4;23394:5;23390:16;23368:52;:::i;:::-;23445:6;23440:3;23436:16;23429:23;;23191:267;23081:377;;;;:::o;23464:155::-;23604:7;23600:1;23592:6;23588:14;23581:31;23464:155;:::o;23625:400::-;23785:3;23806:84;23888:1;23883:3;23806:84;:::i;:::-;23799:91;;23899:93;23988:3;23899:93;:::i;:::-;24017:1;24012:3;24008:11;24001:18;;23625:400;;;:::o;24031:701::-;24312:3;24334:95;24425:3;24416:6;24334:95;:::i;:::-;24327:102;;24446:95;24537:3;24528:6;24446:95;:::i;:::-;24439:102;;24558:148;24702:3;24558:148;:::i;:::-;24551:155;;24723:3;24716:10;;24031:701;;;;;:::o;24738:225::-;24878:34;24874:1;24866:6;24862:14;24855:58;24947:8;24942:2;24934:6;24930:15;24923:33;24738:225;:::o;24969:366::-;25111:3;25132:67;25196:2;25191:3;25132:67;:::i;:::-;25125:74;;25208:93;25297:3;25208:93;:::i;:::-;25326:2;25321:3;25317:12;25310:19;;24969:366;;;:::o;25341:419::-;25507:4;25545:2;25534:9;25530:18;25522:26;;25594:9;25588:4;25584:20;25580:1;25569:9;25565:17;25558:47;25622:131;25748:4;25622:131;:::i;:::-;25614:139;;25341:419;;;:::o;25766:348::-;25806:7;25829:20;25847:1;25829:20;:::i;:::-;25824:25;;25863:20;25881:1;25863:20;:::i;:::-;25858:25;;26051:1;25983:66;25979:74;25976:1;25973:81;25968:1;25961:9;25954:17;25950:105;25947:131;;;26058:18;;:::i;:::-;25947:131;26106:1;26103;26099:9;26088:20;;25766:348;;;;:::o;26120:185::-;26160:1;26177:20;26195:1;26177:20;:::i;:::-;26172:25;;26211:20;26229:1;26211:20;:::i;:::-;26206:25;;26250:1;26240:35;;26255:18;;:::i;:::-;26240:35;26297:1;26294;26290:9;26285:14;;26120:185;;;;:::o;26311:332::-;26432:4;26470:2;26459:9;26455:18;26447:26;;26483:71;26551:1;26540:9;26536:17;26527:6;26483:71;:::i;:::-;26564:72;26632:2;26621:9;26617:18;26608:6;26564:72;:::i;:::-;26311:332;;;;;:::o;26649:98::-;26700:6;26734:5;26728:12;26718:22;;26649:98;;;:::o;26753:168::-;26836:11;26870:6;26865:3;26858:19;26910:4;26905:3;26901:14;26886:29;;26753:168;;;;:::o;26927:360::-;27013:3;27041:38;27073:5;27041:38;:::i;:::-;27095:70;27158:6;27153:3;27095:70;:::i;:::-;27088:77;;27174:52;27219:6;27214:3;27207:4;27200:5;27196:16;27174:52;:::i;:::-;27251:29;27273:6;27251:29;:::i;:::-;27246:3;27242:39;27235:46;;27017:270;26927:360;;;;:::o;27293:640::-;27488:4;27526:3;27515:9;27511:19;27503:27;;27540:71;27608:1;27597:9;27593:17;27584:6;27540:71;:::i;:::-;27621:72;27689:2;27678:9;27674:18;27665:6;27621:72;:::i;:::-;27703;27771:2;27760:9;27756:18;27747:6;27703:72;:::i;:::-;27822:9;27816:4;27812:20;27807:2;27796:9;27792:18;27785:48;27850:76;27921:4;27912:6;27850:76;:::i;:::-;27842:84;;27293:640;;;;;;;:::o;27939:141::-;27995:5;28026:6;28020:13;28011:22;;28042:32;28068:5;28042:32;:::i;:::-;27939:141;;;;:::o;28086:349::-;28155:6;28204:2;28192:9;28183:7;28179:23;28175:32;28172:119;;;28210:79;;:::i;:::-;28172:119;28330:1;28355:63;28410:7;28401:6;28390:9;28386:22;28355:63;:::i;:::-;28345:73;;28301:127;28086:349;;;;:::o

Swarm Source

ipfs://f7b0d14014324f057261c72ad287a547d31e620e424d1697028d18dcaa604552
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.