ETH Price: $2,877.20 (-10.16%)
Gas: 12 Gwei

Token

Bapez Jungle (BAPEZ)
 

Overview

Max Total Supply

3,400 BAPEZ

Holders

2,138

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
starboss.eth
Balance
1 BAPEZ
0x40f220276c3710e96b738b3a170bab673e512425
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:
BapezJungle

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-09
*/

// File: contracts/IMeta.sol


/*
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------------&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&-------------------------------------------&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&-----------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&--------------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&-------------------------------------------------&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&
(%%%%%%%%%%%%%%%%%------------------------------------------------%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%---------------------------------------------%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%-------------------------------------------%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%---------------------------------------%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%%%%%-------------------------------%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%-----%%%%%%%%%%%%%%%-----------------------%%%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%----------------%%%%%%%%-------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%%&------%%%%%%%--------%%%%--------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%-----&%%%%%%%%%%%%%-----%%---------------------------%%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%%%%%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%---%%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%----------%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%------%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%%%%----------------------------------%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%% @creator: BapezNFT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%% @author: debugger, twitter.com/debuggerguy %%%%%%%%%%%%%%
*/
pragma solidity ^0.8.0;

interface IMeta 
{
    function getMetadata(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: contracts/BapezJungle.sol

//SPDX-License-Identifier: MIT
/*
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
#&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&--&------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&-----------------&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------&&&&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&&&--------------------------------&&&&&&&&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&&&-------------------------------------------&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&&&&&-----------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&--------------------------------------------------------&&&&&&&&&&&
(&&&&&&&&&&&&&&-----------------------------------------------------&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&-------------------------------------------------&&&&&&&&&&&&&&
(&&&&&&&&&&&&&&&&&------------------------------------------------&&&&&&&&&&&&&&
(%%%%%%%%%%%%%%%%%------------------------------------------------%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%---------------------------------------------%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%-------------------------------------------%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%---------------------------------------%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%%%%%%%%%%%%%%%-------------------------------%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%%%%%%-----%%%%%%%%%%%%%%%-----------------------%%%%%%%%%%%%%%%%%%%%%%%%
(%%%%%%%----------------%%%%%%%%-------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%%&------%%%%%%%--------%%%%--------------------------%%%%%%%%%%%%%%%%%%%%%%%
(%%%-----&%%%%%%%%%%%%%-----%%---------------------------%%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%%%%%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%-----%%---%%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%----------%%%%%%%%%%%--------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%------%%%%%%%%%%%---------------------------------%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%%%%----------------------------------%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%%% @creator: BapezNFT %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
/%%%%%%%%%%%%%%%%%%%%% @author: debugger, twitter.com/debuggerguy %%%%%%%%%%%%%%
*/


pragma solidity ^0.8.0; 






contract BapezJungle is ERC721A, Ownable, Pausable 
{
       
    uint256 public bapezFreeLimit = 1 ;
    uint256 public bapezBFFLimit = 2 ;
    uint256 public bapezFreeColSize = 3055 ;

    uint256 public mintPrice = 0.0055 ether;
    uint256 public totalColSize = 5555;
    uint256 public publicLimit = 5;

    bytes32 public bapezFreeWLMerkleRoot = 0x70dac3333f0e4fb2c7c858abae1bd930c10e8acc325e8914328f144b0c02356e;

    string private _baseTokenURI;
    
    bool public freeSaleActive;


    mapping(address => uint256) public publicMintList;
    mapping(address => uint256) public freeMintList;

    address public mdProvider;

    constructor
    ( 
       string memory _name,
       string memory _symbol,
       address _mdProvider
    ) ERC721A(_name, _symbol) 
    {
        mdProvider = _mdProvider;
    }

    modifier callerIsUser() 
    {
        require(tx.origin == msg.sender, "Caller is contract");
        _;
    }

    modifier onlyBapezFreeSaleActive() {
        require(freeSaleActive, "BapezFree-Sale is not active");
        _;
    }

    function setMdProvider(address _mdProvider) external onlyOwner {
        mdProvider = _mdProvider;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token not existed");
        require( mdProvider != address(0),
            "Invalid metadata provider address"
        );

        return IMeta(mdProvider).getMetadata(_tokenId);
    }
    
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function bapezFreeMint(uint256 quantity)
        external
        payable
        onlyBapezFreeSaleActive
        callerIsUser 
    {
         require( freeMintList[msg.sender] + quantity <= bapezFreeLimit,
                 "Mint Limit Exceeded"
         );
        require(totalSupply() + quantity <= bapezFreeColSize , "EXCEED_COL_SIZE");        

        freeMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function bapezBFFMint(bytes32[] calldata _merkleProof, uint256 quantity)
        external
        payable
        onlyBapezFreeSaleActive
        callerIsUser 
    {
        require( freeMintList[msg.sender] + quantity <= bapezBFFLimit,
                 "Mint Limit Exceeded"
        );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
             MerkleProof.verify(_merkleProof, bapezFreeWLMerkleRoot, leaf),
             "Merkle proof invalid"
         );
        require(totalSupply() + quantity <= bapezFreeColSize , "EXCEED_COL_SIZE");        

        freeMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity)
        external
        payable
        callerIsUser    
    {
        require(totalSupply() >= bapezFreeColSize, "Free mint has not finished yet");
        require(publicMintList[msg.sender] + quantity <= publicLimit, "Up to 5 mints allowed");
        require(msg.value >= mintPrice * quantity, "Insufficient funds");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        publicMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
        
    }
    
    function ownerMint(uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        _safeMint(msg.sender, quantity);
    }

    function holderMint(address ogBapez,uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        _safeMint(ogBapez, quantity);
    }

    function togglefreeSale() 
        external 
        onlyOwner 
    {
        freeSaleActive = !freeSaleActive;
    }

    function setBapezFreeWLMerkleRoot(bytes32 _bapezFreeWLMerkleRoot)
        external
        onlyOwner
    {
        bapezFreeWLMerkleRoot = _bapezFreeWLMerkleRoot;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }
    
    //stop transfer on pause
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal override(ERC721A) whenNotPaused 
    {
        
        super._beforeTokenTransfers(from, to, tokenId, quantity);
    }

    function withdraw() 
        external 
        onlyOwner 
    {
        uint256 totalBalance = address(this).balance;

        address COMMUNITY_WALLET = 0x9f79De05F4f5f6520665402c633613DD2477CFfB;
        address FOUNDER = 0xf6a8B433B79334f9937bd1C57bD058a37Dc3Edf8;
        address ARTIST = 0xD55779fA12Ed38445CE5111C527b450AFE4DF32D;
        address TECH_LEAD = 0x18226CFfdA30ed33FD6CCD6A8CB9F6794Df48f63;
        address MARKETING_MANAGER = 0x4a5003Fa3491c8be0D44B26e3123caB569193B88;
        address MODERATORS = 0x4FC7E224d84735462189f7bFacf06A15FAf8B7C3;
        address COMMUNICATIONS_MANAGER = 0x09E480E968F7e90e0Dd0bf2F6910A73134c969e2;
        
        payable(COMMUNITY_WALLET).transfer(
             ((totalBalance * 2500) / 10000)
        );
        payable(FOUNDER).transfer(
             ((totalBalance * 1500) / 10000)
        );
        payable(ARTIST).transfer(
             ((totalBalance * 1600) / 10000)
        );
        payable(TECH_LEAD).transfer(
             ((totalBalance * 1700) / 10000)
        );
         payable(MARKETING_MANAGER).transfer(
              ((totalBalance * 1500) / 10000)
         );
        payable(MODERATORS).transfer(
             ((totalBalance * 300) / 10000)
        );
        payable(COMMUNICATIONS_MANAGER).transfer(
             ((totalBalance * 900) / 10000)
        );
    }

    //@dev
    //this can be used only for reduction.
    function reduceSupply(uint256 _burnAmount) 
        external 
        onlyOwner 
    {
        require(_burnAmount > 0 ,"Just for reduction");
        require(totalSupply() < totalColSize ,"Too late" );
        require(totalColSize - _burnAmount >= totalSupply() ,"Insufficient amount" );
        totalColSize -= _burnAmount;
    }

    //this can be used only for reduction during public-sale.
    function changeMintPrice(uint256 _mintPrice) 
        external 
        onlyOwner 
    {
        require(_mintPrice >= 0 ,"Invalid price");
        require(_mintPrice < mintPrice ,"Just for reduction");
        mintPrice = _mintPrice;
    }
    
    function changePublicMintLimit(uint256 _newLimit) 
        external 
        onlyOwner 
    {
        require(_newLimit > 0 ,"Invalid value");
        publicLimit = _newLimit;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_mdProvider","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"bapezBFFLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"bapezBFFMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"bapezFreeColSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bapezFreeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"bapezFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"bapezFreeWLMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLimit","type":"uint256"}],"name":"changePublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"ogBapez","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"holderMint","outputs":[],"stateMutability":"payable","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":"mdProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnAmount","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"_bapezFreeWLMerkleRoot","type":"bytes32"}],"name":"setBapezFreeWLMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mdProvider","type":"address"}],"name":"setMdProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglefreeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalColSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016009556002600a55610bef600b5566138a388a43c000600c556115b3600d556005600e557f70dac3333f0e4fb2c7c858abae1bd930c10e8acc325e8914328f144b0c02356e60001b600f553480156200005e57600080fd5b5060405162004efc38038062004efc833981810160405281019062000084919062000371565b828281600290805190602001906200009e9291906200022c565b508060039080519060200190620000b79291906200022c565b50620000c86200015560201b60201c565b6000819055505050620000f0620000e46200015e60201b60201c565b6200016660201b60201c565b6000600860146101000a81548160ff02191690831515021790555080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620005dd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023a90620004d4565b90600052602060002090601f0160209004810192826200025e5760008555620002aa565b82601f106200027957805160ff1916838001178555620002aa565b82800160010185558215620002aa579182015b82811115620002a95782518255916020019190600101906200028c565b5b509050620002b99190620002bd565b5090565b5b80821115620002d8576000816000905550600101620002be565b5090565b6000620002f3620002ed8462000434565b6200040b565b905082815260208101848484011115620003125762000311620005a3565b5b6200031f8482856200049e565b509392505050565b6000815190506200033881620005c3565b92915050565b600082601f8301126200035657620003556200059e565b5b815162000368848260208601620002dc565b91505092915050565b6000806000606084860312156200038d576200038c620005ad565b5b600084015167ffffffffffffffff811115620003ae57620003ad620005a8565b5b620003bc868287016200033e565b935050602084015167ffffffffffffffff811115620003e057620003df620005a8565b5b620003ee868287016200033e565b9250506040620004018682870162000327565b9150509250925092565b6000620004176200042a565b90506200042582826200050a565b919050565b6000604051905090565b600067ffffffffffffffff8211156200045257620004516200056f565b5b6200045d82620005b2565b9050602081019050919050565b600062000477826200047e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004be578082015181840152602081019050620004a1565b83811115620004ce576000848401525b50505050565b60006002820490506001821680620004ed57607f821691505b6020821081141562000504576200050362000540565b5b50919050565b6200051582620005b2565b810181811067ffffffffffffffff821117156200053757620005366200056f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005ce816200046a565b8114620005da57600080fd5b50565b61490f80620005ed6000396000f3fe60806040526004361061025c5760003560e01c80636efd86a511610144578063a4331d2d116100b6578063c87b56dd1161007a578063c87b56dd14610850578063ca77d63e1461088d578063cdef1b92146108b8578063e985e9c5146108e3578063f19e75d414610920578063f2fde38b1461093c5761025c565b8063a4331d2d14610759578063a532409314610784578063b88d4fde146107c1578063bd0689bb146107ea578063bdd65d34146108135761025c565b80637bb232ad116101085780637bb232ad1461066f578063806234441461069a5780638456cb59146106c35780638da5cb5b146106da57806395d89b4114610705578063a22cb465146107305761025c565b80636efd86a5146105a957806370a08231146105d4578063715018a61461061157806373d5fe661461062857806378c68e16146106445761025c565b80632dd5ebde116101dd57806352148e73116101a157806352148e73146104a65780635c975abb146104cf5780635d3ebf32146104fa5780636352211e146105165780636817c76c146105535780636909f4931461057e5761025c565b80632dd5ebde146103fd5780633ccfd60b146104265780633f4ba83a1461043d5780633fd173661461045457806342842e0e1461047d5761025c565b80631bae7270116102245780631bae72701461035a57806323b872dd1461037657806329d004261461039f5780632d214ce7146103ca5780632db11544146103e15761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613895565b610965565b6040516102959190613d68565b60405180910390f35b3480156102aa57600080fd5b506102b36109f7565b6040516102c09190613d9e565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613938565b610a89565b6040516102fd9190613d01565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906137c8565b610b05565b005b34801561033b57600080fd5b50610344610cac565b6040516103519190614040565b60405180910390f35b610374600480360381019061036f9190613938565b610cc3565b005b34801561038257600080fd5b5061039d600480360381019061039891906136b2565b610ec9565b005b3480156103ab57600080fd5b506103b4610ed9565b6040516103c19190614040565b60405180910390f35b3480156103d657600080fd5b506103df610edf565b005b6103fb60048036038101906103f69190613938565b610f87565b005b34801561040957600080fd5b50610424600480360381019061041f9190613868565b6111da565b005b34801561043257600080fd5b5061043b611260565b005b34801561044957600080fd5b50610452611641565b005b34801561046057600080fd5b5061047b60048036038101906104769190613938565b6116c7565b005b34801561048957600080fd5b506104a4600480360381019061049f91906136b2565b6117d5565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613645565b6117f5565b005b3480156104db57600080fd5b506104e46118b5565b6040516104f19190613d68565b60405180910390f35b610514600480360381019061050f9190613808565b6118cc565b005b34801561052257600080fd5b5061053d60048036038101906105389190613938565b611b8d565b60405161054a9190613d01565b60405180910390f35b34801561055f57600080fd5b50610568611b9f565b6040516105759190614040565b60405180910390f35b34801561058a57600080fd5b50610593611ba5565b6040516105a09190613d83565b60405180910390f35b3480156105b557600080fd5b506105be611bab565b6040516105cb9190614040565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613645565b611bb1565b6040516106089190614040565b60405180910390f35b34801561061d57600080fd5b50610626611c6a565b005b610642600480360381019061063d91906137c8565b611cf2565b005b34801561065057600080fd5b50610659611e16565b6040516106669190613d01565b60405180910390f35b34801561067b57600080fd5b50610684611e3c565b6040516106919190614040565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613938565b611e42565b005b3480156106cf57600080fd5b506106d8611fbf565b005b3480156106e657600080fd5b506106ef612045565b6040516106fc9190613d01565b60405180910390f35b34801561071157600080fd5b5061071a61206f565b6040516107279190613d9e565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613788565b612101565b005b34801561076557600080fd5b5061076e612279565b60405161077b9190614040565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613645565b61227f565b6040516107b89190614040565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613705565b612297565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613938565b61230a565b005b34801561081f57600080fd5b5061083a60048036038101906108359190613645565b6123d3565b6040516108479190614040565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190613938565b6123eb565b6040516108849190613d9e565b60405180910390f35b34801561089957600080fd5b506108a261257e565b6040516108af9190613d68565b60405180910390f35b3480156108c457600080fd5b506108cd612591565b6040516108da9190614040565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613672565b612597565b6040516109179190613d68565b60405180910390f35b61093a60048036038101906109359190613938565b61262b565b005b34801561094857600080fd5b50610963600480360381019061095e9190613645565b61274e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a06906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a32906142ef565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b6000610a9482612846565b610aca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b10826128a5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b78576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b97612973565b73ffffffffffffffffffffffffffffffffffffffff1614610bfa57610bc381610bbe612973565b612597565b610bf9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610cb661297b565b6001546000540303905090565b601160009054906101000a900460ff16610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613f00565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613fa0565b60405180910390fd5b60095481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dce919061411a565b1115610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613e40565b60405180910390fd5b600b5481610e1b610cac565b610e25919061411a565b1115610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613e00565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eb5919061411a565b92505081905550610ec63382612984565b50565b610ed48383836129a2565b505050565b60095481565b610ee7612d4c565b73ffffffffffffffffffffffffffffffffffffffff16610f05612045565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613f20565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613fa0565b60405180910390fd5b600b54611000610cac565b1015611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614000565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108f919061411a565b11156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613f40565b60405180910390fd5b80600c546110de91906141a1565b341015611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613e80565b60405180910390fd5b600d548161112c610cac565b611136919061411a565b1115611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613e00565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c6919061411a565b925050819055506111d73382612984565b50565b6111e2612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611200612045565b73ffffffffffffffffffffffffffffffffffffffff1614611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613f20565b60405180910390fd5b80600f8190555050565b611268612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611286612045565b73ffffffffffffffffffffffffffffffffffffffff16146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613f20565b60405180910390fd5b60004790506000739f79de05f4f5f6520665402c633613dd2477cffb9050600073f6a8b433b79334f9937bd1c57bd058a37dc3edf89050600073d55779fa12ed38445ce5111c527b450afe4df32d905060007318226cffda30ed33fd6ccd6a8cb9f6794df48f6390506000734a5003fa3491c8be0d44b26e3123cab569193b8890506000734fc7e224d84735462189f7bfacf06a15faf8b7c3905060007309e480e968f7e90e0dd0bf2f6910a73134c969e290508673ffffffffffffffffffffffffffffffffffffffff166108fc6127106109c48b6113bb91906141a1565b6113c59190614170565b9081150290604051600060405180830381858888f193505050501580156113f0573d6000803e3d6000fd5b508573ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc8b61141c91906141a1565b6114269190614170565b9081150290604051600060405180830381858888f19350505050158015611451573d6000803e3d6000fd5b508473ffffffffffffffffffffffffffffffffffffffff166108fc6127106106408b61147d91906141a1565b6114879190614170565b9081150290604051600060405180830381858888f193505050501580156114b2573d6000803e3d6000fd5b508373ffffffffffffffffffffffffffffffffffffffff166108fc6127106106a48b6114de91906141a1565b6114e89190614170565b9081150290604051600060405180830381858888f19350505050158015611513573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc8b61153f91906141a1565b6115499190614170565b9081150290604051600060405180830381858888f19350505050158015611574573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc61271061012c8b6115a091906141a1565b6115aa9190614170565b9081150290604051600060405180830381858888f193505050501580156115d5573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc6127106103848b61160191906141a1565b61160b9190614170565b9081150290604051600060405180830381858888f19350505050158015611636573d6000803e3d6000fd5b505050505050505050565b611649612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611667612045565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613f20565b60405180910390fd5b6116c5612d54565b565b6116cf612d4c565b73ffffffffffffffffffffffffffffffffffffffff166116ed612045565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613f20565b60405180910390fd5b6000811015611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90614020565b60405180910390fd5b600c5481106117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613fc0565b60405180910390fd5b80600c8190555050565b6117f083838360405180602001604052806000815250612297565b505050565b6117fd612d4c565b73ffffffffffffffffffffffffffffffffffffffff1661181b612045565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613f20565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860149054906101000a900460ff16905090565b601160009054906101000a900460ff1661191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613f00565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613fa0565b60405180910390fd5b600a5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119d7919061411a565b1115611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613e40565b60405180910390fd5b600033604051602001611a2b9190613ce6565b604051602081830303815290604052805190602001209050611a91848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612df6565b611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613dc0565b60405180910390fd5b600b5482611adc610cac565b611ae6919061411a565b1115611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613e00565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b76919061411a565b92505081905550611b873383612984565b50505050565b6000611b98826128a5565b9050919050565b600c5481565b600f5481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c19576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c72612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611c90612045565b73ffffffffffffffffffffffffffffffffffffffff1614611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90613f20565b60405180910390fd5b611cf06000612e0d565b565b611cfa612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611d18612045565b73ffffffffffffffffffffffffffffffffffffffff1614611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590613f20565b60405180910390fd5b60008111611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613ee0565b60405180910390fd5b600d5481611dbd610cac565b611dc7919061411a565b1115611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613e00565b60405180910390fd5b611e128282612984565b5050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b611e4a612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611e68612045565b73ffffffffffffffffffffffffffffffffffffffff1614611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590613f20565b60405180910390fd5b60008111611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613fc0565b60405180910390fd5b600d54611f0c610cac565b10611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613e60565b60405180910390fd5b611f54610cac565b81600d54611f6291906141fb565b1015611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613fe0565b60405180910390fd5b80600d6000828254611fb591906141fb565b9250508190555050565b611fc7612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611fe5612045565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613f20565b60405180910390fd5b612043612ed3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461207e906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546120aa906142ef565b80156120f75780601f106120cc576101008083540402835291602001916120f7565b820191906000526020600020905b8154815290600101906020018083116120da57829003601f168201915b5050505050905090565b612109612973565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061217b612973565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612228612973565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226d9190613d68565b60405180910390a35050565b600e5481565b60136020528060005260406000206000915090505481565b6122a28484846129a2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612304576122cd84848484612f76565b612303576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612312612d4c565b73ffffffffffffffffffffffffffffffffffffffff16612330612045565b73ffffffffffffffffffffffffffffffffffffffff1614612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90613f20565b60405180910390fd5b600081116123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613f80565b60405180910390fd5b80600e8190555050565b60126020528060005260406000206000915090505481565b60606123f682612846565b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90613ec0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90613f60565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a574cea4836040518263ffffffff1660e01b81526004016125229190614040565b60006040518083038186803b15801561253a57600080fd5b505afa15801561254e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061257791906138ef565b9050919050565b601160009054906101000a900460ff1681565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612633612d4c565b73ffffffffffffffffffffffffffffffffffffffff16612651612045565b73ffffffffffffffffffffffffffffffffffffffff16146126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90613f20565b60405180910390fd5b600081116126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e190613ee0565b60405180910390fd5b600d54816126f6610cac565b612700919061411a565b1115612741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273890613e00565b60405180910390fd5b61274b3382612984565b50565b612756612d4c565b73ffffffffffffffffffffffffffffffffffffffff16612774612045565b73ffffffffffffffffffffffffffffffffffffffff16146127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c190613f20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561283a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283190613e20565b60405180910390fd5b61284381612e0d565b50565b60008161285161297b565b11158015612860575060005482105b801561289e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806128b461297b565b1161293c5760005481101561293b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612939575b600081141561292f576004600083600190039350838152602001908152602001600020549050612904565b809250505061296e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b61299e8282604051806020016040528060008152506130d6565b5050565b60006129ad826128a5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a14576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612a35612973565b73ffffffffffffffffffffffffffffffffffffffff161480612a645750612a6385612a5e612973565b612597565b5b80612aa95750612a72612973565b73ffffffffffffffffffffffffffffffffffffffff16612a9184610a89565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ae2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b49576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b56858585600161338b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612c53866133e5565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612cdd576000600184019050600060046000838152602001908152602001600020541415612cdb576000548114612cda578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4585858560016133ef565b5050505050565b600033905090565b612d5c6118b5565b612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9290613de0565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612ddf612d4c565b604051612dec9190613d01565b60405180910390a1565b600082612e0385846133f5565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612edb6118b5565b15612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290613ea0565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f5f612d4c565b604051612f6c9190613d01565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f9c612973565b8786866040518563ffffffff1660e01b8152600401612fbe9493929190613d1c565b602060405180830381600087803b158015612fd857600080fd5b505af192505050801561300957506040513d601f19601f8201168201806040525081019061300691906138c2565b60015b613083573d8060008114613039576040519150601f19603f3d011682016040523d82523d6000602084013e61303e565b606091505b5060008151141561307b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613143576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561317e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61318b600085838661338b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16131f06001851461346a565b901b60a042901b613200866133e5565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613304575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132b46000878480600101955087612f76565b6132ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106132455782600054146132ff57600080fd5b61336f565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613305575b81600081905550505061338560008583866133ef565b50505050565b6133936118b5565b156133d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ca90613ea0565b60405180910390fd5b6133df84848484613474565b50505050565b6000819050919050565b50505050565b60008082905060005b845181101561345f57600085828151811061341c5761341b61444c565b5b6020026020010151905080831161343e57613437838261347a565b925061344b565b613448818461347a565b92505b50808061345790614352565b9150506133fe565b508091505092915050565b6000819050919050565b50505050565b600082600052816020526040600020905092915050565b60006134a461349f84614080565b61405b565b9050828152602081018484840111156134c0576134bf6144b9565b5b6134cb8482856142ad565b509392505050565b60006134e66134e1846140b1565b61405b565b905082815260208101848484011115613502576135016144b9565b5b61350d8482856142bc565b509392505050565b60008135905061352481614866565b92915050565b60008083601f8401126135405761353f6144af565b5b8235905067ffffffffffffffff81111561355d5761355c6144aa565b5b602083019150836020820283011115613579576135786144b4565b5b9250929050565b60008135905061358f8161487d565b92915050565b6000813590506135a481614894565b92915050565b6000813590506135b9816148ab565b92915050565b6000815190506135ce816148ab565b92915050565b600082601f8301126135e9576135e86144af565b5b81356135f9848260208601613491565b91505092915050565b600082601f830112613617576136166144af565b5b81516136278482602086016134d3565b91505092915050565b60008135905061363f816148c2565b92915050565b60006020828403121561365b5761365a6144c3565b5b600061366984828501613515565b91505092915050565b60008060408385031215613689576136886144c3565b5b600061369785828601613515565b92505060206136a885828601613515565b9150509250929050565b6000806000606084860312156136cb576136ca6144c3565b5b60006136d986828701613515565b93505060206136ea86828701613515565b92505060406136fb86828701613630565b9150509250925092565b6000806000806080858703121561371f5761371e6144c3565b5b600061372d87828801613515565b945050602061373e87828801613515565b935050604061374f87828801613630565b925050606085013567ffffffffffffffff8111156137705761376f6144be565b5b61377c878288016135d4565b91505092959194509250565b6000806040838503121561379f5761379e6144c3565b5b60006137ad85828601613515565b92505060206137be85828601613580565b9150509250929050565b600080604083850312156137df576137de6144c3565b5b60006137ed85828601613515565b92505060206137fe85828601613630565b9150509250929050565b600080600060408486031215613821576138206144c3565b5b600084013567ffffffffffffffff81111561383f5761383e6144be565b5b61384b8682870161352a565b9350935050602061385e86828701613630565b9150509250925092565b60006020828403121561387e5761387d6144c3565b5b600061388c84828501613595565b91505092915050565b6000602082840312156138ab576138aa6144c3565b5b60006138b9848285016135aa565b91505092915050565b6000602082840312156138d8576138d76144c3565b5b60006138e6848285016135bf565b91505092915050565b600060208284031215613905576139046144c3565b5b600082015167ffffffffffffffff811115613923576139226144be565b5b61392f84828501613602565b91505092915050565b60006020828403121561394e5761394d6144c3565b5b600061395c84828501613630565b91505092915050565b61396e8161422f565b82525050565b6139856139808261422f565b61439b565b82525050565b61399481614241565b82525050565b6139a38161424d565b82525050565b60006139b4826140e2565b6139be81856140f8565b93506139ce8185602086016142bc565b6139d7816144c8565b840191505092915050565b60006139ed826140ed565b6139f78185614109565b9350613a078185602086016142bc565b613a10816144c8565b840191505092915050565b6000613a28601483614109565b9150613a33826144e6565b602082019050919050565b6000613a4b601483614109565b9150613a568261450f565b602082019050919050565b6000613a6e600f83614109565b9150613a7982614538565b602082019050919050565b6000613a91602683614109565b9150613a9c82614561565b604082019050919050565b6000613ab4601383614109565b9150613abf826145b0565b602082019050919050565b6000613ad7600883614109565b9150613ae2826145d9565b602082019050919050565b6000613afa601283614109565b9150613b0582614602565b602082019050919050565b6000613b1d601083614109565b9150613b288261462b565b602082019050919050565b6000613b40601183614109565b9150613b4b82614654565b602082019050919050565b6000613b63601083614109565b9150613b6e8261467d565b602082019050919050565b6000613b86601c83614109565b9150613b91826146a6565b602082019050919050565b6000613ba9602083614109565b9150613bb4826146cf565b602082019050919050565b6000613bcc601583614109565b9150613bd7826146f8565b602082019050919050565b6000613bef602183614109565b9150613bfa82614721565b604082019050919050565b6000613c12600d83614109565b9150613c1d82614770565b602082019050919050565b6000613c35601283614109565b9150613c4082614799565b602082019050919050565b6000613c58601283614109565b9150613c63826147c2565b602082019050919050565b6000613c7b601383614109565b9150613c86826147eb565b602082019050919050565b6000613c9e601e83614109565b9150613ca982614814565b602082019050919050565b6000613cc1600d83614109565b9150613ccc8261483d565b602082019050919050565b613ce0816142a3565b82525050565b6000613cf28284613974565b60148201915081905092915050565b6000602082019050613d166000830184613965565b92915050565b6000608082019050613d316000830187613965565b613d3e6020830186613965565b613d4b6040830185613cd7565b8181036060830152613d5d81846139a9565b905095945050505050565b6000602082019050613d7d600083018461398b565b92915050565b6000602082019050613d98600083018461399a565b92915050565b60006020820190508181036000830152613db881846139e2565b905092915050565b60006020820190508181036000830152613dd981613a1b565b9050919050565b60006020820190508181036000830152613df981613a3e565b9050919050565b60006020820190508181036000830152613e1981613a61565b9050919050565b60006020820190508181036000830152613e3981613a84565b9050919050565b60006020820190508181036000830152613e5981613aa7565b9050919050565b60006020820190508181036000830152613e7981613aca565b9050919050565b60006020820190508181036000830152613e9981613aed565b9050919050565b60006020820190508181036000830152613eb981613b10565b9050919050565b60006020820190508181036000830152613ed981613b33565b9050919050565b60006020820190508181036000830152613ef981613b56565b9050919050565b60006020820190508181036000830152613f1981613b79565b9050919050565b60006020820190508181036000830152613f3981613b9c565b9050919050565b60006020820190508181036000830152613f5981613bbf565b9050919050565b60006020820190508181036000830152613f7981613be2565b9050919050565b60006020820190508181036000830152613f9981613c05565b9050919050565b60006020820190508181036000830152613fb981613c28565b9050919050565b60006020820190508181036000830152613fd981613c4b565b9050919050565b60006020820190508181036000830152613ff981613c6e565b9050919050565b6000602082019050818103600083015261401981613c91565b9050919050565b6000602082019050818103600083015261403981613cb4565b9050919050565b60006020820190506140556000830184613cd7565b92915050565b6000614065614076565b90506140718282614321565b919050565b6000604051905090565b600067ffffffffffffffff82111561409b5761409a61447b565b5b6140a4826144c8565b9050602081019050919050565b600067ffffffffffffffff8211156140cc576140cb61447b565b5b6140d5826144c8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614125826142a3565b9150614130836142a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614165576141646143bf565b5b828201905092915050565b600061417b826142a3565b9150614186836142a3565b925082614196576141956143ee565b5b828204905092915050565b60006141ac826142a3565b91506141b7836142a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141f0576141ef6143bf565b5b828202905092915050565b6000614206826142a3565b9150614211836142a3565b925082821015614224576142236143bf565b5b828203905092915050565b600061423a82614283565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b6000600282049050600182168061430757607f821691505b6020821081141561431b5761431a61441d565b5b50919050565b61432a826144c8565b810181811067ffffffffffffffff821117156143495761434861447b565b5b80604052505050565b600061435d826142a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143905761438f6143bf565b5b600182019050919050565b60006143a6826143ad565b9050919050565b60006143b8826144d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d65726b6c652070726f6f6620696e76616c6964000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74204c696d697420457863656564656400000000000000000000000000600082015250565b7f546f6f206c617465000000000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f426170657a467265652d53616c65206973206e6f742061637469766500000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f557020746f2035206d696e747320616c6c6f7765640000000000000000000000600082015250565b7f496e76616c6964206d657461646174612070726f76696465722061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c756500000000000000000000000000000000000000600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f4a75737420666f7220726564756374696f6e0000000000000000000000000000600082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b7f46726565206d696e7420686173206e6f742066696e6973686564207965740000600082015250565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b61486f8161422f565b811461487a57600080fd5b50565b61488681614241565b811461489157600080fd5b50565b61489d8161424d565b81146148a857600080fd5b50565b6148b481614257565b81146148bf57600080fd5b50565b6148cb816142a3565b81146148d657600080fd5b5056fea2646970667358221220be04d6dee4f83a98f8ed5ca1cb79824d2495144198b9195c869122dbe8b210e264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f0d093d3834003d208c0d19f7341517d5239d816000000000000000000000000000000000000000000000000000000000000000c426170657a204a756e676c6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424150455a000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636efd86a511610144578063a4331d2d116100b6578063c87b56dd1161007a578063c87b56dd14610850578063ca77d63e1461088d578063cdef1b92146108b8578063e985e9c5146108e3578063f19e75d414610920578063f2fde38b1461093c5761025c565b8063a4331d2d14610759578063a532409314610784578063b88d4fde146107c1578063bd0689bb146107ea578063bdd65d34146108135761025c565b80637bb232ad116101085780637bb232ad1461066f578063806234441461069a5780638456cb59146106c35780638da5cb5b146106da57806395d89b4114610705578063a22cb465146107305761025c565b80636efd86a5146105a957806370a08231146105d4578063715018a61461061157806373d5fe661461062857806378c68e16146106445761025c565b80632dd5ebde116101dd57806352148e73116101a157806352148e73146104a65780635c975abb146104cf5780635d3ebf32146104fa5780636352211e146105165780636817c76c146105535780636909f4931461057e5761025c565b80632dd5ebde146103fd5780633ccfd60b146104265780633f4ba83a1461043d5780633fd173661461045457806342842e0e1461047d5761025c565b80631bae7270116102245780631bae72701461035a57806323b872dd1461037657806329d004261461039f5780632d214ce7146103ca5780632db11544146103e15761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806318160ddd1461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613895565b610965565b6040516102959190613d68565b60405180910390f35b3480156102aa57600080fd5b506102b36109f7565b6040516102c09190613d9e565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613938565b610a89565b6040516102fd9190613d01565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906137c8565b610b05565b005b34801561033b57600080fd5b50610344610cac565b6040516103519190614040565b60405180910390f35b610374600480360381019061036f9190613938565b610cc3565b005b34801561038257600080fd5b5061039d600480360381019061039891906136b2565b610ec9565b005b3480156103ab57600080fd5b506103b4610ed9565b6040516103c19190614040565b60405180910390f35b3480156103d657600080fd5b506103df610edf565b005b6103fb60048036038101906103f69190613938565b610f87565b005b34801561040957600080fd5b50610424600480360381019061041f9190613868565b6111da565b005b34801561043257600080fd5b5061043b611260565b005b34801561044957600080fd5b50610452611641565b005b34801561046057600080fd5b5061047b60048036038101906104769190613938565b6116c7565b005b34801561048957600080fd5b506104a4600480360381019061049f91906136b2565b6117d5565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613645565b6117f5565b005b3480156104db57600080fd5b506104e46118b5565b6040516104f19190613d68565b60405180910390f35b610514600480360381019061050f9190613808565b6118cc565b005b34801561052257600080fd5b5061053d60048036038101906105389190613938565b611b8d565b60405161054a9190613d01565b60405180910390f35b34801561055f57600080fd5b50610568611b9f565b6040516105759190614040565b60405180910390f35b34801561058a57600080fd5b50610593611ba5565b6040516105a09190613d83565b60405180910390f35b3480156105b557600080fd5b506105be611bab565b6040516105cb9190614040565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613645565b611bb1565b6040516106089190614040565b60405180910390f35b34801561061d57600080fd5b50610626611c6a565b005b610642600480360381019061063d91906137c8565b611cf2565b005b34801561065057600080fd5b50610659611e16565b6040516106669190613d01565b60405180910390f35b34801561067b57600080fd5b50610684611e3c565b6040516106919190614040565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613938565b611e42565b005b3480156106cf57600080fd5b506106d8611fbf565b005b3480156106e657600080fd5b506106ef612045565b6040516106fc9190613d01565b60405180910390f35b34801561071157600080fd5b5061071a61206f565b6040516107279190613d9e565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190613788565b612101565b005b34801561076557600080fd5b5061076e612279565b60405161077b9190614040565b60405180910390f35b34801561079057600080fd5b506107ab60048036038101906107a69190613645565b61227f565b6040516107b89190614040565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613705565b612297565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613938565b61230a565b005b34801561081f57600080fd5b5061083a60048036038101906108359190613645565b6123d3565b6040516108479190614040565b60405180910390f35b34801561085c57600080fd5b5061087760048036038101906108729190613938565b6123eb565b6040516108849190613d9e565b60405180910390f35b34801561089957600080fd5b506108a261257e565b6040516108af9190613d68565b60405180910390f35b3480156108c457600080fd5b506108cd612591565b6040516108da9190614040565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613672565b612597565b6040516109179190613d68565b60405180910390f35b61093a60048036038101906109359190613938565b61262b565b005b34801561094857600080fd5b50610963600480360381019061095e9190613645565b61274e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109c057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109f05750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a06906142ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a32906142ef565b8015610a7f5780601f10610a5457610100808354040283529160200191610a7f565b820191906000526020600020905b815481529060010190602001808311610a6257829003601f168201915b5050505050905090565b6000610a9482612846565b610aca576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b10826128a5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b78576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b97612973565b73ffffffffffffffffffffffffffffffffffffffff1614610bfa57610bc381610bbe612973565b612597565b610bf9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610cb661297b565b6001546000540303905090565b601160009054906101000a900460ff16610d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0990613f00565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790613fa0565b60405180910390fd5b60095481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dce919061411a565b1115610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690613e40565b60405180910390fd5b600b5481610e1b610cac565b610e25919061411a565b1115610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613e00565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610eb5919061411a565b92505081905550610ec63382612984565b50565b610ed48383836129a2565b505050565b60095481565b610ee7612d4c565b73ffffffffffffffffffffffffffffffffffffffff16610f05612045565b73ffffffffffffffffffffffffffffffffffffffff1614610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613f20565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec90613fa0565b60405180910390fd5b600b54611000610cac565b1015611041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103890614000565b60405180910390fd5b600e5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461108f919061411a565b11156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c790613f40565b60405180910390fd5b80600c546110de91906141a1565b341015611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111790613e80565b60405180910390fd5b600d548161112c610cac565b611136919061411a565b1115611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e90613e00565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c6919061411a565b925050819055506111d73382612984565b50565b6111e2612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611200612045565b73ffffffffffffffffffffffffffffffffffffffff1614611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613f20565b60405180910390fd5b80600f8190555050565b611268612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611286612045565b73ffffffffffffffffffffffffffffffffffffffff16146112dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d390613f20565b60405180910390fd5b60004790506000739f79de05f4f5f6520665402c633613dd2477cffb9050600073f6a8b433b79334f9937bd1c57bd058a37dc3edf89050600073d55779fa12ed38445ce5111c527b450afe4df32d905060007318226cffda30ed33fd6ccd6a8cb9f6794df48f6390506000734a5003fa3491c8be0d44b26e3123cab569193b8890506000734fc7e224d84735462189f7bfacf06a15faf8b7c3905060007309e480e968f7e90e0dd0bf2f6910a73134c969e290508673ffffffffffffffffffffffffffffffffffffffff166108fc6127106109c48b6113bb91906141a1565b6113c59190614170565b9081150290604051600060405180830381858888f193505050501580156113f0573d6000803e3d6000fd5b508573ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc8b61141c91906141a1565b6114269190614170565b9081150290604051600060405180830381858888f19350505050158015611451573d6000803e3d6000fd5b508473ffffffffffffffffffffffffffffffffffffffff166108fc6127106106408b61147d91906141a1565b6114879190614170565b9081150290604051600060405180830381858888f193505050501580156114b2573d6000803e3d6000fd5b508373ffffffffffffffffffffffffffffffffffffffff166108fc6127106106a48b6114de91906141a1565b6114e89190614170565b9081150290604051600060405180830381858888f19350505050158015611513573d6000803e3d6000fd5b508273ffffffffffffffffffffffffffffffffffffffff166108fc6127106105dc8b61153f91906141a1565b6115499190614170565b9081150290604051600060405180830381858888f19350505050158015611574573d6000803e3d6000fd5b508173ffffffffffffffffffffffffffffffffffffffff166108fc61271061012c8b6115a091906141a1565b6115aa9190614170565b9081150290604051600060405180830381858888f193505050501580156115d5573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff166108fc6127106103848b61160191906141a1565b61160b9190614170565b9081150290604051600060405180830381858888f19350505050158015611636573d6000803e3d6000fd5b505050505050505050565b611649612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611667612045565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613f20565b60405180910390fd5b6116c5612d54565b565b6116cf612d4c565b73ffffffffffffffffffffffffffffffffffffffff166116ed612045565b73ffffffffffffffffffffffffffffffffffffffff1614611743576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173a90613f20565b60405180910390fd5b6000811015611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90614020565b60405180910390fd5b600c5481106117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613fc0565b60405180910390fd5b80600c8190555050565b6117f083838360405180602001604052806000815250612297565b505050565b6117fd612d4c565b73ffffffffffffffffffffffffffffffffffffffff1661181b612045565b73ffffffffffffffffffffffffffffffffffffffff1614611871576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186890613f20565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600860149054906101000a900460ff16905090565b601160009054906101000a900460ff1661191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613f00565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613fa0565b60405180910390fd5b600a5481601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119d7919061411a565b1115611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613e40565b60405180910390fd5b600033604051602001611a2b9190613ce6565b604051602081830303815290604052805190602001209050611a91848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612df6565b611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613dc0565b60405180910390fd5b600b5482611adc610cac565b611ae6919061411a565b1115611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613e00565b60405180910390fd5b81601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b76919061411a565b92505081905550611b873383612984565b50505050565b6000611b98826128a5565b9050919050565b600c5481565b600f5481565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c19576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c72612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611c90612045565b73ffffffffffffffffffffffffffffffffffffffff1614611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90613f20565b60405180910390fd5b611cf06000612e0d565b565b611cfa612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611d18612045565b73ffffffffffffffffffffffffffffffffffffffff1614611d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6590613f20565b60405180910390fd5b60008111611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da890613ee0565b60405180910390fd5b600d5481611dbd610cac565b611dc7919061411a565b1115611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613e00565b60405180910390fd5b611e128282612984565b5050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b611e4a612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611e68612045565b73ffffffffffffffffffffffffffffffffffffffff1614611ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb590613f20565b60405180910390fd5b60008111611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890613fc0565b60405180910390fd5b600d54611f0c610cac565b10611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613e60565b60405180910390fd5b611f54610cac565b81600d54611f6291906141fb565b1015611fa3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9a90613fe0565b60405180910390fd5b80600d6000828254611fb591906141fb565b9250508190555050565b611fc7612d4c565b73ffffffffffffffffffffffffffffffffffffffff16611fe5612045565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203290613f20565b60405180910390fd5b612043612ed3565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461207e906142ef565b80601f01602080910402602001604051908101604052809291908181526020018280546120aa906142ef565b80156120f75780601f106120cc576101008083540402835291602001916120f7565b820191906000526020600020905b8154815290600101906020018083116120da57829003601f168201915b5050505050905090565b612109612973565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561216e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061217b612973565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612228612973565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161226d9190613d68565b60405180910390a35050565b600e5481565b60136020528060005260406000206000915090505481565b6122a28484846129a2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612304576122cd84848484612f76565b612303576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612312612d4c565b73ffffffffffffffffffffffffffffffffffffffff16612330612045565b73ffffffffffffffffffffffffffffffffffffffff1614612386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237d90613f20565b60405180910390fd5b600081116123c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c090613f80565b60405180910390fd5b80600e8190555050565b60126020528060005260406000206000915090505481565b60606123f682612846565b612435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242c90613ec0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90613f60565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a574cea4836040518263ffffffff1660e01b81526004016125229190614040565b60006040518083038186803b15801561253a57600080fd5b505afa15801561254e573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061257791906138ef565b9050919050565b601160009054906101000a900460ff1681565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612633612d4c565b73ffffffffffffffffffffffffffffffffffffffff16612651612045565b73ffffffffffffffffffffffffffffffffffffffff16146126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90613f20565b60405180910390fd5b600081116126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e190613ee0565b60405180910390fd5b600d54816126f6610cac565b612700919061411a565b1115612741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273890613e00565b60405180910390fd5b61274b3382612984565b50565b612756612d4c565b73ffffffffffffffffffffffffffffffffffffffff16612774612045565b73ffffffffffffffffffffffffffffffffffffffff16146127ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c190613f20565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561283a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283190613e20565b60405180910390fd5b61284381612e0d565b50565b60008161285161297b565b11158015612860575060005482105b801561289e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806128b461297b565b1161293c5760005481101561293b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612939575b600081141561292f576004600083600190039350838152602001908152602001600020549050612904565b809250505061296e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b61299e8282604051806020016040528060008152506130d6565b5050565b60006129ad826128a5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612a14576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612a35612973565b73ffffffffffffffffffffffffffffffffffffffff161480612a645750612a6385612a5e612973565b612597565b5b80612aa95750612a72612973565b73ffffffffffffffffffffffffffffffffffffffff16612a9184610a89565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ae2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b49576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b56858585600161338b565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612c53866133e5565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612cdd576000600184019050600060046000838152602001908152602001600020541415612cdb576000548114612cda578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4585858560016133ef565b5050505050565b600033905090565b612d5c6118b5565b612d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9290613de0565b60405180910390fd5b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612ddf612d4c565b604051612dec9190613d01565b60405180910390a1565b600082612e0385846133f5565b1490509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612edb6118b5565b15612f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1290613ea0565b60405180910390fd5b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612f5f612d4c565b604051612f6c9190613d01565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f9c612973565b8786866040518563ffffffff1660e01b8152600401612fbe9493929190613d1c565b602060405180830381600087803b158015612fd857600080fd5b505af192505050801561300957506040513d601f19601f8201168201806040525081019061300691906138c2565b60015b613083573d8060008114613039576040519150601f19603f3d011682016040523d82523d6000602084013e61303e565b606091505b5060008151141561307b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613143576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561317e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61318b600085838661338b565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16131f06001851461346a565b901b60a042901b613200866133e5565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613304575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132b46000878480600101955087612f76565b6132ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106132455782600054146132ff57600080fd5b61336f565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613305575b81600081905550505061338560008583866133ef565b50505050565b6133936118b5565b156133d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ca90613ea0565b60405180910390fd5b6133df84848484613474565b50505050565b6000819050919050565b50505050565b60008082905060005b845181101561345f57600085828151811061341c5761341b61444c565b5b6020026020010151905080831161343e57613437838261347a565b925061344b565b613448818461347a565b92505b50808061345790614352565b9150506133fe565b508091505092915050565b6000819050919050565b50505050565b600082600052816020526040600020905092915050565b60006134a461349f84614080565b61405b565b9050828152602081018484840111156134c0576134bf6144b9565b5b6134cb8482856142ad565b509392505050565b60006134e66134e1846140b1565b61405b565b905082815260208101848484011115613502576135016144b9565b5b61350d8482856142bc565b509392505050565b60008135905061352481614866565b92915050565b60008083601f8401126135405761353f6144af565b5b8235905067ffffffffffffffff81111561355d5761355c6144aa565b5b602083019150836020820283011115613579576135786144b4565b5b9250929050565b60008135905061358f8161487d565b92915050565b6000813590506135a481614894565b92915050565b6000813590506135b9816148ab565b92915050565b6000815190506135ce816148ab565b92915050565b600082601f8301126135e9576135e86144af565b5b81356135f9848260208601613491565b91505092915050565b600082601f830112613617576136166144af565b5b81516136278482602086016134d3565b91505092915050565b60008135905061363f816148c2565b92915050565b60006020828403121561365b5761365a6144c3565b5b600061366984828501613515565b91505092915050565b60008060408385031215613689576136886144c3565b5b600061369785828601613515565b92505060206136a885828601613515565b9150509250929050565b6000806000606084860312156136cb576136ca6144c3565b5b60006136d986828701613515565b93505060206136ea86828701613515565b92505060406136fb86828701613630565b9150509250925092565b6000806000806080858703121561371f5761371e6144c3565b5b600061372d87828801613515565b945050602061373e87828801613515565b935050604061374f87828801613630565b925050606085013567ffffffffffffffff8111156137705761376f6144be565b5b61377c878288016135d4565b91505092959194509250565b6000806040838503121561379f5761379e6144c3565b5b60006137ad85828601613515565b92505060206137be85828601613580565b9150509250929050565b600080604083850312156137df576137de6144c3565b5b60006137ed85828601613515565b92505060206137fe85828601613630565b9150509250929050565b600080600060408486031215613821576138206144c3565b5b600084013567ffffffffffffffff81111561383f5761383e6144be565b5b61384b8682870161352a565b9350935050602061385e86828701613630565b9150509250925092565b60006020828403121561387e5761387d6144c3565b5b600061388c84828501613595565b91505092915050565b6000602082840312156138ab576138aa6144c3565b5b60006138b9848285016135aa565b91505092915050565b6000602082840312156138d8576138d76144c3565b5b60006138e6848285016135bf565b91505092915050565b600060208284031215613905576139046144c3565b5b600082015167ffffffffffffffff811115613923576139226144be565b5b61392f84828501613602565b91505092915050565b60006020828403121561394e5761394d6144c3565b5b600061395c84828501613630565b91505092915050565b61396e8161422f565b82525050565b6139856139808261422f565b61439b565b82525050565b61399481614241565b82525050565b6139a38161424d565b82525050565b60006139b4826140e2565b6139be81856140f8565b93506139ce8185602086016142bc565b6139d7816144c8565b840191505092915050565b60006139ed826140ed565b6139f78185614109565b9350613a078185602086016142bc565b613a10816144c8565b840191505092915050565b6000613a28601483614109565b9150613a33826144e6565b602082019050919050565b6000613a4b601483614109565b9150613a568261450f565b602082019050919050565b6000613a6e600f83614109565b9150613a7982614538565b602082019050919050565b6000613a91602683614109565b9150613a9c82614561565b604082019050919050565b6000613ab4601383614109565b9150613abf826145b0565b602082019050919050565b6000613ad7600883614109565b9150613ae2826145d9565b602082019050919050565b6000613afa601283614109565b9150613b0582614602565b602082019050919050565b6000613b1d601083614109565b9150613b288261462b565b602082019050919050565b6000613b40601183614109565b9150613b4b82614654565b602082019050919050565b6000613b63601083614109565b9150613b6e8261467d565b602082019050919050565b6000613b86601c83614109565b9150613b91826146a6565b602082019050919050565b6000613ba9602083614109565b9150613bb4826146cf565b602082019050919050565b6000613bcc601583614109565b9150613bd7826146f8565b602082019050919050565b6000613bef602183614109565b9150613bfa82614721565b604082019050919050565b6000613c12600d83614109565b9150613c1d82614770565b602082019050919050565b6000613c35601283614109565b9150613c4082614799565b602082019050919050565b6000613c58601283614109565b9150613c63826147c2565b602082019050919050565b6000613c7b601383614109565b9150613c86826147eb565b602082019050919050565b6000613c9e601e83614109565b9150613ca982614814565b602082019050919050565b6000613cc1600d83614109565b9150613ccc8261483d565b602082019050919050565b613ce0816142a3565b82525050565b6000613cf28284613974565b60148201915081905092915050565b6000602082019050613d166000830184613965565b92915050565b6000608082019050613d316000830187613965565b613d3e6020830186613965565b613d4b6040830185613cd7565b8181036060830152613d5d81846139a9565b905095945050505050565b6000602082019050613d7d600083018461398b565b92915050565b6000602082019050613d98600083018461399a565b92915050565b60006020820190508181036000830152613db881846139e2565b905092915050565b60006020820190508181036000830152613dd981613a1b565b9050919050565b60006020820190508181036000830152613df981613a3e565b9050919050565b60006020820190508181036000830152613e1981613a61565b9050919050565b60006020820190508181036000830152613e3981613a84565b9050919050565b60006020820190508181036000830152613e5981613aa7565b9050919050565b60006020820190508181036000830152613e7981613aca565b9050919050565b60006020820190508181036000830152613e9981613aed565b9050919050565b60006020820190508181036000830152613eb981613b10565b9050919050565b60006020820190508181036000830152613ed981613b33565b9050919050565b60006020820190508181036000830152613ef981613b56565b9050919050565b60006020820190508181036000830152613f1981613b79565b9050919050565b60006020820190508181036000830152613f3981613b9c565b9050919050565b60006020820190508181036000830152613f5981613bbf565b9050919050565b60006020820190508181036000830152613f7981613be2565b9050919050565b60006020820190508181036000830152613f9981613c05565b9050919050565b60006020820190508181036000830152613fb981613c28565b9050919050565b60006020820190508181036000830152613fd981613c4b565b9050919050565b60006020820190508181036000830152613ff981613c6e565b9050919050565b6000602082019050818103600083015261401981613c91565b9050919050565b6000602082019050818103600083015261403981613cb4565b9050919050565b60006020820190506140556000830184613cd7565b92915050565b6000614065614076565b90506140718282614321565b919050565b6000604051905090565b600067ffffffffffffffff82111561409b5761409a61447b565b5b6140a4826144c8565b9050602081019050919050565b600067ffffffffffffffff8211156140cc576140cb61447b565b5b6140d5826144c8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000614125826142a3565b9150614130836142a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614165576141646143bf565b5b828201905092915050565b600061417b826142a3565b9150614186836142a3565b925082614196576141956143ee565b5b828204905092915050565b60006141ac826142a3565b91506141b7836142a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141f0576141ef6143bf565b5b828202905092915050565b6000614206826142a3565b9150614211836142a3565b925082821015614224576142236143bf565b5b828203905092915050565b600061423a82614283565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b6000600282049050600182168061430757607f821691505b6020821081141561431b5761431a61441d565b5b50919050565b61432a826144c8565b810181811067ffffffffffffffff821117156143495761434861447b565b5b80604052505050565b600061435d826142a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143905761438f6143bf565b5b600182019050919050565b60006143a6826143ad565b9050919050565b60006143b8826144d9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d65726b6c652070726f6f6620696e76616c6964000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74204c696d697420457863656564656400000000000000000000000000600082015250565b7f546f6f206c617465000000000000000000000000000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f426170657a467265652d53616c65206973206e6f742061637469766500000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f557020746f2035206d696e747320616c6c6f7765640000000000000000000000600082015250565b7f496e76616c6964206d657461646174612070726f76696465722061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642076616c756500000000000000000000000000000000000000600082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f4a75737420666f7220726564756374696f6e0000000000000000000000000000600082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b7f46726565206d696e7420686173206e6f742066696e6973686564207965740000600082015250565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b61486f8161422f565b811461487a57600080fd5b50565b61488681614241565b811461489157600080fd5b50565b61489d8161424d565b81146148a857600080fd5b50565b6148b481614257565b81146148bf57600080fd5b50565b6148cb816142a3565b81146148d657600080fd5b5056fea2646970667358221220be04d6dee4f83a98f8ed5ca1cb79824d2495144198b9195c869122dbe8b210e264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000f0d093d3834003d208c0d19f7341517d5239d816000000000000000000000000000000000000000000000000000000000000000c426170657a204a756e676c6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005424150455a000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bapez Jungle
Arg [1] : _symbol (string): BAPEZ
Arg [2] : _mdProvider (address): 0xF0D093D3834003D208c0d19F7341517D5239D816

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000f0d093d3834003d208c0d19f7341517d5239d816
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 426170657a204a756e676c650000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 424150455a000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52152:7087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24216:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29229:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31297:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30757:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23270:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53858:455;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32183:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52221:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56176:122;;;;;;;;;;;;;:::i;:::-;;55023:553;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56306:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56942:1372;;;;;;;;;;;;;:::i;:::-;;56558:67;;;;;;;;;;;;;:::i;:::-;;58788:247;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32424:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53262:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7427:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54321:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29018:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52350:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52476:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52302:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24895:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10326:103;;;;;;;;;;;;;:::i;:::-;;55875:293;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52780:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52396:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58378:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56487:63;;;;;;;;;;;;;:::i;:::-;;9675:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29398:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31573:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52437:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52724:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32680:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59047:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52668:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53376:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52631:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52262:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31952:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55588:279;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10584:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24216:615;24301:4;24616:10;24601:25;;:11;:25;;;;:102;;;;24693:10;24678:25;;:11;:25;;;;24601:102;:179;;;;24770:10;24755:25;;:11;:25;;;;24601:179;24581:199;;24216:615;;;:::o;29229:100::-;29283:13;29316:5;29309:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29229:100;:::o;31297:204::-;31365:7;31390:16;31398:7;31390;:16::i;:::-;31385:64;;31415:34;;;;;;;;;;;;;;31385:64;31469:15;:24;31485:7;31469:24;;;;;;;;;;;;;;;;;;;;;31462:31;;31297:204;;;:::o;30757:474::-;30830:13;30862:27;30881:7;30862:18;:27::i;:::-;30830:61;;30912:5;30906:11;;:2;:11;;;30902:48;;;30926:24;;;;;;;;;;;;;;30902:48;30990:5;30967:28;;:19;:17;:19::i;:::-;:28;;;30963:175;;31015:44;31032:5;31039:19;:17;:19::i;:::-;31015:16;:44::i;:::-;31010:128;;31087:35;;;;;;;;;;;;;;31010:128;30963:175;31177:2;31150:15;:24;31166:7;31150:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31215:7;31211:2;31195:28;;31204:5;31195:28;;;;;;;;;;;;30819:412;30757:474;;:::o;23270:315::-;23323:7;23551:15;:13;:15::i;:::-;23536:12;;23520:13;;:28;:46;23513:53;;23270:315;:::o;53858:455::-;53187:14;;;;;;;;;;;53179:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53072:10:::1;53059:23;;:9;:23;;;53051:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;54055:14:::2;;54043:8;54016:12;:24;54029:10;54016:24;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:53;;54007:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;54169:16;;54157:8;54141:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:44;;54133:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54255:8;54227:12;:24;54240:10;54227:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;54274:31;54284:10;54296:8;54274:9;:31::i;:::-;53858:455:::0;:::o;32183:170::-;32317:28;32327:4;32333:2;32337:7;32317:9;:28::i;:::-;32183:170;;;:::o;52221:33::-;;;;:::o;56176:122::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56276:14:::1;;;;;;;;;;;56275:15;56258:14;;:32;;;;;;;;;;;;;;;;;;56176:122::o:0;55023:553::-;53072:10;53059:23;;:9;:23;;;53051:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55163:16:::1;;55146:13;:11;:13::i;:::-;:33;;55138:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;55274:11;;55262:8;55233:14;:26;55248:10;55233:26;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:52;;55225:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;55355:8;55343:9;;:20;;;;:::i;:::-;55330:9;:33;;55322:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55433:12;;55421:8;55405:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;55397:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55508:8;55478:14;:26;55493:10;55478:26;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;55527:31;55537:10;55549:8;55527:9;:31::i;:::-;55023:553:::0;:::o;56306:173::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56449:22:::1;56425:21;:46;;;;56306:173:::0;:::o;56942:1372::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57018:20:::1;57041:21;57018:44;;57075:24;57102:42;57075:69;;57155:15;57173:42;57155:60;;57226:14;57243:42;57226:59;;57296:17;57316:42;57296:62;;57369:25;57397:42;57369:70;;57450:18;57471:42;57450:63;;57524:30;57557:42;57524:75;;57628:16;57620:34;;:92;57695:5;57687:4;57672:12;:19;;;;:::i;:::-;57671:29;;;;:::i;:::-;57620:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57731:7;57723:25;;:83;57789:5;57781:4;57766:12;:19;;;;:::i;:::-;57765:29;;;;:::i;:::-;57723:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57825:6;57817:24;;:82;57882:5;57874:4;57859:12;:19;;;;:::i;:::-;57858:29;;;;:::i;:::-;57817:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57918:9;57910:27;;:85;57978:5;57970:4;57955:12;:19;;;;:::i;:::-;57954:29;;;;:::i;:::-;57910:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58015:17;58007:35;;:95;58084:5;58076:4;58061:12;:19;;;;:::i;:::-;58060:29;;;;:::i;:::-;58007:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58121:10;58113:28;;:85;58181:5;58174:3;58159:12;:18;;;;:::i;:::-;58158:28;;;;:::i;:::-;58113:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58217:22;58209:40;;:97;58289:5;58282:3;58267:12;:18;;;;:::i;:::-;58266:28;;;;:::i;:::-;58209:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;57007:1307;;;;;;;;56942:1372::o:0;56558:67::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56607:10:::1;:8;:10::i;:::-;56558:67::o:0;58788:247::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58911:1:::1;58897:10;:15;;58889:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;58962:9;;58949:10;:22;58941:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;59017:10;59005:9;:22;;;;58788:247:::0;:::o;32424:185::-;32562:39;32579:4;32585:2;32589:7;32562:39;;;;;;;;;;;;:16;:39::i;:::-;32424:185;;;:::o;53262:106::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53349:11:::1;53336:10;;:24;;;;;;;;;;;;;;;;;;53262:106:::0;:::o;7427:86::-;7474:4;7498:7;;;;;;;;;;;7491:14;;7427:86;:::o;54321:694::-;53187:14;;;;;;;;;;;53179:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;53072:10:::1;53059:23;;:9;:23;;;53051:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;54549:13:::2;;54537:8;54510:12;:24;54523:10;54510:24;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:52;;54501:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54625:12;54667:10;54650:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;54640:39;;;;;;54625:54;;54713:61;54732:12;;54713:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54746:21;;54769:4;54713:18;:61::i;:::-;54690:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;54871:16;;54859:8;54843:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:44;;54835:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54957:8;54929:12;:24;54942:10;54929:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;54976:31;54986:10;54998:8;54976:9;:31::i;:::-;54490:525;54321:694:::0;;;:::o;29018:144::-;29082:7;29125:27;29144:7;29125:18;:27::i;:::-;29102:52;;29018:144;;;:::o;52350:39::-;;;;:::o;52476:105::-;;;;:::o;52302:38::-;;;;:::o;24895:224::-;24959:7;25000:1;24983:19;;:5;:19;;;24979:60;;;25011:28;;;;;;;;;;;;;;24979:60;20234:13;25057:18;:25;25076:5;25057:25;;;;;;;;;;;;;;;;:54;25050:61;;24895:224;;;:::o;10326:103::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10391:30:::1;10418:1;10391:18;:30::i;:::-;10326:103::o:0;55875:293::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56018:1:::1;56007:8;:12;55999:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;56087:12;;56075:8;56059:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;56051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56132:28;56142:7;56151:8;56132:9;:28::i;:::-;55875:293:::0;;:::o;52780:25::-;;;;;;;;;;;;;:::o;52396:34::-;;;;:::o;58378:339::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58499:1:::1;58485:11;:15;58477:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58558:12;;58542:13;:11;:13::i;:::-;:28;58534:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;58633:13;:11;:13::i;:::-;58618:11;58603:12;;:26;;;;:::i;:::-;:43;;58595:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;58698:11;58682:12;;:27;;;;;;;:::i;:::-;;;;;;;;58378:339:::0;:::o;56487:63::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56534:8:::1;:6;:8::i;:::-;56487:63::o:0;9675:87::-;9721:7;9748:6;;;;;;;;;;;9741:13;;9675:87;:::o;29398:104::-;29454:13;29487:7;29480:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29398:104;:::o;31573:308::-;31684:19;:17;:19::i;:::-;31672:31;;:8;:31;;;31668:61;;;31712:17;;;;;;;;;;;;;;31668:61;31794:8;31742:18;:39;31761:19;:17;:19::i;:::-;31742:39;;;;;;;;;;;;;;;:49;31782:8;31742:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;31854:8;31818:55;;31833:19;:17;:19::i;:::-;31818:55;;;31864:8;31818:55;;;;;;:::i;:::-;;;;;;;;31573:308;;:::o;52437:30::-;;;;:::o;52724:47::-;;;;;;;;;;;;;;;;;:::o;32680:396::-;32847:28;32857:4;32863:2;32867:7;32847:9;:28::i;:::-;32908:1;32890:2;:14;;;:19;32886:183;;32929:56;32960:4;32966:2;32970:7;32979:5;32929:30;:56::i;:::-;32924:145;;33013:40;;;;;;;;;;;;;;32924:145;32886:183;32680:396;;;;:::o;59047:187::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59173:1:::1;59161:9;:13;59153:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;59217:9;59203:11;:23;;;;59047:187:::0;:::o;52668:49::-;;;;;;;;;;;;;;;;;:::o;53376:369::-;53495:13;53534:17;53542:8;53534:7;:17::i;:::-;53526:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;53615:1;53593:24;;:10;;;;;;;;;;;:24;;;;53584:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;53704:10;;;;;;;;;;;53698:29;;;53728:8;53698:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53691:46;;53376:369;;;:::o;52631:26::-;;;;;;;;;;;;;:::o;52262:32::-;;;;:::o;31952:164::-;32049:4;32073:18;:25;32092:5;32073:25;;;;;;;;;;;;;;;:35;32099:8;32073:35;;;;;;;;;;;;;;;;;;;;;;;;;32066:42;;31952:164;;;;:::o;55588:279::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55714:1:::1;55703:8;:12;55695:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;55783:12;;55771:8;55755:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;55747:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55828:31;55838:10;55850:8;55828:9;:31::i;:::-;55588:279:::0;:::o;10584:201::-;9906:12;:10;:12::i;:::-;9895:23;;:7;:5;:7::i;:::-;:23;;;9887:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10693:1:::1;10673:22;;:8;:22;;;;10665:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10749:28;10768:8;10749:18;:28::i;:::-;10584:201:::0;:::o;33331:273::-;33388:4;33444:7;33425:15;:13;:15::i;:::-;:26;;:66;;;;;33478:13;;33468:7;:23;33425:66;:152;;;;;33576:1;21004:8;33529:17;:26;33547:7;33529:26;;;;;;;;;;;;:43;:48;33425:152;33405:172;;33331:273;;;:::o;26533:1129::-;26600:7;26620:12;26635:7;26620:22;;26703:4;26684:15;:13;:15::i;:::-;:23;26680:915;;26737:13;;26730:4;:20;26726:869;;;26775:14;26792:17;:23;26810:4;26792:23;;;;;;;;;;;;26775:40;;26908:1;21004:8;26881:6;:23;:28;26877:699;;;27400:113;27417:1;27407:6;:11;27400:113;;;27460:17;:25;27478:6;;;;;;;27460:25;;;;;;;;;;;;27451:34;;27400:113;;;27546:6;27539:13;;;;;;26877:699;26752:843;26726:869;26680:915;27623:31;;;;;;;;;;;;;;26533:1129;;;;:::o;47313:105::-;47373:7;47400:10;47393:17;;47313:105;:::o;53757:93::-;53814:7;53841:1;53834:8;;53757:93;:::o;33688:104::-;33757:27;33767:2;33771:8;33757:27;;;;;;;;;;;;:9;:27::i;:::-;33688:104;;:::o;38570:2515::-;38685:27;38715;38734:7;38715:18;:27::i;:::-;38685:57;;38800:4;38759:45;;38775:19;38759:45;;;38755:86;;38813:28;;;;;;;;;;;;;;38755:86;38854:22;38903:4;38880:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;38924:43;38941:4;38947:19;:17;:19::i;:::-;38924:16;:43::i;:::-;38880:87;:147;;;;39008:19;:17;:19::i;:::-;38984:43;;:20;38996:7;38984:11;:20::i;:::-;:43;;;38880:147;38854:174;;39046:17;39041:66;;39072:35;;;;;;;;;;;;;;39041:66;39136:1;39122:16;;:2;:16;;;39118:52;;;39147:23;;;;;;;;;;;;;;39118:52;39183:43;39205:4;39211:2;39215:7;39224:1;39183:21;:43::i;:::-;39299:15;:24;39315:7;39299:24;;;;;;;;;;;;39292:31;;;;;;;;;;;39691:18;:24;39710:4;39691:24;;;;;;;;;;;;;;;;39689:26;;;;;;;;;;;;39760:18;:22;39779:2;39760:22;;;;;;;;;;;;;;;;39758:24;;;;;;;;;;;21286:8;20888:3;40141:15;:41;;40099:21;40117:2;40099:17;:21::i;:::-;:84;:128;40053:17;:26;40071:7;40053:26;;;;;;;;;;;:174;;;;40397:1;21286:8;40347:19;:46;:51;40343:626;;;40419:19;40451:1;40441:7;:11;40419:33;;40608:1;40574:17;:30;40592:11;40574:30;;;;;;;;;;;;:35;40570:384;;;40712:13;;40697:11;:28;40693:242;;40892:19;40859:17;:30;40877:11;40859:30;;;;;;;;;;;:52;;;;40693:242;40570:384;40400:569;40343:626;41016:7;41012:2;40997:27;;41006:4;40997:27;;;;;;;;;;;;41035:42;41056:4;41062:2;41066:7;41075:1;41035:20;:42::i;:::-;38674:2411;;38570:2515;;;:::o;6081:98::-;6134:7;6161:10;6154:17;;6081:98;:::o;8486:120::-;8030:8;:6;:8::i;:::-;8022:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8555:5:::1;8545:7;;:15;;;;;;;;;;;;;;;;;;8576:22;8585:12;:10;:12::i;:::-;8576:22;;;;;;:::i;:::-;;;;;;;;8486:120::o:0;3937:190::-;4062:4;4115;4086:25;4099:5;4106:4;4086:12;:25::i;:::-;:33;4079:40;;3937:190;;;;;:::o;10945:191::-;11019:16;11038:6;;;;;;;;;;;11019:25;;11064:8;11055:6;;:17;;;;;;;;;;;;;;;;;;11119:8;11088:40;;11109:8;11088:40;;;;;;;;;;;;11008:128;10945:191;:::o;8227:118::-;7753:8;:6;:8::i;:::-;7752:9;7744:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;8297:4:::1;8287:7;;:14;;;;;;;;;;;;;;;;;;8317:20;8324:12;:10;:12::i;:::-;8317:20;;;;;;:::i;:::-;;;;;;;;8227:118::o:0;44782:716::-;44945:4;44991:2;44966:45;;;45012:19;:17;:19::i;:::-;45033:4;45039:7;45048:5;44966:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44962:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45266:1;45249:6;:13;:18;45245:235;;;45295:40;;;;;;;;;;;;;;45245:235;45438:6;45432:13;45423:6;45419:2;45415:15;45408:38;44962:529;45135:54;;;45125:64;;;:6;:64;;;;45118:71;;;44782:716;;;;;;:::o;34165:2236::-;34288:20;34311:13;;34288:36;;34353:1;34339:16;;:2;:16;;;34335:48;;;34364:19;;;;;;;;;;;;;;34335:48;34410:1;34398:8;:13;34394:44;;;34420:18;;;;;;;;;;;;;;34394:44;34451:61;34481:1;34485:2;34489:12;34503:8;34451:21;:61::i;:::-;35055:1;20371:2;35026:1;:25;;35025:31;35013:8;:44;34987:18;:22;35006:2;34987:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;21151:3;35456:29;35483:1;35471:8;:13;35456:14;:29::i;:::-;:56;;20888:3;35393:15;:41;;35351:21;35369:2;35351:17;:21::i;:::-;:84;:162;35300:17;:31;35318:12;35300:31;;;;;;;;;;;:213;;;;35530:20;35553:12;35530:35;;35580:11;35609:8;35594:12;:23;35580:37;;35656:1;35638:2;:14;;;:19;35634:635;;35678:313;35734:12;35730:2;35709:38;;35726:1;35709:38;;;;;;;;;;;;35775:69;35814:1;35818:2;35822:14;;;;;;35838:5;35775:30;:69::i;:::-;35770:174;;35880:40;;;;;;;;;;;;;;35770:174;35986:3;35971:12;:18;35678:313;;36072:12;36055:13;;:29;36051:43;;36086:8;;;36051:43;35634:635;;;36135:119;36191:14;;;;;;36187:2;36166:40;;36183:1;36166:40;;;;;;;;;;;;36249:3;36234:12;:18;36135:119;;35634:635;36299:12;36283:13;:28;;;;34764:1559;;36333:60;36362:1;36366:2;36370:12;36384:8;36333:20;:60::i;:::-;34277:2124;34165:2236;;;:::o;56667:267::-;7753:8;:6;:8::i;:::-;7752:9;7744:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;56870:56:::1;56898:4;56904:2;56908:7;56917:8;56870:27;:56::i;:::-;56667:267:::0;;;;:::o;30318:148::-;30382:14;30443:5;30433:15;;30318:148;;;:::o;46964:158::-;;;;;:::o;4488:675::-;4571:7;4591:20;4614:4;4591:27;;4634:9;4629:497;4653:5;:12;4649:1;:16;4629:497;;;4687:20;4710:5;4716:1;4710:8;;;;;;;;:::i;:::-;;;;;;;;4687:31;;4753:12;4737;:28;4733:382;;4880:42;4895:12;4909;4880:14;:42::i;:::-;4865:57;;4733:382;;;5057:42;5072:12;5086;5057:14;:42::i;:::-;5042:57;;4733:382;4672:454;4667:3;;;;;:::i;:::-;;;;4629:497;;;;5143:12;5136:19;;;4488:675;;;;:::o;30553:142::-;30611:14;30672:5;30662:15;;30553:142;;;:::o;46146:159::-;;;;;:::o;5171:224::-;5239:13;5302:1;5296:4;5289:15;5331:1;5325:4;5318:15;5372:4;5366;5356:21;5347:30;;5171:224;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:421::-;512:5;537:66;553:49;595:6;553:49;:::i;:::-;537:66;:::i;:::-;528:75;;626:6;619:5;612:21;664:4;657:5;653:16;702:3;693:6;688:3;684:16;681:25;678:112;;;709:79;;:::i;:::-;678:112;799:39;831:6;826:3;821;799:39;:::i;:::-;518:326;423:421;;;;;:::o;850:139::-;896:5;934:6;921:20;912:29;;950:33;977:5;950:33;:::i;:::-;850:139;;;;:::o;1012:568::-;1085:8;1095:6;1145:3;1138:4;1130:6;1126:17;1122:27;1112:122;;1153:79;;:::i;:::-;1112:122;1266:6;1253:20;1243:30;;1296:18;1288:6;1285:30;1282:117;;;1318:79;;:::i;:::-;1282:117;1432:4;1424:6;1420:17;1408:29;;1486:3;1478:4;1470:6;1466:17;1456:8;1452:32;1449:41;1446:128;;;1493:79;;:::i;:::-;1446:128;1012:568;;;;;:::o;1586:133::-;1629:5;1667:6;1654:20;1645:29;;1683:30;1707:5;1683:30;:::i;:::-;1586:133;;;;:::o;1725:139::-;1771:5;1809:6;1796:20;1787:29;;1825:33;1852:5;1825:33;:::i;:::-;1725:139;;;;:::o;1870:137::-;1915:5;1953:6;1940:20;1931:29;;1969:32;1995:5;1969:32;:::i;:::-;1870:137;;;;:::o;2013:141::-;2069:5;2100:6;2094:13;2085:22;;2116:32;2142:5;2116:32;:::i;:::-;2013:141;;;;:::o;2173:338::-;2228:5;2277:3;2270:4;2262:6;2258:17;2254:27;2244:122;;2285:79;;:::i;:::-;2244:122;2402:6;2389:20;2427:78;2501:3;2493:6;2486:4;2478:6;2474:17;2427:78;:::i;:::-;2418:87;;2234:277;2173:338;;;;:::o;2531:355::-;2598:5;2647:3;2640:4;2632:6;2628:17;2624:27;2614:122;;2655:79;;:::i;:::-;2614:122;2765:6;2759:13;2790:90;2876:3;2868:6;2861:4;2853:6;2849:17;2790:90;:::i;:::-;2781:99;;2604:282;2531:355;;;;:::o;2892:139::-;2938:5;2976:6;2963:20;2954:29;;2992:33;3019:5;2992:33;:::i;:::-;2892:139;;;;:::o;3037:329::-;3096:6;3145:2;3133:9;3124:7;3120:23;3116:32;3113:119;;;3151:79;;:::i;:::-;3113:119;3271:1;3296:53;3341:7;3332:6;3321:9;3317:22;3296:53;:::i;:::-;3286:63;;3242:117;3037:329;;;;:::o;3372:474::-;3440:6;3448;3497:2;3485:9;3476:7;3472:23;3468:32;3465:119;;;3503:79;;:::i;:::-;3465:119;3623:1;3648:53;3693:7;3684:6;3673:9;3669:22;3648:53;:::i;:::-;3638:63;;3594:117;3750:2;3776:53;3821:7;3812:6;3801:9;3797:22;3776:53;:::i;:::-;3766:63;;3721:118;3372:474;;;;;:::o;3852:619::-;3929:6;3937;3945;3994:2;3982:9;3973:7;3969:23;3965:32;3962:119;;;4000:79;;:::i;:::-;3962:119;4120:1;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4091:117;4247:2;4273:53;4318:7;4309:6;4298:9;4294:22;4273:53;:::i;:::-;4263:63;;4218:118;4375:2;4401:53;4446:7;4437:6;4426:9;4422:22;4401:53;:::i;:::-;4391:63;;4346:118;3852:619;;;;;:::o;4477:943::-;4572:6;4580;4588;4596;4645:3;4633:9;4624:7;4620:23;4616:33;4613:120;;;4652:79;;:::i;:::-;4613:120;4772:1;4797:53;4842:7;4833:6;4822:9;4818:22;4797:53;:::i;:::-;4787:63;;4743:117;4899:2;4925:53;4970:7;4961:6;4950:9;4946:22;4925:53;:::i;:::-;4915:63;;4870:118;5027:2;5053:53;5098:7;5089:6;5078:9;5074:22;5053:53;:::i;:::-;5043:63;;4998:118;5183:2;5172:9;5168:18;5155:32;5214:18;5206:6;5203:30;5200:117;;;5236:79;;:::i;:::-;5200:117;5341:62;5395:7;5386:6;5375:9;5371:22;5341:62;:::i;:::-;5331:72;;5126:287;4477:943;;;;;;;:::o;5426:468::-;5491:6;5499;5548:2;5536:9;5527:7;5523:23;5519:32;5516:119;;;5554:79;;:::i;:::-;5516:119;5674:1;5699:53;5744:7;5735:6;5724:9;5720:22;5699:53;:::i;:::-;5689:63;;5645:117;5801:2;5827:50;5869:7;5860:6;5849:9;5845:22;5827:50;:::i;:::-;5817:60;;5772:115;5426:468;;;;;:::o;5900:474::-;5968:6;5976;6025:2;6013:9;6004:7;6000:23;5996:32;5993:119;;;6031:79;;:::i;:::-;5993:119;6151:1;6176:53;6221:7;6212:6;6201:9;6197:22;6176:53;:::i;:::-;6166:63;;6122:117;6278:2;6304:53;6349:7;6340:6;6329:9;6325:22;6304:53;:::i;:::-;6294:63;;6249:118;5900:474;;;;;:::o;6380:704::-;6475:6;6483;6491;6540:2;6528:9;6519:7;6515:23;6511:32;6508:119;;;6546:79;;:::i;:::-;6508:119;6694:1;6683:9;6679:17;6666:31;6724:18;6716:6;6713:30;6710:117;;;6746:79;;:::i;:::-;6710:117;6859:80;6931:7;6922:6;6911:9;6907:22;6859:80;:::i;:::-;6841:98;;;;6637:312;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6380:704;;;;;:::o;7090:329::-;7149:6;7198:2;7186:9;7177:7;7173:23;7169:32;7166:119;;;7204:79;;:::i;:::-;7166:119;7324:1;7349:53;7394:7;7385:6;7374:9;7370:22;7349:53;:::i;:::-;7339:63;;7295:117;7090:329;;;;:::o;7425:327::-;7483:6;7532:2;7520:9;7511:7;7507:23;7503:32;7500:119;;;7538:79;;:::i;:::-;7500:119;7658:1;7683:52;7727:7;7718:6;7707:9;7703:22;7683:52;:::i;:::-;7673:62;;7629:116;7425:327;;;;:::o;7758:349::-;7827:6;7876:2;7864:9;7855:7;7851:23;7847:32;7844:119;;;7882:79;;:::i;:::-;7844:119;8002:1;8027:63;8082:7;8073:6;8062:9;8058:22;8027:63;:::i;:::-;8017:73;;7973:127;7758:349;;;;:::o;8113:524::-;8193:6;8242:2;8230:9;8221:7;8217:23;8213:32;8210:119;;;8248:79;;:::i;:::-;8210:119;8389:1;8378:9;8374:17;8368:24;8419:18;8411:6;8408:30;8405:117;;;8441:79;;:::i;:::-;8405:117;8546:74;8612:7;8603:6;8592:9;8588:22;8546:74;:::i;:::-;8536:84;;8339:291;8113:524;;;;:::o;8643:329::-;8702:6;8751:2;8739:9;8730:7;8726:23;8722:32;8719:119;;;8757:79;;:::i;:::-;8719:119;8877:1;8902:53;8947:7;8938:6;8927:9;8923:22;8902:53;:::i;:::-;8892:63;;8848:117;8643:329;;;;:::o;8978:118::-;9065:24;9083:5;9065:24;:::i;:::-;9060:3;9053:37;8978:118;;:::o;9102:157::-;9207:45;9227:24;9245:5;9227:24;:::i;:::-;9207:45;:::i;:::-;9202:3;9195:58;9102:157;;:::o;9265:109::-;9346:21;9361:5;9346:21;:::i;:::-;9341:3;9334:34;9265:109;;:::o;9380:118::-;9467:24;9485:5;9467:24;:::i;:::-;9462:3;9455:37;9380:118;;:::o;9504:360::-;9590:3;9618:38;9650:5;9618:38;:::i;:::-;9672:70;9735:6;9730:3;9672:70;:::i;:::-;9665:77;;9751:52;9796:6;9791:3;9784:4;9777:5;9773:16;9751:52;:::i;:::-;9828:29;9850:6;9828:29;:::i;:::-;9823:3;9819:39;9812:46;;9594:270;9504:360;;;;:::o;9870:364::-;9958:3;9986:39;10019:5;9986:39;:::i;:::-;10041:71;10105:6;10100:3;10041:71;:::i;:::-;10034:78;;10121:52;10166:6;10161:3;10154:4;10147:5;10143:16;10121:52;:::i;:::-;10198:29;10220:6;10198:29;:::i;:::-;10193:3;10189:39;10182:46;;9962:272;9870:364;;;;:::o;10240:366::-;10382:3;10403:67;10467:2;10462:3;10403:67;:::i;:::-;10396:74;;10479:93;10568:3;10479:93;:::i;:::-;10597:2;10592:3;10588:12;10581:19;;10240:366;;;:::o;10612:::-;10754:3;10775:67;10839:2;10834:3;10775:67;:::i;:::-;10768:74;;10851:93;10940:3;10851:93;:::i;:::-;10969:2;10964:3;10960:12;10953:19;;10612:366;;;:::o;10984:::-;11126:3;11147:67;11211:2;11206:3;11147:67;:::i;:::-;11140:74;;11223:93;11312:3;11223:93;:::i;:::-;11341:2;11336:3;11332:12;11325:19;;10984:366;;;:::o;11356:::-;11498:3;11519:67;11583:2;11578:3;11519:67;:::i;:::-;11512:74;;11595:93;11684:3;11595:93;:::i;:::-;11713:2;11708:3;11704:12;11697:19;;11356:366;;;:::o;11728:::-;11870:3;11891:67;11955:2;11950:3;11891:67;:::i;:::-;11884:74;;11967:93;12056:3;11967:93;:::i;:::-;12085:2;12080:3;12076:12;12069:19;;11728:366;;;:::o;12100:365::-;12242:3;12263:66;12327:1;12322:3;12263:66;:::i;:::-;12256:73;;12338:93;12427:3;12338:93;:::i;:::-;12456:2;12451:3;12447:12;12440:19;;12100:365;;;:::o;12471:366::-;12613:3;12634:67;12698:2;12693:3;12634:67;:::i;:::-;12627:74;;12710:93;12799:3;12710:93;:::i;:::-;12828:2;12823:3;12819:12;12812:19;;12471:366;;;:::o;12843:::-;12985:3;13006:67;13070:2;13065:3;13006:67;:::i;:::-;12999:74;;13082:93;13171:3;13082:93;:::i;:::-;13200:2;13195:3;13191:12;13184:19;;12843:366;;;:::o;13215:::-;13357:3;13378:67;13442:2;13437:3;13378:67;:::i;:::-;13371:74;;13454:93;13543:3;13454:93;:::i;:::-;13572:2;13567:3;13563:12;13556:19;;13215:366;;;:::o;13587:::-;13729:3;13750:67;13814:2;13809:3;13750:67;:::i;:::-;13743:74;;13826:93;13915:3;13826:93;:::i;:::-;13944:2;13939:3;13935:12;13928:19;;13587:366;;;:::o;13959:::-;14101:3;14122:67;14186:2;14181:3;14122:67;:::i;:::-;14115:74;;14198:93;14287:3;14198:93;:::i;:::-;14316:2;14311:3;14307:12;14300:19;;13959:366;;;:::o;14331:::-;14473:3;14494:67;14558:2;14553:3;14494:67;:::i;:::-;14487:74;;14570:93;14659:3;14570:93;:::i;:::-;14688:2;14683:3;14679:12;14672:19;;14331:366;;;:::o;14703:::-;14845:3;14866:67;14930:2;14925:3;14866:67;:::i;:::-;14859:74;;14942:93;15031:3;14942:93;:::i;:::-;15060:2;15055:3;15051:12;15044:19;;14703:366;;;:::o;15075:::-;15217:3;15238:67;15302:2;15297:3;15238:67;:::i;:::-;15231:74;;15314:93;15403:3;15314:93;:::i;:::-;15432:2;15427:3;15423:12;15416:19;;15075:366;;;:::o;15447:::-;15589:3;15610:67;15674:2;15669:3;15610:67;:::i;:::-;15603:74;;15686:93;15775:3;15686:93;:::i;:::-;15804:2;15799:3;15795:12;15788:19;;15447:366;;;:::o;15819:::-;15961:3;15982:67;16046:2;16041:3;15982:67;:::i;:::-;15975:74;;16058:93;16147:3;16058:93;:::i;:::-;16176:2;16171:3;16167:12;16160:19;;15819:366;;;:::o;16191:::-;16333:3;16354:67;16418:2;16413:3;16354:67;:::i;:::-;16347:74;;16430:93;16519:3;16430:93;:::i;:::-;16548:2;16543:3;16539:12;16532:19;;16191:366;;;:::o;16563:::-;16705:3;16726:67;16790:2;16785:3;16726:67;:::i;:::-;16719:74;;16802:93;16891:3;16802:93;:::i;:::-;16920:2;16915:3;16911:12;16904:19;;16563:366;;;:::o;16935:::-;17077:3;17098:67;17162:2;17157:3;17098:67;:::i;:::-;17091:74;;17174:93;17263:3;17174:93;:::i;:::-;17292:2;17287:3;17283:12;17276:19;;16935:366;;;:::o;17307:::-;17449:3;17470:67;17534:2;17529:3;17470:67;:::i;:::-;17463:74;;17546:93;17635:3;17546:93;:::i;:::-;17664:2;17659:3;17655:12;17648:19;;17307:366;;;:::o;17679:118::-;17766:24;17784:5;17766:24;:::i;:::-;17761:3;17754:37;17679:118;;:::o;17803:256::-;17915:3;17930:75;18001:3;17992:6;17930:75;:::i;:::-;18030:2;18025:3;18021:12;18014:19;;18050:3;18043:10;;17803:256;;;;:::o;18065:222::-;18158:4;18196:2;18185:9;18181:18;18173:26;;18209:71;18277:1;18266:9;18262:17;18253:6;18209:71;:::i;:::-;18065:222;;;;:::o;18293:640::-;18488:4;18526:3;18515:9;18511:19;18503:27;;18540:71;18608:1;18597:9;18593:17;18584:6;18540:71;:::i;:::-;18621:72;18689:2;18678:9;18674:18;18665:6;18621:72;:::i;:::-;18703;18771:2;18760:9;18756:18;18747:6;18703:72;:::i;:::-;18822:9;18816:4;18812:20;18807:2;18796:9;18792:18;18785:48;18850:76;18921:4;18912:6;18850:76;:::i;:::-;18842:84;;18293:640;;;;;;;:::o;18939:210::-;19026:4;19064:2;19053:9;19049:18;19041:26;;19077:65;19139:1;19128:9;19124:17;19115:6;19077:65;:::i;:::-;18939:210;;;;:::o;19155:222::-;19248:4;19286:2;19275:9;19271:18;19263:26;;19299:71;19367:1;19356:9;19352:17;19343:6;19299:71;:::i;:::-;19155:222;;;;:::o;19383:313::-;19496:4;19534:2;19523:9;19519:18;19511:26;;19583:9;19577:4;19573:20;19569:1;19558:9;19554:17;19547:47;19611:78;19684:4;19675:6;19611:78;:::i;:::-;19603:86;;19383:313;;;;:::o;19702:419::-;19868:4;19906:2;19895:9;19891:18;19883:26;;19955:9;19949:4;19945:20;19941:1;19930:9;19926:17;19919:47;19983:131;20109:4;19983:131;:::i;:::-;19975:139;;19702:419;;;:::o;20127:::-;20293:4;20331:2;20320:9;20316:18;20308:26;;20380:9;20374:4;20370:20;20366:1;20355:9;20351:17;20344:47;20408:131;20534:4;20408:131;:::i;:::-;20400:139;;20127:419;;;:::o;20552:::-;20718:4;20756:2;20745:9;20741:18;20733:26;;20805:9;20799:4;20795:20;20791:1;20780:9;20776:17;20769:47;20833:131;20959:4;20833:131;:::i;:::-;20825:139;;20552:419;;;:::o;20977:::-;21143:4;21181:2;21170:9;21166:18;21158:26;;21230:9;21224:4;21220:20;21216:1;21205:9;21201:17;21194:47;21258:131;21384:4;21258:131;:::i;:::-;21250:139;;20977:419;;;:::o;21402:::-;21568:4;21606:2;21595:9;21591:18;21583:26;;21655:9;21649:4;21645:20;21641:1;21630:9;21626:17;21619:47;21683:131;21809:4;21683:131;:::i;:::-;21675:139;;21402:419;;;:::o;21827:::-;21993:4;22031:2;22020:9;22016:18;22008:26;;22080:9;22074:4;22070:20;22066:1;22055:9;22051:17;22044:47;22108:131;22234:4;22108:131;:::i;:::-;22100:139;;21827:419;;;:::o;22252:::-;22418:4;22456:2;22445:9;22441:18;22433:26;;22505:9;22499:4;22495:20;22491:1;22480:9;22476:17;22469:47;22533:131;22659:4;22533:131;:::i;:::-;22525:139;;22252:419;;;:::o;22677:::-;22843:4;22881:2;22870:9;22866:18;22858:26;;22930:9;22924:4;22920:20;22916:1;22905:9;22901:17;22894:47;22958:131;23084:4;22958:131;:::i;:::-;22950:139;;22677:419;;;:::o;23102:::-;23268:4;23306:2;23295:9;23291:18;23283:26;;23355:9;23349:4;23345:20;23341:1;23330:9;23326:17;23319:47;23383:131;23509:4;23383:131;:::i;:::-;23375:139;;23102:419;;;:::o;23527:::-;23693:4;23731:2;23720:9;23716:18;23708:26;;23780:9;23774:4;23770:20;23766:1;23755:9;23751:17;23744:47;23808:131;23934:4;23808:131;:::i;:::-;23800:139;;23527:419;;;:::o;23952:::-;24118:4;24156:2;24145:9;24141:18;24133:26;;24205:9;24199:4;24195:20;24191:1;24180:9;24176:17;24169:47;24233:131;24359:4;24233:131;:::i;:::-;24225:139;;23952:419;;;:::o;24377:::-;24543:4;24581:2;24570:9;24566:18;24558:26;;24630:9;24624:4;24620:20;24616:1;24605:9;24601:17;24594:47;24658:131;24784:4;24658:131;:::i;:::-;24650:139;;24377:419;;;:::o;24802:::-;24968:4;25006:2;24995:9;24991:18;24983:26;;25055:9;25049:4;25045:20;25041:1;25030:9;25026:17;25019:47;25083:131;25209:4;25083:131;:::i;:::-;25075:139;;24802:419;;;:::o;25227:::-;25393:4;25431:2;25420:9;25416:18;25408:26;;25480:9;25474:4;25470:20;25466:1;25455:9;25451:17;25444:47;25508:131;25634:4;25508:131;:::i;:::-;25500:139;;25227:419;;;:::o;25652:::-;25818:4;25856:2;25845:9;25841:18;25833:26;;25905:9;25899:4;25895:20;25891:1;25880:9;25876:17;25869:47;25933:131;26059:4;25933:131;:::i;:::-;25925:139;;25652:419;;;:::o;26077:::-;26243:4;26281:2;26270:9;26266:18;26258:26;;26330:9;26324:4;26320:20;26316:1;26305:9;26301:17;26294:47;26358:131;26484:4;26358:131;:::i;:::-;26350:139;;26077:419;;;:::o;26502:::-;26668:4;26706:2;26695:9;26691:18;26683:26;;26755:9;26749:4;26745:20;26741:1;26730:9;26726:17;26719:47;26783:131;26909:4;26783:131;:::i;:::-;26775:139;;26502:419;;;:::o;26927:::-;27093:4;27131:2;27120:9;27116:18;27108:26;;27180:9;27174:4;27170:20;27166:1;27155:9;27151:17;27144:47;27208:131;27334:4;27208:131;:::i;:::-;27200:139;;26927:419;;;:::o;27352:::-;27518:4;27556:2;27545:9;27541:18;27533:26;;27605:9;27599:4;27595:20;27591:1;27580:9;27576:17;27569:47;27633:131;27759:4;27633:131;:::i;:::-;27625:139;;27352:419;;;:::o;27777:::-;27943:4;27981:2;27970:9;27966:18;27958:26;;28030:9;28024:4;28020:20;28016:1;28005:9;28001:17;27994:47;28058:131;28184:4;28058:131;:::i;:::-;28050:139;;27777:419;;;:::o;28202:222::-;28295:4;28333:2;28322:9;28318:18;28310:26;;28346:71;28414:1;28403:9;28399:17;28390:6;28346:71;:::i;:::-;28202:222;;;;:::o;28430:129::-;28464:6;28491:20;;:::i;:::-;28481:30;;28520:33;28548:4;28540:6;28520:33;:::i;:::-;28430:129;;;:::o;28565:75::-;28598:6;28631:2;28625:9;28615:19;;28565:75;:::o;28646:307::-;28707:4;28797:18;28789:6;28786:30;28783:56;;;28819:18;;:::i;:::-;28783:56;28857:29;28879:6;28857:29;:::i;:::-;28849:37;;28941:4;28935;28931:15;28923:23;;28646:307;;;:::o;28959:308::-;29021:4;29111:18;29103:6;29100:30;29097:56;;;29133:18;;:::i;:::-;29097:56;29171:29;29193:6;29171:29;:::i;:::-;29163:37;;29255:4;29249;29245:15;29237:23;;28959:308;;;:::o;29273:98::-;29324:6;29358:5;29352:12;29342:22;;29273:98;;;:::o;29377:99::-;29429:6;29463:5;29457:12;29447:22;;29377:99;;;:::o;29482:168::-;29565:11;29599:6;29594:3;29587:19;29639:4;29634:3;29630:14;29615:29;;29482:168;;;;:::o;29656:169::-;29740:11;29774:6;29769:3;29762:19;29814:4;29809:3;29805:14;29790:29;;29656:169;;;;:::o;29831:305::-;29871:3;29890:20;29908:1;29890:20;:::i;:::-;29885:25;;29924:20;29942:1;29924:20;:::i;:::-;29919:25;;30078:1;30010:66;30006:74;30003:1;30000:81;29997:107;;;30084:18;;:::i;:::-;29997:107;30128:1;30125;30121:9;30114:16;;29831:305;;;;:::o;30142:185::-;30182:1;30199:20;30217:1;30199:20;:::i;:::-;30194:25;;30233:20;30251:1;30233:20;:::i;:::-;30228:25;;30272:1;30262:35;;30277:18;;:::i;:::-;30262:35;30319:1;30316;30312:9;30307:14;;30142:185;;;;:::o;30333:348::-;30373:7;30396:20;30414:1;30396:20;:::i;:::-;30391:25;;30430:20;30448:1;30430:20;:::i;:::-;30425:25;;30618:1;30550:66;30546:74;30543:1;30540:81;30535:1;30528:9;30521:17;30517:105;30514:131;;;30625:18;;:::i;:::-;30514:131;30673:1;30670;30666:9;30655:20;;30333:348;;;;:::o;30687:191::-;30727:4;30747:20;30765:1;30747:20;:::i;:::-;30742:25;;30781:20;30799:1;30781:20;:::i;:::-;30776:25;;30820:1;30817;30814:8;30811:34;;;30825:18;;:::i;:::-;30811:34;30870:1;30867;30863:9;30855:17;;30687:191;;;;:::o;30884:96::-;30921:7;30950:24;30968:5;30950:24;:::i;:::-;30939:35;;30884:96;;;:::o;30986:90::-;31020:7;31063:5;31056:13;31049:21;31038:32;;30986:90;;;:::o;31082:77::-;31119:7;31148:5;31137:16;;31082:77;;;:::o;31165:149::-;31201:7;31241:66;31234:5;31230:78;31219:89;;31165:149;;;:::o;31320:126::-;31357:7;31397:42;31390:5;31386:54;31375:65;;31320:126;;;:::o;31452:77::-;31489:7;31518:5;31507:16;;31452:77;;;:::o;31535:154::-;31619:6;31614:3;31609;31596:30;31681:1;31672:6;31667:3;31663:16;31656:27;31535:154;;;:::o;31695:307::-;31763:1;31773:113;31787:6;31784:1;31781:13;31773:113;;;31872:1;31867:3;31863:11;31857:18;31853:1;31848:3;31844:11;31837:39;31809:2;31806:1;31802:10;31797:15;;31773:113;;;31904:6;31901:1;31898:13;31895:101;;;31984:1;31975:6;31970:3;31966:16;31959:27;31895:101;31744:258;31695:307;;;:::o;32008:320::-;32052:6;32089:1;32083:4;32079:12;32069:22;;32136:1;32130:4;32126:12;32157:18;32147:81;;32213:4;32205:6;32201:17;32191:27;;32147:81;32275:2;32267:6;32264:14;32244:18;32241:38;32238:84;;;32294:18;;:::i;:::-;32238:84;32059:269;32008:320;;;:::o;32334:281::-;32417:27;32439:4;32417:27;:::i;:::-;32409:6;32405:40;32547:6;32535:10;32532:22;32511:18;32499:10;32496:34;32493:62;32490:88;;;32558:18;;:::i;:::-;32490:88;32598:10;32594:2;32587:22;32377:238;32334:281;;:::o;32621:233::-;32660:3;32683:24;32701:5;32683:24;:::i;:::-;32674:33;;32729:66;32722:5;32719:77;32716:103;;;32799:18;;:::i;:::-;32716:103;32846:1;32839:5;32835:13;32828:20;;32621:233;;;:::o;32860:100::-;32899:7;32928:26;32948:5;32928:26;:::i;:::-;32917:37;;32860:100;;;:::o;32966:94::-;33005:7;33034:20;33048:5;33034:20;:::i;:::-;33023:31;;32966:94;;;:::o;33066:180::-;33114:77;33111:1;33104:88;33211:4;33208:1;33201:15;33235:4;33232:1;33225:15;33252:180;33300:77;33297:1;33290:88;33397:4;33394:1;33387:15;33421:4;33418:1;33411:15;33438:180;33486:77;33483:1;33476:88;33583:4;33580:1;33573:15;33607:4;33604:1;33597:15;33624:180;33672:77;33669:1;33662:88;33769:4;33766:1;33759:15;33793:4;33790:1;33783:15;33810:180;33858:77;33855:1;33848:88;33955:4;33952:1;33945:15;33979:4;33976:1;33969:15;33996:117;34105:1;34102;34095:12;34119:117;34228:1;34225;34218:12;34242:117;34351:1;34348;34341:12;34365:117;34474:1;34471;34464:12;34488:117;34597:1;34594;34587:12;34611:117;34720:1;34717;34710:12;34734:102;34775:6;34826:2;34822:7;34817:2;34810:5;34806:14;34802:28;34792:38;;34734:102;;;:::o;34842:94::-;34875:8;34923:5;34919:2;34915:14;34894:35;;34842:94;;;:::o;34942:170::-;35082:22;35078:1;35070:6;35066:14;35059:46;34942:170;:::o;35118:::-;35258:22;35254:1;35246:6;35242:14;35235:46;35118:170;:::o;35294:165::-;35434:17;35430:1;35422:6;35418:14;35411:41;35294:165;:::o;35465:225::-;35605:34;35601:1;35593:6;35589:14;35582:58;35674:8;35669:2;35661:6;35657:15;35650:33;35465:225;:::o;35696:169::-;35836:21;35832:1;35824:6;35820:14;35813:45;35696:169;:::o;35871:158::-;36011:10;36007:1;35999:6;35995:14;35988:34;35871:158;:::o;36035:168::-;36175:20;36171:1;36163:6;36159:14;36152:44;36035:168;:::o;36209:166::-;36349:18;36345:1;36337:6;36333:14;36326:42;36209:166;:::o;36381:167::-;36521:19;36517:1;36509:6;36505:14;36498:43;36381:167;:::o;36554:166::-;36694:18;36690:1;36682:6;36678:14;36671:42;36554:166;:::o;36726:178::-;36866:30;36862:1;36854:6;36850:14;36843:54;36726:178;:::o;36910:182::-;37050:34;37046:1;37038:6;37034:14;37027:58;36910:182;:::o;37098:171::-;37238:23;37234:1;37226:6;37222:14;37215:47;37098:171;:::o;37275:220::-;37415:34;37411:1;37403:6;37399:14;37392:58;37484:3;37479:2;37471:6;37467:15;37460:28;37275:220;:::o;37501:163::-;37641:15;37637:1;37629:6;37625:14;37618:39;37501:163;:::o;37670:168::-;37810:20;37806:1;37798:6;37794:14;37787:44;37670:168;:::o;37844:::-;37984:20;37980:1;37972:6;37968:14;37961:44;37844:168;:::o;38018:169::-;38158:21;38154:1;38146:6;38142:14;38135:45;38018:169;:::o;38193:180::-;38333:32;38329:1;38321:6;38317:14;38310:56;38193:180;:::o;38379:163::-;38519:15;38515:1;38507:6;38503:14;38496:39;38379:163;:::o;38548:122::-;38621:24;38639:5;38621:24;:::i;:::-;38614:5;38611:35;38601:63;;38660:1;38657;38650:12;38601:63;38548:122;:::o;38676:116::-;38746:21;38761:5;38746:21;:::i;:::-;38739:5;38736:32;38726:60;;38782:1;38779;38772:12;38726:60;38676:116;:::o;38798:122::-;38871:24;38889:5;38871:24;:::i;:::-;38864:5;38861:35;38851:63;;38910:1;38907;38900:12;38851:63;38798:122;:::o;38926:120::-;38998:23;39015:5;38998:23;:::i;:::-;38991:5;38988:34;38978:62;;39036:1;39033;39026:12;38978:62;38926:120;:::o;39052:122::-;39125:24;39143:5;39125:24;:::i;:::-;39118:5;39115:35;39105:63;;39164:1;39161;39154:12;39105:63;39052:122;:::o

Swarm Source

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