ETH Price: $3,137.55 (-5.20%)
Gas: 11 Gwei

Token

Barts Farm Frens (BFFs)
 

Overview

Max Total Supply

8,888 BFFs

Holders

601

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BFFs
0x6e8d01a6494c7d21c5c4e2473482b21c38b97e07
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:
BartsFarmFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
//
//░██▄▒▄▀▄▒█▀▄░▀█▀░▀░▄▀▀░░▒█▀▒▄▀▄▒█▀▄░█▄▒▄█░░▒█▀▒█▀▄▒██▀░█▄░█░▄▀▀
//▒█▄█░█▀█░█▀▄░▒█▒░░▒▄██▒░░█▀░█▀█░█▀▄░█▒▀▒█▒░░█▀░█▀▄░█▄▄░█▒▀█▒▄██
                  

//******************************************************************@@@***********
//***********************************@@@@@@@@@&******************@@,  @***********
//****************************#@@@@@@@@@@@@@@@@@,/@@@@/******&@@.    @@***********
//******@@@@***************@@@@@@@@@@@@@@@@@@@@%       @@@@@        @@************
//******@@   @@@@*******@@@@@@@@@@&,,%@@@@@@@%            @@&      @@*************
//*******@@        @@@@@(                                   @@*.#@@***************
//********&@(        @@                                   @@@@@@@@@@@@@***********
//**********(@@     @@.                             @@@(   (@@@@@       @@********
//**************@@@@@.    .@@@@@@     @@@ @@      &@@@&@@    @@@@%@@@@@@**********
//**********@@@.   @@.   @@@@@@@@     @@@@@@       #@@@@     .@@@*****************
//*******@@%     @@@@   %@@@@@@@@@              ,/(((*          @*****************
//*********%@@@@***@@    @@@@@@@@@@     @@@@@,,,,,,,,,,,,(@@@@ /@*****************
//******************@%.      @@@@&  (@@,,,,,,,,,,,,,,,,,,,,,,,(@@/****************
//******************#@            @@*,,,,,,,(@,,,,,,,,@@@@,,,,,,*@(***************
//*******************(@* .       @@,,,,,,,,&@@@,,,,,,,,(#,,,,,,,,@@***************
//********************/@@.       @@,,,,,*,,,,,,,,,,,,,,,,,,,,,,,,@@***************
//***********************@@@     @@,,,,,@@@@@@@@@@@@,,,,,,,,,,,(@@****************
//***************************@@@@@@@%,,,*@@@@@@@@@@,,,,,,,,,@@@*******************
//***********************************@@@@#,,,,,,,,,(&@@@@@%***********************

// contract by @ZombieBitsNFT

//https://bartsfarmfrens.com


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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

    /**
     * @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;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.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.
 */
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 Merklee 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/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: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.0;


/**ERC721A import
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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 ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

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

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(),".json"))
        : "";
  }

  /**
   * @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 See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @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 tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    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 {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a 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 _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}
//
//░██▄▒▄▀▄▒█▀▄░▀█▀░▀░▄▀▀░░▒█▀▒▄▀▄▒█▀▄░█▄▒▄█░░▒█▀▒█▀▄▒██▀░█▄░█░▄▀▀
//▒█▄█░█▀█░█▀▄░▒█▒░░▒▄██▒░░█▀░█▀█░█▀▄░█▒▀▒█▒░░█▀░█▀▄░█▄▄░█▒▀█▒▄██


library OpenSeaGasFreeListing {
    /**
    @notice Returns whether the operator is an OpenSea proxy for the owner, thus
    allowing it to list without the token owner paying gas.
    @dev ERC{721,1155}.isApprovedForAll should be overriden to also check if
    this function returns true.
     */
    function isApprovedForAll(address owner, address operator) internal view returns (bool) {
        ProxyRegistry registry;
        assembly {
            switch chainid()
            case 1 {
                // mainnet
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 4 {
                // rinkeby
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
        }

        return address(registry) != address(0) && (address(registry.proxies(owner)) == operator);
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}


contract BartsFarmFrens is Ownable, ERC721A, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;

    //allows for 104 tokens to be minted for (0,1,2 team owner tokens)+ 101 reserved for giveaways, contest, etc. 
    uint256 public MAX_TEAM_RESERVES_PRESALE = 104;
    //allows for 84 to be minted for team owners personal from randomized main batch (28 each)
    uint256 public MAX_TEAM_PERSONAL_RESERVES_PRESALE = 84;
    //sets immutable value for total collection of 8888 which includes 8700 non-team/public tokens
    uint256 public immutable MAX_TOKENS;
    //limits the number of tokens during team personal reserves presale per address
    uint256 public MAX_TEAM_PERSONAL_TOKENS_PER_ADDRESS = 28;
    //limits the number of tokens during OG presale per address
    uint256 public MAX_OG_TOKENS_PER_ADDRESS = 1;
    //limits the number of tokens during presale per address
    uint256 public MAX_PRESALE_TOKENS_PER_ADDRESS = 3;
    //OG presale token price
    uint256 public OG_PRESALE_TOKEN_PRICE = 0.00 ether;
    //public token price
    uint256 public TOKEN_PRICE = 0.04 ether;
    //max mints per tx during the public mint
    uint256 public MAX_MINTS_PER_TX = 50;

    bool public preSale = false;
    bool public OGpreSale = false;
    bool public TEAMpreSale = false;
    bool public publicSale = false;
    string public BFFsProvenance;

        // whitelist merkle root
    bytes32 public TEAMmerkleroot;

        // whitelist merkle root
    bytes32 public OGmerkleroot;

        // whitelist merkle root
    bytes32 public PREmerkleroot;

    //tracks number a user has minted during team personal presale
    mapping (address => uint) public TEAMpresaleNumMinted;

    //tracks number a user has minted during OG presale
    mapping (address => uint) public OGpresaleNumMinted;

    //tracks number a user has minted during presale
    mapping (address => uint) public presaleNumMinted;

    constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_,
    uint256 maxTOKENS_
  ) ERC721A("Barts Farm Frens","BFFs", maxBatchSize_,collectionSize_) {
    MAX_MINTS_PER_TX = maxBatchSize_;
    MAX_TOKENS = maxTOKENS_;
    require(
        maxTOKENS_ <= collectionSize_,
        "larger collection size needed"
    );   
  }

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

//minting function for personal team presale
    function TEAMpresaleMint(uint256 quantity, bytes32[] calldata TEAMPresaleMerkleProof) external payable callerIsUser nonReentrant {
        require(TEAMpreSale, "team pre sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "minting this many would exceed supply");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(TEAMPresaleMerkleProof, TEAMmerkleroot, leaf), "Invalid proof.");
        _checkTEAMPreMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkTEAMPreMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_TEAM_PERSONAL_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance");
        require(msg.value == OG_PRESALE_TOKEN_PRICE * quantity, "wrong amount of ether sent");
        TEAMpresaleNumMinted[msg.sender] = TEAMpresaleNumMinted[msg.sender] + quantity;
        require(TEAMpresaleNumMinted[msg.sender] <= MAX_TEAM_PERSONAL_TOKENS_PER_ADDRESS, "Cannot mint more than 28 per address in this phase");
    }  

//minting function for the OG presale
    function OGpresaleMint(uint256 quantity, bytes32[] calldata OGPresaleMerkleProof) external payable callerIsUser nonReentrant {
        require(OGpreSale, "pre sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "minting this many would exceed supply");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(OGPresaleMerkleProof, OGmerkleroot, leaf), "Invalid proof.");
        _checkOGPreMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkOGPreMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_OG_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance");
        require(msg.value == OG_PRESALE_TOKEN_PRICE * quantity, "wrong amount of ether sent");
        OGpresaleNumMinted[msg.sender] = OGpresaleNumMinted[msg.sender] + quantity;
        require(OGpresaleNumMinted[msg.sender] <= MAX_OG_TOKENS_PER_ADDRESS, "Cannot mint more than 1 per address in this phase");
    }
//minting function for the presale
    function presaleMint(uint256 quantity, bytes32[] calldata PresaleMerkleProof) external payable callerIsUser nonReentrant {
        require(preSale, "pre sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "minting this many would exceed supply");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(PresaleMerkleProof, PREmerkleroot, leaf), "Invalid proof.");
        _checkPreMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkPreMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_PRESALE_TOKENS_PER_ADDRESS, "invalid quantity: zero or greater than mint allowance");
        require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent");
        presaleNumMinted[msg.sender] = presaleNumMinted[msg.sender] + quantity;
        require(presaleNumMinted[msg.sender] <= MAX_PRESALE_TOKENS_PER_ADDRESS, "Cannot mint more than 3 per address in this phase");
    }

//public mint function
    function mint(uint256 quantity) external payable callerIsUser nonReentrant {
        require(publicSale, "public sale is not live");
        require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply");
        _checkMintRequirements(quantity);
        _safeMint(msg.sender, quantity);
    }

    function _checkMintRequirements(uint256 quantity) internal {
        require(quantity > 0 && quantity <= MAX_MINTS_PER_TX, "invalid quantity: zero or greater than mint allowance");
        require(msg.value == TOKEN_PRICE * quantity, "wrong amount of ether sent");

    }
//admin minting function for team tokens
    function teamReservesPreSaleMint(uint256 quantity) public onlyOwner {
        require(quantity <= MAX_TEAM_RESERVES_PRESALE, "Can't reserve more than set amount" );
        MAX_TEAM_RESERVES_PRESALE -= quantity;
        require(totalSupply() + quantity <= MAX_TOKENS, "invalid quantity: would exceed max supply");
        _safeMint(msg.sender, quantity);
    }

    function toggleOGpreSale() public onlyOwner {
        OGpreSale = !OGpreSale;
    }

    function toggleTEAMpreSale() public onlyOwner {
        TEAMpreSale = !TEAMpreSale;
    }

    function togglePreSale() public onlyOwner {
        preSale = !preSale;
    }

    function togglePublicSale() public onlyOwner {
        publicSale = !publicSale;
    }

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

    // // metadata URI
    string private _baseTokenURI;

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

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

    function setTEAMmerkleroot(bytes32 newTEAMmerkle) public onlyOwner {
    TEAMmerkleroot = newTEAMmerkle;
    }

    function setOGmerkleroot(bytes32 newOGmerkle) public onlyOwner {
    OGmerkleroot = newOGmerkle;
    }

    function setPREmerkleroot(bytes32 newPREmerkle) public onlyOwner {
    PREmerkleroot = newPREmerkle;
    }

    function setMAX_PRESALE_TOKENS_PER_ADDRESS(uint256 _MAX_PRESALE_TOKENS_PER_ADDRESS) public onlyOwner() {
    MAX_PRESALE_TOKENS_PER_ADDRESS = _MAX_PRESALE_TOKENS_PER_ADDRESS;
    }

    function setMAX_OG_TOKENS_PER_ADDRESS(uint256 _MAX_OG_TOKENS_PER_ADDRESS) public onlyOwner() {
    MAX_OG_TOKENS_PER_ADDRESS = _MAX_OG_TOKENS_PER_ADDRESS;
    }

    function setMAX_MINTS_PER_TX(uint256 _MAX_MINTS_PER_TX) public onlyOwner() {
    MAX_MINTS_PER_TX = _MAX_MINTS_PER_TX;
    }

    function setTOKEN_PRICE(uint256 _TOKEN_PRICE) public onlyOwner() {
    TOKEN_PRICE = _TOKEN_PRICE;
    }

    function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        BFFsProvenance = provenanceHash;
    }

    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        return OpenSeaGasFreeListing.isApprovedForAll(owner, operator) || super.isApprovedForAll(owner, operator);
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"maxTOKENS_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BFFsProvenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_OG_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_PERSONAL_RESERVES_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_PERSONAL_TOKENS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TEAM_RESERVES_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OG_PRESALE_TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OGpreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"OGPresaleMerkleProof","type":"bytes32[]"}],"name":"OGpresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"OGpresaleNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAMmerkleroot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAMpreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"TEAMPresaleMerkleProof","type":"bytes32[]"}],"name":"TEAMpresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"TEAMpresaleNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"PresaleMerkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleNumMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_MINTS_PER_TX","type":"uint256"}],"name":"setMAX_MINTS_PER_TX","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_OG_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_OG_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_PRESALE_TOKENS_PER_ADDRESS","type":"uint256"}],"name":"setMAX_PRESALE_TOKENS_PER_ADDRESS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newOGmerkle","type":"bytes32"}],"name":"setOGmerkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newPREmerkle","type":"bytes32"}],"name":"setPREmerkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newTEAMmerkle","type":"bytes32"}],"name":"setTEAMmerkleroot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TOKEN_PRICE","type":"uint256"}],"name":"setTOKEN_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"teamReservesPreSaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOGpreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTEAMpreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000600181815560088290556068600a556054600b55601c600c55600d556003600e55600f55668e1bc9bf04000060105560326011556012805463ffffffff191690553480156200005457600080fd5b5060405162003e8638038062003e86833981016040819052620000779162000343565b6040518060400160405280601081526020016f4261727473204661726d204672656e7360801b815250604051806040016040528060048152602001634246467360e01b8152508484620000d9620000d36200024960201b60201c565b6200024d565b60008111620001465760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001a85760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200013d565b8351620001bd9060029060208701906200029d565b508251620001d39060039060208601906200029d565b5060a09190915260805250506001600955601183905560c081905281811115620002405760405162461bcd60e51b815260206004820152601d60248201527f6c617267657220636f6c6c656374696f6e2073697a65206e656564656400000060448201526064016200013d565b505050620003af565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002ab9062000372565b90600052602060002090601f016020900481019282620002cf57600085556200031a565b82601f10620002ea57805160ff19168380011785556200031a565b828001600101855582156200031a579182015b828111156200031a578251825591602001919060010190620002fd565b50620003289291506200032c565b5090565b5b808211156200032857600081556001016200032d565b6000806000606084860312156200035957600080fd5b8351925060208401519150604084015190509250925092565b600181811c908216806200038757607f821691505b60208210811415620003a957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051613a6f6200041760003960008181610ab001528181611212015281816113ea015281816116f8015281816118b60152611ce801526000818161261b015281816126450152612eaa0152600081816122fe01526123300152613a6f6000f3fe6080604052600436106103ad5760003560e01c806372a6b420116101e7578063b88d4fde1161010d578063df7f72c4116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f47c84c514610a9e578063f70986fe14610ad2578063fa84947014610ae857600080fd5b8063df7f72c414610a09578063e222c7f914610a36578063e3e1e8ef14610a4b578063e985e9c514610a5e57600080fd5b8063ca3cb522116100dc578063ca3cb522146109a8578063d2d8cb67146109bd578063d7224ba0146109d3578063dc33e681146109e957600080fd5b8063b88d4fde1461093c578063c26ced5f1461095c578063c6a91b4214610972578063c87b56dd1461098857600080fd5b80639231ab2a11610185578063a22cb46511610154578063a22cb465146108c4578063a70bddef146108e4578063ac446002146108fa578063b2be6ee11461090f57600080fd5b80639231ab2a1461082257806395d89b411461086f578063a0712d6814610884578063a1e79f8a1461089757600080fd5b806382e42f1e116101c157806382e42f1e146107c35780638832fedc146107d95780638866f3b7146107ef5780638da5cb5b1461080457600080fd5b806372a6b4201461076e5780637a37744a1461078e57806382aa3ec1146107ae57600080fd5b806333bc1c5c116102d75780636177fbfa1161026a5780636a7ae8b9116102395780636a7ae8b91461070e57806370a0823114610724578063715018a61461074457806371ce0de51461075957600080fd5b80636177fbfa146106a85780636352211e146106bb57806364be5287146106db57806369493b95146106fb57600080fd5b80634f6ccce7116102a65780634f6ccce71461063857806355f804b3146106585780635a7adf7f146106785780635fc22b5a1461069257600080fd5b806333bc1c5c146105b757806342842e0e146105d85780634b62c5c8146105f85780634f4342e21461061857600080fd5b806312d8a65a1161034f57806323b872dd1161031e57806323b872dd146105375780632d20fb60146105575780632f745c5914610577578063337037471461059757600080fd5b806312d8a65a146104c357806318160ddd146104e25780631bbaa8ec146105015780631d7440851461051757600080fd5b8063095ea7b31161038b578063095ea7b314610441578063109695231461046357806310d726b214610483578063128ddfa3146104a357600080fd5b806301ffc9a7146103b257806306fdde03146103e7578063081812fc14610409575b600080fd5b3480156103be57600080fd5b506103d26103cd3660046133d3565b610afe565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610b6b565b6040516103de9190613609565b34801561041557600080fd5b506104296104243660046133ba565b610bfd565b6040516001600160a01b0390911681526020016103de565b34801561044d57600080fd5b5061046161045c36600461338e565b610c8d565b005b34801561046f57600080fd5b5061046161047e36600461349b565b610da5565b34801561048f57600080fd5b5061046161049e3660046133ba565b610de6565b3480156104af57600080fd5b506104616104be3660046133ba565b610e15565b3480156104cf57600080fd5b506012546103d290610100900460ff1681565b3480156104ee57600080fd5b506001545b6040519081526020016103de565b34801561050d57600080fd5b506104f3600a5481565b34801561052357600080fd5b506104616105323660046133ba565b610e44565b34801561054357600080fd5b5061046161055236600461329b565b610e73565b34801561056357600080fd5b506104616105723660046133ba565b610e7e565b34801561058357600080fd5b506104f361059236600461338e565b610ee1565b3480156105a357600080fd5b506104616105b23660046133ba565b611059565b3480156105c357600080fd5b506012546103d2906301000000900460ff1681565b3480156105e457600080fd5b506104616105f336600461329b565b611088565b34801561060457600080fd5b506012546103d29062010000900460ff1681565b34801561062457600080fd5b506104616106333660046133ba565b6110a3565b34801561064457600080fd5b506104f36106533660046133ba565b6110d2565b34801561066457600080fd5b5061046161067336600461342a565b61113b565b34801561068457600080fd5b506012546103d29060ff1681565b34801561069e57600080fd5b506104f3600b5481565b6104616106b63660046134e3565b611171565b3480156106c757600080fd5b506104296106d63660046133ba565b611312565b3480156106e757600080fd5b506104616106f63660046133ba565b611324565b6104616107093660046134e3565b611353565b34801561071a57600080fd5b506104f3600f5481565b34801561073057600080fd5b506104f361073f366004613245565b6114d5565b34801561075057600080fd5b50610461611566565b34801561076557600080fd5b506103fc61159c565b34801561077a57600080fd5b506104616107893660046133ba565b61162a565b34801561079a57600080fd5b506104616107a93660046133ba565b611659565b3480156107ba57600080fd5b50610461611758565b3480156107cf57600080fd5b506104f3600e5481565b3480156107e557600080fd5b506104f360155481565b3480156107fb57600080fd5b5061046161179f565b34801561081057600080fd5b506000546001600160a01b0316610429565b34801561082e57600080fd5b5061084261083d3660046133ba565b6117e8565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103de565b34801561087b57600080fd5b506103fc611805565b6104616108923660046133ba565b611814565b3480156108a357600080fd5b506104f36108b2366004613245565b60196020526000908152604090205481565b3480156108d057600080fd5b506104616108df36600461335b565b61191a565b3480156108f057600080fd5b506104f360145481565b34801561090657600080fd5b506104616119df565b34801561091b57600080fd5b506104f361092a366004613245565b60186020526000908152604090205481565b34801561094857600080fd5b506104616109573660046132dc565b611abc565b34801561096857600080fd5b506104f3600d5481565b34801561097e57600080fd5b506104f360115481565b34801561099457600080fd5b506103fc6109a33660046133ba565b611af5565b3480156109b457600080fd5b50610461611bc2565b3480156109c957600080fd5b506104f360105481565b3480156109df57600080fd5b506104f360085481565b3480156109f557600080fd5b506104f3610a04366004613245565b611c00565b348015610a1557600080fd5b506104f3610a24366004613245565b60176020526000908152604090205481565b348015610a4257600080fd5b50610461611c0b565b610461610a593660046134e3565b611c56565b348015610a6a57600080fd5b506103d2610a79366004613262565b611dd3565b348015610a8a57600080fd5b50610461610a99366004613245565b611e13565b348015610aaa57600080fd5b506104f37f000000000000000000000000000000000000000000000000000000000000000081565b348015610ade57600080fd5b506104f3600c5481565b348015610af457600080fd5b506104f360165481565b60006001600160e01b031982166380ac58cd60e01b1480610b2f57506001600160e01b03198216635b5e139f60e01b145b80610b4a57506001600160e01b0319821663780e9d6360e01b145b80610b6557506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b7a9061394c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba69061394c565b8015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b6000610c0a826001541190565b610c715760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c9882611312565b9050806001600160a01b0316836001600160a01b03161415610d075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c68565b336001600160a01b0382161480610d235750610d238133611dd3565b610d955760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c68565b610da0838383611eab565b505050565b6000546001600160a01b03163314610dcf5760405162461bcd60e51b8152600401610c689061369c565b8051610de29060139060208401906130c7565b5050565b6000546001600160a01b03163314610e105760405162461bcd60e51b8152600401610c689061369c565b601655565b6000546001600160a01b03163314610e3f5760405162461bcd60e51b8152600401610c689061369c565b600e55565b6000546001600160a01b03163314610e6e5760405162461bcd60e51b8152600401610c689061369c565b601455565b610da0838383611f07565b6000546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c689061369c565b60026009541415610ecb5760405162461bcd60e51b8152600401610c6890613791565b6002600955610ed98161228d565b506001600955565b6000610eec836114d5565b8210610f455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c68565b6000610f5060015490565b905060008060005b83811015610ff9576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610faa57805192505b876001600160a01b0316836001600160a01b03161415610fe65786841415610fd857509350610b6592505050565b83610fe281613987565b9450505b5080610ff181613987565b915050610f58565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c68565b6000546001600160a01b031633146110835760405162461bcd60e51b8152600401610c689061369c565b600d55565b610da083838360405180602001604052806000815250611abc565b6000546001600160a01b031633146110cd5760405162461bcd60e51b8152600401610c689061369c565b601155565b60006110dd60015490565b82106111375760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c68565b5090565b6000546001600160a01b031633146111655760405162461bcd60e51b8152600401610c689061369c565b610da0601a8383613147565b3233146111905760405162461bcd60e51b8152600401610c689061361c565b600260095414156111b35760405162461bcd60e51b8152600401610c6890613791565b600260095560125462010000900460ff166112105760405162461bcd60e51b815260206004820152601960248201527f7465616d207072652073616c65206973206e6f74206c697665000000000000006044820152606401610c68565b7f00000000000000000000000000000000000000000000000000000000000000008361123b60015490565b611245919061387f565b11156112635760405162461bcd60e51b8152600401610c68906136d1565b6040516001600160601b03193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112d8838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050612476565b6112f45760405162461bcd60e51b8152600401610c6890613769565b6112fd8461248c565b611307338561257f565b505060016009555050565b600061131d82612599565b5192915050565b6000546001600160a01b0316331461134e5760405162461bcd60e51b8152600401610c689061369c565b601055565b3233146113725760405162461bcd60e51b8152600401610c689061361c565b600260095414156113955760405162461bcd60e51b8152600401610c6890613791565b6002600955601254610100900460ff166113e85760405162461bcd60e51b81526020600482015260146024820152737072652073616c65206973206e6f74206c69766560601b6044820152606401610c68565b7f00000000000000000000000000000000000000000000000000000000000000008361141360015490565b61141d919061387f565b111561143b5760405162461bcd60e51b8152600401610c68906136d1565b6040516001600160601b03193360601b1660208201526000906034016040516020818303038152906040528051906020012090506114b0838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150849050612476565b6114cc5760405162461bcd60e51b8152600401610c6890613769565b6112fd84612742565b60006001600160a01b0382166115415760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c68565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115905760405162461bcd60e51b8152600401610c689061369c565b61159a6000612834565b565b601380546115a99061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546115d59061394c565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b505050505081565b6000546001600160a01b031633146116545760405162461bcd60e51b8152600401610c689061369c565b601555565b6000546001600160a01b031633146116835760405162461bcd60e51b8152600401610c689061369c565b600a548111156116e05760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610c68565b80600a60008282546116f291906138f2565b909155507f000000000000000000000000000000000000000000000000000000000000000090508161172360015490565b61172d919061387f565b111561174b5760405162461bcd60e51b8152600401610c6890613653565b611755338261257f565b50565b6000546001600160a01b031633146117825760405162461bcd60e51b8152600401610c689061369c565b6012805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146117c95760405162461bcd60e51b8152600401610c689061369c565b6012805462ff0000198116620100009182900460ff1615909102179055565b6040805180820190915260008082526020820152610b6582612599565b606060038054610b7a9061394c565b3233146118335760405162461bcd60e51b8152600401610c689061361c565b600260095414156118565760405162461bcd60e51b8152600401610c6890613791565b60026009556012546301000000900460ff166118b45760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610c68565b7f0000000000000000000000000000000000000000000000000000000000000000816118df60015490565b6118e9919061387f565b11156119075760405162461bcd60e51b8152600401610c6890613653565b61191081612884565b610ed9338261257f565b6001600160a01b0382163314156119735760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c68565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611a095760405162461bcd60e51b8152600401610c689061369c565b60026009541415611a2c5760405162461bcd60e51b8152600401610c6890613791565b6002600955604051600090339047908381818185875af1925050503d8060008114611a73576040519150601f19603f3d011682016040523d82523d6000602084013e611a78565b606091505b5050905080610ed95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610c68565b611ac7848484611f07565b611ad3848484846128de565b611aef5760405162461bcd60e51b8152600401610c6890613716565b50505050565b6060611b02826001541190565b611b665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c68565b6000611b706129ec565b90506000815111611b905760405180602001604052806000815250611bbb565b80611b9a846129fb565b604051602001611bab92919061358d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611bec5760405162461bcd60e51b8152600401610c689061369c565b6012805460ff19811660ff90911615179055565b6000610b6582612af8565b6000546001600160a01b03163314611c355760405162461bcd60e51b8152600401610c689061369c565b6012805463ff00000019811663010000009182900460ff1615909102179055565b323314611c755760405162461bcd60e51b8152600401610c689061361c565b60026009541415611c985760405162461bcd60e51b8152600401610c6890613791565b600260095560125460ff16611ce65760405162461bcd60e51b81526020600482015260146024820152737072652073616c65206973206e6f74206c69766560601b6044820152606401610c68565b7f000000000000000000000000000000000000000000000000000000000000000083611d1160015490565b611d1b919061387f565b1115611d395760405162461bcd60e51b8152600401610c68906136d1565b6040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611dae838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050612476565b611dca5760405162461bcd60e51b8152600401610c6890613769565b6112fd84612b96565b6000611ddf8383612c88565b80611bbb57506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611bbb565b6000546001600160a01b03163314611e3d5760405162461bcd60e51b8152600401610c689061369c565b6001600160a01b038116611ea25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c68565b61175581612834565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f1282612599565b80519091506000906001600160a01b0316336001600160a01b03161480611f49575033611f3e84610bfd565b6001600160a01b0316145b80611f5b57508151611f5b9033611dd3565b905080611fc55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c68565b846001600160a01b031682600001516001600160a01b0316146120395760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c68565b6001600160a01b03841661209d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c68565b6120ad6000848460000151611eab565b6001600160a01b03851660009081526005602052604081208054600192906120df9084906001600160801b03166138ca565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261212b91859116613854565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121b284600161387f565b6000818152600460205260409020549091506001600160a01b0316612243576121dc816001541190565b156122435760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816122dd5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610c68565b600060016122eb848461387f565b6122f591906138f2565b905061232260017f00000000000000000000000000000000000000000000000000000000000000006138f2565b8111156123575761235460017f00000000000000000000000000000000000000000000000000000000000000006138f2565b90505b612362816001541190565b6123bd5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610c68565b815b818111612462576000818152600460205260409020546001600160a01b03166124505760006123ed82612599565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061245a81613987565b9150506123bf565b5061246e81600161387f565b600855505050565b6000826124838584612d79565b14949350505050565b60008111801561249e5750600c548111155b6124ba5760405162461bcd60e51b8152600401610c68906137ff565b80600f546124c891906138ab565b34146124e65760405162461bcd60e51b8152600401610c68906137c8565b3360009081526017602052604090205461250190829061387f565b336000908152601760205260409020819055600c5410156117555760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206d696e74206d6f7265207468616e20323820706572206164646044820152717265737320696e207468697320706861736560701b6064820152608401610c68565b610de2828260405180602001604052806000815250612ded565b60408051808201909152600080825260208201526125b8826001541190565b6126175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c68565b60007f000000000000000000000000000000000000000000000000000000000000000083106126785761266a7f0000000000000000000000000000000000000000000000000000000000000000846138f2565b61267590600161387f565b90505b825b8181106126e1576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156126ce57949350505050565b50806126d981613935565b91505061267a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610c68565b6000811180156127545750600d548111155b6127705760405162461bcd60e51b8152600401610c68906137ff565b80600f5461277e91906138ab565b341461279c5760405162461bcd60e51b8152600401610c68906137c8565b336000908152601860205260409020546127b790829061387f565b336000908152601860205260409020819055600d5410156117555760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74206d696e74206d6f7265207468616e203120706572206164647260448201527065737320696e207468697320706861736560781b6064820152608401610c68565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008111801561289657506011548111155b6128b25760405162461bcd60e51b8152600401610c68906137ff565b806010546128c091906138ab565b34146117555760405162461bcd60e51b8152600401610c68906137c8565b60006001600160a01b0384163b156129e057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129229033908990889088906004016135cc565b602060405180830381600087803b15801561293c57600080fd5b505af192505050801561296c575060408051601f3d908101601f19168201909252612969918101906133f0565b60015b6129c6573d80801561299a576040519150601f19603f3d011682016040523d82523d6000602084013e61299f565b606091505b5080516129be5760405162461bcd60e51b8152600401610c6890613716565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506129e4565b5060015b949350505050565b6060601a8054610b7a9061394c565b606081612a1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a495780612a3381613987565b9150612a429050600a83613897565b9150612a23565b6000816001600160401b03811115612a6357612a636139f8565b6040519080825280601f01601f191660200182016040528015612a8d576020820181803683370190505b5090505b84156129e457612aa26001836138f2565b9150612aaf600a866139a2565b612aba90603061387f565b60f81b818381518110612acf57612acf6139e2565b60200101906001600160f81b031916908160001a905350612af1600a86613897565b9450612a91565b60006001600160a01b038216612b6a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610c68565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081118015612ba85750600e548111155b612bc45760405162461bcd60e51b8152600401610c68906137ff565b80601054612bd291906138ab565b3414612bf05760405162461bcd60e51b8152600401610c68906137c8565b33600090815260196020526040902054612c0b90829061387f565b336000908152601960205260409020819055600e5410156117555760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74206d696e74206d6f7265207468616e203320706572206164647260448201527065737320696e207468697320706861736560781b6064820152608401610c68565b6000804660018114612ca15760048114612cbd57612cd5565b73a5409ec958c83c3f309868babaca7c86dcb077c19150612cd5565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b038116158015906129e4575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015612d2f57600080fd5b505afa158015612d43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d67919061340d565b6001600160a01b031614949350505050565b600081815b8451811015612de5576000858281518110612d9b57612d9b6139e2565b60200260200101519050808311612dc15760008381526020829052604090209250612dd2565b600081815260208490526040902092505b5080612ddd81613987565b915050612d7e565b509392505050565b6001546001600160a01b038416612e505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c68565b612e5b816001541190565b15612ea85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c68565b7f0000000000000000000000000000000000000000000000000000000000000000831115612f235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c68565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612f7f908790613854565b6001600160801b03168152602001858360200151612f9d9190613854565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156130bc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461308060008884886128de565b61309c5760405162461bcd60e51b8152600401610c6890613716565b816130a681613987565b92505080806130b490613987565b915050613033565b506001819055612285565b8280546130d39061394c565b90600052602060002090601f0160209004810192826130f5576000855561313b565b82601f1061310e57805160ff191683800117855561313b565b8280016001018555821561313b579182015b8281111561313b578251825591602001919060010190613120565b506111379291506131bb565b8280546131539061394c565b90600052602060002090601f016020900481019282613175576000855561313b565b82601f1061318e5782800160ff1982351617855561313b565b8280016001018555821561313b579182015b8281111561313b5782358255916020019190600101906131a0565b5b8082111561113757600081556001016131bc565b60006001600160401b03808411156131ea576131ea6139f8565b604051601f8501601f19908116603f01168101908282118183101715613212576132126139f8565b8160405280935085815286868601111561322b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561325757600080fd5b8135611bbb81613a0e565b6000806040838503121561327557600080fd5b823561328081613a0e565b9150602083013561329081613a0e565b809150509250929050565b6000806000606084860312156132b057600080fd5b83356132bb81613a0e565b925060208401356132cb81613a0e565b929592945050506040919091013590565b600080600080608085870312156132f257600080fd5b84356132fd81613a0e565b9350602085013561330d81613a0e565b92506040850135915060608501356001600160401b0381111561332f57600080fd5b8501601f8101871361334057600080fd5b61334f878235602084016131d0565b91505092959194509250565b6000806040838503121561336e57600080fd5b823561337981613a0e565b91506020830135801515811461329057600080fd5b600080604083850312156133a157600080fd5b82356133ac81613a0e565b946020939093013593505050565b6000602082840312156133cc57600080fd5b5035919050565b6000602082840312156133e557600080fd5b8135611bbb81613a23565b60006020828403121561340257600080fd5b8151611bbb81613a23565b60006020828403121561341f57600080fd5b8151611bbb81613a0e565b6000806020838503121561343d57600080fd5b82356001600160401b038082111561345457600080fd5b818501915085601f83011261346857600080fd5b81358181111561347757600080fd5b86602082850101111561348957600080fd5b60209290920196919550909350505050565b6000602082840312156134ad57600080fd5b81356001600160401b038111156134c357600080fd5b8201601f810184136134d457600080fd5b6129e4848235602084016131d0565b6000806000604084860312156134f857600080fd5b8335925060208401356001600160401b038082111561351657600080fd5b818601915086601f83011261352a57600080fd5b81358181111561353957600080fd5b8760208260051b850101111561354e57600080fd5b6020830194508093505050509250925092565b60008151808452613579816020860160208601613909565b601f01601f19169290920160200192915050565b6000835161359f818460208801613909565b8351908301906135b3818360208801613909565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135ff90830184613561565b9695505050505050565b602081526000611bbb6020830184613561565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736040820152647570706c7960d81b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600e908201526d24b73b30b634b210383937b7b31760911b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601a908201527f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000604082015260600190565b60208082526035908201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560408201527472207468616e206d696e7420616c6c6f77616e636560581b606082015260800190565b60006001600160801b03808316818516808303821115613876576138766139b6565b01949350505050565b60008219821115613892576138926139b6565b500190565b6000826138a6576138a66139cc565b500490565b60008160001904831182151516156138c5576138c56139b6565b500290565b60006001600160801b03838116908316818110156138ea576138ea6139b6565b039392505050565b600082821015613904576139046139b6565b500390565b60005b8381101561392457818101518382015260200161390c565b83811115611aef5750506000910152565b600081613944576139446139b6565b506000190190565b600181811c9082168061396057607f821691505b6020821081141561398157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561399b5761399b6139b6565b5060010190565b6000826139b1576139b16139cc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461175557600080fd5b6001600160e01b03198116811461175557600080fdfea264697066735822122090d23a010917f7ae9b66133e5035d7f7057e77e8ac0d91f7f7bab579250cc87f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000022b800000000000000000000000000000000000000000000000000000000000022b8

Deployed Bytecode

0x6080604052600436106103ad5760003560e01c806372a6b420116101e7578063b88d4fde1161010d578063df7f72c4116100a0578063f2fde38b1161006f578063f2fde38b14610a7e578063f47c84c514610a9e578063f70986fe14610ad2578063fa84947014610ae857600080fd5b8063df7f72c414610a09578063e222c7f914610a36578063e3e1e8ef14610a4b578063e985e9c514610a5e57600080fd5b8063ca3cb522116100dc578063ca3cb522146109a8578063d2d8cb67146109bd578063d7224ba0146109d3578063dc33e681146109e957600080fd5b8063b88d4fde1461093c578063c26ced5f1461095c578063c6a91b4214610972578063c87b56dd1461098857600080fd5b80639231ab2a11610185578063a22cb46511610154578063a22cb465146108c4578063a70bddef146108e4578063ac446002146108fa578063b2be6ee11461090f57600080fd5b80639231ab2a1461082257806395d89b411461086f578063a0712d6814610884578063a1e79f8a1461089757600080fd5b806382e42f1e116101c157806382e42f1e146107c35780638832fedc146107d95780638866f3b7146107ef5780638da5cb5b1461080457600080fd5b806372a6b4201461076e5780637a37744a1461078e57806382aa3ec1146107ae57600080fd5b806333bc1c5c116102d75780636177fbfa1161026a5780636a7ae8b9116102395780636a7ae8b91461070e57806370a0823114610724578063715018a61461074457806371ce0de51461075957600080fd5b80636177fbfa146106a85780636352211e146106bb57806364be5287146106db57806369493b95146106fb57600080fd5b80634f6ccce7116102a65780634f6ccce71461063857806355f804b3146106585780635a7adf7f146106785780635fc22b5a1461069257600080fd5b806333bc1c5c146105b757806342842e0e146105d85780634b62c5c8146105f85780634f4342e21461061857600080fd5b806312d8a65a1161034f57806323b872dd1161031e57806323b872dd146105375780632d20fb60146105575780632f745c5914610577578063337037471461059757600080fd5b806312d8a65a146104c357806318160ddd146104e25780631bbaa8ec146105015780631d7440851461051757600080fd5b8063095ea7b31161038b578063095ea7b314610441578063109695231461046357806310d726b214610483578063128ddfa3146104a357600080fd5b806301ffc9a7146103b257806306fdde03146103e7578063081812fc14610409575b600080fd5b3480156103be57600080fd5b506103d26103cd3660046133d3565b610afe565b60405190151581526020015b60405180910390f35b3480156103f357600080fd5b506103fc610b6b565b6040516103de9190613609565b34801561041557600080fd5b506104296104243660046133ba565b610bfd565b6040516001600160a01b0390911681526020016103de565b34801561044d57600080fd5b5061046161045c36600461338e565b610c8d565b005b34801561046f57600080fd5b5061046161047e36600461349b565b610da5565b34801561048f57600080fd5b5061046161049e3660046133ba565b610de6565b3480156104af57600080fd5b506104616104be3660046133ba565b610e15565b3480156104cf57600080fd5b506012546103d290610100900460ff1681565b3480156104ee57600080fd5b506001545b6040519081526020016103de565b34801561050d57600080fd5b506104f3600a5481565b34801561052357600080fd5b506104616105323660046133ba565b610e44565b34801561054357600080fd5b5061046161055236600461329b565b610e73565b34801561056357600080fd5b506104616105723660046133ba565b610e7e565b34801561058357600080fd5b506104f361059236600461338e565b610ee1565b3480156105a357600080fd5b506104616105b23660046133ba565b611059565b3480156105c357600080fd5b506012546103d2906301000000900460ff1681565b3480156105e457600080fd5b506104616105f336600461329b565b611088565b34801561060457600080fd5b506012546103d29062010000900460ff1681565b34801561062457600080fd5b506104616106333660046133ba565b6110a3565b34801561064457600080fd5b506104f36106533660046133ba565b6110d2565b34801561066457600080fd5b5061046161067336600461342a565b61113b565b34801561068457600080fd5b506012546103d29060ff1681565b34801561069e57600080fd5b506104f3600b5481565b6104616106b63660046134e3565b611171565b3480156106c757600080fd5b506104296106d63660046133ba565b611312565b3480156106e757600080fd5b506104616106f63660046133ba565b611324565b6104616107093660046134e3565b611353565b34801561071a57600080fd5b506104f3600f5481565b34801561073057600080fd5b506104f361073f366004613245565b6114d5565b34801561075057600080fd5b50610461611566565b34801561076557600080fd5b506103fc61159c565b34801561077a57600080fd5b506104616107893660046133ba565b61162a565b34801561079a57600080fd5b506104616107a93660046133ba565b611659565b3480156107ba57600080fd5b50610461611758565b3480156107cf57600080fd5b506104f3600e5481565b3480156107e557600080fd5b506104f360155481565b3480156107fb57600080fd5b5061046161179f565b34801561081057600080fd5b506000546001600160a01b0316610429565b34801561082e57600080fd5b5061084261083d3660046133ba565b6117e8565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103de565b34801561087b57600080fd5b506103fc611805565b6104616108923660046133ba565b611814565b3480156108a357600080fd5b506104f36108b2366004613245565b60196020526000908152604090205481565b3480156108d057600080fd5b506104616108df36600461335b565b61191a565b3480156108f057600080fd5b506104f360145481565b34801561090657600080fd5b506104616119df565b34801561091b57600080fd5b506104f361092a366004613245565b60186020526000908152604090205481565b34801561094857600080fd5b506104616109573660046132dc565b611abc565b34801561096857600080fd5b506104f3600d5481565b34801561097e57600080fd5b506104f360115481565b34801561099457600080fd5b506103fc6109a33660046133ba565b611af5565b3480156109b457600080fd5b50610461611bc2565b3480156109c957600080fd5b506104f360105481565b3480156109df57600080fd5b506104f360085481565b3480156109f557600080fd5b506104f3610a04366004613245565b611c00565b348015610a1557600080fd5b506104f3610a24366004613245565b60176020526000908152604090205481565b348015610a4257600080fd5b50610461611c0b565b610461610a593660046134e3565b611c56565b348015610a6a57600080fd5b506103d2610a79366004613262565b611dd3565b348015610a8a57600080fd5b50610461610a99366004613245565b611e13565b348015610aaa57600080fd5b506104f37f00000000000000000000000000000000000000000000000000000000000022b881565b348015610ade57600080fd5b506104f3600c5481565b348015610af457600080fd5b506104f360165481565b60006001600160e01b031982166380ac58cd60e01b1480610b2f57506001600160e01b03198216635b5e139f60e01b145b80610b4a57506001600160e01b0319821663780e9d6360e01b145b80610b6557506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610b7a9061394c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba69061394c565b8015610bf35780601f10610bc857610100808354040283529160200191610bf3565b820191906000526020600020905b815481529060010190602001808311610bd657829003601f168201915b5050505050905090565b6000610c0a826001541190565b610c715760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610c9882611312565b9050806001600160a01b0316836001600160a01b03161415610d075760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610c68565b336001600160a01b0382161480610d235750610d238133611dd3565b610d955760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610c68565b610da0838383611eab565b505050565b6000546001600160a01b03163314610dcf5760405162461bcd60e51b8152600401610c689061369c565b8051610de29060139060208401906130c7565b5050565b6000546001600160a01b03163314610e105760405162461bcd60e51b8152600401610c689061369c565b601655565b6000546001600160a01b03163314610e3f5760405162461bcd60e51b8152600401610c689061369c565b600e55565b6000546001600160a01b03163314610e6e5760405162461bcd60e51b8152600401610c689061369c565b601455565b610da0838383611f07565b6000546001600160a01b03163314610ea85760405162461bcd60e51b8152600401610c689061369c565b60026009541415610ecb5760405162461bcd60e51b8152600401610c6890613791565b6002600955610ed98161228d565b506001600955565b6000610eec836114d5565b8210610f455760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610c68565b6000610f5060015490565b905060008060005b83811015610ff9576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610faa57805192505b876001600160a01b0316836001600160a01b03161415610fe65786841415610fd857509350610b6592505050565b83610fe281613987565b9450505b5080610ff181613987565b915050610f58565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610c68565b6000546001600160a01b031633146110835760405162461bcd60e51b8152600401610c689061369c565b600d55565b610da083838360405180602001604052806000815250611abc565b6000546001600160a01b031633146110cd5760405162461bcd60e51b8152600401610c689061369c565b601155565b60006110dd60015490565b82106111375760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610c68565b5090565b6000546001600160a01b031633146111655760405162461bcd60e51b8152600401610c689061369c565b610da0601a8383613147565b3233146111905760405162461bcd60e51b8152600401610c689061361c565b600260095414156111b35760405162461bcd60e51b8152600401610c6890613791565b600260095560125462010000900460ff166112105760405162461bcd60e51b815260206004820152601960248201527f7465616d207072652073616c65206973206e6f74206c697665000000000000006044820152606401610c68565b7f00000000000000000000000000000000000000000000000000000000000022b88361123b60015490565b611245919061387f565b11156112635760405162461bcd60e51b8152600401610c68906136d1565b6040516001600160601b03193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112d8838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150849050612476565b6112f45760405162461bcd60e51b8152600401610c6890613769565b6112fd8461248c565b611307338561257f565b505060016009555050565b600061131d82612599565b5192915050565b6000546001600160a01b0316331461134e5760405162461bcd60e51b8152600401610c689061369c565b601055565b3233146113725760405162461bcd60e51b8152600401610c689061361c565b600260095414156113955760405162461bcd60e51b8152600401610c6890613791565b6002600955601254610100900460ff166113e85760405162461bcd60e51b81526020600482015260146024820152737072652073616c65206973206e6f74206c69766560601b6044820152606401610c68565b7f00000000000000000000000000000000000000000000000000000000000022b88361141360015490565b61141d919061387f565b111561143b5760405162461bcd60e51b8152600401610c68906136d1565b6040516001600160601b03193360601b1660208201526000906034016040516020818303038152906040528051906020012090506114b0838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150849050612476565b6114cc5760405162461bcd60e51b8152600401610c6890613769565b6112fd84612742565b60006001600160a01b0382166115415760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610c68565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115905760405162461bcd60e51b8152600401610c689061369c565b61159a6000612834565b565b601380546115a99061394c565b80601f01602080910402602001604051908101604052809291908181526020018280546115d59061394c565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b505050505081565b6000546001600160a01b031633146116545760405162461bcd60e51b8152600401610c689061369c565b601555565b6000546001600160a01b031633146116835760405162461bcd60e51b8152600401610c689061369c565b600a548111156116e05760405162461bcd60e51b815260206004820152602260248201527f43616e27742072657365727665206d6f7265207468616e2073657420616d6f756044820152611b9d60f21b6064820152608401610c68565b80600a60008282546116f291906138f2565b909155507f00000000000000000000000000000000000000000000000000000000000022b890508161172360015490565b61172d919061387f565b111561174b5760405162461bcd60e51b8152600401610c6890613653565b611755338261257f565b50565b6000546001600160a01b031633146117825760405162461bcd60e51b8152600401610c689061369c565b6012805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b031633146117c95760405162461bcd60e51b8152600401610c689061369c565b6012805462ff0000198116620100009182900460ff1615909102179055565b6040805180820190915260008082526020820152610b6582612599565b606060038054610b7a9061394c565b3233146118335760405162461bcd60e51b8152600401610c689061361c565b600260095414156118565760405162461bcd60e51b8152600401610c6890613791565b60026009556012546301000000900460ff166118b45760405162461bcd60e51b815260206004820152601760248201527f7075626c69632073616c65206973206e6f74206c6976650000000000000000006044820152606401610c68565b7f00000000000000000000000000000000000000000000000000000000000022b8816118df60015490565b6118e9919061387f565b11156119075760405162461bcd60e51b8152600401610c6890613653565b61191081612884565b610ed9338261257f565b6001600160a01b0382163314156119735760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610c68565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314611a095760405162461bcd60e51b8152600401610c689061369c565b60026009541415611a2c5760405162461bcd60e51b8152600401610c6890613791565b6002600955604051600090339047908381818185875af1925050503d8060008114611a73576040519150601f19603f3d011682016040523d82523d6000602084013e611a78565b606091505b5050905080610ed95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610c68565b611ac7848484611f07565b611ad3848484846128de565b611aef5760405162461bcd60e51b8152600401610c6890613716565b50505050565b6060611b02826001541190565b611b665760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c68565b6000611b706129ec565b90506000815111611b905760405180602001604052806000815250611bbb565b80611b9a846129fb565b604051602001611bab92919061358d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b03163314611bec5760405162461bcd60e51b8152600401610c689061369c565b6012805460ff19811660ff90911615179055565b6000610b6582612af8565b6000546001600160a01b03163314611c355760405162461bcd60e51b8152600401610c689061369c565b6012805463ff00000019811663010000009182900460ff1615909102179055565b323314611c755760405162461bcd60e51b8152600401610c689061361c565b60026009541415611c985760405162461bcd60e51b8152600401610c6890613791565b600260095560125460ff16611ce65760405162461bcd60e51b81526020600482015260146024820152737072652073616c65206973206e6f74206c69766560601b6044820152606401610c68565b7f00000000000000000000000000000000000000000000000000000000000022b883611d1160015490565b611d1b919061387f565b1115611d395760405162461bcd60e51b8152600401610c68906136d1565b6040516001600160601b03193360601b166020820152600090603401604051602081830303815290604052805190602001209050611dae838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050612476565b611dca5760405162461bcd60e51b8152600401610c6890613769565b6112fd84612b96565b6000611ddf8383612c88565b80611bbb57506001600160a01b0380841660009081526007602090815260408083209386168352929052205460ff16611bbb565b6000546001600160a01b03163314611e3d5760405162461bcd60e51b8152600401610c689061369c565b6001600160a01b038116611ea25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c68565b61175581612834565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611f1282612599565b80519091506000906001600160a01b0316336001600160a01b03161480611f49575033611f3e84610bfd565b6001600160a01b0316145b80611f5b57508151611f5b9033611dd3565b905080611fc55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610c68565b846001600160a01b031682600001516001600160a01b0316146120395760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610c68565b6001600160a01b03841661209d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610c68565b6120ad6000848460000151611eab565b6001600160a01b03851660009081526005602052604081208054600192906120df9084906001600160801b03166138ca565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261212b91859116613854565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556121b284600161387f565b6000818152600460205260409020549091506001600160a01b0316612243576121dc816001541190565b156122435760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816122dd5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610c68565b600060016122eb848461387f565b6122f591906138f2565b905061232260017f00000000000000000000000000000000000000000000000000000000000022b86138f2565b8111156123575761235460017f00000000000000000000000000000000000000000000000000000000000022b86138f2565b90505b612362816001541190565b6123bd5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610c68565b815b818111612462576000818152600460205260409020546001600160a01b03166124505760006123ed82612599565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061245a81613987565b9150506123bf565b5061246e81600161387f565b600855505050565b6000826124838584612d79565b14949350505050565b60008111801561249e5750600c548111155b6124ba5760405162461bcd60e51b8152600401610c68906137ff565b80600f546124c891906138ab565b34146124e65760405162461bcd60e51b8152600401610c68906137c8565b3360009081526017602052604090205461250190829061387f565b336000908152601760205260409020819055600c5410156117555760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f74206d696e74206d6f7265207468616e20323820706572206164646044820152717265737320696e207468697320706861736560701b6064820152608401610c68565b610de2828260405180602001604052806000815250612ded565b60408051808201909152600080825260208201526125b8826001541190565b6126175760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610c68565b60007f000000000000000000000000000000000000000000000000000000000000003283106126785761266a7f0000000000000000000000000000000000000000000000000000000000000032846138f2565b61267590600161387f565b90505b825b8181106126e1576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156126ce57949350505050565b50806126d981613935565b91505061267a565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610c68565b6000811180156127545750600d548111155b6127705760405162461bcd60e51b8152600401610c68906137ff565b80600f5461277e91906138ab565b341461279c5760405162461bcd60e51b8152600401610c68906137c8565b336000908152601860205260409020546127b790829061387f565b336000908152601860205260409020819055600d5410156117555760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74206d696e74206d6f7265207468616e203120706572206164647260448201527065737320696e207468697320706861736560781b6064820152608401610c68565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008111801561289657506011548111155b6128b25760405162461bcd60e51b8152600401610c68906137ff565b806010546128c091906138ab565b34146117555760405162461bcd60e51b8152600401610c68906137c8565b60006001600160a01b0384163b156129e057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906129229033908990889088906004016135cc565b602060405180830381600087803b15801561293c57600080fd5b505af192505050801561296c575060408051601f3d908101601f19168201909252612969918101906133f0565b60015b6129c6573d80801561299a576040519150601f19603f3d011682016040523d82523d6000602084013e61299f565b606091505b5080516129be5760405162461bcd60e51b8152600401610c6890613716565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506129e4565b5060015b949350505050565b6060601a8054610b7a9061394c565b606081612a1f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a495780612a3381613987565b9150612a429050600a83613897565b9150612a23565b6000816001600160401b03811115612a6357612a636139f8565b6040519080825280601f01601f191660200182016040528015612a8d576020820181803683370190505b5090505b84156129e457612aa26001836138f2565b9150612aaf600a866139a2565b612aba90603061387f565b60f81b818381518110612acf57612acf6139e2565b60200101906001600160f81b031916908160001a905350612af1600a86613897565b9450612a91565b60006001600160a01b038216612b6a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610c68565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b600081118015612ba85750600e548111155b612bc45760405162461bcd60e51b8152600401610c68906137ff565b80601054612bd291906138ab565b3414612bf05760405162461bcd60e51b8152600401610c68906137c8565b33600090815260196020526040902054612c0b90829061387f565b336000908152601960205260409020819055600e5410156117555760405162461bcd60e51b815260206004820152603160248201527f43616e6e6f74206d696e74206d6f7265207468616e203320706572206164647260448201527065737320696e207468697320706861736560781b6064820152608401610c68565b6000804660018114612ca15760048114612cbd57612cd5565b73a5409ec958c83c3f309868babaca7c86dcb077c19150612cd5565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b038116158015906129e4575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015612d2f57600080fd5b505afa158015612d43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d67919061340d565b6001600160a01b031614949350505050565b600081815b8451811015612de5576000858281518110612d9b57612d9b6139e2565b60200260200101519050808311612dc15760008381526020829052604090209250612dd2565b600081815260208490526040902092505b5080612ddd81613987565b915050612d7e565b509392505050565b6001546001600160a01b038416612e505760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610c68565b612e5b816001541190565b15612ea85760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610c68565b7f0000000000000000000000000000000000000000000000000000000000000032831115612f235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610c68565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612f7f908790613854565b6001600160801b03168152602001858360200151612f9d9190613854565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156130bc5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461308060008884886128de565b61309c5760405162461bcd60e51b8152600401610c6890613716565b816130a681613987565b92505080806130b490613987565b915050613033565b506001819055612285565b8280546130d39061394c565b90600052602060002090601f0160209004810192826130f5576000855561313b565b82601f1061310e57805160ff191683800117855561313b565b8280016001018555821561313b579182015b8281111561313b578251825591602001919060010190613120565b506111379291506131bb565b8280546131539061394c565b90600052602060002090601f016020900481019282613175576000855561313b565b82601f1061318e5782800160ff1982351617855561313b565b8280016001018555821561313b579182015b8281111561313b5782358255916020019190600101906131a0565b5b8082111561113757600081556001016131bc565b60006001600160401b03808411156131ea576131ea6139f8565b604051601f8501601f19908116603f01168101908282118183101715613212576132126139f8565b8160405280935085815286868601111561322b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561325757600080fd5b8135611bbb81613a0e565b6000806040838503121561327557600080fd5b823561328081613a0e565b9150602083013561329081613a0e565b809150509250929050565b6000806000606084860312156132b057600080fd5b83356132bb81613a0e565b925060208401356132cb81613a0e565b929592945050506040919091013590565b600080600080608085870312156132f257600080fd5b84356132fd81613a0e565b9350602085013561330d81613a0e565b92506040850135915060608501356001600160401b0381111561332f57600080fd5b8501601f8101871361334057600080fd5b61334f878235602084016131d0565b91505092959194509250565b6000806040838503121561336e57600080fd5b823561337981613a0e565b91506020830135801515811461329057600080fd5b600080604083850312156133a157600080fd5b82356133ac81613a0e565b946020939093013593505050565b6000602082840312156133cc57600080fd5b5035919050565b6000602082840312156133e557600080fd5b8135611bbb81613a23565b60006020828403121561340257600080fd5b8151611bbb81613a23565b60006020828403121561341f57600080fd5b8151611bbb81613a0e565b6000806020838503121561343d57600080fd5b82356001600160401b038082111561345457600080fd5b818501915085601f83011261346857600080fd5b81358181111561347757600080fd5b86602082850101111561348957600080fd5b60209290920196919550909350505050565b6000602082840312156134ad57600080fd5b81356001600160401b038111156134c357600080fd5b8201601f810184136134d457600080fd5b6129e4848235602084016131d0565b6000806000604084860312156134f857600080fd5b8335925060208401356001600160401b038082111561351657600080fd5b818601915086601f83011261352a57600080fd5b81358181111561353957600080fd5b8760208260051b850101111561354e57600080fd5b6020830194508093505050509250925092565b60008151808452613579816020860160208601613909565b601f01601f19169290920160200192915050565b6000835161359f818460208801613909565b8351908301906135b3818360208801613909565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906135ff90830184613561565b9695505050505050565b602081526000611bbb6020830184613561565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526029908201527f696e76616c6964207175616e746974793a20776f756c6420657863656564206d604082015268617820737570706c7960b81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f6d696e74696e672074686973206d616e7920776f756c642065786365656420736040820152647570706c7960d81b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252600e908201526d24b73b30b634b210383937b7b31760911b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601a908201527f77726f6e6720616d6f756e74206f662065746865722073656e74000000000000604082015260600190565b60208082526035908201527f696e76616c6964207175616e746974793a207a65726f206f722067726561746560408201527472207468616e206d696e7420616c6c6f77616e636560581b606082015260800190565b60006001600160801b03808316818516808303821115613876576138766139b6565b01949350505050565b60008219821115613892576138926139b6565b500190565b6000826138a6576138a66139cc565b500490565b60008160001904831182151516156138c5576138c56139b6565b500290565b60006001600160801b03838116908316818110156138ea576138ea6139b6565b039392505050565b600082821015613904576139046139b6565b500390565b60005b8381101561392457818101518382015260200161390c565b83811115611aef5750506000910152565b600081613944576139446139b6565b506000190190565b600181811c9082168061396057607f821691505b6020821081141561398157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561399b5761399b6139b6565b5060010190565b6000826139b1576139b16139cc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461175557600080fd5b6001600160e01b03198116811461175557600080fdfea264697066735822122090d23a010917f7ae9b66133e5035d7f7057e77e8ac0d91f7f7bab579250cc87f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000003200000000000000000000000000000000000000000000000000000000000022b800000000000000000000000000000000000000000000000000000000000022b8

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 50
Arg [1] : collectionSize_ (uint256): 8888
Arg [2] : maxTOKENS_ (uint256): 8888

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [1] : 00000000000000000000000000000000000000000000000000000000000022b8
Arg [2] : 00000000000000000000000000000000000000000000000000000000000022b8


Deployed Bytecode Sourcemap

48475:9435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34759:370;;;;;;;;;;-1:-1:-1;34759:370:0;;;;;:::i;:::-;;:::i;:::-;;;8409:14:1;;8402:22;8384:41;;8372:2;8357:18;34759:370:0;;;;;;;;36485:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38018:204::-;;;;;;;;;;-1:-1:-1;38018:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7707:32:1;;;7689:51;;7677:2;7662:18;38018:204:0;7543:203:1;37581:379:0;;;;;;;;;;-1:-1:-1;37581:379:0;;;;;:::i;:::-;;:::i;:::-;;57210:126;;;;;;;;;;-1:-1:-1;57210:126:0;;;;;:::i;:::-;;:::i;56486:108::-;;;;;;;;;;-1:-1:-1;56486:108:0;;;;;:::i;:::-;;:::i;56602:182::-;;;;;;;;;;-1:-1:-1;56602:182:0;;;;;:::i;:::-;;:::i;49746:29::-;;;;;;;;;;-1:-1:-1;49746:29:0;;;;;;;;;;;33320:94;;;;;;;;;;-1:-1:-1;33396:12:0;;33320:94;;;8582:25:1;;;8570:2;8555:18;33320:94:0;8436:177:1;48727:46:0;;;;;;;;;;;;;;;;56254:112;;;;;;;;;;-1:-1:-1;56254:112:0;;;;;:::i;:::-;;:::i;38868:142::-;;;;;;;;;;-1:-1:-1;38868:142:0;;;;;:::i;:::-;;:::i;55842:118::-;;;;;;;;;;-1:-1:-1;55842:118:0;;;;;:::i;:::-;;:::i;33951:744::-;;;;;;;;;;-1:-1:-1;33951:744:0;;;;;:::i;:::-;;:::i;56792:162::-;;;;;;;;;;-1:-1:-1;56792:162:0;;;;;:::i;:::-;;:::i;49820:30::-;;;;;;;;;;-1:-1:-1;49820:30:0;;;;;;;;;;;39073:157;;;;;;;;;;-1:-1:-1;39073:157:0;;;;;:::i;:::-;;:::i;49782:31::-;;;;;;;;;;-1:-1:-1;49782:31:0;;;;;;;;;;;56962:126;;;;;;;;;;-1:-1:-1;56962:126:0;;;;;:::i;:::-;;:::i;33483:177::-;;;;;;;;;;-1:-1:-1;33483:177:0;;;;;:::i;:::-;;:::i;56145:100::-;;;;;;;;;;-1:-1:-1;56145:100:0;;;;;:::i;:::-;;:::i;49712:27::-;;;;;;;;;;-1:-1:-1;49712:27:0;;;;;;;;48876:54;;;;;;;;;;;;;;;;50984:555;;;;;;:::i;:::-;;:::i;36308:118::-;;;;;;;;;;-1:-1:-1;36308:118:0;;;;;:::i;:::-;;:::i;57096:106::-;;;;;;;;;;-1:-1:-1;57096:106:0;;;;;:::i;:::-;;:::i;52142:538::-;;;;;;:::i;:::-;;:::i;49491:50::-;;;;;;;;;;;;;;;;35185:211;;;;;;;;;;-1:-1:-1;35185:211:0;;;;;:::i;:::-;;:::i;27464:103::-;;;;;;;;;;;;;:::i;49857:28::-;;;;;;;;;;;;;:::i;56374:104::-;;;;;;;;;;-1:-1:-1;56374:104:0;;;;;:::i;:::-;;:::i;54979:365::-;;;;;;;;;;-1:-1:-1;54979:365:0;;;;;:::i;:::-;;:::i;55352:85::-;;;;;;;;;;;;;:::i;49405:49::-;;;;;;;;;;;;;;;;50000:27;;;;;;;;;;;;;;;;55445:91;;;;;;;;;;;;;:::i;26813:87::-;;;;;;;;;;-1:-1:-1;26859:7:0;26886:6;-1:-1:-1;;;;;26886:6:0;26813:87;;57571:147;;;;;;;;;;-1:-1:-1;57571:147:0;;;;;:::i;:::-;;:::i;:::-;;;;24021:13:1;;-1:-1:-1;;;;;24017:39:1;23999:58;;24117:4;24105:17;;;24099:24;-1:-1:-1;;;;;24095:49:1;24073:20;;;24066:79;;;;23972:18;57571:147:0;23791:360:1;36640:98:0;;;;;;;;;;;;;:::i;54320:328::-;;;;;;:::i;:::-;;:::i;50408:49::-;;;;;;;;;;-1:-1:-1;50408:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;38286:274;;;;;;;;;;-1:-1:-1;38286:274:0;;;;;:::i;:::-;;:::i;49928:29::-;;;;;;;;;;;;;;;;57724:181;;;;;;;;;;;;;:::i;50294:51::-;;;;;;;;;;-1:-1:-1;50294:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;39293:311;;;;;;;;;;-1:-1:-1;39293:311:0;;;;;:::i;:::-;;:::i;49292:44::-;;;;;;;;;;;;;;;;49667:36;;;;;;;;;;;;;;;;36801:402;;;;;;;;;;-1:-1:-1;36801:402:0;;;;;:::i;:::-;;:::i;55544:79::-;;;;;;;;;;;;;:::i;49574:39::-;;;;;;;;;;;;;;;;43708:43;;;;;;;;;;;;;;;;55727:107;;;;;;;;;;-1:-1:-1;55727:107:0;;;;;:::i;:::-;;:::i;50175:53::-;;;;;;;;;;-1:-1:-1;50175:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;55631:88;;;;;;;;;;;;;:::i;53245:529::-;;;;;;:::i;:::-;;:::i;57344:219::-;;;;;;;;;;-1:-1:-1;57344:219:0;;;;;:::i;:::-;;:::i;27722:201::-;;;;;;;;;;-1:-1:-1;27722:201:0;;;;;:::i;:::-;;:::i;49037:35::-;;;;;;;;;;;;;;;49164:56;;;;;;;;;;;;;;;;50070:28;;;;;;;;;;;;;;;;34759:370;34886:4;-1:-1:-1;;;;;;34916:40:0;;-1:-1:-1;;;34916:40:0;;:99;;-1:-1:-1;;;;;;;34967:48:0;;-1:-1:-1;;;34967:48:0;34916:99;:160;;;-1:-1:-1;;;;;;;35026:50:0;;-1:-1:-1;;;35026:50:0;34916:160;:207;;;-1:-1:-1;;;;;;;;;;13535:40:0;;;35087:36;34902:221;34759:370;-1:-1:-1;;34759:370:0:o;36485:94::-;36539:13;36568:5;36561:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36485:94;:::o;38018:204::-;38086:7;38110:16;38118:7;39930:12;;-1:-1:-1;39920:22:0;39843:105;38110:16;38102:74;;;;-1:-1:-1;;;38102:74:0;;23176:2:1;38102:74:0;;;23158:21:1;23215:2;23195:18;;;23188:30;23254:34;23234:18;;;23227:62;-1:-1:-1;;;23305:18:1;;;23298:43;23358:19;;38102:74:0;;;;;;;;;-1:-1:-1;38192:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38192:24:0;;38018:204::o;37581:379::-;37650:13;37666:24;37682:7;37666:15;:24::i;:::-;37650:40;;37711:5;-1:-1:-1;;;;;37705:11:0;:2;-1:-1:-1;;;;;37705:11:0;;;37697:58;;;;-1:-1:-1;;;37697:58:0;;18530:2:1;37697:58:0;;;18512:21:1;18569:2;18549:18;;;18542:30;18608:34;18588:18;;;18581:62;-1:-1:-1;;;18659:18:1;;;18652:32;18701:19;;37697:58:0;18328:398:1;37697:58:0;25617:10;-1:-1:-1;;;;;37780:21:0;;;;:62;;-1:-1:-1;37805:37:0;37822:5;25617:10;57344:219;:::i;37805:37::-;37764:153;;;;-1:-1:-1;;;37764:153:0;;13744:2:1;37764:153:0;;;13726:21:1;13783:2;13763:18;;;13756:30;13822:34;13802:18;;;13795:62;13893:27;13873:18;;;13866:55;13938:19;;37764:153:0;13542:421:1;37764:153:0;37926:28;37935:2;37939:7;37948:5;37926:8;:28::i;:::-;37643:317;37581:379;;:::o;57210:126::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;57297:31;;::::1;::::0;:14:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57210:126:::0;:::o;56486:108::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;56558:13:::1;:28:::0;56486:108::o;56602:182::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;56712:30:::1;:64:::0;56602:182::o;56254:112::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;56328:14:::1;:30:::0;56254:112::o;38868:142::-;38976:28;38986:4;38992:2;38996:7;38976:9;:28::i;55842:118::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;30093:1:::1;30691:7;;:19;;30683:63;;;;-1:-1:-1::0;;;30683:63:0::1;;;;;;;:::i;:::-;30093:1;30824:7;:18:::0;55926:28:::2;55945:8:::0;55926:18:::2;:28::i;:::-;-1:-1:-1::0;30049:1:0::1;31003:7;:22:::0;55842:118::o;33951:744::-;34060:7;34095:16;34105:5;34095:9;:16::i;:::-;34087:5;:24;34079:71;;;;-1:-1:-1;;;34079:71:0;;9044:2:1;34079:71:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:32;9215:19;;34079:71:0;8842:398:1;34079:71:0;34157:22;34182:13;33396:12;;;33320:94;34182:13;34157:38;;34202:19;34232:25;34282:9;34277:350;34301:14;34297:1;:18;34277:350;;;34331:31;34365:14;;;:11;:14;;;;;;;;;34331:48;;;;;;;;;-1:-1:-1;;;;;34331:48:0;;;;;-1:-1:-1;;;34331:48:0;;;-1:-1:-1;;;;;34331:48:0;;;;;;;;34392:28;34388:89;;34453:14;;;-1:-1:-1;34388:89:0;34510:5;-1:-1:-1;;;;;34489:26:0;:17;-1:-1:-1;;;;;34489:26:0;;34485:135;;;34547:5;34532:11;:20;34528:59;;;-1:-1:-1;34574:1:0;-1:-1:-1;34567:8:0;;-1:-1:-1;;;34567:8:0;34528:59;34597:13;;;;:::i;:::-;;;;34485:135;-1:-1:-1;34317:3:0;;;;:::i;:::-;;;;34277:350;;;-1:-1:-1;34633:56:0;;-1:-1:-1;;;34633:56:0;;20801:2:1;34633:56:0;;;20783:21:1;20840:2;20820:18;;;20813:30;20879:34;20859:18;;;20852:62;-1:-1:-1;;;20930:18:1;;;20923:44;20984:19;;34633:56:0;20599:410:1;56792:162:0;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;56892:25:::1;:54:::0;56792:162::o;39073:157::-;39185:39;39202:4;39208:2;39212:7;39185:39;;;;;;;;;;;;:16;:39::i;56962:126::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;57044:16:::1;:36:::0;56962:126::o;33483:177::-;33550:7;33582:13;33396:12;;;33320:94;33582:13;33574:5;:21;33566:69;;;;-1:-1:-1;;;33566:69:0;;11390:2:1;33566:69:0;;;11372:21:1;11429:2;11409:18;;;11402:30;11468:34;11448:18;;;11441:62;-1:-1:-1;;;11519:18:1;;;11512:33;11562:19;;33566:69:0;11188:399:1;33566:69:0;-1:-1:-1;33649:5:0;33483:177::o;56145:100::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;56216:23:::1;:13;56232:7:::0;;56216:23:::1;:::i;50984:555::-:0;50858:9;50871:10;50858:23;50850:66;;;;-1:-1:-1;;;50850:66:0;;;;;;;:::i;:::-;30093:1:::1;30691:7;;:19;;30683:63;;;;-1:-1:-1::0;;;30683:63:0::1;;;;;;;:::i;:::-;30093:1;30824:7;:18:::0;51132:11:::2;::::0;;;::::2;;;51124:49;;;::::0;-1:-1:-1;;;51124:49:0;;9447:2:1;51124:49:0::2;::::0;::::2;9429:21:1::0;9486:2;9466:18;;;9459:30;9525:27;9505:18;;;9498:55;9570:18;;51124:49:0::2;9245:349:1::0;51124:49:0::2;51220:10;51208:8;51192:13;33396:12:::0;;;33320:94;51192:13:::2;:24;;;;:::i;:::-;:38;;51184:88;;;;-1:-1:-1::0;;;51184:88:0::2;;;;;;;:::i;:::-;51308:28;::::0;-1:-1:-1;;;;;;51325:10:0::2;6606:2:1::0;6602:15;6598:53;51308:28:0::2;::::0;::::2;6586:66:1::0;51283:12:0::2;::::0;6668::1;;51308:28:0::2;;;;;;;;;;;;51298:39;;;;;;51283:54;;51356:64;51375:22;;51356:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;51399:14:0::2;::::0;;-1:-1:-1;51415:4:0;;-1:-1:-1;51356:18:0::2;:64::i;:::-;51348:91;;;;-1:-1:-1::0;;;51348:91:0::2;;;;;;;:::i;:::-;51450:39;51480:8;51450:29;:39::i;:::-;51500:31;51510:10;51522:8;51500:9;:31::i;:::-;-1:-1:-1::0;;30049:1:0::1;31003:7;:22:::0;-1:-1:-1;;50984:555:0:o;36308:118::-;36372:7;36395:20;36407:7;36395:11;:20::i;:::-;:25;;36308:118;-1:-1:-1;;36308:118:0:o;57096:106::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;57168:11:::1;:26:::0;57096:106::o;52142:538::-;50858:9;50871:10;50858:23;50850:66;;;;-1:-1:-1;;;50850:66:0;;;;;;;:::i;:::-;30093:1:::1;30691:7;;:19;;30683:63;;;;-1:-1:-1::0;;;30683:63:0::1;;;;;;;:::i;:::-;30093:1;30824:7;:18:::0;52286:9:::2;::::0;::::2;::::0;::::2;;;52278:42;;;::::0;-1:-1:-1;;;52278:42:0;;12618:2:1;52278:42:0::2;::::0;::::2;12600:21:1::0;12657:2;12637:18;;;12630:30;-1:-1:-1;;;12676:18:1;;;12669:50;12736:18;;52278:42:0::2;12416:344:1::0;52278:42:0::2;52367:10;52355:8;52339:13;33396:12:::0;;;33320:94;52339:13:::2;:24;;;;:::i;:::-;:38;;52331:88;;;;-1:-1:-1::0;;;52331:88:0::2;;;;;;;:::i;:::-;52455:28;::::0;-1:-1:-1;;;;;;52472:10:0::2;6606:2:1::0;6602:15;6598:53;52455:28:0::2;::::0;::::2;6586:66:1::0;52430:12:0::2;::::0;6668::1;;52455:28:0::2;;;;;;;;;;;;52445:39;;;;;;52430:54;;52503:60;52522:20;;52503:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;52544:12:0::2;::::0;;-1:-1:-1;52558:4:0;;-1:-1:-1;52503:18:0::2;:60::i;:::-;52495:87;;;;-1:-1:-1::0;;;52495:87:0::2;;;;;;;:::i;:::-;52593:37;52621:8;52593:27;:37::i;35185:211::-:0;35249:7;-1:-1:-1;;;;;35273:19:0;;35265:75;;;;-1:-1:-1;;;35265:75:0;;14933:2:1;35265:75:0;;;14915:21:1;14972:2;14952:18;;;14945:30;15011:34;14991:18;;;14984:62;-1:-1:-1;;;15062:18:1;;;15055:41;15113:19;;35265:75:0;14731:407:1;35265:75:0;-1:-1:-1;;;;;;35362:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35362:27:0;;35185:211::o;27464:103::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;27529:30:::1;27556:1;27529:18;:30::i;:::-;27464:103::o:0;49857:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56374:104::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;56444:12:::1;:26:::0;56374:104::o;54979:365::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;55078:25:::1;;55066:8;:37;;55058:85;;;::::0;-1:-1:-1;;;55058:85:0;;15752:2:1;55058:85:0::1;::::0;::::1;15734:21:1::0;15791:2;15771:18;;;15764:30;15830:34;15810:18;;;15803:62;-1:-1:-1;;;15881:18:1;;;15874:32;15923:19;;55058:85:0::1;15550:398:1::0;55058:85:0::1;55183:8;55154:25;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;55238:10:0::1;::::0;-1:-1:-1;55226:8:0;55210:13:::1;33396:12:::0;;;33320:94;55210:13:::1;:24;;;;:::i;:::-;:38;;55202:92;;;;-1:-1:-1::0;;;55202:92:0::1;;;;;;;:::i;:::-;55305:31;55315:10;55327:8;55305:9;:31::i;:::-;54979:365:::0;:::o;55352:85::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;55420:9:::1;::::0;;-1:-1:-1;;55407:22:0;::::1;55420:9;::::0;;;::::1;;;55419:10;55407:22:::0;;::::1;;::::0;;55352:85::o;55445:91::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;55517:11:::1;::::0;;-1:-1:-1;;55502:26:0;::::1;55517:11:::0;;;;::::1;;;55516:12;55502:26:::0;;::::1;;::::0;;55445:91::o;57571:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;57692:20:0;57704:7;57692:11;:20::i;36640:98::-;36696:13;36725:7;36718:14;;;;;:::i;54320:328::-;50858:9;50871:10;50858:23;50850:66;;;;-1:-1:-1;;;50850:66:0;;;;;;;:::i;:::-;30093:1:::1;30691:7;;:19;;30683:63;;;;-1:-1:-1::0;;;30683:63:0::1;;;;;;;:::i;:::-;30093:1;30824:7;:18:::0;54414:10:::2;::::0;;;::::2;;;54406:46;;;::::0;-1:-1:-1;;;54406:46:0;;9801:2:1;54406:46:0::2;::::0;::::2;9783:21:1::0;9840:2;9820:18;;;9813:30;9879:25;9859:18;;;9852:53;9922:18;;54406:46:0::2;9599:347:1::0;54406:46:0::2;54499:10;54487:8;54471:13;33396:12:::0;;;33320:94;54471:13:::2;:24;;;;:::i;:::-;:38;;54463:92;;;;-1:-1:-1::0;;;54463:92:0::2;;;;;;;:::i;:::-;54566:32;54589:8;54566:22;:32::i;:::-;54609:31;54619:10;54631:8;54609:9;:31::i;38286:274::-:0;-1:-1:-1;;;;;38377:24:0;;25617:10;38377:24;;38369:63;;;;-1:-1:-1;;;38369:63:0;;17338:2:1;38369:63:0;;;17320:21:1;17377:2;17357:18;;;17350:30;17416:28;17396:18;;;17389:56;17462:18;;38369:63:0;17136:350:1;38369:63:0;25617:10;38441:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38441:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38441:53:0;;;;;;;;;;38506:48;;8384:41:1;;;38441:42:0;;25617:10;38506:48;;8357:18:1;38506:48:0;;;;;;;38286:274;;:::o;57724:181::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;30093:1:::1;30691:7;;:19;;30683:63;;;;-1:-1:-1::0;;;30683:63:0::1;;;;;;;:::i;:::-;30093:1;30824:7;:18:::0;57807:49:::2;::::0;57789:12:::2;::::0;57807:10:::2;::::0;57830:21:::2;::::0;57789:12;57807:49;57789:12;57807:49;57830:21;57807:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57788:68;;;57871:7;57863:36;;;::::0;-1:-1:-1;;;57863:36:0;;18933:2:1;57863:36:0::2;::::0;::::2;18915:21:1::0;18972:2;18952:18;;;18945:30;-1:-1:-1;;;18991:18:1;;;18984:46;19047:18;;57863:36:0::2;18731:340:1::0;39293:311:0;39430:28;39440:4;39446:2;39450:7;39430:9;:28::i;:::-;39481:48;39504:4;39510:2;39514:7;39523:5;39481:22;:48::i;:::-;39465:133;;;;-1:-1:-1;;;39465:133:0;;;;;;;:::i;:::-;39293:311;;;;:::o;36801:402::-;36899:13;36940:16;36948:7;39930:12;;-1:-1:-1;39920:22:0;39843:105;36940:16;36924:97;;;;-1:-1:-1;;;36924:97:0;;16922:2:1;36924:97:0;;;16904:21:1;16961:2;16941:18;;;16934:30;17000:34;16980:18;;;16973:62;-1:-1:-1;;;17051:18:1;;;17044:45;17106:19;;36924:97:0;16720:411:1;36924:97:0;37030:21;37054:10;:8;:10::i;:::-;37030:34;;37109:1;37091:7;37085:21;:25;:112;;;;;;;;;;;;;;;;;37146:7;37155:18;:7;:16;:18::i;:::-;37129:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37085:112;37071:126;36801:402;-1:-1:-1;;;36801:402:0:o;55544:79::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;55608:7:::1;::::0;;-1:-1:-1;;55597:18:0;::::1;55608:7;::::0;;::::1;55607:8;55597:18;::::0;;55544:79::o;55727:107::-;55785:7;55808:20;55822:5;55808:13;:20::i;55631:88::-;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;55701:10:::1;::::0;;-1:-1:-1;;55687:24:0;::::1;55701:10:::0;;;;::::1;;;55700:11;55687:24:::0;;::::1;;::::0;;55631:88::o;53245:529::-;50858:9;50871:10;50858:23;50850:66;;;;-1:-1:-1;;;50850:66:0;;;;;;;:::i;:::-;30093:1:::1;30691:7;;:19;;30683:63;;;;-1:-1:-1::0;;;30683:63:0::1;;;;;;;:::i;:::-;30093:1;30824:7;:18:::0;53385:7:::2;::::0;::::2;;53377:40;;;::::0;-1:-1:-1;;;53377:40:0;;12618:2:1;53377:40:0::2;::::0;::::2;12600:21:1::0;12657:2;12637:18;;;12630:30;-1:-1:-1;;;12676:18:1;;;12669:50;12736:18;;53377:40:0::2;12416:344:1::0;53377:40:0::2;53464:10;53452:8;53436:13;33396:12:::0;;;33320:94;53436:13:::2;:24;;;;:::i;:::-;:38;;53428:88;;;;-1:-1:-1::0;;;53428:88:0::2;;;;;;;:::i;:::-;53552:28;::::0;-1:-1:-1;;;;;;53569:10:0::2;6606:2:1::0;6602:15;6598:53;53552:28:0::2;::::0;::::2;6586:66:1::0;53527:12:0::2;::::0;6668::1;;53552:28:0::2;;;;;;;;;;;;53542:39;;;;;;53527:54;;53600:59;53619:18;;53600:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;53639:13:0::2;::::0;;-1:-1:-1;53654:4:0;;-1:-1:-1;53600:18:0::2;:59::i;:::-;53592:86;;;;-1:-1:-1::0;;;53592:86:0::2;;;;;;;:::i;:::-;53689:35;53715:8;53689:25;:35::i;57344:219::-:0;57433:4;57457:55;57496:5;57503:8;57457:38;:55::i;:::-;:98;;;-1:-1:-1;;;;;;38768:25:0;;;38745:4;38768:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57516:39;38623:186;27722:201;26859:7;26886:6;-1:-1:-1;;;;;26886:6:0;25617:10;27033:23;27025:68;;;;-1:-1:-1;;;27025:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27811:22:0;::::1;27803:73;;;::::0;-1:-1:-1;;;27803:73:0;;10572:2:1;27803:73:0::1;::::0;::::1;10554:21:1::0;10611:2;10591:18;;;10584:30;10650:34;10630:18;;;10623:62;-1:-1:-1;;;10701:18:1;;;10694:36;10747:19;;27803:73:0::1;10370:402:1::0;27803:73:0::1;27887:28;27906:8;27887:18;:28::i;43530:172::-:0;43627:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43627:29:0;-1:-1:-1;;;;;43627:29:0;;;;;;;;;43668:28;;43627:24;;43668:28;;;;;;;43530:172;;;:::o;41895:1529::-;41992:35;42030:20;42042:7;42030:11;:20::i;:::-;42101:18;;41992:58;;-1:-1:-1;42059:22:0;;-1:-1:-1;;;;;42085:34:0;25617:10;-1:-1:-1;;;;;42085:34:0;;:81;;;-1:-1:-1;25617:10:0;42130:20;42142:7;42130:11;:20::i;:::-;-1:-1:-1;;;;;42130:36:0;;42085:81;:142;;;-1:-1:-1;42194:18:0;;42177:50;;25617:10;57344:219;:::i;42177:50::-;42059:169;;42253:17;42237:101;;;;-1:-1:-1;;;42237:101:0;;17693:2:1;42237:101:0;;;17675:21:1;17732:2;17712:18;;;17705:30;17771:34;17751:18;;;17744:62;-1:-1:-1;;;17822:18:1;;;17815:48;17880:19;;42237:101:0;17491:414:1;42237:101:0;42385:4;-1:-1:-1;;;;;42363:26:0;:13;:18;;;-1:-1:-1;;;;;42363:26:0;;42347:98;;;;-1:-1:-1;;;42347:98:0;;15345:2:1;42347:98:0;;;15327:21:1;15384:2;15364:18;;;15357:30;15423:34;15403:18;;;15396:62;-1:-1:-1;;;15474:18:1;;;15467:36;15520:19;;42347:98:0;15143:402:1;42347:98:0;-1:-1:-1;;;;;42460:16:0;;42452:66;;;;-1:-1:-1;;;42452:66:0;;11794:2:1;42452:66:0;;;11776:21:1;11833:2;11813:18;;;11806:30;11872:34;11852:18;;;11845:62;-1:-1:-1;;;11923:18:1;;;11916:35;11968:19;;42452:66:0;11592:401:1;42452:66:0;42627:49;42644:1;42648:7;42657:13;:18;;;42627:8;:49::i;:::-;-1:-1:-1;;;;;42685:18:0;;;;;;:12;:18;;;;;:31;;42715:1;;42685:18;:31;;42715:1;;-1:-1:-1;;;;;42685:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42685:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42723:16:0;;-1:-1:-1;42723:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42723:16:0;;:29;;-1:-1:-1;;42723:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42723:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42782:43:0;;;;;;;;-1:-1:-1;;;;;42782:43:0;;;;;-1:-1:-1;;;;;42808:15:0;42782:43;;;;;;;;;-1:-1:-1;42759:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42759:66:0;-1:-1:-1;;;;;;42759:66:0;;;;;;;;;;;43075:11;42771:7;-1:-1:-1;43075:11:0;:::i;:::-;43138:1;43097:24;;;:11;:24;;;;;:29;43053:33;;-1:-1:-1;;;;;;43097:29:0;43093:236;;43155:20;43163:11;39930:12;;-1:-1:-1;39920:22:0;39843:105;43155:20;43151:171;;;43215:97;;;;;;;;43242:18;;-1:-1:-1;;;;;43215:97:0;;;;;;43273:28;;;;-1:-1:-1;;;;;43215:97:0;;;;;;;;;-1:-1:-1;43188:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;43188:124:0;-1:-1:-1;;;;;;43188:124:0;;;;;;;;;;;;43151:171;43361:7;43357:2;-1:-1:-1;;;;;43342:27:0;43351:4;-1:-1:-1;;;;;43342:27:0;;;;;;;;;;;43376:42;41985:1439;;;41895:1529;;;:::o;43856:846::-;43946:24;;43985:12;43977:49;;;;-1:-1:-1;;;43977:49:0;;14170:2:1;43977:49:0;;;14152:21:1;14209:2;14189:18;;;14182:30;14248:26;14228:18;;;14221:54;14292:18;;43977:49:0;13968:348:1;43977:49:0;44033:16;44083:1;44052:28;44072:8;44052:17;:28;:::i;:::-;:32;;;;:::i;:::-;44033:51;-1:-1:-1;44106:18:0;44123:1;44106:14;:18;:::i;:::-;44095:8;:29;44091:81;;;44146:18;44163:1;44146:14;:18;:::i;:::-;44135:29;;44091:81;44287:17;44295:8;39930:12;;-1:-1:-1;39920:22:0;39843:105;44287:17;44279:68;;;;-1:-1:-1;;;44279:68:0;;21216:2:1;44279:68:0;;;21198:21:1;21255:2;21235:18;;;21228:30;21294:34;21274:18;;;21267:62;-1:-1:-1;;;21345:18:1;;;21338:36;21391:19;;44279:68:0;21014:402:1;44279:68:0;44371:17;44354:297;44395:8;44390:1;:13;44354:297;;44454:1;44423:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;44423:19:0;44419:225;;44469:31;44503:14;44515:1;44503:11;:14::i;:::-;44545:89;;;;;;;;44572:14;;-1:-1:-1;;;;;44545:89:0;;;;;;44599:24;;;;-1:-1:-1;;;;;44545:89:0;;;;;;;;;-1:-1:-1;44528:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;44528:106:0;-1:-1:-1;;;;;;44528:106:0;;;;;;;;;;;;-1:-1:-1;44419:225:0;44405:3;;;;:::i;:::-;;;;44354:297;;;-1:-1:-1;44684:12:0;:8;44695:1;44684:12;:::i;:::-;44657:24;:39;-1:-1:-1;;;43856:846:0:o;23392:190::-;23517:4;23570;23541:25;23554:5;23561:4;23541:12;:25::i;:::-;:33;;23392:190;-1:-1:-1;;;;23392:190:0:o;51547:546::-;51643:1;51632:8;:12;:64;;;;;51660:36;;51648:8;:48;;51632:64;51624:130;;;;-1:-1:-1;;;51624:130:0;;;;;;;:::i;:::-;51811:8;51786:22;;:33;;;;:::i;:::-;51773:9;:46;51765:85;;;;-1:-1:-1;;;51765:85:0;;;;;;;:::i;:::-;51917:10;51896:32;;;;:20;:32;;;;;;:43;;51931:8;;51896:43;:::i;:::-;51882:10;51861:32;;;;:20;:32;;;;;:78;;;51994:36;;-1:-1:-1;51958:72:0;51950:135;;;;-1:-1:-1;;;51950:135:0;;10153:2:1;51950:135:0;;;10135:21:1;10192:2;10172:18;;;10165:30;10231:34;10211:18;;;10204:62;-1:-1:-1;;;10282:18:1;;;10275:48;10340:19;;51950:135:0;9951:414:1;39954:98:0;40019:27;40029:2;40033:8;40019:27;;;;;;;;;;;;:9;:27::i;35648:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;35765:16:0;35773:7;39930:12;;-1:-1:-1;39920:22:0;39843:105;35765:16;35757:71;;;;-1:-1:-1;;;35757:71:0;;10979:2:1;35757:71:0;;;10961:21:1;11018:2;10998:18;;;10991:30;11057:34;11037:18;;;11030:62;-1:-1:-1;;;11108:18:1;;;11101:40;11158:19;;35757:71:0;10777:406:1;35757:71:0;35837:26;35885:12;35874:7;:23;35870:93;;35929:22;35939:12;35929:7;:22;:::i;:::-;:26;;35954:1;35929:26;:::i;:::-;35908:47;;35870:93;35991:7;35971:212;36008:18;36000:4;:26;35971:212;;36045:31;36079:17;;;:11;:17;;;;;;;;;36045:51;;;;;;;;;-1:-1:-1;;;;;36045:51:0;;;;;-1:-1:-1;;;36045:51:0;;;-1:-1:-1;;;;;36045:51:0;;;;;;;;36109:28;36105:71;;36157:9;35648:606;-1:-1:-1;;;;35648:606:0:o;36105:71::-;-1:-1:-1;36028:6:0;;;;:::i;:::-;;;;35971:212;;;-1:-1:-1;36191:57:0;;-1:-1:-1;;;36191:57:0;;22338:2:1;36191:57:0;;;22320:21:1;22377:2;22357:18;;;22350:30;22416:34;22396:18;;;22389:62;-1:-1:-1;;;22467:18:1;;;22460:45;22522:19;;36191:57:0;22136:411:1;52688:515:0;52782:1;52771:8;:12;:53;;;;;52799:25;;52787:8;:37;;52771:53;52763:119;;;;-1:-1:-1;;;52763:119:0;;;;;;;:::i;:::-;52939:8;52914:22;;:33;;;;:::i;:::-;52901:9;:46;52893:85;;;;-1:-1:-1;;;52893:85:0;;;;;;;:::i;:::-;53041:10;53022:30;;;;:18;:30;;;;;;:41;;53055:8;;53022:41;:::i;:::-;53008:10;52989:30;;;;:18;:30;;;;;:74;;;53116:25;;-1:-1:-1;53082:59:0;53074:121;;;;-1:-1:-1;;;53074:121:0;;13326:2:1;53074:121:0;;;13308:21:1;13365:2;13345:18;;;13338:30;13404:34;13384:18;;;13377:62;-1:-1:-1;;;13455:18:1;;;13448:47;13512:19;;53074:121:0;13124:413:1;28083:191:0;28157:16;28176:6;;-1:-1:-1;;;;;28193:17:0;;;-1:-1:-1;;;;;;28193:17:0;;;;;;28226:40;;28176:6;;;;;;;28226:40;;28157:16;28226:40;28146:128;28083:191;:::o;54656:275::-;54745:1;54734:8;:12;:44;;;;;54762:16;;54750:8;:28;;54734:44;54726:110;;;;-1:-1:-1;;;54726:110:0;;;;;;;:::i;:::-;54882:8;54868:11;;:22;;;;:::i;:::-;54855:9;:35;54847:74;;;;-1:-1:-1;;;54847:74:0;;;;;;;:::i;45245:690::-;45382:4;-1:-1:-1;;;;;45399:13:0;;3638:19;:23;45395:535;;45438:72;;-1:-1:-1;;;45438:72:0;;-1:-1:-1;;;;;45438:36:0;;;;;:72;;25617:10;;45489:4;;45495:7;;45504:5;;45438:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45438:72:0;;;;;;;;-1:-1:-1;;45438:72:0;;;;;;;;;;;;:::i;:::-;;;45425:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45669:13:0;;45665:215;;45702:61;;-1:-1:-1;;;45702:61:0;;;;;;;:::i;45665:215::-;45848:6;45842:13;45833:6;45829:2;45825:15;45818:38;45425:464;-1:-1:-1;;;;;;45560:55:0;-1:-1:-1;;;45560:55:0;;-1:-1:-1;45553:62:0;;45395:535;-1:-1:-1;45918:4:0;45395:535;45245:690;;;;;;:::o;56029:108::-;56089:13;56118;56111:20;;;;;:::i;20710:723::-;20766:13;20987:10;20983:53;;-1:-1:-1;;21014:10:0;;;;;;;;;;;;-1:-1:-1;;;21014:10:0;;;;;20710:723::o;20983:53::-;21061:5;21046:12;21102:78;21109:9;;21102:78;;21135:8;;;;:::i;:::-;;-1:-1:-1;21158:10:0;;-1:-1:-1;21166:2:0;21158:10;;:::i;:::-;;;21102:78;;;21190:19;21222:6;-1:-1:-1;;;;;21212:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21212:17:0;;21190:39;;21240:154;21247:10;;21240:154;;21274:11;21284:1;21274:11;;:::i;:::-;;-1:-1:-1;21343:10:0;21351:2;21343:5;:10;:::i;:::-;21330:24;;:2;:24;:::i;:::-;21317:39;;21300:6;21307;21300:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21300:56:0;;;;;;;;-1:-1:-1;21371:11:0;21380:2;21371:11;;:::i;:::-;;;21240:154;;35402:240;35463:7;-1:-1:-1;;;;;35495:19:0;;35479:102;;;;-1:-1:-1;;;35479:102:0;;12200:2:1;35479:102:0;;;12182:21:1;12239:2;12219:18;;;12212:30;12278:34;12258:18;;;12251:62;-1:-1:-1;;;12329:18:1;;;12322:47;12386:19;;35479:102:0;11998:413:1;35479:102:0;-1:-1:-1;;;;;;35603:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;35603:32:0;;-1:-1:-1;;;;;35603:32:0;;35402:240::o;53782:506::-;53874:1;53863:8;:12;:58;;;;;53891:30;;53879:8;:42;;53863:58;53855:124;;;;-1:-1:-1;;;53855:124:0;;;;;;;:::i;:::-;54025:8;54011:11;;:22;;;;:::i;:::-;53998:9;:35;53990:74;;;;-1:-1:-1;;;53990:74:0;;;;;;;:::i;:::-;54123:10;54106:28;;;;:16;:28;;;;;;:39;;54137:8;;54106:39;:::i;:::-;54092:10;54075:28;;;;:16;:28;;;;;:70;;;54196:30;;-1:-1:-1;54164:62:0;54156:124;;;;-1:-1:-1;;;54156:124:0;;18112:2:1;54156:124:0;;;18094:21:1;18151:2;18131:18;;;18124:30;18190:34;18170:18;;;18163:62;-1:-1:-1;;;18241:18:1;;;18234:47;18298:19;;54156:124:0;17910:413:1;47772:565:0;47854:4;47871:22;47935:9;47963:1;47958:123;;;;48100:1;48095:123;;;;47928:290;;47958:123;48024:42;48012:54;;47958:123;;48095;48161:42;48149:54;;47928:290;-1:-1:-1;;;;;;48248:31:0;;;;;;:81;;-1:-1:-1;48292:23:0;;-1:-1:-1;;;48292:23:0;;-1:-1:-1;;;;;7707:32:1;;;48292:23:0;;;7689:51:1;48284:44:0;;;;48292:16;;;;;;7662:18:1;;48292:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48284:44:0;;48241:88;47772:565;-1:-1:-1;;;;47772:565:0:o;23944:675::-;24027:7;24070:4;24027:7;24085:497;24109:5;:12;24105:1;:16;24085:497;;;24143:20;24166:5;24172:1;24166:8;;;;;;;;:::i;:::-;;;;;;;24143:31;;24209:12;24193;:28;24189:382;;24695:13;24745:15;;;24781:4;24774:15;;;24828:4;24812:21;;24321:57;;24189:382;;;24695:13;24745:15;;;24781:4;24774:15;;;24828:4;24812:21;;24498:57;;24189:382;-1:-1:-1;24123:3:0;;;;:::i;:::-;;;;24085:497;;;-1:-1:-1;24599:12:0;23944:675;-1:-1:-1;;;23944:675:0:o;40391:1272::-;40519:12;;-1:-1:-1;;;;;40546:16:0;;40538:62;;;;-1:-1:-1;;;40538:62:0;;20056:2:1;40538:62:0;;;20038:21:1;20095:2;20075:18;;;20068:30;20134:34;20114:18;;;20107:62;-1:-1:-1;;;20185:18:1;;;20178:31;20226:19;;40538:62:0;19854:397:1;40538:62:0;40737:21;40745:12;39930;;-1:-1:-1;39920:22:0;39843:105;40737:21;40736:22;40728:64;;;;-1:-1:-1;;;40728:64:0;;19698:2:1;40728:64:0;;;19680:21:1;19737:2;19717:18;;;19710:30;19776:31;19756:18;;;19749:59;19825:18;;40728:64:0;19496:353:1;40728:64:0;40819:12;40807:8;:24;;40799:71;;;;-1:-1:-1;;;40799:71:0;;23590:2:1;40799:71:0;;;23572:21:1;23629:2;23609:18;;;23602:30;23668:34;23648:18;;;23641:62;-1:-1:-1;;;23719:18:1;;;23712:32;23761:19;;40799:71:0;23388:398:1;40799:71:0;-1:-1:-1;;;;;40982:16:0;;40949:30;40982:16;;;:12;:16;;;;;;;;;40949:49;;;;;;;;;-1:-1:-1;;;;;40949:49:0;;;;;-1:-1:-1;;;40949:49:0;;;;;;;;;;;41024:119;;;;;;;;41044:19;;40949:49;;41024:119;;;41044:39;;41074:8;;41044:39;:::i;:::-;-1:-1:-1;;;;;41024:119:0;;;;;41127:8;41092:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;41024:119:0;;;;;;-1:-1:-1;;;;;41005:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;41005:138:0;;;;;;;;;;;;41178:43;;;;;;;;;;-1:-1:-1;;;;;41204:15:0;41178:43;;;;;;;;41150:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41150:71:0;-1:-1:-1;;;;;;41150:71:0;;;;;;;;;;;;;;;;;;41162:12;;41274:281;41298:8;41294:1;:12;41274:281;;;41327:38;;41352:12;;-1:-1:-1;;;;;41327:38:0;;;41344:1;;41327:38;;41344:1;;41327:38;41392:59;41423:1;41427:2;41431:12;41445:5;41392:22;:59::i;:::-;41374:150;;;;-1:-1:-1;;;41374:150:0;;;;;;;:::i;:::-;41533:14;;;;:::i;:::-;;;;41308:3;;;;;:::i;:::-;;;;41274:281;;;-1:-1:-1;41563:12:0;:27;;;41597:60;39293:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:388::-;970:6;978;1031:2;1019:9;1010:7;1006:23;1002:32;999:52;;;1047:1;1044;1037:12;999:52;1086:9;1073:23;1105:31;1130:5;1105:31;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:33;1184:32;1225:33;:::i;:::-;1277:7;1267:17;;;902:388;;;;;:::o;1295:456::-;1372:6;1380;1388;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1496:9;1483:23;1515:31;1540:5;1515:31;:::i;:::-;1565:5;-1:-1:-1;1622:2:1;1607:18;;1594:32;1635:33;1594:32;1635:33;:::i;:::-;1295:456;;1687:7;;-1:-1:-1;;;1741:2:1;1726:18;;;;1713:32;;1295:456::o;1756:794::-;1851:6;1859;1867;1875;1928:3;1916:9;1907:7;1903:23;1899:33;1896:53;;;1945:1;1942;1935:12;1896:53;1984:9;1971:23;2003:31;2028:5;2003:31;:::i;:::-;2053:5;-1:-1:-1;2110:2:1;2095:18;;2082:32;2123:33;2082:32;2123:33;:::i;:::-;2175:7;-1:-1:-1;2229:2:1;2214:18;;2201:32;;-1:-1:-1;2284:2:1;2269:18;;2256:32;-1:-1:-1;;;;;2300:30:1;;2297:50;;;2343:1;2340;2333:12;2297:50;2366:22;;2419:4;2411:13;;2407:27;-1:-1:-1;2397:55:1;;2448:1;2445;2438:12;2397:55;2471:73;2536:7;2531:2;2518:16;2513:2;2509;2505:11;2471:73;:::i;:::-;2461:83;;;1756:794;;;;;;;:::o;2555:416::-;2620:6;2628;2681:2;2669:9;2660:7;2656:23;2652:32;2649:52;;;2697:1;2694;2687:12;2649:52;2736:9;2723:23;2755:31;2780:5;2755:31;:::i;:::-;2805:5;-1:-1:-1;2862:2:1;2847:18;;2834:32;2904:15;;2897:23;2885:36;;2875:64;;2935:1;2932;2925:12;2976:315;3044:6;3052;3105:2;3093:9;3084:7;3080:23;3076:32;3073:52;;;3121:1;3118;3111:12;3073:52;3160:9;3147:23;3179:31;3204:5;3179:31;:::i;:::-;3229:5;3281:2;3266:18;;;;3253:32;;-1:-1:-1;;;2976:315:1:o;3296:180::-;3355:6;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;-1:-1:-1;3447:23:1;;3296:180;-1:-1:-1;3296:180:1:o;3481:245::-;3539:6;3592:2;3580:9;3571:7;3567:23;3563:32;3560:52;;;3608:1;3605;3598:12;3560:52;3647:9;3634:23;3666:30;3690:5;3666:30;:::i;3731:249::-;3800:6;3853:2;3841:9;3832:7;3828:23;3824:32;3821:52;;;3869:1;3866;3859:12;3821:52;3901:9;3895:16;3920:30;3944:5;3920:30;:::i;3985:280::-;4084:6;4137:2;4125:9;4116:7;4112:23;4108:32;4105:52;;;4153:1;4150;4143:12;4105:52;4185:9;4179:16;4204:31;4229:5;4204:31;:::i;4270:592::-;4341:6;4349;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;-1:-1:-1;;;;;4528:2:1;4520:6;4517:14;4514:34;;;4544:1;4541;4534:12;4514:34;4582:6;4571:9;4567:22;4557:32;;4627:7;4620:4;4616:2;4612:13;4608:27;4598:55;;4649:1;4646;4639:12;4598:55;4689:2;4676:16;4715:2;4707:6;4704:14;4701:34;;;4731:1;4728;4721:12;4701:34;4776:7;4771:2;4762:6;4758:2;4754:15;4750:24;4747:37;4744:57;;;4797:1;4794;4787:12;4744:57;4828:2;4820:11;;;;;4850:6;;-1:-1:-1;4270:592:1;;-1:-1:-1;;;;4270:592:1:o;4867:450::-;4936:6;4989:2;4977:9;4968:7;4964:23;4960:32;4957:52;;;5005:1;5002;4995:12;4957:52;5045:9;5032:23;-1:-1:-1;;;;;5070:6:1;5067:30;5064:50;;;5110:1;5107;5100:12;5064:50;5133:22;;5186:4;5178:13;;5174:27;-1:-1:-1;5164:55:1;;5215:1;5212;5205:12;5164:55;5238:73;5303:7;5298:2;5285:16;5280:2;5276;5272:11;5238:73;:::i;5507:683::-;5602:6;5610;5618;5671:2;5659:9;5650:7;5646:23;5642:32;5639:52;;;5687:1;5684;5677:12;5639:52;5723:9;5710:23;5700:33;;5784:2;5773:9;5769:18;5756:32;-1:-1:-1;;;;;5848:2:1;5840:6;5837:14;5834:34;;;5864:1;5861;5854:12;5834:34;5902:6;5891:9;5887:22;5877:32;;5947:7;5940:4;5936:2;5932:13;5928:27;5918:55;;5969:1;5966;5959:12;5918:55;6009:2;5996:16;6035:2;6027:6;6024:14;6021:34;;;6051:1;6048;6041:12;6021:34;6104:7;6099:2;6089:6;6086:1;6082:14;6078:2;6074:23;6070:32;6067:45;6064:65;;;6125:1;6122;6115:12;6064:65;6156:2;6152;6148:11;6138:21;;6178:6;6168:16;;;;;5507:683;;;;;:::o;6195:257::-;6236:3;6274:5;6268:12;6301:6;6296:3;6289:19;6317:63;6373:6;6366:4;6361:3;6357:14;6350:4;6343:5;6339:16;6317:63;:::i;:::-;6434:2;6413:15;-1:-1:-1;;6409:29:1;6400:39;;;;6441:4;6396:50;;6195:257;-1:-1:-1;;6195:257:1:o;6691:637::-;6971:3;7009:6;7003:13;7025:53;7071:6;7066:3;7059:4;7051:6;7047:17;7025:53;:::i;:::-;7141:13;;7100:16;;;;7163:57;7141:13;7100:16;7197:4;7185:17;;7163:57;:::i;:::-;-1:-1:-1;;;7242:20:1;;7271:22;;;7320:1;7309:13;;6691:637;-1:-1:-1;;;;6691:637:1:o;7751:488::-;-1:-1:-1;;;;;8020:15:1;;;8002:34;;8072:15;;8067:2;8052:18;;8045:43;8119:2;8104:18;;8097:34;;;8167:3;8162:2;8147:18;;8140:31;;;7945:4;;8188:45;;8213:19;;8205:6;8188:45;:::i;:::-;8180:53;7751:488;-1:-1:-1;;;;;;7751:488:1:o;8618:219::-;8767:2;8756:9;8749:21;8730:4;8787:44;8827:2;8816:9;8812:18;8804:6;8787:44;:::i;12765:354::-;12967:2;12949:21;;;13006:2;12986:18;;;12979:30;13045:32;13040:2;13025:18;;13018:60;13110:2;13095:18;;12765:354::o;14321:405::-;14523:2;14505:21;;;14562:2;14542:18;;;14535:30;14601:34;14596:2;14581:18;;14574:62;-1:-1:-1;;;14667:2:1;14652:18;;14645:39;14716:3;14701:19;;14321:405::o;15953:356::-;16155:2;16137:21;;;16174:18;;;16167:30;16233:34;16228:2;16213:18;;16206:62;16300:2;16285:18;;15953:356::o;16314:401::-;16516:2;16498:21;;;16555:2;16535:18;;;16528:30;16594:34;16589:2;16574:18;;16567:62;-1:-1:-1;;;16660:2:1;16645:18;;16638:35;16705:3;16690:19;;16314:401::o;19076:415::-;19278:2;19260:21;;;19317:2;19297:18;;;19290:30;19356:34;19351:2;19336:18;;19329:62;-1:-1:-1;;;19422:2:1;19407:18;;19400:49;19481:3;19466:19;;19076:415::o;20256:338::-;20458:2;20440:21;;;20497:2;20477:18;;;20470:30;-1:-1:-1;;;20531:2:1;20516:18;;20509:44;20585:2;20570:18;;20256:338::o;21421:355::-;21623:2;21605:21;;;21662:2;21642:18;;;21635:30;21701:33;21696:2;21681:18;;21674:61;21767:2;21752:18;;21421:355::o;21781:350::-;21983:2;21965:21;;;22022:2;22002:18;;;21995:30;22061:28;22056:2;22041:18;;22034:56;22122:2;22107:18;;21781:350::o;22552:417::-;22754:2;22736:21;;;22793:2;22773:18;;;22766:30;22832:34;22827:2;22812:18;;22805:62;-1:-1:-1;;;22898:2:1;22883:18;;22876:51;22959:3;22944:19;;22552:417::o;24338:253::-;24378:3;-1:-1:-1;;;;;24467:2:1;24464:1;24460:10;24497:2;24494:1;24490:10;24528:3;24524:2;24520:12;24515:3;24512:21;24509:47;;;24536:18;;:::i;:::-;24572:13;;24338:253;-1:-1:-1;;;;24338:253:1:o;24596:128::-;24636:3;24667:1;24663:6;24660:1;24657:13;24654:39;;;24673:18;;:::i;:::-;-1:-1:-1;24709:9:1;;24596:128::o;24729:120::-;24769:1;24795;24785:35;;24800:18;;:::i;:::-;-1:-1:-1;24834:9:1;;24729:120::o;24854:168::-;24894:7;24960:1;24956;24952:6;24948:14;24945:1;24942:21;24937:1;24930:9;24923:17;24919:45;24916:71;;;24967:18;;:::i;:::-;-1:-1:-1;25007:9:1;;24854:168::o;25027:246::-;25067:4;-1:-1:-1;;;;;25180:10:1;;;;25150;;25202:12;;;25199:38;;;25217:18;;:::i;:::-;25254:13;;25027:246;-1:-1:-1;;;25027:246:1:o;25278:125::-;25318:4;25346:1;25343;25340:8;25337:34;;;25351:18;;:::i;:::-;-1:-1:-1;25388:9:1;;25278:125::o;25408:258::-;25480:1;25490:113;25504:6;25501:1;25498:13;25490:113;;;25580:11;;;25574:18;25561:11;;;25554:39;25526:2;25519:10;25490:113;;;25621:6;25618:1;25615:13;25612:48;;;-1:-1:-1;;25656:1:1;25638:16;;25631:27;25408:258::o;25671:136::-;25710:3;25738:5;25728:39;;25747:18;;:::i;:::-;-1:-1:-1;;;25783:18:1;;25671:136::o;25812:380::-;25891:1;25887:12;;;;25934;;;25955:61;;26009:4;26001:6;25997:17;25987:27;;25955:61;26062:2;26054:6;26051:14;26031:18;26028:38;26025:161;;;26108:10;26103:3;26099:20;26096:1;26089:31;26143:4;26140:1;26133:15;26171:4;26168:1;26161:15;26025:161;;25812:380;;;:::o;26197:135::-;26236:3;-1:-1:-1;;26257:17:1;;26254:43;;;26277:18;;:::i;:::-;-1:-1:-1;26324:1:1;26313:13;;26197:135::o;26337:112::-;26369:1;26395;26385:35;;26400:18;;:::i;:::-;-1:-1:-1;26434:9:1;;26337:112::o;26454:127::-;26515:10;26510:3;26506:20;26503:1;26496:31;26546:4;26543:1;26536:15;26570:4;26567:1;26560:15;26586:127;26647:10;26642:3;26638:20;26635:1;26628:31;26678:4;26675:1;26668:15;26702:4;26699:1;26692:15;26718:127;26779:10;26774:3;26770:20;26767:1;26760:31;26810:4;26807:1;26800:15;26834:4;26831:1;26824:15;26850:127;26911:10;26906:3;26902:20;26899:1;26892:31;26942:4;26939:1;26932:15;26966:4;26963:1;26956:15;26982:131;-1:-1:-1;;;;;27057:31:1;;27047:42;;27037:70;;27103:1;27100;27093:12;27118:131;-1:-1:-1;;;;;;27192:32:1;;27182:43;;27172:71;;27239:1;27236;27229:12

Swarm Source

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