ETH Price: $2,974.66 (-0.65%)
Gas: 6 Gwei

Token

Pablos Manshin (Manshin)
 

Overview

Max Total Supply

135 Manshin

Holders

53

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
7 Manshin
0x51f554a692e45f8212b1c18439f4e587bd6200ad
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:
PablosManshin

Compiler Version
v0.8.7+commit.e28d00a7

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-18
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: pablos manshin.sol


pragma solidity ^0.8.0;





contract PablosManshin is ERC721A, Ownable, ReentrancyGuard {
    // limits
    uint256 public maxPerTransaction = 20;
    uint256 public maxPerWallet = 50;
    uint256 public maxTotalSupply = 5000;
    uint256 public chanceFreeMintsAvailable = 2500;
    uint256 public freeMintsAvailable = 2500;

    // sale states
    bool public isPublicLive = true;
    bool public isWhitelistLive = true;

    // price
    uint256 public mintPrice = 0.02 ether;

    // whitelist config
    bytes32 private merkleTreeRoot;
    mapping(address => uint256) public whitelistMintsPerWallet;

    // metadata
    string public baseURI;

    // config
    mapping(address => uint256) public mintsPerWallet;
    address private withdrawAddress = address(0);

    constructor(string memory name, string memory symbol) ERC721A(name, symbol) {}

    function mintPublic(uint256 _amount) external payable nonReentrant {
        require(isPublicLive, "Sale not live");
        require(_amount > 0, "You must mint at least one");
        require(totalSupply() + _amount <= maxTotalSupply, "Exceeds total supply");
        require(_amount <= maxPerTransaction, "Exceeds max per transaction");
        require(mintsPerWallet[_msgSender()] + _amount <= maxPerWallet, "Exceeds max per wallet");

        // 1 guaranteed free per wallet
        uint256 pricedAmount = freeMintsAvailable > 0 && mintsPerWallet[_msgSender()] == 0
            ? _amount - 1
            : _amount;

        if (pricedAmount < _amount) {
            freeMintsAvailable = freeMintsAvailable - 1;
        }

        require(mintPrice * pricedAmount <= msg.value, "Not enough ETH sent for selected amount");

        uint256 refund = chanceFreeMintsAvailable > 0 && pricedAmount > 0 && isFreeMint()
            ? pricedAmount * mintPrice
            : 0;

        if (refund > 0) {
            chanceFreeMintsAvailable = chanceFreeMintsAvailable - pricedAmount;
        }

        // sends needed ETH back to minter
        payable(_msgSender()).transfer(refund);

        mintsPerWallet[_msgSender()] = mintsPerWallet[_msgSender()] + _amount;

        _safeMint(_msgSender(), _amount);
    }

    function mintWhitelist(bytes32[] memory _proof) external nonReentrant {
        require(isWhitelistLive, "Whitelist sale not live");
        require(totalSupply() + 1 <= maxTotalSupply, "Exceeds total supply");
        require(whitelistMintsPerWallet[_msgSender()] < 1, "Exceeds max whitelist mints per wallet");
        require(MerkleProof.verify(_proof, merkleTreeRoot, keccak256(abi.encodePacked(_msgSender()))), "Invalid proof");

        whitelistMintsPerWallet[_msgSender()] = 1;

        _safeMint(_msgSender(), 1);
    }

    function mintPrivate(address _receiver, uint256 _amount) external onlyOwner {
        require(totalSupply() + _amount <= maxTotalSupply, "Exceeds total supply");
        _safeMint(_receiver, _amount);
    }

    function flipPublicSaleState() external onlyOwner {
        isPublicLive = !isPublicLive;
    }

    function flipWhitelistSaleState() external onlyOwner {
        isWhitelistLive = !isWhitelistLive;
    }

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

    function isFreeMint() internal view returns (bool) {
        return (uint256(keccak256(abi.encodePacked(
            tx.origin,
            blockhash(block.number - 1),
            block.timestamp,
            _msgSender()
        ))) & 0xFFFF) % 2 == 0;
    }

    function withdraw() external onlyOwner {
        require(withdrawAddress != address(0), "No withdraw address");
        payable(withdrawAddress).transfer(address(this).balance);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setFreeMintsAvailable(uint256 _freeMintsAvailable) external onlyOwner {
        freeMintsAvailable = _freeMintsAvailable;
    }

    function setChanceFreeMintsAvailable(uint256 _chanceFreeMintsAvailable) external onlyOwner {
        chanceFreeMintsAvailable = _chanceFreeMintsAvailable;
    }

    function setMaxTotalSupply(uint256 _maxTotalSupply) external onlyOwner {
        maxTotalSupply = _maxTotalSupply;
    }

    function setMaxPerTransaction(uint256 _maxPerTransaction) external onlyOwner {
        maxPerTransaction = _maxPerTransaction;
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function setWithdrawAddress(address _withdrawAddress) external onlyOwner {
        withdrawAddress = _withdrawAddress;
    }

    function setMerkleTreeRoot(bytes32 _merkleTreeRoot) external onlyOwner {
        merkleTreeRoot = _merkleTreeRoot;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"chanceFreeMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhitelistSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintsAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPrivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_chanceFreeMintsAvailable","type":"uint256"}],"name":"setChanceFreeMintsAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintsAvailable","type":"uint256"}],"name":"setFreeMintsAvailable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerTransaction","type":"uint256"}],"name":"setMaxPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"}],"name":"setMaxTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleTreeRoot","type":"bytes32"}],"name":"setMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawAddress","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600a556032600b55611388600c556109c4600d556109c4600e556001600f60006101000a81548160ff0219169083151502179055506001600f60016101000a81548160ff02191690831515021790555066470de4df8200006010556000601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000b057600080fd5b50604051620041d0380380620041d08339818101604052810190620000d6919062000353565b81818160029080519060200190620000f092919062000225565b5080600390805190602001906200010992919062000225565b506200011a6200015260201b60201c565b600081905550505062000142620001366200015760201b60201c565b6200015f60201b60201c565b600160098190555050506200055c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000233906200046d565b90600052602060002090601f016020900481019282620002575760008555620002a3565b82601f106200027257805160ff1916838001178555620002a3565b82800160010185558215620002a3579182015b82811115620002a257825182559160200191906001019062000285565b5b509050620002b29190620002b6565b5090565b5b80821115620002d1576000816000905550600101620002b7565b5090565b6000620002ec620002e68462000401565b620003d8565b9050828152602081018484840111156200030b576200030a6200053c565b5b6200031884828562000437565b509392505050565b600082601f83011262000338576200033762000537565b5b81516200034a848260208601620002d5565b91505092915050565b600080604083850312156200036d576200036c62000546565b5b600083015167ffffffffffffffff8111156200038e576200038d62000541565b5b6200039c8582860162000320565b925050602083015167ffffffffffffffff811115620003c057620003bf62000541565b5b620003ce8582860162000320565b9150509250929050565b6000620003e4620003f7565b9050620003f28282620004a3565b919050565b6000604051905090565b600067ffffffffffffffff8211156200041f576200041e62000508565b5b6200042a826200054b565b9050602081019050919050565b60005b83811015620004575780820151818401526020810190506200043a565b8381111562000467576000848401525b50505050565b600060028204905060018216806200048657607f821691505b602082108114156200049d576200049c620004d9565b5b50919050565b620004ae826200054b565b810181811067ffffffffffffffff82111715620004d057620004cf62000508565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613c64806200056c6000396000f3fe60806040526004361061025b5760003560e01c806355f804b311610144578063a22cb465116100b6578063d1beca641161007a578063d1beca64146108bd578063e268e4d3146108d4578063e985e9c5146108fd578063efd0cbf91461093a578063f2fde38b14610956578063f4a0a5281461097f5761025b565b8063a22cb465146107da578063a5ce1b4d14610803578063b88d4fde1461082e578063c87b56dd14610857578063ccfdd2f8146108945761025b565b806370a082311161010857806370a08231146106ee578063715018a61461072b5780638da5cb5b1461074257806395d89b411461076d578063a10866ef14610798578063a1165f5d146107af5761025b565b806355f804b3146106075780635e5f3ce4146106305780636352211e1461065b5780636817c76c146106985780636c0360eb146106c35761025b565b80633281fa3f116101dd57806342842e0e116101a157806342842e0e146104f957806344d8438114610522578063453c23101461054b5780634b980d67146105765780634d0df5fc146105a157806350dc4656146105de5761025b565b80633281fa3f1461043c5780633627d3a1146104675780633ab1a494146104905780633ccfd60b146104b95780633f3e4c11146104d05761025b565b80630964617e116102245780630964617e1461035757806318160ddd1461038057806323b872dd146103ab57806327a69949146103d45780632ab4d052146104115761025b565b8062d759191461026057806301ffc9a71461028957806306fdde03146102c6578063081812fc146102f1578063095ea7b31461032e575b600080fd5b34801561026c57600080fd5b5061028760048036038101906102829190612e6e565b6109a8565b005b34801561029557600080fd5b506102b060048036038101906102ab9190612dcb565b6109ba565b6040516102bd919061326b565b60405180910390f35b3480156102d257600080fd5b506102db610a4c565b6040516102e89190613286565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190612e6e565b610ade565b6040516103259190613204565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190612d15565b610b5a565b005b34801561036357600080fd5b5061037e60048036038101906103799190612e6e565b610c9b565b005b34801561038c57600080fd5b50610395610cad565b6040516103a29190613448565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612bff565b610cc4565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612b92565b610fe9565b6040516104089190613448565b60405180910390f35b34801561041d57600080fd5b50610426611001565b6040516104339190613448565b60405180910390f35b34801561044857600080fd5b50610451611007565b60405161045e919061326b565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612d15565b61101a565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612b92565b611087565b005b3480156104c557600080fd5b506104ce6110d3565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612e6e565b6111d8565b005b34801561050557600080fd5b50610520600480360381019061051b9190612bff565b6111ea565b005b34801561052e57600080fd5b5061054960048036038101906105449190612d55565b61120a565b005b34801561055757600080fd5b5061056061146a565b60405161056d9190613448565b60405180910390f35b34801561058257600080fd5b5061058b611470565b6040516105989190613448565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190612b92565b611476565b6040516105d59190613448565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612d9e565b61148e565b005b34801561061357600080fd5b5061062e60048036038101906106299190612e25565b6114a0565b005b34801561063c57600080fd5b506106456114c2565b604051610652919061326b565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190612e6e565b6114d5565b60405161068f9190613204565b60405180910390f35b3480156106a457600080fd5b506106ad6114e7565b6040516106ba9190613448565b60405180910390f35b3480156106cf57600080fd5b506106d86114ed565b6040516106e59190613286565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612b92565b61157b565b6040516107229190613448565b60405180910390f35b34801561073757600080fd5b50610740611634565b005b34801561074e57600080fd5b50610757611648565b6040516107649190613204565b60405180910390f35b34801561077957600080fd5b50610782611672565b60405161078f9190613286565b60405180910390f35b3480156107a457600080fd5b506107ad611704565b005b3480156107bb57600080fd5b506107c4611738565b6040516107d19190613448565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc9190612cd5565b61173e565b005b34801561080f57600080fd5b506108186118b6565b6040516108259190613448565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190612c52565b6118bc565b005b34801561086357600080fd5b5061087e60048036038101906108799190612e6e565b61192f565b60405161088b9190613286565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190612e6e565b6119ce565b005b3480156108c957600080fd5b506108d26119e0565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190612e6e565b611a14565b005b34801561090957600080fd5b50610924600480360381019061091f9190612bbf565b611a26565b604051610931919061326b565b60405180910390f35b610954600480360381019061094f9190612e6e565b611aba565b005b34801561096257600080fd5b5061097d60048036038101906109789190612b92565b611f12565b005b34801561098b57600080fd5b506109a660048036038101906109a19190612e6e565b611f96565b005b6109b0611fa8565b80600d8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a455750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a5b906136fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a87906136fd565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b6000610ae982612026565b610b1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b65826114d5565b90508073ffffffffffffffffffffffffffffffffffffffff16610b86612085565b73ffffffffffffffffffffffffffffffffffffffff1614610be957610bb281610bad612085565b611a26565b610be8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ca3611fa8565b80600e8190555050565b6000610cb761208d565b6001546000540303905090565b6000610ccf82612092565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d4284612160565b91509150610d588187610d53612085565b612182565b610da457610d6d86610d68612085565b611a26565b610da3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e0b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e1886868660016121c6565b8015610e2357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ef185610ecd8888876121cc565b7c0200000000000000000000000000000000000000000000000000000000176121f4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f79576000600185019050600060046000838152602001908152602001600020541415610f77576000548114610f76578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fe1868686600161221f565b505050505050565b60126020528060005260406000206000915090505481565b600c5481565b600f60019054906101000a900460ff1681565b611022611fa8565b600c548161102e610cad565b6110389190613559565b1115611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906132e8565b60405180910390fd5b6110838282612225565b5050565b61108f611fa8565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110db611fa8565b600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906132c8565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156111d5573d6000803e3d6000fd5b50565b6111e0611fa8565b80600c8190555050565b611205838383604051806020016040528060008152506118bc565b505050565b60026009541415611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613428565b60405180910390fd5b6002600981905550600f60019054906101000a900460ff166112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90613348565b60405180910390fd5b600c5460016112b4610cad565b6112be9190613559565b11156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906132e8565b60405180910390fd5b60016012600061130d612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613308565b60405180910390fd5b6113c281601154611397612243565b6040516020016113a79190613177565b6040516020818303038152906040528051906020012061224b565b611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f8906133e8565b60405180910390fd5b60016012600061140f612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145f611458612243565b6001612225565b600160098190555050565b600b5481565b600a5481565b60146020528060005260406000206000915090505481565b611496611fa8565b8060118190555050565b6114a8611fa8565b80601390805190602001906114be9291906128f3565b5050565b600f60009054906101000a900460ff1681565b60006114e082612092565b9050919050565b60105481565b601380546114fa906136fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611526906136fd565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61163c611fa8565b6116466000612262565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611681906136fd565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad906136fd565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b61170c611fa8565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b611746612085565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b8612085565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611865612085565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118aa919061326b565b60405180910390a35050565b600d5481565b6118c7848484610cc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611929576118f284848484612328565b611928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061193a82612026565b611970576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061197a612488565b905060008151141561199b57604051806020016040528060008152506119c6565b806119a58461251a565b6040516020016119b69291906131e0565b6040516020818303038152906040525b915050919050565b6119d6611fa8565b80600a8190555050565b6119e8611fa8565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b611a1c611fa8565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60026009541415611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790613428565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff16611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613368565b60405180910390fd5b60008111611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190613328565b60405180910390fd5b600c5481611ba6610cad565b611bb09190613559565b1115611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906132e8565b60405180910390fd5b600a54811115611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d906133c8565b60405180910390fd5b600b548160146000611c46612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8b9190613559565b1115611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613408565b60405180910390fd5b600080600e54118015611d255750600060146000611ce8612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b611d2f5781611d3d565b600182611d3c9190613609565b5b905081811015611d5d576001600e54611d569190613609565b600e819055505b3481601054611d6c91906135af565b1115611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da4906133a8565b60405180910390fd5b600080600d54118015611dc05750600082115b8015611dd05750611dcf612574565b5b611ddb576000611dea565b60105482611de991906135af565b5b90506000811115611e0a5781600d54611e039190613609565b600d819055505b611e12612243565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e57573d6000803e3d6000fd5b508260146000611e65612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eaa9190613559565b60146000611eb6612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f05611eff612243565b84612225565b5050600160098190555050565b611f1a611fa8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f81906132a8565b60405180910390fd5b611f9381612262565b50565b611f9e611fa8565b8060108190555050565b611fb0612243565b73ffffffffffffffffffffffffffffffffffffffff16611fce611648565b73ffffffffffffffffffffffffffffffffffffffff1614612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613388565b60405180910390fd5b565b60008161203161208d565b11158015612040575060005482105b801561207e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806120a161208d565b11612129576000548110156121285760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612126575b600081141561211c5760046000836001900393508381526020019081526020016000205490506120f1565b809250505061215b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121e38686846125d1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61223f8282604051806020016040528060008152506125da565b5050565b600033905090565b6000826122588584612677565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261234e612085565b8786866040518563ffffffff1660e01b8152600401612370949392919061321f565b602060405180830381600087803b15801561238a57600080fd5b505af19250505080156123bb57506040513d601f19601f820116820180604052508101906123b89190612df8565b60015b612435573d80600081146123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b5060008151141561242d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060138054612497906136fd565b80601f01602080910402602001604051908101604052809291908181526020018280546124c3906136fd565b80156125105780601f106124e557610100808354040283529160200191612510565b820191906000526020600020905b8154815290600101906020018083116124f357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561256057600183039250600a81066030018353600a81049050612540565b508181036020830392508083525050919050565b600080600261ffff3260014361258a9190613609565b4042612594612243565b6040516020016125a79493929190613192565b6040516020818303038152906040528051906020012060001c166125cb91906137e1565b14905090565b60009392505050565b6125e483836126cd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461267257600080549050600083820390505b6126246000868380600101945086612328565b61265a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261157816000541461266f57600080fd5b50505b505050565b60008082905060005b84518110156126c2576126ad828683815181106126a05761269f61389f565b5b60200260200101516128a1565b915080806126ba90613760565b915050612680565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561273a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612775576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278260008483856121c6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127f9836127ea60008660006121cc565b6127f3856128cc565b176121f4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061281d5780600081905550505061289c600084838561221f565b505050565b60008183106128b9576128b482846128dc565b6128c4565b6128c383836128dc565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546128ff906136fd565b90600052602060002090601f0160209004810192826129215760008555612968565b82601f1061293a57805160ff1916838001178555612968565b82800160010185558215612968579182015b8281111561296757825182559160200191906001019061294c565b5b5090506129759190612979565b5090565b5b8082111561299257600081600090555060010161297a565b5090565b60006129a96129a484613488565b613463565b905080838252602082019050828560208602820111156129cc576129cb613902565b5b60005b858110156129fc57816129e28882612ae2565b8452602084019350602083019250506001810190506129cf565b5050509392505050565b6000612a19612a14846134b4565b613463565b905082815260208101848484011115612a3557612a34613907565b5b612a408482856136bb565b509392505050565b6000612a5b612a56846134e5565b613463565b905082815260208101848484011115612a7757612a76613907565b5b612a828482856136bb565b509392505050565b600081359050612a9981613bbb565b92915050565b600082601f830112612ab457612ab36138fd565b5b8135612ac4848260208601612996565b91505092915050565b600081359050612adc81613bd2565b92915050565b600081359050612af181613be9565b92915050565b600081359050612b0681613c00565b92915050565b600081519050612b1b81613c00565b92915050565b600082601f830112612b3657612b356138fd565b5b8135612b46848260208601612a06565b91505092915050565b600082601f830112612b6457612b636138fd565b5b8135612b74848260208601612a48565b91505092915050565b600081359050612b8c81613c17565b92915050565b600060208284031215612ba857612ba7613911565b5b6000612bb684828501612a8a565b91505092915050565b60008060408385031215612bd657612bd5613911565b5b6000612be485828601612a8a565b9250506020612bf585828601612a8a565b9150509250929050565b600080600060608486031215612c1857612c17613911565b5b6000612c2686828701612a8a565b9350506020612c3786828701612a8a565b9250506040612c4886828701612b7d565b9150509250925092565b60008060008060808587031215612c6c57612c6b613911565b5b6000612c7a87828801612a8a565b9450506020612c8b87828801612a8a565b9350506040612c9c87828801612b7d565b925050606085013567ffffffffffffffff811115612cbd57612cbc61390c565b5b612cc987828801612b21565b91505092959194509250565b60008060408385031215612cec57612ceb613911565b5b6000612cfa85828601612a8a565b9250506020612d0b85828601612acd565b9150509250929050565b60008060408385031215612d2c57612d2b613911565b5b6000612d3a85828601612a8a565b9250506020612d4b85828601612b7d565b9150509250929050565b600060208284031215612d6b57612d6a613911565b5b600082013567ffffffffffffffff811115612d8957612d8861390c565b5b612d9584828501612a9f565b91505092915050565b600060208284031215612db457612db3613911565b5b6000612dc284828501612ae2565b91505092915050565b600060208284031215612de157612de0613911565b5b6000612def84828501612af7565b91505092915050565b600060208284031215612e0e57612e0d613911565b5b6000612e1c84828501612b0c565b91505092915050565b600060208284031215612e3b57612e3a613911565b5b600082013567ffffffffffffffff811115612e5957612e5861390c565b5b612e6584828501612b4f565b91505092915050565b600060208284031215612e8457612e83613911565b5b6000612e9284828501612b7d565b91505092915050565b612ea48161363d565b82525050565b612ebb612eb68261363d565b6137a9565b82525050565b612eca8161364f565b82525050565b612ee1612edc8261365b565b6137bb565b82525050565b6000612ef282613516565b612efc818561352c565b9350612f0c8185602086016136ca565b612f1581613916565b840191505092915050565b6000612f2b82613521565b612f35818561353d565b9350612f458185602086016136ca565b612f4e81613916565b840191505092915050565b6000612f6482613521565b612f6e818561354e565b9350612f7e8185602086016136ca565b80840191505092915050565b6000612f9760268361353d565b9150612fa282613934565b604082019050919050565b6000612fba60138361353d565b9150612fc582613983565b602082019050919050565b6000612fdd60148361353d565b9150612fe8826139ac565b602082019050919050565b600061300060268361353d565b915061300b826139d5565b604082019050919050565b6000613023601a8361353d565b915061302e82613a24565b602082019050919050565b600061304660178361353d565b915061305182613a4d565b602082019050919050565b6000613069600d8361353d565b915061307482613a76565b602082019050919050565b600061308c60208361353d565b915061309782613a9f565b602082019050919050565b60006130af60278361353d565b91506130ba82613ac8565b604082019050919050565b60006130d2601b8361353d565b91506130dd82613b17565b602082019050919050565b60006130f5600d8361353d565b915061310082613b40565b602082019050919050565b600061311860168361353d565b915061312382613b69565b602082019050919050565b600061313b601f8361353d565b915061314682613b92565b602082019050919050565b61315a816136b1565b82525050565b61317161316c826136b1565b6137d7565b82525050565b60006131838284612eaa565b60148201915081905092915050565b600061319e8287612eaa565b6014820191506131ae8286612ed0565b6020820191506131be8285613160565b6020820191506131ce8284612eaa565b60148201915081905095945050505050565b60006131ec8285612f59565b91506131f88284612f59565b91508190509392505050565b60006020820190506132196000830184612e9b565b92915050565b60006080820190506132346000830187612e9b565b6132416020830186612e9b565b61324e6040830185613151565b81810360608301526132608184612ee7565b905095945050505050565b60006020820190506132806000830184612ec1565b92915050565b600060208201905081810360008301526132a08184612f20565b905092915050565b600060208201905081810360008301526132c181612f8a565b9050919050565b600060208201905081810360008301526132e181612fad565b9050919050565b6000602082019050818103600083015261330181612fd0565b9050919050565b6000602082019050818103600083015261332181612ff3565b9050919050565b6000602082019050818103600083015261334181613016565b9050919050565b6000602082019050818103600083015261336181613039565b9050919050565b600060208201905081810360008301526133818161305c565b9050919050565b600060208201905081810360008301526133a18161307f565b9050919050565b600060208201905081810360008301526133c1816130a2565b9050919050565b600060208201905081810360008301526133e1816130c5565b9050919050565b60006020820190508181036000830152613401816130e8565b9050919050565b600060208201905081810360008301526134218161310b565b9050919050565b600060208201905081810360008301526134418161312e565b9050919050565b600060208201905061345d6000830184613151565b92915050565b600061346d61347e565b9050613479828261372f565b919050565b6000604051905090565b600067ffffffffffffffff8211156134a3576134a26138ce565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134cf576134ce6138ce565b5b6134d882613916565b9050602081019050919050565b600067ffffffffffffffff821115613500576134ff6138ce565b5b61350982613916565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613564826136b1565b915061356f836136b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135a4576135a3613812565b5b828201905092915050565b60006135ba826136b1565b91506135c5836136b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135fe576135fd613812565b5b828202905092915050565b6000613614826136b1565b915061361f836136b1565b92508282101561363257613631613812565b5b828203905092915050565b600061364882613691565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136e85780820151818401526020810190506136cd565b838111156136f7576000848401525b50505050565b6000600282049050600182168061371557607f821691505b6020821081141561372957613728613870565b5b50919050565b61373882613916565b810181811067ffffffffffffffff82111715613757576137566138ce565b5b80604052505050565b600061376b826136b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561379e5761379d613812565b5b600182019050919050565b60006137b4826137c5565b9050919050565b6000819050919050565b60006137d082613927565b9050919050565b6000819050919050565b60006137ec826136b1565b91506137f7836136b1565b92508261380757613806613841565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f207769746864726177206164647265737300000000000000000000000000600082015250565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f45786365656473206d61782077686974656c697374206d696e7473207065722060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b7f57686974656c6973742073616c65206e6f74206c697665000000000000000000600082015250565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768204554482073656e7420666f722073656c656374656460008201527f20616d6f756e7400000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613bc48161363d565b8114613bcf57600080fd5b50565b613bdb8161364f565b8114613be657600080fd5b50565b613bf28161365b565b8114613bfd57600080fd5b50565b613c0981613665565b8114613c1457600080fd5b50565b613c20816136b1565b8114613c2b57600080fd5b5056fea2646970667358221220cd047f414aa70029d9b8029ad87796a9c934b3f8a907da9bc55a22cb3ede39b064736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e5061626c6f73204d616e7368696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d616e7368696e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025b5760003560e01c806355f804b311610144578063a22cb465116100b6578063d1beca641161007a578063d1beca64146108bd578063e268e4d3146108d4578063e985e9c5146108fd578063efd0cbf91461093a578063f2fde38b14610956578063f4a0a5281461097f5761025b565b8063a22cb465146107da578063a5ce1b4d14610803578063b88d4fde1461082e578063c87b56dd14610857578063ccfdd2f8146108945761025b565b806370a082311161010857806370a08231146106ee578063715018a61461072b5780638da5cb5b1461074257806395d89b411461076d578063a10866ef14610798578063a1165f5d146107af5761025b565b806355f804b3146106075780635e5f3ce4146106305780636352211e1461065b5780636817c76c146106985780636c0360eb146106c35761025b565b80633281fa3f116101dd57806342842e0e116101a157806342842e0e146104f957806344d8438114610522578063453c23101461054b5780634b980d67146105765780634d0df5fc146105a157806350dc4656146105de5761025b565b80633281fa3f1461043c5780633627d3a1146104675780633ab1a494146104905780633ccfd60b146104b95780633f3e4c11146104d05761025b565b80630964617e116102245780630964617e1461035757806318160ddd1461038057806323b872dd146103ab57806327a69949146103d45780632ab4d052146104115761025b565b8062d759191461026057806301ffc9a71461028957806306fdde03146102c6578063081812fc146102f1578063095ea7b31461032e575b600080fd5b34801561026c57600080fd5b5061028760048036038101906102829190612e6e565b6109a8565b005b34801561029557600080fd5b506102b060048036038101906102ab9190612dcb565b6109ba565b6040516102bd919061326b565b60405180910390f35b3480156102d257600080fd5b506102db610a4c565b6040516102e89190613286565b60405180910390f35b3480156102fd57600080fd5b5061031860048036038101906103139190612e6e565b610ade565b6040516103259190613204565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190612d15565b610b5a565b005b34801561036357600080fd5b5061037e60048036038101906103799190612e6e565b610c9b565b005b34801561038c57600080fd5b50610395610cad565b6040516103a29190613448565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd9190612bff565b610cc4565b005b3480156103e057600080fd5b506103fb60048036038101906103f69190612b92565b610fe9565b6040516104089190613448565b60405180910390f35b34801561041d57600080fd5b50610426611001565b6040516104339190613448565b60405180910390f35b34801561044857600080fd5b50610451611007565b60405161045e919061326b565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612d15565b61101a565b005b34801561049c57600080fd5b506104b760048036038101906104b29190612b92565b611087565b005b3480156104c557600080fd5b506104ce6110d3565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612e6e565b6111d8565b005b34801561050557600080fd5b50610520600480360381019061051b9190612bff565b6111ea565b005b34801561052e57600080fd5b5061054960048036038101906105449190612d55565b61120a565b005b34801561055757600080fd5b5061056061146a565b60405161056d9190613448565b60405180910390f35b34801561058257600080fd5b5061058b611470565b6040516105989190613448565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190612b92565b611476565b6040516105d59190613448565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612d9e565b61148e565b005b34801561061357600080fd5b5061062e60048036038101906106299190612e25565b6114a0565b005b34801561063c57600080fd5b506106456114c2565b604051610652919061326b565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190612e6e565b6114d5565b60405161068f9190613204565b60405180910390f35b3480156106a457600080fd5b506106ad6114e7565b6040516106ba9190613448565b60405180910390f35b3480156106cf57600080fd5b506106d86114ed565b6040516106e59190613286565b60405180910390f35b3480156106fa57600080fd5b5061071560048036038101906107109190612b92565b61157b565b6040516107229190613448565b60405180910390f35b34801561073757600080fd5b50610740611634565b005b34801561074e57600080fd5b50610757611648565b6040516107649190613204565b60405180910390f35b34801561077957600080fd5b50610782611672565b60405161078f9190613286565b60405180910390f35b3480156107a457600080fd5b506107ad611704565b005b3480156107bb57600080fd5b506107c4611738565b6040516107d19190613448565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc9190612cd5565b61173e565b005b34801561080f57600080fd5b506108186118b6565b6040516108259190613448565b60405180910390f35b34801561083a57600080fd5b5061085560048036038101906108509190612c52565b6118bc565b005b34801561086357600080fd5b5061087e60048036038101906108799190612e6e565b61192f565b60405161088b9190613286565b60405180910390f35b3480156108a057600080fd5b506108bb60048036038101906108b69190612e6e565b6119ce565b005b3480156108c957600080fd5b506108d26119e0565b005b3480156108e057600080fd5b506108fb60048036038101906108f69190612e6e565b611a14565b005b34801561090957600080fd5b50610924600480360381019061091f9190612bbf565b611a26565b604051610931919061326b565b60405180910390f35b610954600480360381019061094f9190612e6e565b611aba565b005b34801561096257600080fd5b5061097d60048036038101906109789190612b92565b611f12565b005b34801561098b57600080fd5b506109a660048036038101906109a19190612e6e565b611f96565b005b6109b0611fa8565b80600d8190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a455750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a5b906136fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a87906136fd565b8015610ad45780601f10610aa957610100808354040283529160200191610ad4565b820191906000526020600020905b815481529060010190602001808311610ab757829003601f168201915b5050505050905090565b6000610ae982612026565b610b1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b65826114d5565b90508073ffffffffffffffffffffffffffffffffffffffff16610b86612085565b73ffffffffffffffffffffffffffffffffffffffff1614610be957610bb281610bad612085565b611a26565b610be8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ca3611fa8565b80600e8190555050565b6000610cb761208d565b6001546000540303905090565b6000610ccf82612092565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d4284612160565b91509150610d588187610d53612085565b612182565b610da457610d6d86610d68612085565b611a26565b610da3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e0b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e1886868660016121c6565b8015610e2357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ef185610ecd8888876121cc565b7c0200000000000000000000000000000000000000000000000000000000176121f4565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f79576000600185019050600060046000838152602001908152602001600020541415610f77576000548114610f76578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fe1868686600161221f565b505050505050565b60126020528060005260406000206000915090505481565b600c5481565b600f60019054906101000a900460ff1681565b611022611fa8565b600c548161102e610cad565b6110389190613559565b1115611079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611070906132e8565b60405180910390fd5b6110838282612225565b5050565b61108f611fa8565b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110db611fa8565b600073ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561116d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611164906132c8565b60405180910390fd5b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156111d5573d6000803e3d6000fd5b50565b6111e0611fa8565b80600c8190555050565b611205838383604051806020016040528060008152506118bc565b505050565b60026009541415611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613428565b60405180910390fd5b6002600981905550600f60019054906101000a900460ff166112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90613348565b60405180910390fd5b600c5460016112b4610cad565b6112be9190613559565b11156112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906132e8565b60405180910390fd5b60016012600061130d612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613308565b60405180910390fd5b6113c281601154611397612243565b6040516020016113a79190613177565b6040516020818303038152906040528051906020012061224b565b611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f8906133e8565b60405180910390fd5b60016012600061140f612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061145f611458612243565b6001612225565b600160098190555050565b600b5481565b600a5481565b60146020528060005260406000206000915090505481565b611496611fa8565b8060118190555050565b6114a8611fa8565b80601390805190602001906114be9291906128f3565b5050565b600f60009054906101000a900460ff1681565b60006114e082612092565b9050919050565b60105481565b601380546114fa906136fd565b80601f0160208091040260200160405190810160405280929190818152602001828054611526906136fd565b80156115735780601f1061154857610100808354040283529160200191611573565b820191906000526020600020905b81548152906001019060200180831161155657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115e3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61163c611fa8565b6116466000612262565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611681906136fd565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad906136fd565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b5050505050905090565b61170c611fa8565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b611746612085565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b8612085565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611865612085565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118aa919061326b565b60405180910390a35050565b600d5481565b6118c7848484610cc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611929576118f284848484612328565b611928576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061193a82612026565b611970576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061197a612488565b905060008151141561199b57604051806020016040528060008152506119c6565b806119a58461251a565b6040516020016119b69291906131e0565b6040516020818303038152906040525b915050919050565b6119d6611fa8565b80600a8190555050565b6119e8611fa8565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b611a1c611fa8565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60026009541415611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790613428565b60405180910390fd5b6002600981905550600f60009054906101000a900460ff16611b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4e90613368565b60405180910390fd5b60008111611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190613328565b60405180910390fd5b600c5481611ba6610cad565b611bb09190613559565b1115611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906132e8565b60405180910390fd5b600a54811115611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d906133c8565b60405180910390fd5b600b548160146000611c46612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c8b9190613559565b1115611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390613408565b60405180910390fd5b600080600e54118015611d255750600060146000611ce8612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054145b611d2f5781611d3d565b600182611d3c9190613609565b5b905081811015611d5d576001600e54611d569190613609565b600e819055505b3481601054611d6c91906135af565b1115611dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da4906133a8565b60405180910390fd5b600080600d54118015611dc05750600082115b8015611dd05750611dcf612574565b5b611ddb576000611dea565b60105482611de991906135af565b5b90506000811115611e0a5781600d54611e039190613609565b600d819055505b611e12612243565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e57573d6000803e3d6000fd5b508260146000611e65612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611eaa9190613559565b60146000611eb6612243565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f05611eff612243565b84612225565b5050600160098190555050565b611f1a611fa8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f81906132a8565b60405180910390fd5b611f9381612262565b50565b611f9e611fa8565b8060108190555050565b611fb0612243565b73ffffffffffffffffffffffffffffffffffffffff16611fce611648565b73ffffffffffffffffffffffffffffffffffffffff1614612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b90613388565b60405180910390fd5b565b60008161203161208d565b11158015612040575060005482105b801561207e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b600080829050806120a161208d565b11612129576000548110156121285760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612126575b600081141561211c5760046000836001900393508381526020019081526020016000205490506120f1565b809250505061215b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121e38686846125d1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61223f8282604051806020016040528060008152506125da565b5050565b600033905090565b6000826122588584612677565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261234e612085565b8786866040518563ffffffff1660e01b8152600401612370949392919061321f565b602060405180830381600087803b15801561238a57600080fd5b505af19250505080156123bb57506040513d601f19601f820116820180604052508101906123b89190612df8565b60015b612435573d80600081146123eb576040519150601f19603f3d011682016040523d82523d6000602084013e6123f0565b606091505b5060008151141561242d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060138054612497906136fd565b80601f01602080910402602001604051908101604052809291908181526020018280546124c3906136fd565b80156125105780601f106124e557610100808354040283529160200191612510565b820191906000526020600020905b8154815290600101906020018083116124f357829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561256057600183039250600a81066030018353600a81049050612540565b508181036020830392508083525050919050565b600080600261ffff3260014361258a9190613609565b4042612594612243565b6040516020016125a79493929190613192565b6040516020818303038152906040528051906020012060001c166125cb91906137e1565b14905090565b60009392505050565b6125e483836126cd565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461267257600080549050600083820390505b6126246000868380600101945086612328565b61265a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061261157816000541461266f57600080fd5b50505b505050565b60008082905060005b84518110156126c2576126ad828683815181106126a05761269f61389f565b5b60200260200101516128a1565b915080806126ba90613760565b915050612680565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561273a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612775576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61278260008483856121c6565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127f9836127ea60008660006121cc565b6127f3856128cc565b176121f4565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061281d5780600081905550505061289c600084838561221f565b505050565b60008183106128b9576128b482846128dc565b6128c4565b6128c383836128dc565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546128ff906136fd565b90600052602060002090601f0160209004810192826129215760008555612968565b82601f1061293a57805160ff1916838001178555612968565b82800160010185558215612968579182015b8281111561296757825182559160200191906001019061294c565b5b5090506129759190612979565b5090565b5b8082111561299257600081600090555060010161297a565b5090565b60006129a96129a484613488565b613463565b905080838252602082019050828560208602820111156129cc576129cb613902565b5b60005b858110156129fc57816129e28882612ae2565b8452602084019350602083019250506001810190506129cf565b5050509392505050565b6000612a19612a14846134b4565b613463565b905082815260208101848484011115612a3557612a34613907565b5b612a408482856136bb565b509392505050565b6000612a5b612a56846134e5565b613463565b905082815260208101848484011115612a7757612a76613907565b5b612a828482856136bb565b509392505050565b600081359050612a9981613bbb565b92915050565b600082601f830112612ab457612ab36138fd565b5b8135612ac4848260208601612996565b91505092915050565b600081359050612adc81613bd2565b92915050565b600081359050612af181613be9565b92915050565b600081359050612b0681613c00565b92915050565b600081519050612b1b81613c00565b92915050565b600082601f830112612b3657612b356138fd565b5b8135612b46848260208601612a06565b91505092915050565b600082601f830112612b6457612b636138fd565b5b8135612b74848260208601612a48565b91505092915050565b600081359050612b8c81613c17565b92915050565b600060208284031215612ba857612ba7613911565b5b6000612bb684828501612a8a565b91505092915050565b60008060408385031215612bd657612bd5613911565b5b6000612be485828601612a8a565b9250506020612bf585828601612a8a565b9150509250929050565b600080600060608486031215612c1857612c17613911565b5b6000612c2686828701612a8a565b9350506020612c3786828701612a8a565b9250506040612c4886828701612b7d565b9150509250925092565b60008060008060808587031215612c6c57612c6b613911565b5b6000612c7a87828801612a8a565b9450506020612c8b87828801612a8a565b9350506040612c9c87828801612b7d565b925050606085013567ffffffffffffffff811115612cbd57612cbc61390c565b5b612cc987828801612b21565b91505092959194509250565b60008060408385031215612cec57612ceb613911565b5b6000612cfa85828601612a8a565b9250506020612d0b85828601612acd565b9150509250929050565b60008060408385031215612d2c57612d2b613911565b5b6000612d3a85828601612a8a565b9250506020612d4b85828601612b7d565b9150509250929050565b600060208284031215612d6b57612d6a613911565b5b600082013567ffffffffffffffff811115612d8957612d8861390c565b5b612d9584828501612a9f565b91505092915050565b600060208284031215612db457612db3613911565b5b6000612dc284828501612ae2565b91505092915050565b600060208284031215612de157612de0613911565b5b6000612def84828501612af7565b91505092915050565b600060208284031215612e0e57612e0d613911565b5b6000612e1c84828501612b0c565b91505092915050565b600060208284031215612e3b57612e3a613911565b5b600082013567ffffffffffffffff811115612e5957612e5861390c565b5b612e6584828501612b4f565b91505092915050565b600060208284031215612e8457612e83613911565b5b6000612e9284828501612b7d565b91505092915050565b612ea48161363d565b82525050565b612ebb612eb68261363d565b6137a9565b82525050565b612eca8161364f565b82525050565b612ee1612edc8261365b565b6137bb565b82525050565b6000612ef282613516565b612efc818561352c565b9350612f0c8185602086016136ca565b612f1581613916565b840191505092915050565b6000612f2b82613521565b612f35818561353d565b9350612f458185602086016136ca565b612f4e81613916565b840191505092915050565b6000612f6482613521565b612f6e818561354e565b9350612f7e8185602086016136ca565b80840191505092915050565b6000612f9760268361353d565b9150612fa282613934565b604082019050919050565b6000612fba60138361353d565b9150612fc582613983565b602082019050919050565b6000612fdd60148361353d565b9150612fe8826139ac565b602082019050919050565b600061300060268361353d565b915061300b826139d5565b604082019050919050565b6000613023601a8361353d565b915061302e82613a24565b602082019050919050565b600061304660178361353d565b915061305182613a4d565b602082019050919050565b6000613069600d8361353d565b915061307482613a76565b602082019050919050565b600061308c60208361353d565b915061309782613a9f565b602082019050919050565b60006130af60278361353d565b91506130ba82613ac8565b604082019050919050565b60006130d2601b8361353d565b91506130dd82613b17565b602082019050919050565b60006130f5600d8361353d565b915061310082613b40565b602082019050919050565b600061311860168361353d565b915061312382613b69565b602082019050919050565b600061313b601f8361353d565b915061314682613b92565b602082019050919050565b61315a816136b1565b82525050565b61317161316c826136b1565b6137d7565b82525050565b60006131838284612eaa565b60148201915081905092915050565b600061319e8287612eaa565b6014820191506131ae8286612ed0565b6020820191506131be8285613160565b6020820191506131ce8284612eaa565b60148201915081905095945050505050565b60006131ec8285612f59565b91506131f88284612f59565b91508190509392505050565b60006020820190506132196000830184612e9b565b92915050565b60006080820190506132346000830187612e9b565b6132416020830186612e9b565b61324e6040830185613151565b81810360608301526132608184612ee7565b905095945050505050565b60006020820190506132806000830184612ec1565b92915050565b600060208201905081810360008301526132a08184612f20565b905092915050565b600060208201905081810360008301526132c181612f8a565b9050919050565b600060208201905081810360008301526132e181612fad565b9050919050565b6000602082019050818103600083015261330181612fd0565b9050919050565b6000602082019050818103600083015261332181612ff3565b9050919050565b6000602082019050818103600083015261334181613016565b9050919050565b6000602082019050818103600083015261336181613039565b9050919050565b600060208201905081810360008301526133818161305c565b9050919050565b600060208201905081810360008301526133a18161307f565b9050919050565b600060208201905081810360008301526133c1816130a2565b9050919050565b600060208201905081810360008301526133e1816130c5565b9050919050565b60006020820190508181036000830152613401816130e8565b9050919050565b600060208201905081810360008301526134218161310b565b9050919050565b600060208201905081810360008301526134418161312e565b9050919050565b600060208201905061345d6000830184613151565b92915050565b600061346d61347e565b9050613479828261372f565b919050565b6000604051905090565b600067ffffffffffffffff8211156134a3576134a26138ce565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134cf576134ce6138ce565b5b6134d882613916565b9050602081019050919050565b600067ffffffffffffffff821115613500576134ff6138ce565b5b61350982613916565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613564826136b1565b915061356f836136b1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135a4576135a3613812565b5b828201905092915050565b60006135ba826136b1565b91506135c5836136b1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135fe576135fd613812565b5b828202905092915050565b6000613614826136b1565b915061361f836136b1565b92508282101561363257613631613812565b5b828203905092915050565b600061364882613691565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136e85780820151818401526020810190506136cd565b838111156136f7576000848401525b50505050565b6000600282049050600182168061371557607f821691505b6020821081141561372957613728613870565b5b50919050565b61373882613916565b810181811067ffffffffffffffff82111715613757576137566138ce565b5b80604052505050565b600061376b826136b1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561379e5761379d613812565b5b600182019050919050565b60006137b4826137c5565b9050919050565b6000819050919050565b60006137d082613927565b9050919050565b6000819050919050565b60006137ec826136b1565b91506137f7836136b1565b92508261380757613806613841565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f207769746864726177206164647265737300000000000000000000000000600082015250565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f45786365656473206d61782077686974656c697374206d696e7473207065722060008201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206d696e74206174206c65617374206f6e65000000000000600082015250565b7f57686974656c6973742073616c65206e6f74206c697665000000000000000000600082015250565b7f53616c65206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768204554482073656e7420666f722073656c656374656460008201527f20616d6f756e7400000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b7f496e76616c69642070726f6f6600000000000000000000000000000000000000600082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613bc48161363d565b8114613bcf57600080fd5b50565b613bdb8161364f565b8114613be657600080fd5b50565b613bf28161365b565b8114613bfd57600080fd5b50565b613c0981613665565b8114613c1457600080fd5b50565b613c20816136b1565b8114613c2b57600080fd5b5056fea2646970667358221220cd047f414aa70029d9b8029ad87796a9c934b3f8a907da9bc55a22cb3ede39b064736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000e5061626c6f73204d616e7368696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d616e7368696e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Pablos Manshin
Arg [1] : symbol (string): Manshin

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 5061626c6f73204d616e7368696e000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4d616e7368696e00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59869:4965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63897:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29669:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37262:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36810:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63751:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28723:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46527:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60402:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60034:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60237:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62620:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64575:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63447:186;;;;;;;;;;;;;:::i;:::-;;64067:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38152:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62075:537;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59995:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59951:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60531:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64709:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64461:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60199:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35105:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60294:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60486:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30348:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14260:103;;;;;;;;;;;;;:::i;:::-;;13612:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35485:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62837:97;;;;;;;;;;;;;:::i;:::-;;60130:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37538:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60077:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38408:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35660:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64197:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62942:106;;;;;;;;;;;;;:::i;:::-;;64339:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37917:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60726:1341;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14518:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63641:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63897:162;13498:13;:11;:13::i;:::-;64026:25:::1;63999:24;:52;;;;63897:162:::0;:::o;29669:615::-;29754:4;30069:10;30054:25;;:11;:25;;;;:102;;;;30146:10;30131:25;;:11;:25;;;;30054:102;:179;;;;30223:10;30208:25;;:11;:25;;;;30054:179;30034:199;;29669:615;;;:::o;35316:100::-;35370:13;35403:5;35396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35316:100;:::o;37262:204::-;37330:7;37355:16;37363:7;37355;:16::i;:::-;37350:64;;37380:34;;;;;;;;;;;;;;37350:64;37434:15;:24;37450:7;37434:24;;;;;;;;;;;;;;;;;;;;;37427:31;;37262:204;;;:::o;36810:386::-;36883:13;36899:16;36907:7;36899;:16::i;:::-;36883:32;;36955:5;36932:28;;:19;:17;:19::i;:::-;:28;;;36928:175;;36980:44;36997:5;37004:19;:17;:19::i;:::-;36980:16;:44::i;:::-;36975:128;;37052:35;;;;;;;;;;;;;;36975:128;36928:175;37142:2;37115:15;:24;37131:7;37115:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37180:7;37176:2;37160:28;;37169:5;37160:28;;;;;;;;;;;;36872:324;36810:386;;:::o;63751:138::-;13498:13;:11;:13::i;:::-;63862:19:::1;63841:18;:40;;;;63751:138:::0;:::o;28723:315::-;28776:7;29004:15;:13;:15::i;:::-;28989:12;;28973:13;;:28;:46;28966:53;;28723:315;:::o;46527:2800::-;46661:27;46691;46710:7;46691:18;:27::i;:::-;46661:57;;46776:4;46735:45;;46751:19;46735:45;;;46731:86;;46789:28;;;;;;;;;;;;;;46731:86;46831:27;46860:23;46887:28;46907:7;46887:19;:28::i;:::-;46830:85;;;;47015:62;47034:15;47051:4;47057:19;:17;:19::i;:::-;47015:18;:62::i;:::-;47010:174;;47097:43;47114:4;47120:19;:17;:19::i;:::-;47097:16;:43::i;:::-;47092:92;;47149:35;;;;;;;;;;;;;;47092:92;47010:174;47215:1;47201:16;;:2;:16;;;47197:52;;;47226:23;;;;;;;;;;;;;;47197:52;47262:43;47284:4;47290:2;47294:7;47303:1;47262:21;:43::i;:::-;47398:15;47395:160;;;47538:1;47517:19;47510:30;47395:160;47933:18;:24;47952:4;47933:24;;;;;;;;;;;;;;;;47931:26;;;;;;;;;;;;48002:18;:22;48021:2;48002:22;;;;;;;;;;;;;;;;48000:24;;;;;;;;;;;48324:145;48361:2;48409:45;48424:4;48430:2;48434:19;48409:14;:45::i;:::-;25951:8;48382:72;48324:18;:145::i;:::-;48295:17;:26;48313:7;48295:26;;;;;;;;;;;:174;;;;48639:1;25951:8;48589:19;:46;:51;48585:626;;;48661:19;48693:1;48683:7;:11;48661:33;;48850:1;48816:17;:30;48834:11;48816:30;;;;;;;;;;;;:35;48812:384;;;48954:13;;48939:11;:28;48935:242;;49134:19;49101:17;:30;49119:11;49101:30;;;;;;;;;;;:52;;;;48935:242;48812:384;48642:569;48585:626;49258:7;49254:2;49239:27;;49248:4;49239:27;;;;;;;;;;;;49277:42;49298:4;49304:2;49308:7;49317:1;49277:20;:42::i;:::-;46650:2677;;;46527:2800;;;:::o;60402:58::-;;;;;;;;;;;;;;;;;:::o;60034:36::-;;;;:::o;60237:34::-;;;;;;;;;;;;;:::o;62620:209::-;13498:13;:11;:13::i;:::-;62742:14:::1;;62731:7;62715:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:41;;62707:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;62792:29;62802:9;62813:7;62792:9;:29::i;:::-;62620:209:::0;;:::o;64575:126::-;13498:13;:11;:13::i;:::-;64677:16:::1;64659:15;;:34;;;;;;;;;;;;;;;;;;64575:126:::0;:::o;63447:186::-;13498:13;:11;:13::i;:::-;63532:1:::1;63505:29;;:15;;;;;;;;;;;:29;;;;63497:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63577:15;;;;;;;;;;;63569:33;;:56;63603:21;63569:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;63447:186::o:0;64067:122::-;13498:13;:11;:13::i;:::-;64166:15:::1;64149:14;:32;;;;64067:122:::0;:::o;38152:185::-;38290:39;38307:4;38313:2;38317:7;38290:39;;;;;;;;;;;;:16;:39::i;:::-;38152:185;;;:::o;62075:537::-;10537:1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;62164:15:::1;;;;;;;;;;;62156:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;62247:14;;62242:1;62226:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:35;;62218:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62345:1;62305:23;:37;62329:12;:10;:12::i;:::-;62305:37;;;;;;;;;;;;;;;;:41;62297:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;62408:85;62427:6;62435:14;;62478:12;:10;:12::i;:::-;62461:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;62451:41;;;;;;62408:18;:85::i;:::-;62400:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;62564:1;62524:23;:37;62548:12;:10;:12::i;:::-;62524:37;;;;;;;;;;;;;;;:41;;;;62578:26;62588:12;:10;:12::i;:::-;62602:1;62578:9;:26::i;:::-;10493:1:::0;11447:7;:22;;;;62075:537;:::o;59995:32::-;;;;:::o;59951:37::-;;;;:::o;60531:49::-;;;;;;;;;;;;;;;;;:::o;64709:122::-;13498:13;:11;:13::i;:::-;64808:15:::1;64791:14;:32;;;;64709:122:::0;:::o;64461:106::-;13498:13;:11;:13::i;:::-;64548:11:::1;64538:7;:21;;;;;;;;;;;;:::i;:::-;;64461:106:::0;:::o;60199:31::-;;;;;;;;;;;;;:::o;35105:144::-;35169:7;35212:27;35231:7;35212:18;:27::i;:::-;35189:52;;35105:144;;;:::o;60294:37::-;;;;:::o;60486:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30348:224::-;30412:7;30453:1;30436:19;;:5;:19;;;30432:60;;;30464:28;;;;;;;;;;;;;;30432:60;24903:13;30510:18;:25;30529:5;30510:25;;;;;;;;;;;;;;;;:54;30503:61;;30348:224;;;:::o;14260:103::-;13498:13;:11;:13::i;:::-;14325:30:::1;14352:1;14325:18;:30::i;:::-;14260:103::o:0;13612:87::-;13658:7;13685:6;;;;;;;;;;;13678:13;;13612:87;:::o;35485:104::-;35541:13;35574:7;35567:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35485:104;:::o;62837:97::-;13498:13;:11;:13::i;:::-;62914:12:::1;;;;;;;;;;;62913:13;62898:12;;:28;;;;;;;;;;;;;;;;;;62837:97::o:0;60130:40::-;;;;:::o;37538:308::-;37649:19;:17;:19::i;:::-;37637:31;;:8;:31;;;37633:61;;;37677:17;;;;;;;;;;;;;;37633:61;37759:8;37707:18;:39;37726:19;:17;:19::i;:::-;37707:39;;;;;;;;;;;;;;;:49;37747:8;37707:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37819:8;37783:55;;37798:19;:17;:19::i;:::-;37783:55;;;37829:8;37783:55;;;;;;:::i;:::-;;;;;;;;37538:308;;:::o;60077:46::-;;;;:::o;38408:399::-;38575:31;38588:4;38594:2;38598:7;38575:12;:31::i;:::-;38639:1;38621:2;:14;;;:19;38617:183;;38660:56;38691:4;38697:2;38701:7;38710:5;38660:30;:56::i;:::-;38655:145;;38744:40;;;;;;;;;;;;;;38655:145;38617:183;38408:399;;;;:::o;35660:318::-;35733:13;35764:16;35772:7;35764;:16::i;:::-;35759:59;;35789:29;;;;;;;;;;;;;;35759:59;35831:21;35855:10;:8;:10::i;:::-;35831:34;;35908:1;35889:7;35883:21;:26;;:87;;;;;;;;;;;;;;;;;35936:7;35945:18;35955:7;35945:9;:18::i;:::-;35919:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35883:87;35876:94;;;35660:318;;;:::o;64197:134::-;13498:13;:11;:13::i;:::-;64305:18:::1;64285:17;:38;;;;64197:134:::0;:::o;62942:106::-;13498:13;:11;:13::i;:::-;63025:15:::1;;;;;;;;;;;63024:16;63006:15;;:34;;;;;;;;;;;;;;;;;;62942:106::o:0;64339:114::-;13498:13;:11;:13::i;:::-;64432::::1;64417:12;:28;;;;64339:114:::0;:::o;37917:164::-;38014:4;38038:18;:25;38057:5;38038:25;;;;;;;;;;;;;;;:35;38064:8;38038:35;;;;;;;;;;;;;;;;;;;;;;;;;38031:42;;37917:164;;;;:::o;60726:1341::-;10537:1;11135:7;;:19;;11127:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10537:1;11268:7;:18;;;;60812:12:::1;;;;;;;;;;;60804:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;60871:1;60861:7;:11;60853:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;60949:14;;60938:7;60922:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:41;;60914:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;61018:17;;61007:7;:28;;60999:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61128:12;;61117:7;61086:14;:28;61101:12;:10;:12::i;:::-;61086:28;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;61078:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;61221:20;61265:1:::0;61244:18:::1;;:22;:59;;;;;61302:1;61270:14;:28;61285:12;:10;:12::i;:::-;61270:28;;;;;;;;;;;;;;;;:33;61244:59;:109;;61346:7;61244:109;;;61329:1;61319:7;:11;;;;:::i;:::-;61244:109;61221:132;;61385:7;61370:12;:22;61366:98;;;61451:1;61430:18;;:22;;;;:::i;:::-;61409:18;:43;;;;61366:98;61512:9;61496:12;61484:9;;:24;;;;:::i;:::-;:37;;61476:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;61578:14;61622:1:::0;61595:24:::1;;:28;:48;;;;;61642:1;61627:12;:16;61595:48;:64;;;;;61647:12;:10;:12::i;:::-;61595:64;:121;;61715:1;61595:121;;;61690:9;;61675:12;:24;;;;:::i;:::-;61595:121;61578:138;;61742:1;61733:6;:10;61729:109;;;61814:12;61787:24;;:39;;;;:::i;:::-;61760:24;:66;;;;61729:109;61902:12;:10;:12::i;:::-;61894:30;;:38;61925:6;61894:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62007:7;61976:14;:28;61991:12;:10;:12::i;:::-;61976:28;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;61945:14;:28;61960:12;:10;:12::i;:::-;61945:28;;;;;;;;;;;;;;;:69;;;;62027:32;62037:12;:10;:12::i;:::-;62051:7;62027:9;:32::i;:::-;60793:1274;;10493:1:::0;11447:7;:22;;;;60726:1341;:::o;14518:201::-;13498:13;:11;:13::i;:::-;14627:1:::1;14607:22;;:8;:22;;;;14599:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14683:28;14702:8;14683:18;:28::i;:::-;14518:201:::0;:::o;63641:102::-;13498:13;:11;:13::i;:::-;63725:10:::1;63713:9;:22;;;;63641:102:::0;:::o;13777:132::-;13852:12;:10;:12::i;:::-;13841:23;;:7;:5;:7::i;:::-;:23;;;13833:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13777:132::o;39062:273::-;39119:4;39175:7;39156:15;:13;:15::i;:::-;:26;;:66;;;;;39209:13;;39199:7;:23;39156:66;:152;;;;;39307:1;25673:8;39260:17;:26;39278:7;39260:26;;;;;;;;;;;;:43;:48;39156:152;39136:172;;39062:273;;;:::o;57623:105::-;57683:7;57710:10;57703:17;;57623:105;:::o;28247:92::-;28303:7;28247:92;:::o;32022:1129::-;32089:7;32109:12;32124:7;32109:22;;32192:4;32173:15;:13;:15::i;:::-;:23;32169:915;;32226:13;;32219:4;:20;32215:869;;;32264:14;32281:17;:23;32299:4;32281:23;;;;;;;;;;;;32264:40;;32397:1;25673:8;32370:6;:23;:28;32366:699;;;32889:113;32906:1;32896:6;:11;32889:113;;;32949:17;:25;32967:6;;;;;;;32949:25;;;;;;;;;;;;32940:34;;32889:113;;;33035:6;33028:13;;;;;;32366:699;32241:843;32215:869;32169:915;33112:31;;;;;;;;;;;;;;32022:1129;;;;:::o;44863:652::-;44958:27;44987:23;45028:53;45084:15;45028:71;;45270:7;45264:4;45257:21;45305:22;45299:4;45292:36;45381:4;45375;45365:21;45342:44;;45477:19;45471:26;45452:45;;45208:300;44863:652;;;:::o;45628:645::-;45770:11;45932:15;45926:4;45922:26;45914:34;;46091:15;46080:9;46076:31;46063:44;;46238:15;46227:9;46224:30;46217:4;46206:9;46203:19;46200:55;46190:65;;45628:645;;;;;:::o;56456:159::-;;;;;:::o;54768:309::-;54903:7;54923:16;26074:3;54949:19;:40;;54923:67;;26074:3;55016:31;55027:4;55033:2;55037:9;55016:10;:31::i;:::-;55008:40;;:61;;55001:68;;;54768:309;;;;;:::o;34596:447::-;34676:14;34844:15;34837:5;34833:27;34824:36;;35018:5;35004:11;34980:22;34976:40;34973:51;34966:5;34963:62;34953:72;;34596:447;;;;:::o;57274:158::-;;;;;:::o;39419:104::-;39488:27;39498:2;39502:8;39488:27;;;;;;;;;;;;:9;:27::i;:::-;39419:104;;:::o;12163:98::-;12216:7;12243:10;12236:17;;12163:98;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;14879:191::-;14953:16;14972:6;;;;;;;;;;;14953:25;;14998:8;14989:6;;:17;;;;;;;;;;;;;;;;;;15053:8;15022:40;;15043:8;15022:40;;;;;;;;;;;;14942:128;14879:191;:::o;53278:716::-;53441:4;53487:2;53462:45;;;53508:19;:17;:19::i;:::-;53529:4;53535:7;53544:5;53462:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53458:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53762:1;53745:6;:13;:18;53741:235;;;53791:40;;;;;;;;;;;;;;53741:235;53934:6;53928:13;53919:6;53915:2;53911:15;53904:38;53458:529;53631:54;;;53621:64;;;:6;:64;;;;53614:71;;;53278:716;;;;;;:::o;63056:108::-;63116:13;63149:7;63142:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63056:108;:::o;57834:1960::-;57891:17;58310:3;58303:4;58297:11;58293:21;58286:28;;58401:3;58395:4;58388:17;58507:3;58963:5;59093:1;59088:3;59084:11;59077:18;;59230:2;59224:4;59220:13;59216:2;59212:22;59207:3;59199:36;59271:2;59265:4;59261:13;59253:21;;58855:697;59290:4;58855:697;;;59481:1;59476:3;59472:11;59465:18;;59532:2;59526:4;59522:13;59518:2;59514:22;59509:3;59501:36;59385:2;59379:4;59375:13;59367:21;;58855:697;;;58859:430;59591:3;59586;59582:13;59706:2;59701:3;59697:12;59690:19;;59769:6;59764:3;59757:19;57930:1857;;57834:1960;;;:::o;63172:267::-;63217:4;63430:1;63425;63415:6;63291:9;63340:1;63325:12;:16;;;;:::i;:::-;63315:27;63357:15;63387:12;:10;:12::i;:::-;63260:150;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63250:161;;;;;;63242:170;;:179;63241:185;;;;:::i;:::-;:190;63234:197;;63172:267;:::o;55653:147::-;55790:6;55653:147;;;;;:::o;39939:681::-;40062:19;40068:2;40072:8;40062:5;:19::i;:::-;40141:1;40123:2;:14;;;:19;40119:483;;40163:11;40177:13;;40163:27;;40209:13;40231:8;40225:3;:14;40209:30;;40258:233;40289:62;40328:1;40332:2;40336:7;;;;;;40345:5;40289:30;:62::i;:::-;40284:167;;40387:40;;;;;;;;;;;;;;40284:167;40486:3;40478:5;:11;40258:233;;40573:3;40556:13;;:20;40552:34;;40578:8;;;40552:34;40144:458;;40119:483;39939:681;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;40893:1529::-;40958:20;40981:13;;40958:36;;41023:1;41009:16;;:2;:16;;;41005:48;;;41034:19;;;;;;;;;;;;;;41005:48;41080:1;41068:8;:13;41064:44;;;41090:18;;;;;;;;;;;;;;41064:44;41121:61;41151:1;41155:2;41159:12;41173:8;41121:21;:61::i;:::-;41664:1;25040:2;41635:1;:25;;41634:31;41622:8;:44;41596:18;:22;41615:2;41596:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;41943:139;41980:2;42034:33;42057:1;42061:2;42065:1;42034:14;:33::i;:::-;42001:30;42022:8;42001:20;:30::i;:::-;:66;41943:18;:139::i;:::-;41909:17;:31;41927:12;41909:31;;;;;;;;;;;:173;;;;42099:15;42117:12;42099:30;;42144:11;42173:8;42158:12;:23;42144:37;;42196:101;42248:9;;;;;;42244:2;42223:35;;42240:1;42223:35;;;;;;;;;;;;42292:3;42282:7;:13;42196:101;;42329:3;42313:13;:19;;;;41370:974;;42354:60;42383:1;42387:2;42391:12;42405:8;42354:20;:60::i;:::-;40947:1475;40893:1529;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;36426:322::-;36496:14;36727:1;36717:8;36714:15;36689:23;36685:45;36675:55;;36426:322;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:539::-;6987:6;7036:2;7024:9;7015:7;7011:23;7007:32;7004:119;;;7042:79;;:::i;:::-;7004:119;7190:1;7179:9;7175:17;7162:31;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7347:78;7417:7;7408:6;7397:9;7393:22;7347:78;:::i;:::-;7337:88;;7133:302;6903:539;;;;:::o;7448:329::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:53;7752:7;7743:6;7732:9;7728:22;7707:53;:::i;:::-;7697:63;;7653:117;7448:329;;;;:::o;7783:327::-;7841:6;7890:2;7878:9;7869:7;7865:23;7861:32;7858:119;;;7896:79;;:::i;:::-;7858:119;8016:1;8041:52;8085:7;8076:6;8065:9;8061:22;8041:52;:::i;:::-;8031:62;;7987:116;7783:327;;;;:::o;8116:349::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:63;8440:7;8431:6;8420:9;8416:22;8385:63;:::i;:::-;8375:73;;8331:127;8116:349;;;;:::o;8471:509::-;8540:6;8589:2;8577:9;8568:7;8564:23;8560:32;8557:119;;;8595:79;;:::i;:::-;8557:119;8743:1;8732:9;8728:17;8715:31;8773:18;8765:6;8762:30;8759:117;;;8795:79;;:::i;:::-;8759:117;8900:63;8955:7;8946:6;8935:9;8931:22;8900:63;:::i;:::-;8890:73;;8686:287;8471:509;;;;:::o;8986:329::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9220:1;9245:53;9290:7;9281:6;9270:9;9266:22;9245:53;:::i;:::-;9235:63;;9191:117;8986:329;;;;:::o;9321:118::-;9408:24;9426:5;9408:24;:::i;:::-;9403:3;9396:37;9321:118;;:::o;9445:157::-;9550:45;9570:24;9588:5;9570:24;:::i;:::-;9550:45;:::i;:::-;9545:3;9538:58;9445:157;;:::o;9608:109::-;9689:21;9704:5;9689:21;:::i;:::-;9684:3;9677:34;9608:109;;:::o;9723:157::-;9828:45;9848:24;9866:5;9848:24;:::i;:::-;9828:45;:::i;:::-;9823:3;9816:58;9723:157;;:::o;9886:360::-;9972:3;10000:38;10032:5;10000:38;:::i;:::-;10054:70;10117:6;10112:3;10054:70;:::i;:::-;10047:77;;10133:52;10178:6;10173:3;10166:4;10159:5;10155:16;10133:52;:::i;:::-;10210:29;10232:6;10210:29;:::i;:::-;10205:3;10201:39;10194:46;;9976:270;9886:360;;;;:::o;10252:364::-;10340:3;10368:39;10401:5;10368:39;:::i;:::-;10423:71;10487:6;10482:3;10423:71;:::i;:::-;10416:78;;10503:52;10548:6;10543:3;10536:4;10529:5;10525:16;10503:52;:::i;:::-;10580:29;10602:6;10580:29;:::i;:::-;10575:3;10571:39;10564:46;;10344:272;10252:364;;;;:::o;10622:377::-;10728:3;10756:39;10789:5;10756:39;:::i;:::-;10811:89;10893:6;10888:3;10811:89;:::i;:::-;10804:96;;10909:52;10954:6;10949:3;10942:4;10935:5;10931:16;10909:52;:::i;:::-;10986:6;10981:3;10977:16;10970:23;;10732:267;10622:377;;;;:::o;11005:366::-;11147:3;11168:67;11232:2;11227:3;11168:67;:::i;:::-;11161:74;;11244:93;11333:3;11244:93;:::i;:::-;11362:2;11357:3;11353:12;11346:19;;11005:366;;;:::o;11377:::-;11519:3;11540:67;11604:2;11599:3;11540:67;:::i;:::-;11533:74;;11616:93;11705:3;11616:93;:::i;:::-;11734:2;11729:3;11725:12;11718:19;;11377:366;;;:::o;11749:::-;11891:3;11912:67;11976:2;11971:3;11912:67;:::i;:::-;11905:74;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11749:366;;;:::o;12121:::-;12263:3;12284:67;12348:2;12343:3;12284:67;:::i;:::-;12277:74;;12360:93;12449:3;12360:93;:::i;:::-;12478:2;12473:3;12469:12;12462:19;;12121:366;;;:::o;12493:::-;12635:3;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12493:366;;;:::o;12865:::-;13007:3;13028:67;13092:2;13087:3;13028:67;:::i;:::-;13021:74;;13104:93;13193:3;13104:93;:::i;:::-;13222:2;13217:3;13213:12;13206:19;;12865:366;;;:::o;13237:::-;13379:3;13400:67;13464:2;13459:3;13400:67;:::i;:::-;13393:74;;13476:93;13565:3;13476:93;:::i;:::-;13594:2;13589:3;13585:12;13578:19;;13237:366;;;:::o;13609:::-;13751:3;13772:67;13836:2;13831:3;13772:67;:::i;:::-;13765:74;;13848:93;13937:3;13848:93;:::i;:::-;13966:2;13961:3;13957:12;13950:19;;13609:366;;;:::o;13981:::-;14123:3;14144:67;14208:2;14203:3;14144:67;:::i;:::-;14137:74;;14220:93;14309:3;14220:93;:::i;:::-;14338:2;14333:3;14329:12;14322:19;;13981:366;;;:::o;14353:::-;14495:3;14516:67;14580:2;14575:3;14516:67;:::i;:::-;14509:74;;14592:93;14681:3;14592:93;:::i;:::-;14710:2;14705:3;14701:12;14694:19;;14353:366;;;:::o;14725:::-;14867:3;14888:67;14952:2;14947:3;14888:67;:::i;:::-;14881:74;;14964:93;15053:3;14964:93;:::i;:::-;15082:2;15077:3;15073:12;15066:19;;14725:366;;;:::o;15097:::-;15239:3;15260:67;15324:2;15319:3;15260:67;:::i;:::-;15253:74;;15336:93;15425:3;15336:93;:::i;:::-;15454:2;15449:3;15445:12;15438:19;;15097:366;;;:::o;15469:::-;15611:3;15632:67;15696:2;15691:3;15632:67;:::i;:::-;15625:74;;15708:93;15797:3;15708:93;:::i;:::-;15826:2;15821:3;15817:12;15810:19;;15469:366;;;:::o;15841:118::-;15928:24;15946:5;15928:24;:::i;:::-;15923:3;15916:37;15841:118;;:::o;15965:157::-;16070:45;16090:24;16108:5;16090:24;:::i;:::-;16070:45;:::i;:::-;16065:3;16058:58;15965:157;;:::o;16128:256::-;16240:3;16255:75;16326:3;16317:6;16255:75;:::i;:::-;16355:2;16350:3;16346:12;16339:19;;16375:3;16368:10;;16128:256;;;;:::o;16390:679::-;16586:3;16601:75;16672:3;16663:6;16601:75;:::i;:::-;16701:2;16696:3;16692:12;16685:19;;16714:75;16785:3;16776:6;16714:75;:::i;:::-;16814:2;16809:3;16805:12;16798:19;;16827:75;16898:3;16889:6;16827:75;:::i;:::-;16927:2;16922:3;16918:12;16911:19;;16940:75;17011:3;17002:6;16940:75;:::i;:::-;17040:2;17035:3;17031:12;17024:19;;17060:3;17053:10;;16390:679;;;;;;;:::o;17075:435::-;17255:3;17277:95;17368:3;17359:6;17277:95;:::i;:::-;17270:102;;17389:95;17480:3;17471:6;17389:95;:::i;:::-;17382:102;;17501:3;17494:10;;17075:435;;;;;:::o;17516:222::-;17609:4;17647:2;17636:9;17632:18;17624:26;;17660:71;17728:1;17717:9;17713:17;17704:6;17660:71;:::i;:::-;17516:222;;;;:::o;17744:640::-;17939:4;17977:3;17966:9;17962:19;17954:27;;17991:71;18059:1;18048:9;18044:17;18035:6;17991:71;:::i;:::-;18072:72;18140:2;18129:9;18125:18;18116:6;18072:72;:::i;:::-;18154;18222:2;18211:9;18207:18;18198:6;18154:72;:::i;:::-;18273:9;18267:4;18263:20;18258:2;18247:9;18243:18;18236:48;18301:76;18372:4;18363:6;18301:76;:::i;:::-;18293:84;;17744:640;;;;;;;:::o;18390:210::-;18477:4;18515:2;18504:9;18500:18;18492:26;;18528:65;18590:1;18579:9;18575:17;18566:6;18528:65;:::i;:::-;18390:210;;;;:::o;18606:313::-;18719:4;18757:2;18746:9;18742:18;18734:26;;18806:9;18800:4;18796:20;18792:1;18781:9;18777:17;18770:47;18834:78;18907:4;18898:6;18834:78;:::i;:::-;18826:86;;18606:313;;;;:::o;18925:419::-;19091:4;19129:2;19118:9;19114:18;19106:26;;19178:9;19172:4;19168:20;19164:1;19153:9;19149:17;19142:47;19206:131;19332:4;19206:131;:::i;:::-;19198:139;;18925:419;;;:::o;19350:::-;19516:4;19554:2;19543:9;19539:18;19531:26;;19603:9;19597:4;19593:20;19589:1;19578:9;19574:17;19567:47;19631:131;19757:4;19631:131;:::i;:::-;19623:139;;19350:419;;;:::o;19775:::-;19941:4;19979:2;19968:9;19964:18;19956:26;;20028:9;20022:4;20018:20;20014:1;20003:9;19999:17;19992:47;20056:131;20182:4;20056:131;:::i;:::-;20048:139;;19775:419;;;:::o;20200:::-;20366:4;20404:2;20393:9;20389:18;20381:26;;20453:9;20447:4;20443:20;20439:1;20428:9;20424:17;20417:47;20481:131;20607:4;20481:131;:::i;:::-;20473:139;;20200:419;;;:::o;20625:::-;20791:4;20829:2;20818:9;20814:18;20806:26;;20878:9;20872:4;20868:20;20864:1;20853:9;20849:17;20842:47;20906:131;21032:4;20906:131;:::i;:::-;20898:139;;20625:419;;;:::o;21050:::-;21216:4;21254:2;21243:9;21239:18;21231:26;;21303:9;21297:4;21293:20;21289:1;21278:9;21274:17;21267:47;21331:131;21457:4;21331:131;:::i;:::-;21323:139;;21050:419;;;:::o;21475:::-;21641:4;21679:2;21668:9;21664:18;21656:26;;21728:9;21722:4;21718:20;21714:1;21703:9;21699:17;21692:47;21756:131;21882:4;21756:131;:::i;:::-;21748:139;;21475:419;;;:::o;21900:::-;22066:4;22104:2;22093:9;22089:18;22081:26;;22153:9;22147:4;22143:20;22139:1;22128:9;22124:17;22117:47;22181:131;22307:4;22181:131;:::i;:::-;22173:139;;21900:419;;;:::o;22325:::-;22491:4;22529:2;22518:9;22514:18;22506:26;;22578:9;22572:4;22568:20;22564:1;22553:9;22549:17;22542:47;22606:131;22732:4;22606:131;:::i;:::-;22598:139;;22325:419;;;:::o;22750:::-;22916:4;22954:2;22943:9;22939:18;22931:26;;23003:9;22997:4;22993:20;22989:1;22978:9;22974:17;22967:47;23031:131;23157:4;23031:131;:::i;:::-;23023:139;;22750:419;;;:::o;23175:::-;23341:4;23379:2;23368:9;23364:18;23356:26;;23428:9;23422:4;23418:20;23414:1;23403:9;23399:17;23392:47;23456:131;23582:4;23456:131;:::i;:::-;23448:139;;23175:419;;;:::o;23600:::-;23766:4;23804:2;23793:9;23789:18;23781:26;;23853:9;23847:4;23843:20;23839:1;23828:9;23824:17;23817:47;23881:131;24007:4;23881:131;:::i;:::-;23873:139;;23600:419;;;:::o;24025:::-;24191:4;24229:2;24218:9;24214:18;24206:26;;24278:9;24272:4;24268:20;24264:1;24253:9;24249:17;24242:47;24306:131;24432:4;24306:131;:::i;:::-;24298:139;;24025:419;;;:::o;24450:222::-;24543:4;24581:2;24570:9;24566:18;24558:26;;24594:71;24662:1;24651:9;24647:17;24638:6;24594:71;:::i;:::-;24450:222;;;;:::o;24678:129::-;24712:6;24739:20;;:::i;:::-;24729:30;;24768:33;24796:4;24788:6;24768:33;:::i;:::-;24678:129;;;:::o;24813:75::-;24846:6;24879:2;24873:9;24863:19;;24813:75;:::o;24894:311::-;24971:4;25061:18;25053:6;25050:30;25047:56;;;25083:18;;:::i;:::-;25047:56;25133:4;25125:6;25121:17;25113:25;;25193:4;25187;25183:15;25175:23;;24894:311;;;:::o;25211:307::-;25272:4;25362:18;25354:6;25351:30;25348:56;;;25384:18;;:::i;:::-;25348:56;25422:29;25444:6;25422:29;:::i;:::-;25414:37;;25506:4;25500;25496:15;25488:23;;25211:307;;;:::o;25524:308::-;25586:4;25676:18;25668:6;25665:30;25662:56;;;25698:18;;:::i;:::-;25662:56;25736:29;25758:6;25736:29;:::i;:::-;25728:37;;25820:4;25814;25810:15;25802:23;;25524:308;;;:::o;25838:98::-;25889:6;25923:5;25917:12;25907:22;;25838:98;;;:::o;25942:99::-;25994:6;26028:5;26022:12;26012:22;;25942:99;;;:::o;26047:168::-;26130:11;26164:6;26159:3;26152:19;26204:4;26199:3;26195:14;26180:29;;26047:168;;;;:::o;26221:169::-;26305:11;26339:6;26334:3;26327:19;26379:4;26374:3;26370:14;26355:29;;26221:169;;;;:::o;26396:148::-;26498:11;26535:3;26520:18;;26396:148;;;;:::o;26550:305::-;26590:3;26609:20;26627:1;26609:20;:::i;:::-;26604:25;;26643:20;26661:1;26643:20;:::i;:::-;26638:25;;26797:1;26729:66;26725:74;26722:1;26719:81;26716:107;;;26803:18;;:::i;:::-;26716:107;26847:1;26844;26840:9;26833:16;;26550:305;;;;:::o;26861:348::-;26901:7;26924:20;26942:1;26924:20;:::i;:::-;26919:25;;26958:20;26976:1;26958:20;:::i;:::-;26953:25;;27146:1;27078:66;27074:74;27071:1;27068:81;27063:1;27056:9;27049:17;27045:105;27042:131;;;27153:18;;:::i;:::-;27042:131;27201:1;27198;27194:9;27183:20;;26861:348;;;;:::o;27215:191::-;27255:4;27275:20;27293:1;27275:20;:::i;:::-;27270:25;;27309:20;27327:1;27309:20;:::i;:::-;27304:25;;27348:1;27345;27342:8;27339:34;;;27353:18;;:::i;:::-;27339:34;27398:1;27395;27391:9;27383:17;;27215:191;;;;:::o;27412:96::-;27449:7;27478:24;27496:5;27478:24;:::i;:::-;27467:35;;27412:96;;;:::o;27514:90::-;27548:7;27591:5;27584:13;27577:21;27566:32;;27514:90;;;:::o;27610:77::-;27647:7;27676:5;27665:16;;27610:77;;;:::o;27693:149::-;27729:7;27769:66;27762:5;27758:78;27747:89;;27693:149;;;:::o;27848:126::-;27885:7;27925:42;27918:5;27914:54;27903:65;;27848:126;;;:::o;27980:77::-;28017:7;28046:5;28035:16;;27980:77;;;:::o;28063:154::-;28147:6;28142:3;28137;28124:30;28209:1;28200:6;28195:3;28191:16;28184:27;28063:154;;;:::o;28223:307::-;28291:1;28301:113;28315:6;28312:1;28309:13;28301:113;;;28400:1;28395:3;28391:11;28385:18;28381:1;28376:3;28372:11;28365:39;28337:2;28334:1;28330:10;28325:15;;28301:113;;;28432:6;28429:1;28426:13;28423:101;;;28512:1;28503:6;28498:3;28494:16;28487:27;28423:101;28272:258;28223:307;;;:::o;28536:320::-;28580:6;28617:1;28611:4;28607:12;28597:22;;28664:1;28658:4;28654:12;28685:18;28675:81;;28741:4;28733:6;28729:17;28719:27;;28675:81;28803:2;28795:6;28792:14;28772:18;28769:38;28766:84;;;28822:18;;:::i;:::-;28766:84;28587:269;28536:320;;;:::o;28862:281::-;28945:27;28967:4;28945:27;:::i;:::-;28937:6;28933:40;29075:6;29063:10;29060:22;29039:18;29027:10;29024:34;29021:62;29018:88;;;29086:18;;:::i;:::-;29018:88;29126:10;29122:2;29115:22;28905:238;28862:281;;:::o;29149:233::-;29188:3;29211:24;29229:5;29211:24;:::i;:::-;29202:33;;29257:66;29250:5;29247:77;29244:103;;;29327:18;;:::i;:::-;29244:103;29374:1;29367:5;29363:13;29356:20;;29149:233;;;:::o;29388:100::-;29427:7;29456:26;29476:5;29456:26;:::i;:::-;29445:37;;29388:100;;;:::o;29494:79::-;29533:7;29562:5;29551:16;;29494:79;;;:::o;29579:94::-;29618:7;29647:20;29661:5;29647:20;:::i;:::-;29636:31;;29579:94;;;:::o;29679:79::-;29718:7;29747:5;29736:16;;29679:79;;;:::o;29764:176::-;29796:1;29813:20;29831:1;29813:20;:::i;:::-;29808:25;;29847:20;29865:1;29847:20;:::i;:::-;29842:25;;29886:1;29876:35;;29891:18;;:::i;:::-;29876:35;29932:1;29929;29925:9;29920:14;;29764:176;;;;:::o;29946:180::-;29994:77;29991:1;29984:88;30091:4;30088:1;30081:15;30115:4;30112:1;30105:15;30132:180;30180:77;30177:1;30170:88;30277:4;30274:1;30267:15;30301:4;30298:1;30291:15;30318:180;30366:77;30363:1;30356:88;30463:4;30460:1;30453:15;30487:4;30484:1;30477:15;30504:180;30552:77;30549:1;30542:88;30649:4;30646:1;30639:15;30673:4;30670:1;30663:15;30690:180;30738:77;30735:1;30728:88;30835:4;30832:1;30825:15;30859:4;30856:1;30849:15;30876:117;30985:1;30982;30975:12;30999:117;31108:1;31105;31098:12;31122:117;31231:1;31228;31221:12;31245:117;31354:1;31351;31344:12;31368:117;31477:1;31474;31467:12;31491:102;31532:6;31583:2;31579:7;31574:2;31567:5;31563:14;31559:28;31549:38;;31491:102;;;:::o;31599:94::-;31632:8;31680:5;31676:2;31672:14;31651:35;;31599:94;;;:::o;31699:225::-;31839:34;31835:1;31827:6;31823:14;31816:58;31908:8;31903:2;31895:6;31891:15;31884:33;31699:225;:::o;31930:169::-;32070:21;32066:1;32058:6;32054:14;32047:45;31930:169;:::o;32105:170::-;32245:22;32241:1;32233:6;32229:14;32222:46;32105:170;:::o;32281:225::-;32421:34;32417:1;32409:6;32405:14;32398:58;32490:8;32485:2;32477:6;32473:15;32466:33;32281:225;:::o;32512:176::-;32652:28;32648:1;32640:6;32636:14;32629:52;32512:176;:::o;32694:173::-;32834:25;32830:1;32822:6;32818:14;32811:49;32694:173;:::o;32873:163::-;33013:15;33009:1;33001:6;32997:14;32990:39;32873:163;:::o;33042:182::-;33182:34;33178:1;33170:6;33166:14;33159:58;33042:182;:::o;33230:226::-;33370:34;33366:1;33358:6;33354:14;33347:58;33439:9;33434:2;33426:6;33422:15;33415:34;33230:226;:::o;33462:177::-;33602:29;33598:1;33590:6;33586:14;33579:53;33462:177;:::o;33645:163::-;33785:15;33781:1;33773:6;33769:14;33762:39;33645:163;:::o;33814:172::-;33954:24;33950:1;33942:6;33938:14;33931:48;33814:172;:::o;33992:181::-;34132:33;34128:1;34120:6;34116:14;34109:57;33992:181;:::o;34179:122::-;34252:24;34270:5;34252:24;:::i;:::-;34245:5;34242:35;34232:63;;34291:1;34288;34281:12;34232:63;34179:122;:::o;34307:116::-;34377:21;34392:5;34377:21;:::i;:::-;34370:5;34367:32;34357:60;;34413:1;34410;34403:12;34357:60;34307:116;:::o;34429:122::-;34502:24;34520:5;34502:24;:::i;:::-;34495:5;34492:35;34482:63;;34541:1;34538;34531:12;34482:63;34429:122;:::o;34557:120::-;34629:23;34646:5;34629:23;:::i;:::-;34622:5;34619:34;34609:62;;34667:1;34664;34657:12;34609:62;34557:120;:::o;34683:122::-;34756:24;34774:5;34756:24;:::i;:::-;34749:5;34746:35;34736:63;;34795:1;34792;34785:12;34736:63;34683:122;:::o

Swarm Source

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