ETH Price: $3,375.85 (-1.98%)
Gas: 2 Gwei

Token

IT ALL SUCKS (SUCK)
 

Overview

Max Total Supply

3,333 SUCK

Holders

1,540

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
inthearenatryingthings.eth
Balance
2 SUCK
0xb6d19afe6de6c1ab49b964e202ebbf6b8e590a33
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:
ItAllSucks

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: IERC721A.sol


// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * 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();

    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;
    }

    /**
     * @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);
}
// File: ERC721A.sol


// ERC721A Contracts v4.0.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 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`
    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 (_addressToUint256(owner) == 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 auxillary 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 auxillary 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;
        assembly { // Cast aux without masking.
            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;
    }

    /**
     * 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 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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        _transfer(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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // 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 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/[email protected]/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/[email protected]/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/[email protected]/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/[email protected]/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: ItAllSucks.sol



pragma solidity ^0.8.15;





contract ItAllSucks is ERC721A, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    // metadata
    string public baseURI = "";
    bool public metadataFrozen = false;

    // constants
    uint256 public maxSupply = 5555;
    uint256 public constant PER_WALLET_FREE_IN_WL = 1;
    uint256 public constant PER_WALLET_LIMIT_WL = 2;
    uint256 public constant PER_TX_LIMIT_PUBLIC = 5;
    uint256 public wlLimit = 5555;
    uint256 public price = 0.03 ether;

    // sale settings
    bool public mintPaused = false;
    bool public publicSaleEnded = false;
    uint256 public timestampWL = 1659029400; // TODO
    uint256 public timestampPublic = 1659033000; // TODO


    // whitelist address
    address public deployer;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection, and by setting supply caps, mint indexes, and reserves
     */
    constructor(address deployerAddress)
        ERC721A("IT ALL SUCKS", "SUCK")
    {
        deployer = deployerAddress;
    }
    
    /**
     * ------------ CONFIG ------------ 
     */

    /**
     * @dev Sets deployer address
     */
    function setDeployerAddress(address deployerAddress) public onlyOwner {
        deployer = deployerAddress;
    }

    /**
     * @dev Gets base metadata URI
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    
    /**
     * @dev Sets base metadata URI, callable by owner
     */
    function setBaseUri(string memory _uri) external onlyOwner {
        require(!metadataFrozen);
        baseURI = _uri;
    }

    /**
     * @dev Freezes metadata
     */
    function freezeMetadata() external onlyOwner {
        require(!metadataFrozen);
        metadataFrozen = true;
    }

    /**
     * @dev Set total supply
     */
    function setMaxSupply(uint256 newMaxSupply) external onlyOwner {
        maxSupply = newMaxSupply;
    }

    /**
     * @dev Set WL supply
     */
    function setWLSupply(uint256 newWLSupply) external onlyOwner {
        wlLimit = newWLSupply;
    }

    /**
     * @dev Set public price
     */
    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    /**
     * @dev Set WL timestamp
     */
    function setTimestampWL(uint256 _timestampWl) external onlyOwner {
        timestampWL = _timestampWl;
    }

    /**
     * @dev Set public timestamp
     */
    function setTimestampPublic(uint256 _timestampPublic) external onlyOwner {
        timestampPublic = _timestampPublic;
    }

    /**
     * @dev Pause/unpause sale or presale
     */
    function togglePauseMinting() external onlyOwner {
        mintPaused = !mintPaused;
    }

    /**
     * @dev Ends public sale forever, callable by owner
     */
    function endSaleForever() external onlyOwner {
        publicSaleEnded = true;
    }

    /**
     * ------------ MINTING ------------ 
     */

    /**
     * @dev Owner minting
     */
    function airdropOwnerArray(address[] calldata addr, uint256[] calldata count) public onlyOwner {
        for (uint256 i=0; i<addr.length; i++) {
            _mint(addr[i], count[i]);
        }
        require(totalSupply() <= maxSupply, "Supply exceeded");
    }

    /**
     * @dev Owner minting
     */
    function airdropOwner(address addr, uint256 count) public onlyOwner {
        require(totalSupply() + count <= maxSupply, "Supply exceeded");
        _mint(addr, count);
    }

    /**
     * @dev Returns number of NFTs minted by addr
     */
    function numberMinted(address addr) public view returns (uint256) {
        return _numberMinted(addr);
    }

    /**
     * @dev Public minting during presale
     */
    function mintSucklist(uint256 count, bytes calldata signature) external payable {
        require(count > 0, "Count can't be 0");
        require(!mintPaused, "Minting is currently paused");
        require(publicSaleEnded == false, "Sale ended");
        require(totalSupply() + count <= maxSupply, "Supply exceeded");
        require(block.timestamp >= timestampWL && block.timestamp < timestampPublic, "Sucklist sale not active");
        require(count + totalSupply() <= wlLimit, "WL1 supply exceeded");
        require(count + _numberMinted(msg.sender) <= PER_WALLET_LIMIT_WL, "Limit exceeded");

        string memory message = string(abi.encodePacked("itallsucks|1|", Strings.toHexString(uint256(uint160(msg.sender)), 20)));
        bytes32 hashedMessage = keccak256(abi.encodePacked(message));
        address recoveredAddress = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hashedMessage)).recover(signature);
        require(recoveredAddress == deployer, "Unauthorized signature");
            
        uint256 expectedPrice = (count + _numberMinted(msg.sender) - PER_WALLET_FREE_IN_WL) * price;
        require(expectedPrice == msg.value, "Wrong ETH value");
        
        _mint(msg.sender, count);
    }

    /**
     * @dev Public minting during public sale
     */
    function mintPublic(uint256 count) external payable {
        require(count > 0, "Count can't be 0");
        require(!mintPaused, "Minting is currently paused");
        require(publicSaleEnded == false, "Sale ended");
        require(totalSupply() + count <= maxSupply, "Supply exceeded");
        require(block.timestamp >= timestampPublic, "Public sale not active");
        require(count <= PER_TX_LIMIT_PUBLIC, "Per tx limit exceeded"); 

        uint256 expectedPrice = count*price;
        require(expectedPrice == msg.value, "Wrong ETH value");
        
        _mint(msg.sender, count);
    }

    /**
     * @dev Withdraw ether from this contract, callable by owner
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"deployerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PER_TX_LIMIT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_WALLET_FREE_IN_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PER_WALLET_LIMIT_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdropOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256[]","name":"count","type":"uint256[]"}],"name":"airdropOwnerArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSaleForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintSucklist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"deployerAddress","type":"address"}],"name":"setDeployerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestampPublic","type":"uint256"}],"name":"setTimestampPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestampWl","type":"uint256"}],"name":"setTimestampWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newWLSupply","type":"uint256"}],"name":"setWLSupply","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":[],"name":"timestampPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timestampWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePauseMinting","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260405180602001604052806000815250600990816200002491906200052d565b506000600a60006101000a81548160ff0219169083151502179055506115b3600b556115b3600c55666a94d74f430000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506362e2c798600f556362e2d5a8601055348015620000aa57600080fd5b5060405162005398380380620053988339818101604052810190620000d091906200067e565b6040518060400160405280600c81526020017f495420414c4c205355434b5300000000000000000000000000000000000000008152506040518060400160405280600481526020017f5355434b0000000000000000000000000000000000000000000000000000000081525081600290816200014d91906200052d565b5080600390816200015f91906200052d565b5062000170620001e060201b60201c565b6000819055505050620001986200018c620001e560201b60201c565b620001ed60201b60201c565b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620006b0565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033557607f821691505b6020821081036200034b576200034a620002ed565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003b57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000376565b620003c1868362000376565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200040e620004086200040284620003d9565b620003e3565b620003d9565b9050919050565b6000819050919050565b6200042a83620003ed565b62000442620004398262000415565b84845462000383565b825550505050565b600090565b620004596200044a565b620004668184846200041f565b505050565b5b818110156200048e57620004826000826200044f565b6001810190506200046c565b5050565b601f821115620004dd57620004a78162000351565b620004b28462000366565b81016020851015620004c2578190505b620004da620004d18562000366565b8301826200046b565b50505b505050565b600082821c905092915050565b60006200050260001984600802620004e2565b1980831691505092915050565b60006200051d8383620004ef565b9150826002028217905092915050565b6200053882620002b3565b67ffffffffffffffff811115620005545762000553620002be565b5b6200056082546200031c565b6200056d82828562000492565b600060209050601f831160018114620005a5576000841562000590578287015190505b6200059c85826200050f565b8655506200060c565b601f198416620005b58662000351565b60005b82811015620005df57848901518255600182019150602085019450602081019050620005b8565b86831015620005ff5784890151620005fb601f891682620004ef565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006468262000619565b9050919050565b620006588162000639565b81146200066457600080fd5b50565b60008151905062000678816200064d565b92915050565b60006020828403121562000697576200069662000614565b5b6000620006a78482850162000667565b91505092915050565b614cd880620006c06000396000f3fe60806040526004361061027d5760003560e01c806391b7f5ed1161014f578063d111515d116100c1578063e985e9c51161007a578063e985e9c514610917578063eeb5679214610954578063efd0cbf91461097f578063f2fde38b1461099b578063f6a12d0b146109c4578063fb3cc6c2146109ef5761027d565b8063d111515d14610819578063d5abeb0114610830578063d5f394881461085b578063dc33e68114610886578063dc3510a5146108c3578063de722c0c146108ec5761027d565b8063a0bcfc7f11610113578063a0bcfc7f1461070d578063a22cb46514610736578063a88bd8621461075f578063b0fb0baf14610788578063b88d4fde146107b3578063c87b56dd146107dc5761027d565b806391b7f5ed1461063c57806392152f181461066557806393ed703d1461068e57806395d89b41146106b7578063a035b1fe146106e25761027d565b80633e53afc3116101f357806370a08231116101ac57806370a0823114610550578063715018a61461058d5780637e4831d3146105a457806381f6c6d3146105cf57806382c6ee9f146105fa5780638da5cb5b146106115761027d565b80633e53afc31461045657806342842e0e1461046d57806359875182146104965780636352211e146104bf5780636c0360eb146104fc5780636f8b44b0146105275761027d565b8063125e0af011610245578063125e0af01461037b57806318160ddd146103a657806321979551146103d157806323b872dd146103ed5780633948b8cc146104165780633ccfd60b1461043f5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b314610327578063117104c514610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906134d5565b610a1a565b6040516102b6919061351d565b60405180910390f35b3480156102cb57600080fd5b506102d4610aac565b6040516102e191906135d1565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613629565b610b3e565b60405161031e9190613697565b60405180910390f35b34801561033357600080fd5b5061034e600480360381019061034991906136de565b610bba565b005b34801561035c57600080fd5b50610365610d60565b604051610372919061372d565b60405180910390f35b34801561038757600080fd5b50610390610d66565b60405161039d919061351d565b60405180910390f35b3480156103b257600080fd5b506103bb610d79565b6040516103c8919061372d565b60405180910390f35b6103eb60048036038101906103e691906137ad565b610d90565b005b3480156103f957600080fd5b50610414600480360381019061040f919061380d565b6111d6565b005b34801561042257600080fd5b5061043d60048036038101906104389190613629565b6111e6565b005b34801561044b57600080fd5b5061045461126c565b005b34801561046257600080fd5b5061046b611337565b005b34801561047957600080fd5b50610494600480360381019061048f919061380d565b6113df565b005b3480156104a257600080fd5b506104bd60048036038101906104b891906136de565b6113ff565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613629565b6114e0565b6040516104f39190613697565b60405180910390f35b34801561050857600080fd5b506105116114f2565b60405161051e91906135d1565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613629565b611580565b005b34801561055c57600080fd5b5061057760048036038101906105729190613860565b611606565b604051610584919061372d565b60405180910390f35b34801561059957600080fd5b506105a261169a565b005b3480156105b057600080fd5b506105b9611722565b6040516105c6919061351d565b60405180910390f35b3480156105db57600080fd5b506105e4611735565b6040516105f1919061372d565b60405180910390f35b34801561060657600080fd5b5061060f61173b565b005b34801561061d57600080fd5b506106266117d4565b6040516106339190613697565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613629565b6117fe565b005b34801561067157600080fd5b5061068c60048036038101906106879190613860565b611884565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613629565b611944565b005b3480156106c357600080fd5b506106cc6119ca565b6040516106d991906135d1565b60405180910390f35b3480156106ee57600080fd5b506106f7611a5c565b604051610704919061372d565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906139bd565b611a62565b005b34801561074257600080fd5b5061075d60048036038101906107589190613a32565b611b0b565b005b34801561076b57600080fd5b5061078660048036038101906107819190613629565b611c82565b005b34801561079457600080fd5b5061079d611d08565b6040516107aa919061372d565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613b13565b611d0d565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190613629565b611d80565b60405161081091906135d1565b60405180910390f35b34801561082557600080fd5b5061082e611e1e565b005b34801561083c57600080fd5b50610845611ed1565b604051610852919061372d565b60405180910390f35b34801561086757600080fd5b50610870611ed7565b60405161087d9190613697565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613860565b611efd565b6040516108ba919061372d565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613c42565b611f0f565b005b3480156108f857600080fd5b50610901612049565b60405161090e919061372d565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190613cc3565b61204e565b60405161094b919061351d565b60405180910390f35b34801561096057600080fd5b506109696120e2565b604051610976919061372d565b60405180910390f35b61099960048036038101906109949190613629565b6120e8565b005b3480156109a757600080fd5b506109c260048036038101906109bd9190613860565b612313565b005b3480156109d057600080fd5b506109d961240a565b6040516109e6919061372d565b60405180910390f35b3480156109fb57600080fd5b50610a0461240f565b604051610a11919061351d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610abb90613d32565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790613d32565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982612422565b610b7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc582612481565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4b61254d565b73ffffffffffffffffffffffffffffffffffffffff1614610cae57610c7781610c7261254d565b61204e565b610cad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b600e60019054906101000a900460ff1681565b6000610d83612555565b6001546000540303905090565b60008311610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90613daf565b60405180910390fd5b600e60009054906101000a900460ff1615610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613e1b565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090613e87565b60405180910390fd5b600b5483610e85610d79565b610e8f9190613ed6565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613f78565b60405180910390fd5b600f544210158015610ee3575060105442105b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613fe4565b60405180910390fd5b600c54610f2d610d79565b84610f389190613ed6565b1115610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090614050565b60405180910390fd5b6002610f843361255a565b84610f8f9190613ed6565b1115610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906140bc565b60405180910390fd5b6000610ff33373ffffffffffffffffffffffffffffffffffffffff1660146125b1565b6040516020016110039190614164565b60405160208183030381529060405290506000816040516020016110279190614186565b60405160208183030381529060405280519060200120905060006110be85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508360405160200161109a9190614214565b604051602081830303815290604052805190602001206127ed90919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790614286565b60405180910390fd5b6000600d5460016111603361255a565b8961116b9190613ed6565b61117591906142a6565b61117f91906142da565b90503481146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90614380565b60405180910390fd5b6111cd3388612814565b50505050505050565b6111e18383836129c2565b505050565b6111ee612d87565b73ffffffffffffffffffffffffffffffffffffffff1661120c6117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611259906143ec565b60405180910390fd5b80600c8190555050565b611274612d87565b73ffffffffffffffffffffffffffffffffffffffff166112926117d4565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df906143ec565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611333573d6000803e3d6000fd5b5050565b61133f612d87565b73ffffffffffffffffffffffffffffffffffffffff1661135d6117d4565b73ffffffffffffffffffffffffffffffffffffffff16146113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906143ec565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6113fa83838360405180602001604052806000815250611d0d565b505050565b611407612d87565b73ffffffffffffffffffffffffffffffffffffffff166114256117d4565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906143ec565b60405180910390fd5b600b5481611487610d79565b6114919190613ed6565b11156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990613f78565b60405180910390fd5b6114dc8282612814565b5050565b60006114eb82612481565b9050919050565b600980546114ff90613d32565b80601f016020809104026020016040519081016040528092919081815260200182805461152b90613d32565b80156115785780601f1061154d57610100808354040283529160200191611578565b820191906000526020600020905b81548152906001019060200180831161155b57829003601f168201915b505050505081565b611588612d87565b73ffffffffffffffffffffffffffffffffffffffff166115a66117d4565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906143ec565b60405180910390fd5b80600b8190555050565b60008061161283612d8f565b03611649576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116a2612d87565b73ffffffffffffffffffffffffffffffffffffffff166116c06117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906143ec565b60405180910390fd5b6117206000612d99565b565b600e60009054906101000a900460ff1681565b600f5481565b611743612d87565b73ffffffffffffffffffffffffffffffffffffffff166117616117d4565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906143ec565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611806612d87565b73ffffffffffffffffffffffffffffffffffffffff166118246117d4565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906143ec565b60405180910390fd5b80600d8190555050565b61188c612d87565b73ffffffffffffffffffffffffffffffffffffffff166118aa6117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f7906143ec565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61194c612d87565b73ffffffffffffffffffffffffffffffffffffffff1661196a6117d4565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906143ec565b60405180910390fd5b80600f8190555050565b6060600380546119d990613d32565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0590613d32565b8015611a525780601f10611a2757610100808354040283529160200191611a52565b820191906000526020600020905b815481529060010190602001808311611a3557829003601f168201915b5050505050905090565b600d5481565b611a6a612d87565b73ffffffffffffffffffffffffffffffffffffffff16611a886117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad5906143ec565b60405180910390fd5b600a60009054906101000a900460ff1615611af857600080fd5b8060099081611b0791906145b8565b5050565b611b1361254d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b77576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b8461254d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c3161254d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c76919061351d565b60405180910390a35050565b611c8a612d87565b73ffffffffffffffffffffffffffffffffffffffff16611ca86117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf5906143ec565b60405180910390fd5b8060108190555050565b600581565b611d188484846129c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d7a57611d4384848484612e5f565b611d79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611d8b82612422565b611dc1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dcb612faf565b90506000815103611deb5760405180602001604052806000815250611e16565b80611df584613041565b604051602001611e0692919061468a565b6040516020818303038152906040525b915050919050565b611e26612d87565b73ffffffffffffffffffffffffffffffffffffffff16611e446117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906143ec565b60405180910390fd5b600a60009054906101000a900460ff1615611eb457600080fd5b6001600a60006101000a81548160ff021916908315150217905550565b600b5481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611f088261255a565b9050919050565b611f17612d87565b73ffffffffffffffffffffffffffffffffffffffff16611f356117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f82906143ec565b60405180910390fd5b60005b84849050811015611ff657611fe3858583818110611faf57611fae6146ae565b5b9050602002016020810190611fc49190613860565b848484818110611fd757611fd66146ae565b5b90506020020135612814565b8080611fee906146dd565b915050611f8e565b50600b54612002610d79565b1115612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90613f78565b60405180910390fd5b50505050565b600281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b6000811161212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613daf565b60405180910390fd5b600e60009054906101000a900460ff161561217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290613e1b565b60405180910390fd5b60001515600e60019054906101000a900460ff161515146121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890613e87565b60405180910390fd5b600b54816121dd610d79565b6121e79190613ed6565b1115612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613f78565b60405180910390fd5b60105442101561226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614771565b60405180910390fd5b60058111156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a8906147dd565b60405180910390fd5b6000600d54826122c191906142da565b9050348114612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90614380565b60405180910390fd5b61230f3383612814565b5050565b61231b612d87565b73ffffffffffffffffffffffffffffffffffffffff166123396117d4565b73ffffffffffffffffffffffffffffffffffffffff161461238f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612386906143ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f59061486f565b60405180910390fd5b61240781612d99565b50565b600181565b600a60009054906101000a900460ff1681565b60008161242d612555565b1115801561243c575060005482105b801561247a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612490612555565b11612516576000548110156125155760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612513575b600081036125095760046000836001900393508381526020019081526020016000205490506124df565b8092505050612548565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6060600060028360026125c491906142da565b6125ce9190613ed6565b67ffffffffffffffff8111156125e7576125e6613892565b5b6040519080825280601f01601f1916602001820160405280156126195781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612651576126506146ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106126b5576126b46146ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026126f591906142da565b6126ff9190613ed6565b90505b600181111561279f577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612741576127406146ae565b5b1a60f81b828281518110612758576127576146ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806127989061488f565b9050612702565b50600084146127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da90614904565b60405180910390fd5b8091505092915050565b60008060006127fc858561309b565b915091506128098161311c565b819250505092915050565b600080549050600061282584612d8f565b0361285c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612896576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128a360008483856132e8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612908600184146132ee565b901b60a042901b61291885612d8f565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061293e578160008190555050506129bd60008483856132f8565b505050565b60006129cd82612481565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612a8d61254d565b73ffffffffffffffffffffffffffffffffffffffff161480612abc5750612abb86612ab661254d565b61204e565b5b80612af95750612aca61254d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612b3d86612d8f565b03612b74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b8186868660016132e8565b6000612b8c83612d8f565b14612bc8576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612c8f87612d8f565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612d175760006001850190506000600460008381526020019081526020016000205403612d15576000548114612d14578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7f86868660016132f8565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e8561254d565b8786866040518563ffffffff1660e01b8152600401612ea79493929190614979565b6020604051808303816000875af1925050508015612ee357506040513d601f19601f82011682018060405250810190612ee091906149da565b60015b612f5c573d8060008114612f13576040519150601f19603f3d011682016040523d82523d6000602084013e612f18565b606091505b506000815103612f54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612fbe90613d32565b80601f0160208091040260200160405190810160405280929190818152602001828054612fea90613d32565b80156130375780601f1061300c57610100808354040283529160200191613037565b820191906000526020600020905b81548152906001019060200180831161301a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561308757600183039250600a81066030018353600a81049050613067565b508181036020830392508083525050919050565b60008060418351036130dc5760008060006020860151925060408601519150606086015160001a90506130d0878285856132fe565b94509450505050613115565b604083510361310c57600080602085015191506040850151905061310186838361340a565b935093505050613115565b60006002915091505b9250929050565b600060048111156131305761312f614a07565b5b81600481111561314357613142614a07565b5b03156132e5576001600481111561315d5761315c614a07565b5b8160048111156131705761316f614a07565b5b036131b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a790614a82565b60405180910390fd5b600260048111156131c4576131c3614a07565b5b8160048111156131d7576131d6614a07565b5b03613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614aee565b60405180910390fd5b6003600481111561322b5761322a614a07565b5b81600481111561323e5761323d614a07565b5b0361327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614b80565b60405180910390fd5b60048081111561329157613290614a07565b5b8160048111156132a4576132a3614a07565b5b036132e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132db90614c12565b60405180910390fd5b5b50565b50505050565b6000819050919050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613339576000600391509150613401565b601b8560ff16141580156133515750601c8560ff1614155b15613363576000600491509150613401565b6000600187878787604051600081526020016040526040516133889493929190614c5d565b6020604051602081039080840390855afa1580156133aa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036133f857600060019250925050613401565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61344d9190613ed6565b905061345b878288856132fe565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134b28161347d565b81146134bd57600080fd5b50565b6000813590506134cf816134a9565b92915050565b6000602082840312156134eb576134ea613473565b5b60006134f9848285016134c0565b91505092915050565b60008115159050919050565b61351781613502565b82525050565b6000602082019050613532600083018461350e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613572578082015181840152602081019050613557565b83811115613581576000848401525b50505050565b6000601f19601f8301169050919050565b60006135a382613538565b6135ad8185613543565b93506135bd818560208601613554565b6135c681613587565b840191505092915050565b600060208201905081810360008301526135eb8184613598565b905092915050565b6000819050919050565b613606816135f3565b811461361157600080fd5b50565b600081359050613623816135fd565b92915050565b60006020828403121561363f5761363e613473565b5b600061364d84828501613614565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061368182613656565b9050919050565b61369181613676565b82525050565b60006020820190506136ac6000830184613688565b92915050565b6136bb81613676565b81146136c657600080fd5b50565b6000813590506136d8816136b2565b92915050565b600080604083850312156136f5576136f4613473565b5b6000613703858286016136c9565b925050602061371485828601613614565b9150509250929050565b613727816135f3565b82525050565b6000602082019050613742600083018461371e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261376d5761376c613748565b5b8235905067ffffffffffffffff81111561378a5761378961374d565b5b6020830191508360018202830111156137a6576137a5613752565b5b9250929050565b6000806000604084860312156137c6576137c5613473565b5b60006137d486828701613614565b935050602084013567ffffffffffffffff8111156137f5576137f4613478565b5b61380186828701613757565b92509250509250925092565b60008060006060848603121561382657613825613473565b5b6000613834868287016136c9565b9350506020613845868287016136c9565b925050604061385686828701613614565b9150509250925092565b60006020828403121561387657613875613473565b5b6000613884848285016136c9565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138ca82613587565b810181811067ffffffffffffffff821117156138e9576138e8613892565b5b80604052505050565b60006138fc613469565b905061390882826138c1565b919050565b600067ffffffffffffffff82111561392857613927613892565b5b61393182613587565b9050602081019050919050565b82818337600083830152505050565b600061396061395b8461390d565b6138f2565b90508281526020810184848401111561397c5761397b61388d565b5b61398784828561393e565b509392505050565b600082601f8301126139a4576139a3613748565b5b81356139b484826020860161394d565b91505092915050565b6000602082840312156139d3576139d2613473565b5b600082013567ffffffffffffffff8111156139f1576139f0613478565b5b6139fd8482850161398f565b91505092915050565b613a0f81613502565b8114613a1a57600080fd5b50565b600081359050613a2c81613a06565b92915050565b60008060408385031215613a4957613a48613473565b5b6000613a57858286016136c9565b9250506020613a6885828601613a1d565b9150509250929050565b600067ffffffffffffffff821115613a8d57613a8c613892565b5b613a9682613587565b9050602081019050919050565b6000613ab6613ab184613a72565b6138f2565b905082815260208101848484011115613ad257613ad161388d565b5b613add84828561393e565b509392505050565b600082601f830112613afa57613af9613748565b5b8135613b0a848260208601613aa3565b91505092915050565b60008060008060808587031215613b2d57613b2c613473565b5b6000613b3b878288016136c9565b9450506020613b4c878288016136c9565b9350506040613b5d87828801613614565b925050606085013567ffffffffffffffff811115613b7e57613b7d613478565b5b613b8a87828801613ae5565b91505092959194509250565b60008083601f840112613bac57613bab613748565b5b8235905067ffffffffffffffff811115613bc957613bc861374d565b5b602083019150836020820283011115613be557613be4613752565b5b9250929050565b60008083601f840112613c0257613c01613748565b5b8235905067ffffffffffffffff811115613c1f57613c1e61374d565b5b602083019150836020820283011115613c3b57613c3a613752565b5b9250929050565b60008060008060408587031215613c5c57613c5b613473565b5b600085013567ffffffffffffffff811115613c7a57613c79613478565b5b613c8687828801613b96565b9450945050602085013567ffffffffffffffff811115613ca957613ca8613478565b5b613cb587828801613bec565b925092505092959194509250565b60008060408385031215613cda57613cd9613473565b5b6000613ce8858286016136c9565b9250506020613cf9858286016136c9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4a57607f821691505b602082108103613d5d57613d5c613d03565b5b50919050565b7f436f756e742063616e2774206265203000000000000000000000000000000000600082015250565b6000613d99601083613543565b9150613da482613d63565b602082019050919050565b60006020820190508181036000830152613dc881613d8c565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b6000613e05601b83613543565b9150613e1082613dcf565b602082019050919050565b60006020820190508181036000830152613e3481613df8565b9050919050565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b6000613e71600a83613543565b9150613e7c82613e3b565b602082019050919050565b60006020820190508181036000830152613ea081613e64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ee1826135f3565b9150613eec836135f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f2157613f20613ea7565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000613f62600f83613543565b9150613f6d82613f2c565b602082019050919050565b60006020820190508181036000830152613f9181613f55565b9050919050565b7f5375636b6c6973742073616c65206e6f74206163746976650000000000000000600082015250565b6000613fce601883613543565b9150613fd982613f98565b602082019050919050565b60006020820190508181036000830152613ffd81613fc1565b9050919050565b7f574c3120737570706c7920657863656564656400000000000000000000000000600082015250565b600061403a601383613543565b915061404582614004565b602082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b7f4c696d6974206578636565646564000000000000000000000000000000000000600082015250565b60006140a6600e83613543565b91506140b182614070565b602082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b600081905092915050565b7f6974616c6c7375636b737c317c00000000000000000000000000000000000000600082015250565b600061411d600d836140dc565b9150614128826140e7565b600d82019050919050565b600061413e82613538565b61414881856140dc565b9350614158818560208601613554565b80840191505092915050565b600061416f82614110565b915061417b8284614133565b915081905092915050565b60006141928284614133565b915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006141d3601c836140dc565b91506141de8261419d565b601c82019050919050565b6000819050919050565b6000819050919050565b61420e614209826141e9565b6141f3565b82525050565b600061421f826141c6565b915061422b82846141fd565b60208201915081905092915050565b7f556e617574686f72697a6564207369676e617475726500000000000000000000600082015250565b6000614270601683613543565b915061427b8261423a565b602082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b60006142b1826135f3565b91506142bc836135f3565b9250828210156142cf576142ce613ea7565b5b828203905092915050565b60006142e5826135f3565b91506142f0836135f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561432957614328613ea7565b5b828202905092915050565b7f57726f6e67204554482076616c75650000000000000000000000000000000000600082015250565b600061436a600f83613543565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143d6602083613543565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261446e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614431565b6144788683614431565b95508019841693508086168417925050509392505050565b6000819050919050565b60006144b56144b06144ab846135f3565b614490565b6135f3565b9050919050565b6000819050919050565b6144cf8361449a565b6144e36144db826144bc565b84845461443e565b825550505050565b600090565b6144f86144eb565b6145038184846144c6565b505050565b5b818110156145275761451c6000826144f0565b600181019050614509565b5050565b601f82111561456c5761453d8161440c565b61454684614421565b81016020851015614555578190505b61456961456185614421565b830182614508565b50505b505050565b600082821c905092915050565b600061458f60001984600802614571565b1980831691505092915050565b60006145a8838361457e565b9150826002028217905092915050565b6145c182613538565b67ffffffffffffffff8111156145da576145d9613892565b5b6145e48254613d32565b6145ef82828561452b565b600060209050601f8311600181146146225760008415614610578287015190505b61461a858261459c565b865550614682565b601f1984166146308661440c565b60005b8281101561465857848901518255600182019150602085019450602081019050614633565b868310156146755784890151614671601f89168261457e565b8355505b6001600288020188555050505b505050505050565b60006146968285614133565b91506146a28284614133565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006146e8826135f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361471a57614719613ea7565b5b600182019050919050565b7f5075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b600061475b601683613543565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f506572207478206c696d69742065786365656465640000000000000000000000600082015250565b60006147c7601583613543565b91506147d282614791565b602082019050919050565b600060208201905081810360008301526147f6816147ba565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614859602683613543565b9150614864826147fd565b604082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b600061489a826135f3565b9150600082036148ad576148ac613ea7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006148ee602083613543565b91506148f9826148b8565b602082019050919050565b6000602082019050818103600083015261491d816148e1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061494b82614924565b614955818561492f565b9350614965818560208601613554565b61496e81613587565b840191505092915050565b600060808201905061498e6000830187613688565b61499b6020830186613688565b6149a8604083018561371e565b81810360608301526149ba8184614940565b905095945050505050565b6000815190506149d4816134a9565b92915050565b6000602082840312156149f0576149ef613473565b5b60006149fe848285016149c5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614a6c601883613543565b9150614a7782614a36565b602082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614ad8601f83613543565b9150614ae382614aa2565b602082019050919050565b60006020820190508181036000830152614b0781614acb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b6a602283613543565b9150614b7582614b0e565b604082019050919050565b60006020820190508181036000830152614b9981614b5d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bfc602283613543565b9150614c0782614ba0565b604082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b614c3b816141e9565b82525050565b600060ff82169050919050565b614c5781614c41565b82525050565b6000608082019050614c726000830187614c32565b614c7f6020830186614c4e565b614c8c6040830185614c32565b614c996060830184614c32565b9594505050505056fea2646970667358221220d0a3708db1dd2ec49e276752bb5b5e0fa3d26406ee11a1da9bd10a359f1cc9f764736f6c634300080f003300000000000000000000000035f9a10578b9fb077c602d30d48d6829f1c498d4

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806391b7f5ed1161014f578063d111515d116100c1578063e985e9c51161007a578063e985e9c514610917578063eeb5679214610954578063efd0cbf91461097f578063f2fde38b1461099b578063f6a12d0b146109c4578063fb3cc6c2146109ef5761027d565b8063d111515d14610819578063d5abeb0114610830578063d5f394881461085b578063dc33e68114610886578063dc3510a5146108c3578063de722c0c146108ec5761027d565b8063a0bcfc7f11610113578063a0bcfc7f1461070d578063a22cb46514610736578063a88bd8621461075f578063b0fb0baf14610788578063b88d4fde146107b3578063c87b56dd146107dc5761027d565b806391b7f5ed1461063c57806392152f181461066557806393ed703d1461068e57806395d89b41146106b7578063a035b1fe146106e25761027d565b80633e53afc3116101f357806370a08231116101ac57806370a0823114610550578063715018a61461058d5780637e4831d3146105a457806381f6c6d3146105cf57806382c6ee9f146105fa5780638da5cb5b146106115761027d565b80633e53afc31461045657806342842e0e1461046d57806359875182146104965780636352211e146104bf5780636c0360eb146104fc5780636f8b44b0146105275761027d565b8063125e0af011610245578063125e0af01461037b57806318160ddd146103a657806321979551146103d157806323b872dd146103ed5780633948b8cc146104165780633ccfd60b1461043f5761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b314610327578063117104c514610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a491906134d5565b610a1a565b6040516102b6919061351d565b60405180910390f35b3480156102cb57600080fd5b506102d4610aac565b6040516102e191906135d1565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613629565b610b3e565b60405161031e9190613697565b60405180910390f35b34801561033357600080fd5b5061034e600480360381019061034991906136de565b610bba565b005b34801561035c57600080fd5b50610365610d60565b604051610372919061372d565b60405180910390f35b34801561038757600080fd5b50610390610d66565b60405161039d919061351d565b60405180910390f35b3480156103b257600080fd5b506103bb610d79565b6040516103c8919061372d565b60405180910390f35b6103eb60048036038101906103e691906137ad565b610d90565b005b3480156103f957600080fd5b50610414600480360381019061040f919061380d565b6111d6565b005b34801561042257600080fd5b5061043d60048036038101906104389190613629565b6111e6565b005b34801561044b57600080fd5b5061045461126c565b005b34801561046257600080fd5b5061046b611337565b005b34801561047957600080fd5b50610494600480360381019061048f919061380d565b6113df565b005b3480156104a257600080fd5b506104bd60048036038101906104b891906136de565b6113ff565b005b3480156104cb57600080fd5b506104e660048036038101906104e19190613629565b6114e0565b6040516104f39190613697565b60405180910390f35b34801561050857600080fd5b506105116114f2565b60405161051e91906135d1565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190613629565b611580565b005b34801561055c57600080fd5b5061057760048036038101906105729190613860565b611606565b604051610584919061372d565b60405180910390f35b34801561059957600080fd5b506105a261169a565b005b3480156105b057600080fd5b506105b9611722565b6040516105c6919061351d565b60405180910390f35b3480156105db57600080fd5b506105e4611735565b6040516105f1919061372d565b60405180910390f35b34801561060657600080fd5b5061060f61173b565b005b34801561061d57600080fd5b506106266117d4565b6040516106339190613697565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e9190613629565b6117fe565b005b34801561067157600080fd5b5061068c60048036038101906106879190613860565b611884565b005b34801561069a57600080fd5b506106b560048036038101906106b09190613629565b611944565b005b3480156106c357600080fd5b506106cc6119ca565b6040516106d991906135d1565b60405180910390f35b3480156106ee57600080fd5b506106f7611a5c565b604051610704919061372d565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906139bd565b611a62565b005b34801561074257600080fd5b5061075d60048036038101906107589190613a32565b611b0b565b005b34801561076b57600080fd5b5061078660048036038101906107819190613629565b611c82565b005b34801561079457600080fd5b5061079d611d08565b6040516107aa919061372d565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613b13565b611d0d565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190613629565b611d80565b60405161081091906135d1565b60405180910390f35b34801561082557600080fd5b5061082e611e1e565b005b34801561083c57600080fd5b50610845611ed1565b604051610852919061372d565b60405180910390f35b34801561086757600080fd5b50610870611ed7565b60405161087d9190613697565b60405180910390f35b34801561089257600080fd5b506108ad60048036038101906108a89190613860565b611efd565b6040516108ba919061372d565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613c42565b611f0f565b005b3480156108f857600080fd5b50610901612049565b60405161090e919061372d565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190613cc3565b61204e565b60405161094b919061351d565b60405180910390f35b34801561096057600080fd5b506109696120e2565b604051610976919061372d565b60405180910390f35b61099960048036038101906109949190613629565b6120e8565b005b3480156109a757600080fd5b506109c260048036038101906109bd9190613860565b612313565b005b3480156109d057600080fd5b506109d961240a565b6040516109e6919061372d565b60405180910390f35b3480156109fb57600080fd5b50610a0461240f565b604051610a11919061351d565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aa55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610abb90613d32565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790613d32565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982612422565b610b7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc582612481565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c4b61254d565b73ffffffffffffffffffffffffffffffffffffffff1614610cae57610c7781610c7261254d565b61204e565b610cad576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b600e60019054906101000a900460ff1681565b6000610d83612555565b6001546000540303905090565b60008311610dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dca90613daf565b60405180910390fd5b600e60009054906101000a900460ff1615610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90613e1b565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514610e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7090613e87565b60405180910390fd5b600b5483610e85610d79565b610e8f9190613ed6565b1115610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790613f78565b60405180910390fd5b600f544210158015610ee3575060105442105b610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613fe4565b60405180910390fd5b600c54610f2d610d79565b84610f389190613ed6565b1115610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090614050565b60405180910390fd5b6002610f843361255a565b84610f8f9190613ed6565b1115610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906140bc565b60405180910390fd5b6000610ff33373ffffffffffffffffffffffffffffffffffffffff1660146125b1565b6040516020016110039190614164565b60405160208183030381529060405290506000816040516020016110279190614186565b60405160208183030381529060405280519060200120905060006110be85858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508360405160200161109a9190614214565b604051602081830303815290604052805190602001206127ed90919063ffffffff16565b9050601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790614286565b60405180910390fd5b6000600d5460016111603361255a565b8961116b9190613ed6565b61117591906142a6565b61117f91906142da565b90503481146111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90614380565b60405180910390fd5b6111cd3388612814565b50505050505050565b6111e18383836129c2565b505050565b6111ee612d87565b73ffffffffffffffffffffffffffffffffffffffff1661120c6117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611259906143ec565b60405180910390fd5b80600c8190555050565b611274612d87565b73ffffffffffffffffffffffffffffffffffffffff166112926117d4565b73ffffffffffffffffffffffffffffffffffffffff16146112e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112df906143ec565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611333573d6000803e3d6000fd5b5050565b61133f612d87565b73ffffffffffffffffffffffffffffffffffffffff1661135d6117d4565b73ffffffffffffffffffffffffffffffffffffffff16146113b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113aa906143ec565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6113fa83838360405180602001604052806000815250611d0d565b505050565b611407612d87565b73ffffffffffffffffffffffffffffffffffffffff166114256117d4565b73ffffffffffffffffffffffffffffffffffffffff161461147b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611472906143ec565b60405180910390fd5b600b5481611487610d79565b6114919190613ed6565b11156114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990613f78565b60405180910390fd5b6114dc8282612814565b5050565b60006114eb82612481565b9050919050565b600980546114ff90613d32565b80601f016020809104026020016040519081016040528092919081815260200182805461152b90613d32565b80156115785780601f1061154d57610100808354040283529160200191611578565b820191906000526020600020905b81548152906001019060200180831161155b57829003601f168201915b505050505081565b611588612d87565b73ffffffffffffffffffffffffffffffffffffffff166115a66117d4565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f3906143ec565b60405180910390fd5b80600b8190555050565b60008061161283612d8f565b03611649576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6116a2612d87565b73ffffffffffffffffffffffffffffffffffffffff166116c06117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906143ec565b60405180910390fd5b6117206000612d99565b565b600e60009054906101000a900460ff1681565b600f5481565b611743612d87565b73ffffffffffffffffffffffffffffffffffffffff166117616117d4565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906143ec565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611806612d87565b73ffffffffffffffffffffffffffffffffffffffff166118246117d4565b73ffffffffffffffffffffffffffffffffffffffff161461187a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611871906143ec565b60405180910390fd5b80600d8190555050565b61188c612d87565b73ffffffffffffffffffffffffffffffffffffffff166118aa6117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f7906143ec565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61194c612d87565b73ffffffffffffffffffffffffffffffffffffffff1661196a6117d4565b73ffffffffffffffffffffffffffffffffffffffff16146119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906143ec565b60405180910390fd5b80600f8190555050565b6060600380546119d990613d32565b80601f0160208091040260200160405190810160405280929190818152602001828054611a0590613d32565b8015611a525780601f10611a2757610100808354040283529160200191611a52565b820191906000526020600020905b815481529060010190602001808311611a3557829003601f168201915b5050505050905090565b600d5481565b611a6a612d87565b73ffffffffffffffffffffffffffffffffffffffff16611a886117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad5906143ec565b60405180910390fd5b600a60009054906101000a900460ff1615611af857600080fd5b8060099081611b0791906145b8565b5050565b611b1361254d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b77576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b8461254d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c3161254d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c76919061351d565b60405180910390a35050565b611c8a612d87565b73ffffffffffffffffffffffffffffffffffffffff16611ca86117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf5906143ec565b60405180910390fd5b8060108190555050565b600581565b611d188484846129c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d7a57611d4384848484612e5f565b611d79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611d8b82612422565b611dc1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611dcb612faf565b90506000815103611deb5760405180602001604052806000815250611e16565b80611df584613041565b604051602001611e0692919061468a565b6040516020818303038152906040525b915050919050565b611e26612d87565b73ffffffffffffffffffffffffffffffffffffffff16611e446117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e91906143ec565b60405180910390fd5b600a60009054906101000a900460ff1615611eb457600080fd5b6001600a60006101000a81548160ff021916908315150217905550565b600b5481565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611f088261255a565b9050919050565b611f17612d87565b73ffffffffffffffffffffffffffffffffffffffff16611f356117d4565b73ffffffffffffffffffffffffffffffffffffffff1614611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f82906143ec565b60405180910390fd5b60005b84849050811015611ff657611fe3858583818110611faf57611fae6146ae565b5b9050602002016020810190611fc49190613860565b848484818110611fd757611fd66146ae565b5b90506020020135612814565b8080611fee906146dd565b915050611f8e565b50600b54612002610d79565b1115612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a90613f78565b60405180910390fd5b50505050565b600281565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60105481565b6000811161212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613daf565b60405180910390fd5b600e60009054906101000a900460ff161561217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290613e1b565b60405180910390fd5b60001515600e60019054906101000a900460ff161515146121d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c890613e87565b60405180910390fd5b600b54816121dd610d79565b6121e79190613ed6565b1115612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613f78565b60405180910390fd5b60105442101561226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490614771565b60405180910390fd5b60058111156122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a8906147dd565b60405180910390fd5b6000600d54826122c191906142da565b9050348114612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90614380565b60405180910390fd5b61230f3383612814565b5050565b61231b612d87565b73ffffffffffffffffffffffffffffffffffffffff166123396117d4565b73ffffffffffffffffffffffffffffffffffffffff161461238f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612386906143ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f59061486f565b60405180910390fd5b61240781612d99565b50565b600181565b600a60009054906101000a900460ff1681565b60008161242d612555565b1115801561243c575060005482105b801561247a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612490612555565b11612516576000548110156125155760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612513575b600081036125095760046000836001900393508381526020019081526020016000205490506124df565b8092505050612548565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6060600060028360026125c491906142da565b6125ce9190613ed6565b67ffffffffffffffff8111156125e7576125e6613892565b5b6040519080825280601f01601f1916602001820160405280156126195781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612651576126506146ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106126b5576126b46146ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026126f591906142da565b6126ff9190613ed6565b90505b600181111561279f577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612741576127406146ae565b5b1a60f81b828281518110612758576127576146ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806127989061488f565b9050612702565b50600084146127e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127da90614904565b60405180910390fd5b8091505092915050565b60008060006127fc858561309b565b915091506128098161311c565b819250505092915050565b600080549050600061282584612d8f565b0361285c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612896576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128a360008483856132e8565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612908600184146132ee565b901b60a042901b61291885612d8f565b171760046000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061293e578160008190555050506129bd60008483856132f8565b505050565b60006129cd82612481565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a34576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612a8d61254d565b73ffffffffffffffffffffffffffffffffffffffff161480612abc5750612abb86612ab661254d565b61204e565b5b80612af95750612aca61254d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080612b32576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000612b3d86612d8f565b03612b74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b8186868660016132e8565b6000612b8c83612d8f565b14612bc8576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612c8f87612d8f565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612d175760006001850190506000600460008381526020019081526020016000205403612d15576000548114612d14578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7f86868660016132f8565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e8561254d565b8786866040518563ffffffff1660e01b8152600401612ea79493929190614979565b6020604051808303816000875af1925050508015612ee357506040513d601f19601f82011682018060405250810190612ee091906149da565b60015b612f5c573d8060008114612f13576040519150601f19603f3d011682016040523d82523d6000602084013e612f18565b606091505b506000815103612f54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612fbe90613d32565b80601f0160208091040260200160405190810160405280929190818152602001828054612fea90613d32565b80156130375780601f1061300c57610100808354040283529160200191613037565b820191906000526020600020905b81548152906001019060200180831161301a57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561308757600183039250600a81066030018353600a81049050613067565b508181036020830392508083525050919050565b60008060418351036130dc5760008060006020860151925060408601519150606086015160001a90506130d0878285856132fe565b94509450505050613115565b604083510361310c57600080602085015191506040850151905061310186838361340a565b935093505050613115565b60006002915091505b9250929050565b600060048111156131305761312f614a07565b5b81600481111561314357613142614a07565b5b03156132e5576001600481111561315d5761315c614a07565b5b8160048111156131705761316f614a07565b5b036131b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a790614a82565b60405180910390fd5b600260048111156131c4576131c3614a07565b5b8160048111156131d7576131d6614a07565b5b03613217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320e90614aee565b60405180910390fd5b6003600481111561322b5761322a614a07565b5b81600481111561323e5761323d614a07565b5b0361327e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327590614b80565b60405180910390fd5b60048081111561329157613290614a07565b5b8160048111156132a4576132a3614a07565b5b036132e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132db90614c12565b60405180910390fd5b5b50565b50505050565b6000819050919050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613339576000600391509150613401565b601b8560ff16141580156133515750601c8560ff1614155b15613363576000600491509150613401565b6000600187878787604051600081526020016040526040516133889493929190614c5d565b6020604051602081039080840390855afa1580156133aa573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036133f857600060019250925050613401565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61344d9190613ed6565b905061345b878288856132fe565b935093505050935093915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6134b28161347d565b81146134bd57600080fd5b50565b6000813590506134cf816134a9565b92915050565b6000602082840312156134eb576134ea613473565b5b60006134f9848285016134c0565b91505092915050565b60008115159050919050565b61351781613502565b82525050565b6000602082019050613532600083018461350e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613572578082015181840152602081019050613557565b83811115613581576000848401525b50505050565b6000601f19601f8301169050919050565b60006135a382613538565b6135ad8185613543565b93506135bd818560208601613554565b6135c681613587565b840191505092915050565b600060208201905081810360008301526135eb8184613598565b905092915050565b6000819050919050565b613606816135f3565b811461361157600080fd5b50565b600081359050613623816135fd565b92915050565b60006020828403121561363f5761363e613473565b5b600061364d84828501613614565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061368182613656565b9050919050565b61369181613676565b82525050565b60006020820190506136ac6000830184613688565b92915050565b6136bb81613676565b81146136c657600080fd5b50565b6000813590506136d8816136b2565b92915050565b600080604083850312156136f5576136f4613473565b5b6000613703858286016136c9565b925050602061371485828601613614565b9150509250929050565b613727816135f3565b82525050565b6000602082019050613742600083018461371e565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261376d5761376c613748565b5b8235905067ffffffffffffffff81111561378a5761378961374d565b5b6020830191508360018202830111156137a6576137a5613752565b5b9250929050565b6000806000604084860312156137c6576137c5613473565b5b60006137d486828701613614565b935050602084013567ffffffffffffffff8111156137f5576137f4613478565b5b61380186828701613757565b92509250509250925092565b60008060006060848603121561382657613825613473565b5b6000613834868287016136c9565b9350506020613845868287016136c9565b925050604061385686828701613614565b9150509250925092565b60006020828403121561387657613875613473565b5b6000613884848285016136c9565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138ca82613587565b810181811067ffffffffffffffff821117156138e9576138e8613892565b5b80604052505050565b60006138fc613469565b905061390882826138c1565b919050565b600067ffffffffffffffff82111561392857613927613892565b5b61393182613587565b9050602081019050919050565b82818337600083830152505050565b600061396061395b8461390d565b6138f2565b90508281526020810184848401111561397c5761397b61388d565b5b61398784828561393e565b509392505050565b600082601f8301126139a4576139a3613748565b5b81356139b484826020860161394d565b91505092915050565b6000602082840312156139d3576139d2613473565b5b600082013567ffffffffffffffff8111156139f1576139f0613478565b5b6139fd8482850161398f565b91505092915050565b613a0f81613502565b8114613a1a57600080fd5b50565b600081359050613a2c81613a06565b92915050565b60008060408385031215613a4957613a48613473565b5b6000613a57858286016136c9565b9250506020613a6885828601613a1d565b9150509250929050565b600067ffffffffffffffff821115613a8d57613a8c613892565b5b613a9682613587565b9050602081019050919050565b6000613ab6613ab184613a72565b6138f2565b905082815260208101848484011115613ad257613ad161388d565b5b613add84828561393e565b509392505050565b600082601f830112613afa57613af9613748565b5b8135613b0a848260208601613aa3565b91505092915050565b60008060008060808587031215613b2d57613b2c613473565b5b6000613b3b878288016136c9565b9450506020613b4c878288016136c9565b9350506040613b5d87828801613614565b925050606085013567ffffffffffffffff811115613b7e57613b7d613478565b5b613b8a87828801613ae5565b91505092959194509250565b60008083601f840112613bac57613bab613748565b5b8235905067ffffffffffffffff811115613bc957613bc861374d565b5b602083019150836020820283011115613be557613be4613752565b5b9250929050565b60008083601f840112613c0257613c01613748565b5b8235905067ffffffffffffffff811115613c1f57613c1e61374d565b5b602083019150836020820283011115613c3b57613c3a613752565b5b9250929050565b60008060008060408587031215613c5c57613c5b613473565b5b600085013567ffffffffffffffff811115613c7a57613c79613478565b5b613c8687828801613b96565b9450945050602085013567ffffffffffffffff811115613ca957613ca8613478565b5b613cb587828801613bec565b925092505092959194509250565b60008060408385031215613cda57613cd9613473565b5b6000613ce8858286016136c9565b9250506020613cf9858286016136c9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4a57607f821691505b602082108103613d5d57613d5c613d03565b5b50919050565b7f436f756e742063616e2774206265203000000000000000000000000000000000600082015250565b6000613d99601083613543565b9150613da482613d63565b602082019050919050565b60006020820190508181036000830152613dc881613d8c565b9050919050565b7f4d696e74696e672069732063757272656e746c79207061757365640000000000600082015250565b6000613e05601b83613543565b9150613e1082613dcf565b602082019050919050565b60006020820190508181036000830152613e3481613df8565b9050919050565b7f53616c6520656e64656400000000000000000000000000000000000000000000600082015250565b6000613e71600a83613543565b9150613e7c82613e3b565b602082019050919050565b60006020820190508181036000830152613ea081613e64565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ee1826135f3565b9150613eec836135f3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f2157613f20613ea7565b5b828201905092915050565b7f537570706c792065786365656465640000000000000000000000000000000000600082015250565b6000613f62600f83613543565b9150613f6d82613f2c565b602082019050919050565b60006020820190508181036000830152613f9181613f55565b9050919050565b7f5375636b6c6973742073616c65206e6f74206163746976650000000000000000600082015250565b6000613fce601883613543565b9150613fd982613f98565b602082019050919050565b60006020820190508181036000830152613ffd81613fc1565b9050919050565b7f574c3120737570706c7920657863656564656400000000000000000000000000600082015250565b600061403a601383613543565b915061404582614004565b602082019050919050565b600060208201905081810360008301526140698161402d565b9050919050565b7f4c696d6974206578636565646564000000000000000000000000000000000000600082015250565b60006140a6600e83613543565b91506140b182614070565b602082019050919050565b600060208201905081810360008301526140d581614099565b9050919050565b600081905092915050565b7f6974616c6c7375636b737c317c00000000000000000000000000000000000000600082015250565b600061411d600d836140dc565b9150614128826140e7565b600d82019050919050565b600061413e82613538565b61414881856140dc565b9350614158818560208601613554565b80840191505092915050565b600061416f82614110565b915061417b8284614133565b915081905092915050565b60006141928284614133565b915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b60006141d3601c836140dc565b91506141de8261419d565b601c82019050919050565b6000819050919050565b6000819050919050565b61420e614209826141e9565b6141f3565b82525050565b600061421f826141c6565b915061422b82846141fd565b60208201915081905092915050565b7f556e617574686f72697a6564207369676e617475726500000000000000000000600082015250565b6000614270601683613543565b915061427b8261423a565b602082019050919050565b6000602082019050818103600083015261429f81614263565b9050919050565b60006142b1826135f3565b91506142bc836135f3565b9250828210156142cf576142ce613ea7565b5b828203905092915050565b60006142e5826135f3565b91506142f0836135f3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561432957614328613ea7565b5b828202905092915050565b7f57726f6e67204554482076616c75650000000000000000000000000000000000600082015250565b600061436a600f83613543565b915061437582614334565b602082019050919050565b600060208201905081810360008301526143998161435d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143d6602083613543565b91506143e1826143a0565b602082019050919050565b60006020820190508181036000830152614405816143c9565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261446e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614431565b6144788683614431565b95508019841693508086168417925050509392505050565b6000819050919050565b60006144b56144b06144ab846135f3565b614490565b6135f3565b9050919050565b6000819050919050565b6144cf8361449a565b6144e36144db826144bc565b84845461443e565b825550505050565b600090565b6144f86144eb565b6145038184846144c6565b505050565b5b818110156145275761451c6000826144f0565b600181019050614509565b5050565b601f82111561456c5761453d8161440c565b61454684614421565b81016020851015614555578190505b61456961456185614421565b830182614508565b50505b505050565b600082821c905092915050565b600061458f60001984600802614571565b1980831691505092915050565b60006145a8838361457e565b9150826002028217905092915050565b6145c182613538565b67ffffffffffffffff8111156145da576145d9613892565b5b6145e48254613d32565b6145ef82828561452b565b600060209050601f8311600181146146225760008415614610578287015190505b61461a858261459c565b865550614682565b601f1984166146308661440c565b60005b8281101561465857848901518255600182019150602085019450602081019050614633565b868310156146755784890151614671601f89168261457e565b8355505b6001600288020188555050505b505050505050565b60006146968285614133565b91506146a28284614133565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006146e8826135f3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361471a57614719613ea7565b5b600182019050919050565b7f5075626c69632073616c65206e6f742061637469766500000000000000000000600082015250565b600061475b601683613543565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f506572207478206c696d69742065786365656465640000000000000000000000600082015250565b60006147c7601583613543565b91506147d282614791565b602082019050919050565b600060208201905081810360008301526147f6816147ba565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614859602683613543565b9150614864826147fd565b604082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b600061489a826135f3565b9150600082036148ad576148ac613ea7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006148ee602083613543565b91506148f9826148b8565b602082019050919050565b6000602082019050818103600083015261491d816148e1565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061494b82614924565b614955818561492f565b9350614965818560208601613554565b61496e81613587565b840191505092915050565b600060808201905061498e6000830187613688565b61499b6020830186613688565b6149a8604083018561371e565b81810360608301526149ba8184614940565b905095945050505050565b6000815190506149d4816134a9565b92915050565b6000602082840312156149f0576149ef613473565b5b60006149fe848285016149c5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000614a6c601883613543565b9150614a7782614a36565b602082019050919050565b60006020820190508181036000830152614a9b81614a5f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000614ad8601f83613543565b9150614ae382614aa2565b602082019050919050565b60006020820190508181036000830152614b0781614acb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614b6a602283613543565b9150614b7582614b0e565b604082019050919050565b60006020820190508181036000830152614b9981614b5d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bfc602283613543565b9150614c0782614ba0565b604082019050919050565b60006020820190508181036000830152614c2b81614bef565b9050919050565b614c3b816141e9565b82525050565b600060ff82169050919050565b614c5781614c41565b82525050565b6000608082019050614c726000830187614c32565b614c7f6020830186614c4e565b614c8c6040830185614c32565b614c996060830184614c32565b9594505050505056fea2646970667358221220d0a3708db1dd2ec49e276752bb5b5e0fa3d26406ee11a1da9bd10a359f1cc9f764736f6c634300080f0033

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

00000000000000000000000035f9a10578b9fb077c602d30d48d6829f1c498d4

-----Decoded View---------------
Arg [0] : deployerAddress (address): 0x35F9A10578b9fb077C602D30D48D6829f1c498D4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000035f9a10578b9fb077c602d30d48d6829f1c498d4


Deployed Bytecode Sourcemap

53752:6063:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13029:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18052:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20120:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19580:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54176:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54313:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12083:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57635:1253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21006:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55835:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59667:145;;;;;;;;;;;;;:::i;:::-;;56503:92;;;;;;;;;;;;;:::i;:::-;;21247:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57200:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17841:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53880:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55676:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13708:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52868:103;;;;;;;;;;;;;:::i;:::-;;54276:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54355:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56678:86;;;;;;;;;;;;;:::i;:::-;;52217:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55992:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54955:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56138:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18221:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54212:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55317:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20396:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56308:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54122:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21503:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18396:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55500:120;;;;;;;;;;;;;:::i;:::-;;53974:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54497:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57455:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56880:267;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54068:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20775:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54409:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58961:614;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53126:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54012:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53913:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13029:615;13114:4;13429:10;13414:25;;:11;:25;;;;:102;;;;13506:10;13491:25;;:11;:25;;;;13414:102;:179;;;;13583:10;13568:25;;:11;:25;;;;13414:179;13394:199;;13029:615;;;:::o;18052:100::-;18106:13;18139:5;18132:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18052:100;:::o;20120:204::-;20188:7;20213:16;20221:7;20213;:16::i;:::-;20208:64;;20238:34;;;;;;;;;;;;;;20208:64;20292:15;:24;20308:7;20292:24;;;;;;;;;;;;;;;;;;;;;20285:31;;20120:204;;;:::o;19580:474::-;19653:13;19685:27;19704:7;19685:18;:27::i;:::-;19653:61;;19735:5;19729:11;;:2;:11;;;19725:48;;19749:24;;;;;;;;;;;;;;19725:48;19813:5;19790:28;;:19;:17;:19::i;:::-;:28;;;19786:175;;19838:44;19855:5;19862:19;:17;:19::i;:::-;19838:16;:44::i;:::-;19833:128;;19910:35;;;;;;;;;;;;;;19833:128;19786:175;20000:2;19973:15;:24;19989:7;19973:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20038:7;20034:2;20018:28;;20027:5;20018:28;;;;;;;;;;;;19642:412;19580:474;;:::o;54176:29::-;;;;:::o;54313:35::-;;;;;;;;;;;;;:::o;12083:315::-;12136:7;12364:15;:13;:15::i;:::-;12349:12;;12333:13;;:28;:46;12326:53;;12083:315;:::o;57635:1253::-;57742:1;57734:5;:9;57726:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57784:10;;;;;;;;;;;57783:11;57775:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;57864:5;57845:24;;:15;;;;;;;;;;;:24;;;57837:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;57928:9;;57919:5;57903:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;57895:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57995:11;;57976:15;:30;;:67;;;;;58028:15;;58010;:33;57976:67;57968:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;58116:7;;58099:13;:11;:13::i;:::-;58091:5;:21;;;;:::i;:::-;:32;;58083:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54114:1;58174:25;58188:10;58174:13;:25::i;:::-;58166:5;:33;;;;:::i;:::-;:56;;58158:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;58254:21;58319:53;58355:10;58339:28;;58369:2;58319:19;:53::i;:::-;58285:88;;;;;;;;:::i;:::-;;;;;;;;;;;;;58254:120;;58385:21;58436:7;58419:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;58409:36;;;;;;58385:60;;58456:24;58483:97;58570:9;;58483:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58546:13;58493:67;;;;;;;;:::i;:::-;;;;;;;;;;;;;58483:78;;;;;;:86;;:97;;;;:::i;:::-;58456:124;;58619:8;;;;;;;;;;;58599:28;;:16;:28;;;58591:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58679:21;58765:5;;54060:1;58712:25;58726:10;58712:13;:25::i;:::-;58704:5;:33;;;;:::i;:::-;:57;;;;:::i;:::-;58703:67;;;;:::i;:::-;58679:91;;58806:9;58789:13;:26;58781:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;58856:24;58862:10;58874:5;58856;:24::i;:::-;57715:1173;;;;57635:1253;;;:::o;21006:170::-;21140:28;21150:4;21156:2;21160:7;21140:9;:28::i;:::-;21006:170;;;:::o;55835:101::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55917:11:::1;55907:7;:21;;;;55835:101:::0;:::o;59667:145::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59717:15:::1;59735:21;59717:39;;59775:10;59767:28;;:37;59796:7;59767:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59706:106;59667:145::o:0;56503:92::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56577:10:::1;;;;;;;;;;;56576:11;56563:10;;:24;;;;;;;;;;;;;;;;;;56503:92::o:0;21247:185::-;21385:39;21402:4;21408:2;21412:7;21385:39;;;;;;;;;;;;:16;:39::i;:::-;21247:185;;;:::o;57200:178::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57312:9:::1;;57303:5;57287:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;57279:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;57352:18;57358:4;57364:5;57352;:18::i;:::-;57200:178:::0;;:::o;17841:144::-;17905:7;17948:27;17967:7;17948:18;:27::i;:::-;17925:52;;17841:144;;;:::o;53880:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55676:106::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55762:12:::1;55750:9;:24;;;;55676:106:::0;:::o;13708:234::-;13772:7;13824:1;13796:24;13814:5;13796:17;:24::i;:::-;:29;13792:70;;13834:28;;;;;;;;;;;;;;13792:70;9053:13;13880:18;:25;13899:5;13880:25;;;;;;;;;;;;;;;;:54;13873:61;;13708:234;;;:::o;52868:103::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52933:30:::1;52960:1;52933:18;:30::i;:::-;52868:103::o:0;54276:30::-;;;;;;;;;;;;;:::o;54355:39::-;;;;:::o;56678:86::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56752:4:::1;56734:15;;:22;;;;;;;;;;;;;;;;;;56678:86::o:0;52217:87::-;52263:7;52290:6;;;;;;;;;;;52283:13;;52217:87;:::o;55992:90::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56066:8:::1;56058:5;:16;;;;55992:90:::0;:::o;54955:115::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55047:15:::1;55036:8;;:26;;;;;;;;;;;;;;;;;;54955:115:::0;:::o;56138:110::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56228:12:::1;56214:11;:26;;;;56138:110:::0;:::o;18221:104::-;18277:13;18310:7;18303:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18221:104;:::o;54212:33::-;;;;:::o;55317:127::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55396:14:::1;;;;;;;;;;;55395:15;55387:24;;;::::0;::::1;;55432:4;55422:7;:14;;;;;;:::i;:::-;;55317:127:::0;:::o;20396:308::-;20507:19;:17;:19::i;:::-;20495:31;;:8;:31;;;20491:61;;20535:17;;;;;;;;;;;;;;20491:61;20617:8;20565:18;:39;20584:19;:17;:19::i;:::-;20565:39;;;;;;;;;;;;;;;:49;20605:8;20565:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20677:8;20641:55;;20656:19;:17;:19::i;:::-;20641:55;;;20687:8;20641:55;;;;;;:::i;:::-;;;;;;;;20396:308;;:::o;56308:126::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56410:16:::1;56392:15;:34;;;;56308:126:::0;:::o;54122:47::-;54168:1;54122:47;:::o;21503:396::-;21670:28;21680:4;21686:2;21690:7;21670:9;:28::i;:::-;21731:1;21713:2;:14;;;:19;21709:183;;21752:56;21783:4;21789:2;21793:7;21802:5;21752:30;:56::i;:::-;21747:145;;21836:40;;;;;;;;;;;;;;21747:145;21709:183;21503:396;;;;:::o;18396:318::-;18469:13;18500:16;18508:7;18500;:16::i;:::-;18495:59;;18525:29;;;;;;;;;;;;;;18495:59;18567:21;18591:10;:8;:10::i;:::-;18567:34;;18644:1;18625:7;18619:21;:26;:87;;;;;;;;;;;;;;;;;18672:7;18681:18;18691:7;18681:9;:18::i;:::-;18655:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18619:87;18612:94;;;18396:318;;;:::o;55500:120::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55565:14:::1;;;;;;;;;;;55564:15;55556:24;;;::::0;::::1;;55608:4;55591:14;;:21;;;;;;;;;;;;;;;;;;55500:120::o:0;53974:31::-;;;;:::o;54497:23::-;;;;;;;;;;;;;:::o;57455:111::-;57512:7;57539:19;57553:4;57539:13;:19::i;:::-;57532:26;;57455:111;;;:::o;56880:267::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56991:9:::1;56986:89;57006:4;;:11;;57004:1;:13;56986:89;;;57039:24;57045:4;;57050:1;57045:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57054:5;;57060:1;57054:8;;;;;;;:::i;:::-;;;;;;;;57039:5;:24::i;:::-;57019:3;;;;;:::i;:::-;;;;56986:89;;;;57110:9;;57093:13;:11;:13::i;:::-;:26;;57085:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56880:267:::0;;;;:::o;54068:47::-;54114:1;54068:47;:::o;20775:164::-;20872:4;20896:18;:25;20915:5;20896:25;;;;;;;;;;;;;;;:35;20922:8;20896:35;;;;;;;;;;;;;;;;;;;;;;;;;20889:42;;20775:164;;;;:::o;54409:43::-;;;;:::o;58961:614::-;59040:1;59032:5;:9;59024:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59082:10;;;;;;;;;;;59081:11;59073:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;59162:5;59143:24;;:15;;;;;;;;;;;:24;;;59135:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;59226:9;;59217:5;59201:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;59193:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59293:15;;59274;:34;;59266:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;54168:1;59354:5;:28;;59346:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59422:21;59452:5;;59446;:11;;;;:::i;:::-;59422:35;;59493:9;59476:13;:26;59468:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;59543:24;59549:10;59561:5;59543;:24::i;:::-;59013:562;58961:614;:::o;53126:201::-;52448:12;:10;:12::i;:::-;52437:23;;:7;:5;:7::i;:::-;:23;;;52429:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53235:1:::1;53215:22;;:8;:22;;::::0;53207:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;53291:28;53310:8;53291:18;:28::i;:::-;53126:201:::0;:::o;54012:49::-;54060:1;54012:49;:::o;53913:34::-;;;;;;;;;;;;;:::o;22154:273::-;22211:4;22267:7;22248:15;:13;:15::i;:::-;:26;;:66;;;;;22301:13;;22291:7;:23;22248:66;:152;;;;;22399:1;9823:8;22352:17;:26;22370:7;22352:26;;;;;;;;;;;;:43;:48;22248:152;22228:172;;22154:273;;;:::o;15356:1129::-;15423:7;15443:12;15458:7;15443:22;;15526:4;15507:15;:13;:15::i;:::-;:23;15503:915;;15560:13;;15553:4;:20;15549:869;;;15598:14;15615:17;:23;15633:4;15615:23;;;;;;;;;;;;15598:40;;15731:1;9823:8;15704:6;:23;:28;15700:699;;16223:113;16240:1;16230:6;:11;16223:113;;16283:17;:25;16301:6;;;;;;;16283:25;;;;;;;;;;;;16274:34;;16223:113;;;16369:6;16362:13;;;;;;15700:699;15575:843;15549:869;15503:915;16446:31;;;;;;;;;;;;;;15356:1129;;;;:::o;36421:105::-;36481:7;36508:10;36501:17;;36421:105;:::o;11607:92::-;11663:7;11607:92;:::o;14024:176::-;14085:7;9053:13;9190:2;14113:18;:25;14132:5;14113:25;;;;;;;;;;;;;;;;:49;;14112:80;14105:87;;14024:176;;;:::o;40252:451::-;40327:13;40353:19;40398:1;40389:6;40385:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;40375:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40353:47;;40411:15;:6;40418:1;40411:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;40437;:6;40444:1;40437:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;40468:9;40493:1;40484:6;40480:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;40468:26;;40463:135;40500:1;40496;:5;40463:135;;;40535:12;40556:3;40548:5;:11;40535:25;;;;;;;:::i;:::-;;;;;40523:6;40530:1;40523:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;40585:1;40575:11;;;;;40503:3;;;;:::i;:::-;;;40463:135;;;;40625:1;40616:5;:10;40608:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;40688:6;40674:21;;;40252:451;;;;:::o;45133:231::-;45211:7;45232:17;45251:18;45273:27;45284:4;45290:9;45273:10;:27::i;:::-;45231:69;;;;45311:18;45323:5;45311:11;:18::i;:::-;45347:9;45340:16;;;;45133:231;;;;:::o;25493:1666::-;25558:20;25581:13;;25558:36;;25634:1;25609:21;25627:2;25609:17;:21::i;:::-;:26;25605:58;;25644:19;;;;;;;;;;;;;;25605:58;25690:1;25678:8;:13;25674:44;;25700:18;;;;;;;;;;;;;;25674:44;25731:61;25761:1;25765:2;25769:12;25783:8;25731:21;:61::i;:::-;26335:1;9190:2;26306:1;:25;;26305:31;26293:8;:44;26267:18;:22;26286:2;26267:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9966:3;26736:29;26763:1;26751:8;:13;26736:14;:29::i;:::-;:56;;9707:3;26673:15;:41;;26631:21;26649:2;26631:17;:21::i;:::-;:84;:162;26580:17;:31;26598:12;26580:31;;;;;;;;;;;:213;;;;26810:20;26833:12;26810:35;;26860:11;26889:8;26874:12;:23;26860:37;;26914:111;26966:14;;;;;;26962:2;26941:40;;26958:1;26941:40;;;;;;;;;;;;27020:3;27005:12;:18;26914:111;;27057:12;27041:13;:28;;;;26044:1037;;27091:60;27120:1;27124:2;27128:12;27142:8;27091:20;:60::i;:::-;25547:1612;25493:1666;;:::o;27413:2654::-;27528:27;27558;27577:7;27558:18;:27::i;:::-;27528:57;;27643:4;27602:45;;27618:19;27602:45;;;27598:86;;27656:28;;;;;;;;;;;;;;27598:86;27697:23;27723:15;:24;27739:7;27723:24;;;;;;;;;;;;;;;;;;;;;27697:50;;27760:22;27809:4;27786:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27830:43;27847:4;27853:19;:17;:19::i;:::-;27830:16;:43::i;:::-;27786:87;:142;;;;27909:19;:17;:19::i;:::-;27890:38;;:15;:38;;;27786:142;27760:169;;27947:17;27942:66;;27973:35;;;;;;;;;;;;;;27942:66;28048:1;28023:21;28041:2;28023:17;:21::i;:::-;:26;28019:62;;28058:23;;;;;;;;;;;;;;28019:62;28094:43;28116:4;28122:2;28126:7;28135:1;28094:21;:43::i;:::-;28245:1;28207:34;28225:15;28207:17;:34::i;:::-;:39;28203:103;;28270:15;:24;28286:7;28270:24;;;;;;;;;;;;28263:31;;;;;;;;;;;28203:103;28673:18;:24;28692:4;28673:24;;;;;;;;;;;;;;;;28671:26;;;;;;;;;;;;28742:18;:22;28761:2;28742:22;;;;;;;;;;;;;;;;28740:24;;;;;;;;;;;10101:8;9707:3;29123:15;:41;;29081:21;29099:2;29081:17;:21::i;:::-;:84;:128;29035:17;:26;29053:7;29035:26;;;;;;;;;;;:174;;;;29379:1;10101:8;29329:19;:46;:51;29325:626;;29401:19;29433:1;29423:7;:11;29401:33;;29590:1;29556:17;:30;29574:11;29556:30;;;;;;;;;;;;:35;29552:384;;29694:13;;29679:11;:28;29675:242;;29874:19;29841:17;:30;29859:11;29841:30;;;;;;;;;;;:52;;;;29675:242;29552:384;29382:569;29325:626;29998:7;29994:2;29979:27;;29988:4;29979:27;;;;;;;;;;;;30017:42;30038:4;30044:2;30048:7;30057:1;30017:20;:42::i;:::-;27517:2550;;;27413:2654;;;:::o;50935:98::-;50988:7;51015:10;51008:17;;50935:98;:::o;19141:148::-;19205:14;19266:5;19256:15;;19141:148;;;:::o;53487:191::-;53561:16;53580:6;;;;;;;;;;;53561:25;;53606:8;53597:6;;:17;;;;;;;;;;;;;;;;;;53661:8;53630:40;;53651:8;53630:40;;;;;;;;;;;;53550:128;53487:191;:::o;33890:716::-;34053:4;34099:2;34074:45;;;34120:19;:17;:19::i;:::-;34141:4;34147:7;34156:5;34074:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34070:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34374:1;34357:6;:13;:18;34353:235;;34403:40;;;;;;;;;;;;;;34353:235;34546:6;34540:13;34531:6;34527:2;34523:15;34516:38;34070:529;34243:54;;;34233:64;;;:6;:64;;;;34226:71;;;33890:716;;;;;;:::o;55132:100::-;55184:13;55217:7;55210:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55132:100;:::o;36632:1943::-;36689:17;37108:3;37101:4;37095:11;37091:21;37084:28;;37199:3;37193:4;37186:17;37305:3;37761:5;37891:1;37886:3;37882:11;37875:18;;38028:2;38022:4;38018:13;38014:2;38010:22;38005:3;37997:36;38069:2;38063:4;38059:13;38051:21;;37653:680;38088:4;37653:680;;;38262:1;38257:3;38253:11;38246:18;;38313:2;38307:4;38303:13;38299:2;38295:22;38290:3;38282:36;38183:2;38177:4;38173:13;38165:21;;37653:680;;;37657:430;38372:3;38367;38363:13;38487:2;38482:3;38478:12;38471:19;;38550:6;38545:3;38538:19;36728:1840;;36632:1943;;;:::o;43023:1308::-;43104:7;43113:12;43358:2;43338:9;:16;:22;43334:990;;43377:9;43401;43425:7;43634:4;43623:9;43619:20;43613:27;43608:32;;43684:4;43673:9;43669:20;43663:27;43658:32;;43742:4;43731:9;43727:20;43721:27;43718:1;43713:36;43708:41;;43785:25;43796:4;43802:1;43805;43808;43785:10;:25::i;:::-;43778:32;;;;;;;;;43334:990;43852:2;43832:9;:16;:22;43828:496;;43871:9;43895:10;44107:4;44096:9;44092:20;44086:27;44081:32;;44158:4;44147:9;44143:20;44137:27;44131:33;;44200:23;44211:4;44217:1;44220:2;44200:10;:23::i;:::-;44193:30;;;;;;;;43828:496;44272:1;44276:35;44256:56;;;;43023:1308;;;;;;:::o;41294:643::-;41372:20;41363:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;41359:571;41409:7;41359:571;41470:29;41461:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;41457:473;;41516:34;;;;;;;;;;:::i;:::-;;;;;;;;41457:473;41581:35;41572:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;41568:362;;41633:41;;;;;;;;;;:::i;:::-;;;;;;;;41568:362;41705:30;41696:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;41692:238;;41752:44;;;;;;;;;;:::i;:::-;;;;;;;;41692:238;41827:30;41818:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;41814:116;;41874:44;;;;;;;;;;:::i;:::-;;;;;;;;41814:116;41294:643;;:::o;35254:159::-;;;;;:::o;19376:142::-;19434:14;19495:5;19485:15;;19376:142;;;:::o;36072:158::-;;;;;:::o;46585:1632::-;46716:7;46725:12;47650:66;47645:1;47637:10;;:79;47633:163;;;47749:1;47753:30;47733:51;;;;;;47633:163;47815:2;47810:1;:7;;;;:18;;;;;47826:2;47821:1;:7;;;;47810:18;47806:102;;;47861:1;47865:30;47845:51;;;;;;47806:102;48005:14;48022:24;48032:4;48038:1;48041;48044;48022:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48005:41;;48079:1;48061:20;;:6;:20;;;48057:103;;48114:1;48118:29;48098:50;;;;;;;48057:103;48180:6;48188:20;48172:37;;;;;46585:1632;;;;;;;;:::o;45627:344::-;45741:7;45750:12;45775:9;45800:66;45792:75;;45787:2;:80;45775:92;;45878:7;45917:2;45910:3;45903:2;45895:11;;:18;;45894:25;;;;:::i;:::-;45878:42;;45938:25;45949:4;45955:1;45958;45961;45938:10;:25::i;:::-;45931:32;;;;;;45627:344;;;;;;:::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:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:117;5645:1;5642;5635:12;5672:552;5729:8;5739:6;5789:3;5782:4;5774:6;5770:17;5766:27;5756:122;;5797:79;;:::i;:::-;5756:122;5910:6;5897:20;5887:30;;5940:18;5932:6;5929:30;5926:117;;;5962:79;;:::i;:::-;5926:117;6076:4;6068:6;6064:17;6052:29;;6130:3;6122:4;6114:6;6110:17;6100:8;6096:32;6093:41;6090:128;;;6137:79;;:::i;:::-;6090:128;5672:552;;;;;:::o;6230:672::-;6309:6;6317;6325;6374:2;6362:9;6353:7;6349:23;6345:32;6342:119;;;6380:79;;:::i;:::-;6342:119;6500:1;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6471:117;6655:2;6644:9;6640:18;6627:32;6686:18;6678:6;6675:30;6672:117;;;6708:79;;:::i;:::-;6672:117;6821:64;6877:7;6868:6;6857:9;6853:22;6821:64;:::i;:::-;6803:82;;;;6598:297;6230:672;;;;;:::o;6908:619::-;6985:6;6993;7001;7050:2;7038:9;7029:7;7025:23;7021:32;7018:119;;;7056:79;;:::i;:::-;7018:119;7176:1;7201:53;7246:7;7237:6;7226:9;7222:22;7201:53;:::i;:::-;7191:63;;7147:117;7303:2;7329:53;7374:7;7365:6;7354:9;7350:22;7329:53;:::i;:::-;7319:63;;7274:118;7431:2;7457:53;7502:7;7493:6;7482:9;7478:22;7457:53;:::i;:::-;7447:63;;7402:118;6908:619;;;;;:::o;7533:329::-;7592:6;7641:2;7629:9;7620:7;7616:23;7612:32;7609:119;;;7647:79;;:::i;:::-;7609:119;7767:1;7792:53;7837:7;7828:6;7817:9;7813:22;7792:53;:::i;:::-;7782:63;;7738:117;7533:329;;;;:::o;7868:117::-;7977:1;7974;7967:12;7991:180;8039:77;8036:1;8029:88;8136:4;8133:1;8126:15;8160:4;8157:1;8150:15;8177:281;8260:27;8282:4;8260:27;:::i;:::-;8252:6;8248:40;8390:6;8378:10;8375:22;8354:18;8342:10;8339:34;8336:62;8333:88;;;8401:18;;:::i;:::-;8333:88;8441:10;8437:2;8430:22;8220:238;8177:281;;:::o;8464:129::-;8498:6;8525:20;;:::i;:::-;8515:30;;8554:33;8582:4;8574:6;8554:33;:::i;:::-;8464:129;;;:::o;8599:308::-;8661:4;8751:18;8743:6;8740:30;8737:56;;;8773:18;;:::i;:::-;8737:56;8811:29;8833:6;8811:29;:::i;:::-;8803:37;;8895:4;8889;8885:15;8877:23;;8599:308;;;:::o;8913:154::-;8997:6;8992:3;8987;8974:30;9059:1;9050:6;9045:3;9041:16;9034:27;8913:154;;;:::o;9073:412::-;9151:5;9176:66;9192:49;9234:6;9192:49;:::i;:::-;9176:66;:::i;:::-;9167:75;;9265:6;9258:5;9251:21;9303:4;9296:5;9292:16;9341:3;9332:6;9327:3;9323:16;9320:25;9317:112;;;9348:79;;:::i;:::-;9317:112;9438:41;9472:6;9467:3;9462;9438:41;:::i;:::-;9157:328;9073:412;;;;;:::o;9505:340::-;9561:5;9610:3;9603:4;9595:6;9591:17;9587:27;9577:122;;9618:79;;:::i;:::-;9577:122;9735:6;9722:20;9760:79;9835:3;9827:6;9820:4;9812:6;9808:17;9760:79;:::i;:::-;9751:88;;9567:278;9505:340;;;;:::o;9851:509::-;9920:6;9969:2;9957:9;9948:7;9944:23;9940:32;9937:119;;;9975:79;;:::i;:::-;9937:119;10123:1;10112:9;10108:17;10095:31;10153:18;10145:6;10142:30;10139:117;;;10175:79;;:::i;:::-;10139:117;10280:63;10335:7;10326:6;10315:9;10311:22;10280:63;:::i;:::-;10270:73;;10066:287;9851:509;;;;:::o;10366:116::-;10436:21;10451:5;10436:21;:::i;:::-;10429:5;10426:32;10416:60;;10472:1;10469;10462:12;10416:60;10366:116;:::o;10488:133::-;10531:5;10569:6;10556:20;10547:29;;10585:30;10609:5;10585:30;:::i;:::-;10488:133;;;;:::o;10627:468::-;10692:6;10700;10749:2;10737:9;10728:7;10724:23;10720:32;10717:119;;;10755:79;;:::i;:::-;10717:119;10875:1;10900:53;10945:7;10936:6;10925:9;10921:22;10900:53;:::i;:::-;10890:63;;10846:117;11002:2;11028:50;11070:7;11061:6;11050:9;11046:22;11028:50;:::i;:::-;11018:60;;10973:115;10627:468;;;;;:::o;11101:307::-;11162:4;11252:18;11244:6;11241:30;11238:56;;;11274:18;;:::i;:::-;11238:56;11312:29;11334:6;11312:29;:::i;:::-;11304:37;;11396:4;11390;11386:15;11378:23;;11101:307;;;:::o;11414:410::-;11491:5;11516:65;11532:48;11573:6;11532:48;:::i;:::-;11516:65;:::i;:::-;11507:74;;11604:6;11597:5;11590:21;11642:4;11635:5;11631:16;11680:3;11671:6;11666:3;11662:16;11659:25;11656:112;;;11687:79;;:::i;:::-;11656:112;11777:41;11811:6;11806:3;11801;11777:41;:::i;:::-;11497:327;11414:410;;;;;:::o;11843:338::-;11898:5;11947:3;11940:4;11932:6;11928:17;11924:27;11914:122;;11955:79;;:::i;:::-;11914:122;12072:6;12059:20;12097:78;12171:3;12163:6;12156:4;12148:6;12144:17;12097:78;:::i;:::-;12088:87;;11904:277;11843:338;;;;:::o;12187:943::-;12282:6;12290;12298;12306;12355:3;12343:9;12334:7;12330:23;12326:33;12323:120;;;12362:79;;:::i;:::-;12323:120;12482:1;12507:53;12552:7;12543:6;12532:9;12528:22;12507:53;:::i;:::-;12497:63;;12453:117;12609:2;12635:53;12680:7;12671:6;12660:9;12656:22;12635:53;:::i;:::-;12625:63;;12580:118;12737:2;12763:53;12808:7;12799:6;12788:9;12784:22;12763:53;:::i;:::-;12753:63;;12708:118;12893:2;12882:9;12878:18;12865:32;12924:18;12916:6;12913:30;12910:117;;;12946:79;;:::i;:::-;12910:117;13051:62;13105:7;13096:6;13085:9;13081:22;13051:62;:::i;:::-;13041:72;;12836:287;12187:943;;;;;;;:::o;13153:568::-;13226:8;13236:6;13286:3;13279:4;13271:6;13267:17;13263:27;13253:122;;13294:79;;:::i;:::-;13253:122;13407:6;13394:20;13384:30;;13437:18;13429:6;13426:30;13423:117;;;13459:79;;:::i;:::-;13423:117;13573:4;13565:6;13561:17;13549:29;;13627:3;13619:4;13611:6;13607:17;13597:8;13593:32;13590:41;13587:128;;;13634:79;;:::i;:::-;13587:128;13153:568;;;;;:::o;13744:::-;13817:8;13827:6;13877:3;13870:4;13862:6;13858:17;13854:27;13844:122;;13885:79;;:::i;:::-;13844:122;13998:6;13985:20;13975:30;;14028:18;14020:6;14017:30;14014:117;;;14050:79;;:::i;:::-;14014:117;14164:4;14156:6;14152:17;14140:29;;14218:3;14210:4;14202:6;14198:17;14188:8;14184:32;14181:41;14178:128;;;14225:79;;:::i;:::-;14178:128;13744:568;;;;;:::o;14318:934::-;14440:6;14448;14456;14464;14513:2;14501:9;14492:7;14488:23;14484:32;14481:119;;;14519:79;;:::i;:::-;14481:119;14667:1;14656:9;14652:17;14639:31;14697:18;14689:6;14686:30;14683:117;;;14719:79;;:::i;:::-;14683:117;14832:80;14904:7;14895:6;14884:9;14880:22;14832:80;:::i;:::-;14814:98;;;;14610:312;14989:2;14978:9;14974:18;14961:32;15020:18;15012:6;15009:30;15006:117;;;15042:79;;:::i;:::-;15006:117;15155:80;15227:7;15218:6;15207:9;15203:22;15155:80;:::i;:::-;15137:98;;;;14932:313;14318:934;;;;;;;:::o;15258:474::-;15326:6;15334;15383:2;15371:9;15362:7;15358:23;15354:32;15351:119;;;15389:79;;:::i;:::-;15351:119;15509:1;15534:53;15579:7;15570:6;15559:9;15555:22;15534:53;:::i;:::-;15524:63;;15480:117;15636:2;15662:53;15707:7;15698:6;15687:9;15683:22;15662:53;:::i;:::-;15652:63;;15607:118;15258:474;;;;;:::o;15738:180::-;15786:77;15783:1;15776:88;15883:4;15880:1;15873:15;15907:4;15904:1;15897:15;15924:320;15968:6;16005:1;15999:4;15995:12;15985:22;;16052:1;16046:4;16042:12;16073:18;16063:81;;16129:4;16121:6;16117:17;16107:27;;16063:81;16191:2;16183:6;16180:14;16160:18;16157:38;16154:84;;16210:18;;:::i;:::-;16154:84;15975:269;15924:320;;;:::o;16250:166::-;16390:18;16386:1;16378:6;16374:14;16367:42;16250:166;:::o;16422:366::-;16564:3;16585:67;16649:2;16644:3;16585:67;:::i;:::-;16578:74;;16661:93;16750:3;16661:93;:::i;:::-;16779:2;16774:3;16770:12;16763:19;;16422:366;;;:::o;16794:419::-;16960:4;16998:2;16987:9;16983:18;16975:26;;17047:9;17041:4;17037:20;17033:1;17022:9;17018:17;17011:47;17075:131;17201:4;17075:131;:::i;:::-;17067:139;;16794:419;;;:::o;17219:177::-;17359:29;17355:1;17347:6;17343:14;17336:53;17219:177;:::o;17402:366::-;17544:3;17565:67;17629:2;17624:3;17565:67;:::i;:::-;17558:74;;17641:93;17730:3;17641:93;:::i;:::-;17759:2;17754:3;17750:12;17743:19;;17402:366;;;:::o;17774:419::-;17940:4;17978:2;17967:9;17963:18;17955:26;;18027:9;18021:4;18017:20;18013:1;18002:9;17998:17;17991:47;18055:131;18181:4;18055:131;:::i;:::-;18047:139;;17774:419;;;:::o;18199:160::-;18339:12;18335:1;18327:6;18323:14;18316:36;18199:160;:::o;18365:366::-;18507:3;18528:67;18592:2;18587:3;18528:67;:::i;:::-;18521:74;;18604:93;18693:3;18604:93;:::i;:::-;18722:2;18717:3;18713:12;18706:19;;18365:366;;;:::o;18737:419::-;18903:4;18941:2;18930:9;18926:18;18918:26;;18990:9;18984:4;18980:20;18976:1;18965:9;18961:17;18954:47;19018:131;19144:4;19018:131;:::i;:::-;19010:139;;18737:419;;;:::o;19162:180::-;19210:77;19207:1;19200:88;19307:4;19304:1;19297:15;19331:4;19328:1;19321:15;19348:305;19388:3;19407:20;19425:1;19407:20;:::i;:::-;19402:25;;19441:20;19459:1;19441:20;:::i;:::-;19436:25;;19595:1;19527:66;19523:74;19520:1;19517:81;19514:107;;;19601:18;;:::i;:::-;19514:107;19645:1;19642;19638:9;19631:16;;19348:305;;;;:::o;19659:165::-;19799:17;19795:1;19787:6;19783:14;19776:41;19659:165;:::o;19830:366::-;19972:3;19993:67;20057:2;20052:3;19993:67;:::i;:::-;19986:74;;20069:93;20158:3;20069:93;:::i;:::-;20187:2;20182:3;20178:12;20171:19;;19830:366;;;:::o;20202:419::-;20368:4;20406:2;20395:9;20391:18;20383:26;;20455:9;20449:4;20445:20;20441:1;20430:9;20426:17;20419:47;20483:131;20609:4;20483:131;:::i;:::-;20475:139;;20202:419;;;:::o;20627:174::-;20767:26;20763:1;20755:6;20751:14;20744:50;20627:174;:::o;20807:366::-;20949:3;20970:67;21034:2;21029:3;20970:67;:::i;:::-;20963:74;;21046:93;21135:3;21046:93;:::i;:::-;21164:2;21159:3;21155:12;21148:19;;20807:366;;;:::o;21179:419::-;21345:4;21383:2;21372:9;21368:18;21360:26;;21432:9;21426:4;21422:20;21418:1;21407:9;21403:17;21396:47;21460:131;21586:4;21460:131;:::i;:::-;21452:139;;21179:419;;;:::o;21604:169::-;21744:21;21740:1;21732:6;21728:14;21721:45;21604:169;:::o;21779:366::-;21921:3;21942:67;22006:2;22001:3;21942:67;:::i;:::-;21935:74;;22018:93;22107:3;22018:93;:::i;:::-;22136:2;22131:3;22127:12;22120:19;;21779:366;;;:::o;22151:419::-;22317:4;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22151:419;;;:::o;22576:164::-;22716:16;22712:1;22704:6;22700:14;22693:40;22576:164;:::o;22746:366::-;22888:3;22909:67;22973:2;22968:3;22909:67;:::i;:::-;22902:74;;22985:93;23074:3;22985:93;:::i;:::-;23103:2;23098:3;23094:12;23087:19;;22746:366;;;:::o;23118:419::-;23284:4;23322:2;23311:9;23307:18;23299:26;;23371:9;23365:4;23361:20;23357:1;23346:9;23342:17;23335:47;23399:131;23525:4;23399:131;:::i;:::-;23391:139;;23118:419;;;:::o;23543:148::-;23645:11;23682:3;23667:18;;23543:148;;;;:::o;23697:163::-;23837:15;23833:1;23825:6;23821:14;23814:39;23697:163;:::o;23866:402::-;24026:3;24047:85;24129:2;24124:3;24047:85;:::i;:::-;24040:92;;24141:93;24230:3;24141:93;:::i;:::-;24259:2;24254:3;24250:12;24243:19;;23866:402;;;:::o;24274:377::-;24380:3;24408:39;24441:5;24408:39;:::i;:::-;24463:89;24545:6;24540:3;24463:89;:::i;:::-;24456:96;;24561:52;24606:6;24601:3;24594:4;24587:5;24583:16;24561:52;:::i;:::-;24638:6;24633:3;24629:16;24622:23;;24384:267;24274:377;;;;:::o;24657:541::-;24890:3;24912:148;25056:3;24912:148;:::i;:::-;24905:155;;25077:95;25168:3;25159:6;25077:95;:::i;:::-;25070:102;;25189:3;25182:10;;24657:541;;;;:::o;25204:275::-;25336:3;25358:95;25449:3;25440:6;25358:95;:::i;:::-;25351:102;;25470:3;25463:10;;25204:275;;;;:::o;25485:214::-;25625:66;25621:1;25613:6;25609:14;25602:90;25485:214;:::o;25705:402::-;25865:3;25886:85;25968:2;25963:3;25886:85;:::i;:::-;25879:92;;25980:93;26069:3;25980:93;:::i;:::-;26098:2;26093:3;26089:12;26082:19;;25705:402;;;:::o;26113:77::-;26150:7;26179:5;26168:16;;26113:77;;;:::o;26196:79::-;26235:7;26264:5;26253:16;;26196:79;;;:::o;26281:157::-;26386:45;26406:24;26424:5;26406:24;:::i;:::-;26386:45;:::i;:::-;26381:3;26374:58;26281:157;;:::o;26444:522::-;26657:3;26679:148;26823:3;26679:148;:::i;:::-;26672:155;;26837:75;26908:3;26899:6;26837:75;:::i;:::-;26937:2;26932:3;26928:12;26921:19;;26957:3;26950:10;;26444:522;;;;:::o;26972:172::-;27112:24;27108:1;27100:6;27096:14;27089:48;26972:172;:::o;27150:366::-;27292:3;27313:67;27377:2;27372:3;27313:67;:::i;:::-;27306:74;;27389:93;27478:3;27389:93;:::i;:::-;27507:2;27502:3;27498:12;27491:19;;27150:366;;;:::o;27522:419::-;27688:4;27726:2;27715:9;27711:18;27703:26;;27775:9;27769:4;27765:20;27761:1;27750:9;27746:17;27739:47;27803:131;27929:4;27803:131;:::i;:::-;27795:139;;27522:419;;;:::o;27947:191::-;27987:4;28007:20;28025:1;28007:20;:::i;:::-;28002:25;;28041:20;28059:1;28041:20;:::i;:::-;28036:25;;28080:1;28077;28074:8;28071:34;;;28085:18;;:::i;:::-;28071:34;28130:1;28127;28123:9;28115:17;;27947:191;;;;:::o;28144:348::-;28184:7;28207:20;28225:1;28207:20;:::i;:::-;28202:25;;28241:20;28259:1;28241:20;:::i;:::-;28236:25;;28429:1;28361:66;28357:74;28354:1;28351:81;28346:1;28339:9;28332:17;28328:105;28325:131;;;28436:18;;:::i;:::-;28325:131;28484:1;28481;28477:9;28466:20;;28144:348;;;;:::o;28498:165::-;28638:17;28634:1;28626:6;28622:14;28615:41;28498:165;:::o;28669:366::-;28811:3;28832:67;28896:2;28891:3;28832:67;:::i;:::-;28825:74;;28908:93;28997:3;28908:93;:::i;:::-;29026:2;29021:3;29017:12;29010:19;;28669:366;;;:::o;29041:419::-;29207:4;29245:2;29234:9;29230:18;29222:26;;29294:9;29288:4;29284:20;29280:1;29269:9;29265:17;29258:47;29322:131;29448:4;29322:131;:::i;:::-;29314:139;;29041:419;;;:::o;29466:182::-;29606:34;29602:1;29594:6;29590:14;29583:58;29466:182;:::o;29654:366::-;29796:3;29817:67;29881:2;29876:3;29817:67;:::i;:::-;29810:74;;29893:93;29982:3;29893:93;:::i;:::-;30011:2;30006:3;30002:12;29995:19;;29654:366;;;:::o;30026:419::-;30192:4;30230:2;30219:9;30215:18;30207:26;;30279:9;30273:4;30269:20;30265:1;30254:9;30250:17;30243:47;30307:131;30433:4;30307:131;:::i;:::-;30299:139;;30026:419;;;:::o;30451:141::-;30500:4;30523:3;30515:11;;30546:3;30543:1;30536:14;30580:4;30577:1;30567:18;30559:26;;30451:141;;;:::o;30598:93::-;30635:6;30682:2;30677;30670:5;30666:14;30662:23;30652:33;;30598:93;;;:::o;30697:107::-;30741:8;30791:5;30785:4;30781:16;30760:37;;30697:107;;;;:::o;30810:393::-;30879:6;30929:1;30917:10;30913:18;30952:97;30982:66;30971:9;30952:97;:::i;:::-;31070:39;31100:8;31089:9;31070:39;:::i;:::-;31058:51;;31142:4;31138:9;31131:5;31127:21;31118:30;;31191:4;31181:8;31177:19;31170:5;31167:30;31157:40;;30886:317;;30810:393;;;;;:::o;31209:60::-;31237:3;31258:5;31251:12;;31209:60;;;:::o;31275:142::-;31325:9;31358:53;31376:34;31385:24;31403:5;31385:24;:::i;:::-;31376:34;:::i;:::-;31358:53;:::i;:::-;31345:66;;31275:142;;;:::o;31423:75::-;31466:3;31487:5;31480:12;;31423:75;;;:::o;31504:269::-;31614:39;31645:7;31614:39;:::i;:::-;31675:91;31724:41;31748:16;31724:41;:::i;:::-;31716:6;31709:4;31703:11;31675:91;:::i;:::-;31669:4;31662:105;31580:193;31504:269;;;:::o;31779:73::-;31824:3;31779:73;:::o;31858:189::-;31935:32;;:::i;:::-;31976:65;32034:6;32026;32020:4;31976:65;:::i;:::-;31911:136;31858:189;;:::o;32053:186::-;32113:120;32130:3;32123:5;32120:14;32113:120;;;32184:39;32221:1;32214:5;32184:39;:::i;:::-;32157:1;32150:5;32146:13;32137:22;;32113:120;;;32053:186;;:::o;32245:543::-;32346:2;32341:3;32338:11;32335:446;;;32380:38;32412:5;32380:38;:::i;:::-;32464:29;32482:10;32464:29;:::i;:::-;32454:8;32450:44;32647:2;32635:10;32632:18;32629:49;;;32668:8;32653:23;;32629:49;32691:80;32747:22;32765:3;32747:22;:::i;:::-;32737:8;32733:37;32720:11;32691:80;:::i;:::-;32350:431;;32335:446;32245:543;;;:::o;32794:117::-;32848:8;32898:5;32892:4;32888:16;32867:37;;32794:117;;;;:::o;32917:169::-;32961:6;32994:51;33042:1;33038:6;33030:5;33027:1;33023:13;32994:51;:::i;:::-;32990:56;33075:4;33069;33065:15;33055:25;;32968:118;32917:169;;;;:::o;33091:295::-;33167:4;33313:29;33338:3;33332:4;33313:29;:::i;:::-;33305:37;;33375:3;33372:1;33368:11;33362:4;33359:21;33351:29;;33091:295;;;;:::o;33391:1395::-;33508:37;33541:3;33508:37;:::i;:::-;33610:18;33602:6;33599:30;33596:56;;;33632:18;;:::i;:::-;33596:56;33676:38;33708:4;33702:11;33676:38;:::i;:::-;33761:67;33821:6;33813;33807:4;33761:67;:::i;:::-;33855:1;33879:4;33866:17;;33911:2;33903:6;33900:14;33928:1;33923:618;;;;34585:1;34602:6;34599:77;;;34651:9;34646:3;34642:19;34636:26;34627:35;;34599:77;34702:67;34762:6;34755:5;34702:67;:::i;:::-;34696:4;34689:81;34558:222;33893:887;;33923:618;33975:4;33971:9;33963:6;33959:22;34009:37;34041:4;34009:37;:::i;:::-;34068:1;34082:208;34096:7;34093:1;34090:14;34082:208;;;34175:9;34170:3;34166:19;34160:26;34152:6;34145:42;34226:1;34218:6;34214:14;34204:24;;34273:2;34262:9;34258:18;34245:31;;34119:4;34116:1;34112:12;34107:17;;34082:208;;;34318:6;34309:7;34306:19;34303:179;;;34376:9;34371:3;34367:19;34361:26;34419:48;34461:4;34453:6;34449:17;34438:9;34419:48;:::i;:::-;34411:6;34404:64;34326:156;34303:179;34528:1;34524;34516:6;34512:14;34508:22;34502:4;34495:36;33930:611;;;33893:887;;33483:1303;;;33391:1395;;:::o;34792:435::-;34972:3;34994:95;35085:3;35076:6;34994:95;:::i;:::-;34987:102;;35106:95;35197:3;35188:6;35106:95;:::i;:::-;35099:102;;35218:3;35211:10;;34792:435;;;;;:::o;35233:180::-;35281:77;35278:1;35271:88;35378:4;35375:1;35368:15;35402:4;35399:1;35392:15;35419:233;35458:3;35481:24;35499:5;35481:24;:::i;:::-;35472:33;;35527:66;35520:5;35517:77;35514:103;;35597:18;;:::i;:::-;35514:103;35644:1;35637:5;35633:13;35626:20;;35419:233;;;:::o;35658:172::-;35798:24;35794:1;35786:6;35782:14;35775:48;35658:172;:::o;35836:366::-;35978:3;35999:67;36063:2;36058:3;35999:67;:::i;:::-;35992:74;;36075:93;36164:3;36075:93;:::i;:::-;36193:2;36188:3;36184:12;36177:19;;35836:366;;;:::o;36208:419::-;36374:4;36412:2;36401:9;36397:18;36389:26;;36461:9;36455:4;36451:20;36447:1;36436:9;36432:17;36425:47;36489:131;36615:4;36489:131;:::i;:::-;36481:139;;36208:419;;;:::o;36633:171::-;36773:23;36769:1;36761:6;36757:14;36750:47;36633:171;:::o;36810:366::-;36952:3;36973:67;37037:2;37032:3;36973:67;:::i;:::-;36966:74;;37049:93;37138:3;37049:93;:::i;:::-;37167:2;37162:3;37158:12;37151:19;;36810:366;;;:::o;37182:419::-;37348:4;37386:2;37375:9;37371:18;37363:26;;37435:9;37429:4;37425:20;37421:1;37410:9;37406:17;37399:47;37463:131;37589:4;37463:131;:::i;:::-;37455:139;;37182:419;;;:::o;37607:225::-;37747:34;37743:1;37735:6;37731:14;37724:58;37816:8;37811:2;37803:6;37799:15;37792:33;37607:225;:::o;37838:366::-;37980:3;38001:67;38065:2;38060:3;38001:67;:::i;:::-;37994:74;;38077:93;38166:3;38077:93;:::i;:::-;38195:2;38190:3;38186:12;38179:19;;37838:366;;;:::o;38210:419::-;38376:4;38414:2;38403:9;38399:18;38391:26;;38463:9;38457:4;38453:20;38449:1;38438:9;38434:17;38427:47;38491:131;38617:4;38491:131;:::i;:::-;38483:139;;38210:419;;;:::o;38635:171::-;38674:3;38697:24;38715:5;38697:24;:::i;:::-;38688:33;;38743:4;38736:5;38733:15;38730:41;;38751:18;;:::i;:::-;38730:41;38798:1;38791:5;38787:13;38780:20;;38635:171;;;:::o;38812:182::-;38952:34;38948:1;38940:6;38936:14;38929:58;38812:182;:::o;39000:366::-;39142:3;39163:67;39227:2;39222:3;39163:67;:::i;:::-;39156:74;;39239:93;39328:3;39239:93;:::i;:::-;39357:2;39352:3;39348:12;39341:19;;39000:366;;;:::o;39372:419::-;39538:4;39576:2;39565:9;39561:18;39553:26;;39625:9;39619:4;39615:20;39611:1;39600:9;39596:17;39589:47;39653:131;39779:4;39653:131;:::i;:::-;39645:139;;39372:419;;;:::o;39797:98::-;39848:6;39882:5;39876:12;39866:22;;39797:98;;;:::o;39901:168::-;39984:11;40018:6;40013:3;40006:19;40058:4;40053:3;40049:14;40034:29;;39901:168;;;;:::o;40075:360::-;40161:3;40189:38;40221:5;40189:38;:::i;:::-;40243:70;40306:6;40301:3;40243:70;:::i;:::-;40236:77;;40322:52;40367:6;40362:3;40355:4;40348:5;40344:16;40322:52;:::i;:::-;40399:29;40421:6;40399:29;:::i;:::-;40394:3;40390:39;40383:46;;40165:270;40075:360;;;;:::o;40441:640::-;40636:4;40674:3;40663:9;40659:19;40651:27;;40688:71;40756:1;40745:9;40741:17;40732:6;40688:71;:::i;:::-;40769:72;40837:2;40826:9;40822:18;40813:6;40769:72;:::i;:::-;40851;40919:2;40908:9;40904:18;40895:6;40851:72;:::i;:::-;40970:9;40964:4;40960:20;40955:2;40944:9;40940:18;40933:48;40998:76;41069:4;41060:6;40998:76;:::i;:::-;40990:84;;40441:640;;;;;;;:::o;41087:141::-;41143:5;41174:6;41168:13;41159:22;;41190:32;41216:5;41190:32;:::i;:::-;41087:141;;;;:::o;41234:349::-;41303:6;41352:2;41340:9;41331:7;41327:23;41323:32;41320:119;;;41358:79;;:::i;:::-;41320:119;41478:1;41503:63;41558:7;41549:6;41538:9;41534:22;41503:63;:::i;:::-;41493:73;;41449:127;41234:349;;;;:::o;41589:180::-;41637:77;41634:1;41627:88;41734:4;41731:1;41724:15;41758:4;41755:1;41748:15;41775:174;41915:26;41911:1;41903:6;41899:14;41892:50;41775:174;:::o;41955:366::-;42097:3;42118:67;42182:2;42177:3;42118:67;:::i;:::-;42111:74;;42194:93;42283:3;42194:93;:::i;:::-;42312:2;42307:3;42303:12;42296:19;;41955:366;;;:::o;42327:419::-;42493:4;42531:2;42520:9;42516:18;42508:26;;42580:9;42574:4;42570:20;42566:1;42555:9;42551:17;42544:47;42608:131;42734:4;42608:131;:::i;:::-;42600:139;;42327:419;;;:::o;42752:181::-;42892:33;42888:1;42880:6;42876:14;42869:57;42752:181;:::o;42939:366::-;43081:3;43102:67;43166:2;43161:3;43102:67;:::i;:::-;43095:74;;43178:93;43267:3;43178:93;:::i;:::-;43296:2;43291:3;43287:12;43280:19;;42939:366;;;:::o;43311:419::-;43477:4;43515:2;43504:9;43500:18;43492:26;;43564:9;43558:4;43554:20;43550:1;43539:9;43535:17;43528:47;43592:131;43718:4;43592:131;:::i;:::-;43584:139;;43311:419;;;:::o;43736:221::-;43876:34;43872:1;43864:6;43860:14;43853:58;43945:4;43940:2;43932:6;43928:15;43921:29;43736:221;:::o;43963:366::-;44105:3;44126:67;44190:2;44185:3;44126:67;:::i;:::-;44119:74;;44202:93;44291:3;44202:93;:::i;:::-;44320:2;44315:3;44311:12;44304:19;;43963:366;;;:::o;44335:419::-;44501:4;44539:2;44528:9;44524:18;44516:26;;44588:9;44582:4;44578:20;44574:1;44563:9;44559:17;44552:47;44616:131;44742:4;44616:131;:::i;:::-;44608:139;;44335:419;;;:::o;44760:221::-;44900:34;44896:1;44888:6;44884:14;44877:58;44969:4;44964:2;44956:6;44952:15;44945:29;44760:221;:::o;44987:366::-;45129:3;45150:67;45214:2;45209:3;45150:67;:::i;:::-;45143:74;;45226:93;45315:3;45226:93;:::i;:::-;45344:2;45339:3;45335:12;45328:19;;44987:366;;;:::o;45359:419::-;45525:4;45563:2;45552:9;45548:18;45540:26;;45612:9;45606:4;45602:20;45598:1;45587:9;45583:17;45576:47;45640:131;45766:4;45640:131;:::i;:::-;45632:139;;45359:419;;;:::o;45784:118::-;45871:24;45889:5;45871:24;:::i;:::-;45866:3;45859:37;45784:118;;:::o;45908:86::-;45943:7;45983:4;45976:5;45972:16;45961:27;;45908:86;;;:::o;46000:112::-;46083:22;46099:5;46083:22;:::i;:::-;46078:3;46071:35;46000:112;;:::o;46118:545::-;46291:4;46329:3;46318:9;46314:19;46306:27;;46343:71;46411:1;46400:9;46396:17;46387:6;46343:71;:::i;:::-;46424:68;46488:2;46477:9;46473:18;46464:6;46424:68;:::i;:::-;46502:72;46570:2;46559:9;46555:18;46546:6;46502:72;:::i;:::-;46584;46652:2;46641:9;46637:18;46628:6;46584:72;:::i;:::-;46118:545;;;;;;;:::o

Swarm Source

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