ETH Price: $3,386.91 (-1.47%)
Gas: 2 Gwei

Token

Bored Bad Bunny (BBB)
 

Overview

Max Total Supply

10,631 BBB

Holders

6,961

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 BBB
0x14df5677aa90ec0d64c631621dad80b44f9deaff
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Meet Bored Bad Bunny a collection of 10,631 unique 3D well-designed Bad Bunnies - Floyd Mayweather, DJ Khaled, Jake Paul, David Dobrik, French Montana, Umar Kamani, Chantel Jeffries and many more.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredBadBunny

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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


// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// 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/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/utils/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// 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 v4.4.1 (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 tokenId);

    /**
     * @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/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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())) : "";
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/BoredBadBunny.sol



pragma solidity ^0.8.4;






contract BoredBadBunny is
    ERC721Enumerable,
    Ownable,
    PaymentSplitter
{
    using Strings for uint256;
    using Counters for Counters.Counter;

    uint256 public maxSupply = 11111;
    uint256 public maxSupplyWithFreeMint = 15111;
    uint256 public totalNFT;

    string public baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    bool public isBurnEnabled = false;
    bool public revealed = false;

    bool public paused = false;
    bool public freeMintState = false;
    bool public presaleState = false;
    bool public publicState = false;

    mapping(address => uint256) public _nftMinted;
    mapping(address => uint256) public _freeMintClaimed;

    uint256 _price = 400000000000000000; //0.4 ETH

    bytes32 public freeMintRoot;

    Counters.Counter private _tokenIds;

    uint256[] private _teamShares = [26, 4, 15, 15, 15, 15, 10];
    address[] private _team = [
        0x27688581c2030B882170b981A1e5878646726BBe,
        0xb46A079528A40bD900f730295c7D95e9f49f9b04,
        0x16A7A69cDE1a06375Dc10cE32b61edF5Ec45e965,
        0x750256AbdA0577040E37b1E10C7F24CcaAD1fbde,
        0xeE6752Ec7a4017229D7757154563062849a1DFE1,
        0xf2647e7B6ca208AD764e7Ce8A46Df64D4149cEb7,
        0x24C4D2DE1F1A3973e1701c94662Fc9521477c376
    ];

    constructor()
        ERC721("Bored Bad Bunny", "BBB")
        PaymentSplitter(_team, _teamShares)
    {}

    function changePauseState() public onlyOwner {
        paused = !paused;
    }

    function changeFreeMintState() public onlyOwner {
        freeMintState = !freeMintState;
    }

    function changePresaleState() public onlyOwner {
        presaleState = !presaleState;
    }

    function changePublicState() public onlyOwner {
        publicState = !publicState;
    }

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

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

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
    }


    function giftMint(address[] calldata _addresses) external onlyOwner {
        require(
            totalNFT + _addresses.length <= maxSupply,
            "Bored Bad Bunny: max total supply exceeded"
        );

        uint256 _newItemId;
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Bored Bad Bunny: recepient is the null address"
            );
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(_addresses[ind], _newItemId);
            totalNFT = totalNFT + 1;
        }
    }

    function freeMint(uint256 _amount, bytes32[] memory proof) external payable {
        require(freeMintState, "Bored Bad Bunny: FreeMint is OFF");
        require(!paused, "Bored Bad Bunny: contract is paused");
        require(
            _amount <= 1,
            "Bored Bad Bunny: You can't mint so much tokens"
        );
        require(
            _freeMintClaimed[msg.sender] + _amount <= 1,
            "Bored Bad Bunny: You can't mint so much tokens"
        );

        require(verifyFreeMint(msg.sender, proof), "Bored Bad Bunny: You are not selected for the free mint");

        require(
            totalNFT + _amount <= maxSupplyWithFreeMint,
            "Bored Bad Bunny: max supply exceeded"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _freeMintClaimed[msg.sender] = _freeMintClaimed[msg.sender] + 1;
            totalNFT = totalNFT + 1;
            
        }
    }

    function presaleMint(uint256 _amount) external payable {
        require(presaleState, "Bored Bad Bunny: Presale is OFF");
        require(!paused, "Bored Bad Bunny: contract is paused");

        require(
            _amount <= 4,
            "Bored Bad Bunny: You can't mint so much tokens"
        );

        require( _nftMinted[msg.sender] + _amount <= 4, "Bored Bad Bunny: You can't mint so much tokens");

        require(
            totalNFT + _amount <= maxSupply,
            "Bored Bad Bunny: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Bored Bad Bunny: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _nftMinted[msg.sender] = _nftMinted[msg.sender] + 1;
            totalNFT = totalNFT + 1;
        }
    }

    function publicMint(uint256 _amount) external payable {
        require(publicState, "Bored Bad Bunny: Public is OFF");
        require(_amount > 0, "Bored Bad Bunny: zero amount");
        require(
            totalNFT + _amount <= maxSupply,
            "Bored Bad Bunny: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Bored Bad Bunny: Ether value sent is not correct"
        );
        require(!paused, "Bored Bad Bunny: contract is paused");
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            totalNFT = totalNFT + 1;
        }
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return notRevealedUri;
        }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function changeTotalSupply(uint256 _newSupply) public onlyOwner {
        maxSupply = _newSupply;
    }

    function changeMaxSupplyWithFreeMint(uint256 _newSupply) public onlyOwner {
        maxSupplyWithFreeMint = _newSupply;
    }

    function changefreeMintRoot(bytes32 _freeMintRoot) public onlyOwner {
        freeMintRoot = _freeMintRoot;
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Bored Bad Bunny : burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Bored Bad Bunny : burn caller is not owner nor approved"
        );
        _burn(tokenId);
        totalNFT = totalNFT - 1;
    }

    function verifyFreeMint(address account, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, freeMintRoot, leaf);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_freeMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nftMinted","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeFreeMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeMaxSupplyWithFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freeMintRoot","type":"bytes32"}],"name":"changefreeMintRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyWithFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

612b67601255613b0760135560c06040526005608081905264173539b7b760d91b60a090815262000034916017919062000646565b506018805465ffffffffffff1916905567058d15e176280000601b556040805160e081018252601a815260046020820152600f918101829052606081018290526080810182905260a0810191909152600a60c08201526200009a90601e906007620006d5565b506040805160e0810182527327688581c2030b882170b981a1e5878646726bbe815273b46a079528a40bd900f730295c7d95e9f49f9b0460208201527316a7a69cde1a06375dc10ce32b61edf5ec45e9659181019190915273750256abda0577040e37b1e10c7f24ccaad1fbde606082015273ee6752ec7a4017229d7757154563062849a1dfe1608082015273f2647e7b6ca208ad764e7ce8a46df64d4149ceb760a08201527324c4d2de1f1a3973e1701c94662fc9521477c37660c08201526200016a90601f90600762000718565b503480156200017857600080fd5b50601f805480602002602001604051908101604052809291908181526020018280548015620001d157602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620001b2575b5050505050601e8054806020026020016040519081016040528092919081815260200182805480156200022457602002820191906000526020600020905b8154815260200190600101908083116200020f575b5050604080518082018252600f81526e426f726564204261642042756e6e7960881b60208083019182528351808501909452600384526221212160e91b9084015281519195509193506200027d92506000919062000646565b5080516200029390600190602084019062000646565b505050620002b0620002aa6200040260201b60201c565b62000406565b8051825114620003225760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003755760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000319565b60005b8251811015620003f957620003e4838281518110620003a757634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620003d057634e487b7160e01b600052603260045260246000fd5b60200260200101516200045860201b60201c565b80620003f081620007df565b91505062000378565b50505062000813565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004c55760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000319565b60008111620005175760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000319565b6001600160a01b0382166000908152600d602052604090205415620005935760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000319565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620005fd90829062000787565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200065490620007a2565b90600052602060002090601f016020900481019282620006785760008555620006c3565b82601f106200069357805160ff1916838001178555620006c3565b82800160010185558215620006c3579182015b82811115620006c3578251825591602001919060010190620006a6565b50620006d192915062000770565b5090565b828054828255906000526020600020908101928215620006c3579160200282015b82811115620006c3578251829060ff16905591602001919060010190620006f6565b828054828255906000526020600020908101928215620006c3579160200282015b82811115620006c357825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000739565b5b80821115620006d1576000815560010162000771565b600082198211156200079d576200079d620007fd565b500190565b600181811c90821680620007b757607f821691505b60208210811415620007d957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007f657620007f6620007fd565b5060010190565b634e487b7160e01b600052601160045260246000fd5b613d7e80620008236000396000f3fe60806040526004361061039a5760003560e01c80636e0e5b19116101dc578063b88d4fde11610102578063d5abeb01116100a0578063e33b7de31161006f578063e33b7de314610ad3578063e985e9c514610ae8578063f2c4ce1e14610b31578063f2fde38b14610b5157600080fd5b8063d5abeb0114610a54578063d79779b214610a6a578063da3ef23f14610aa0578063e2f36dce14610ac057600080fd5b8063c9b298f1116100dc578063c9b298f1146109e0578063ce7c2ac2146109f3578063d082a3f714610a29578063d589a4ef14610a3e57600080fd5b8063b88d4fde1461098b578063c6682862146109ab578063c87b56dd146109c057600080fd5b80639852595c1161017a578063a5fd7bec11610149578063a5fd7bec14610905578063a886c37714610925578063abfe76141461093b578063b5caab2f1461095e57600080fd5b80639852595c1461087a578063a22cb465146108b0578063a475b5dd146108d0578063a4828889146108e557600080fd5b80637f1e3711116101b65780637f1e3711146107fa5780638b83209b146108275780638da5cb5b1461084757806395d89b411461086557600080fd5b80636e0e5b19146107a557806370a08231146107c5578063715018a6146107e557600080fd5b80633a98ef39116102c1578063518302271161025f5780635c975abb1161022e5780635c975abb1461073b57806360e5bb851461075b5780636352211e146107705780636c0360eb1461079057600080fd5b806351830227146106bc57806351f38bb8146106db57806352e97326146106fb57806355f804b31461071b57600080fd5b806342966c681161029b57806342966c681461064757806346e79ffc1461066757806348b750441461067c5780634f6ccce71461069c57600080fd5b80633a98ef39146105cc578063406072a9146105e157806342842e0e1461062757600080fd5b80630d0c31b7116103395780632d773242116103085780632d773242146105635780632db11544146105785780632f745c591461058b5780633169ce40146105ab57600080fd5b80630d0c31b7146104ec57806318160ddd1461050e578063191655871461052357806323b872dd1461054357600080fd5b806307ebec271161037557806307ebec2714610463578063081812fc1461047d578063081c8c44146104b5578063095ea7b3146104ca57600080fd5b8062456379146103e857806301ffc9a71461041157806306fdde031461044157600080fd5b366103e3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103f457600080fd5b506103fe60145481565b6040519081526020015b60405180910390f35b34801561041d57600080fd5b5061043161042c366004613605565b610b71565b6040519015158152602001610408565b34801561044d57600080fd5b50610456610b9c565b6040516104089190613903565b34801561046f57600080fd5b506018546104319060ff1681565b34801561048957600080fd5b5061049d6104983660046135ed565b610c2e565b6040516001600160a01b039091168152602001610408565b3480156104c157600080fd5b50610456610cc8565b3480156104d657600080fd5b506104ea6104e536600461351a565b610d56565b005b3480156104f857600080fd5b5060185461043190640100000000900460ff1681565b34801561051a57600080fd5b506008546103fe565b34801561052f57600080fd5b506104ea61053e3660046133dc565b610e6c565b34801561054f57600080fd5b506104ea61055e366004613430565b610f9a565b34801561056f57600080fd5b506104ea610fcb565b6104ea6105863660046135ed565b611016565b34801561059757600080fd5b506103fe6105a636600461351a565b611192565b3480156105b757600080fd5b50601854610431906301000000900460ff1681565b3480156105d857600080fd5b50600b546103fe565b3480156105ed57600080fd5b506103fe6105fc36600461363d565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561063357600080fd5b506104ea610642366004613430565b611228565b34801561065357600080fd5b506104ea6106623660046135ed565b611243565b34801561067357600080fd5b506104ea61133a565b34801561068857600080fd5b506104ea61069736600461363d565b611383565b3480156106a857600080fd5b506103fe6106b73660046135ed565b61156b565b3480156106c857600080fd5b5060185461043190610100900460ff1681565b3480156106e757600080fd5b506104ea6106f63660046135ed565b61160c565b34801561070757600080fd5b506104ea6107163660046135ed565b61163b565b34801561072757600080fd5b506104ea61073636600461364f565b61166a565b34801561074757600080fd5b506018546104319062010000900460ff1681565b34801561076757600080fd5b506104ea6116a0565b34801561077c57600080fd5b5061049d61078b3660046135ed565b6116ef565b34801561079c57600080fd5b50610456611766565b3480156107b157600080fd5b506104ea6107c03660046135b5565b611773565b3480156107d157600080fd5b506103fe6107e03660046133dc565b6117b0565b3480156107f157600080fd5b506104ea611837565b34801561080657600080fd5b506103fe6108153660046133dc565b60196020526000908152604090205481565b34801561083357600080fd5b5061049d6108423660046135ed565b61186d565b34801561085357600080fd5b50600a546001600160a01b031661049d565b34801561087157600080fd5b506104566118ab565b34801561088657600080fd5b506103fe6108953660046133dc565b6001600160a01b03166000908152600e602052604090205490565b3480156108bc57600080fd5b506104ea6108cb3660046134ed565b6118ba565b3480156108dc57600080fd5b506104ea6118c9565b3480156108f157600080fd5b506104ea6109003660046135ed565b611904565b34801561091157600080fd5b506104ea610920366004613545565b611933565b34801561093157600080fd5b506103fe601c5481565b34801561094757600080fd5b506018546104319065010000000000900460ff1681565b34801561096a57600080fd5b506103fe6109793660046133dc565b601a6020526000908152604090205481565b34801561099757600080fd5b506104ea6109a6366004613470565b611afa565b3480156109b757600080fd5b50610456611b2c565b3480156109cc57600080fd5b506104566109db3660046135ed565b611b39565b6104ea6109ee3660046135ed565b611cb8565b3480156109ff57600080fd5b506103fe610a0e3660046133dc565b6001600160a01b03166000908152600d602052604090205490565b348015610a3557600080fd5b506104ea611e6b565b348015610a4a57600080fd5b506103fe60135481565b348015610a6057600080fd5b506103fe60125481565b348015610a7657600080fd5b506103fe610a853660046133dc565b6001600160a01b031660009081526010602052604090205490565b348015610aac57600080fd5b506104ea610abb3660046136aa565b611eb8565b6104ea610ace366004613708565b611ef5565b348015610adf57600080fd5b50600c546103fe565b348015610af457600080fd5b50610431610b033660046133f8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b3d57600080fd5b506104ea610b4c3660046136aa565b6120f6565b348015610b5d57600080fd5b506104ea610b6c3660046133dc565b612133565b60006001600160e01b0319821663780e9d6360e01b1480610b965750610b96826121ce565b92915050565b606060008054610bab90613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790613c63565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60168054610cd590613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190613c63565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b505050505081565b6000610d61826116ef565b9050806001600160a01b0316836001600160a01b03161415610dcf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ca3565b336001600160a01b0382161480610deb5750610deb8133610b03565b610e5d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ca3565b610e67838361221e565b505050565b6001600160a01b0381166000908152600d6020526040902054610ea15760405162461bcd60e51b8152600401610ca3906139fa565b6000610eac600c5490565b610eb69047613bd5565b90506000610ee38383610ede866001600160a01b03166000908152600e602052604090205490565b61228c565b905080610f025760405162461bcd60e51b8152600401610ca390613a90565b6001600160a01b0383166000908152600e602052604081208054839290610f2a908490613bd5565b9250508190555080600c6000828254610f439190613bd5565b90915550610f53905083826122d2565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610fa433826123eb565b610fc05760405162461bcd60e51b8152600401610ca390613b53565b610e678383836124e1565b600a546001600160a01b03163314610ff55760405162461bcd60e51b8152600401610ca390613adb565b6018805463ff00000019811663010000009182900460ff1615909102179055565b60185465010000000000900460ff166110715760405162461bcd60e51b815260206004820152601e60248201527f426f726564204261642042756e6e793a205075626c6963206973204f464600006044820152606401610ca3565b600081116110c15760405162461bcd60e51b815260206004820152601c60248201527f426f726564204261642042756e6e793a207a65726f20616d6f756e74000000006044820152606401610ca3565b601254816014546110d29190613bd5565b11156110f05760405162461bcd60e51b8152600401610ca3906139b6565b3481601b546110ff9190613c01565b111561111d5760405162461bcd60e51b8152600401610ca390613a40565b60185462010000900460ff16156111465760405162461bcd60e51b8152600401610ca390613b10565b6000805b82811015610e6757611160601d80546001019055565b601d54915061116f338361268c565b60145461117d906001613bd5565b6014558061118a81613c9e565b91505061114a565b600061119d836117b0565b82106111ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ca3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e6783838360405180602001604052806000815250611afa565b60185460ff166112a05760405162461bcd60e51b815260206004820152602260248201527f426f726564204261642042756e6e79203a206275726e696e672064697361626c604482015261195960f21b6064820152608401610ca3565b6112aa33826123eb565b61131c5760405162461bcd60e51b815260206004820152603760248201527f426f726564204261642042756e6e79203a206275726e2063616c6c657220697360448201527f206e6f74206f776e6572206e6f7220617070726f7665640000000000000000006064820152608401610ca3565b611325816126a6565b60016014546113349190613c20565b60145550565b600a546001600160a01b031633146113645760405162461bcd60e51b8152600401610ca390613adb565b6018805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546113b85760405162461bcd60e51b8152600401610ca3906139fa565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561141057600080fd5b505afa158015611424573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144891906136f0565b6114529190613bd5565b9050600061148b8383610ede87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114aa5760405162461bcd60e51b8152600401610ca390613a90565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906114e1908490613bd5565b90915550506001600160a01b0384166000908152601060205260408120805483929061150e908490613bd5565b9091555061151f905084848361274d565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061157660085490565b82106115d95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ca3565b600882815481106115fa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146116365760405162461bcd60e51b8152600401610ca390613adb565b601c55565b600a546001600160a01b031633146116655760405162461bcd60e51b8152600401610ca390613adb565b601255565b600a546001600160a01b031633146116945760405162461bcd60e51b8152600401610ca390613adb565b610e6760158383613277565b600a546001600160a01b031633146116ca5760405162461bcd60e51b8152600401610ca390613adb565b6018805465ff0000000000198116650100000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610b965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ca3565b60158054610cd590613c63565b600a546001600160a01b0316331461179d5760405162461bcd60e51b8152600401610ca390613adb565b6018805460ff1916911515919091179055565b60006001600160a01b03821661181b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ca3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146118615760405162461bcd60e51b8152600401610ca390613adb565b61186b600061279f565b565b6000600f828154811061189057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610bab90613c63565b6118c53383836127f1565b5050565b600a546001600160a01b031633146118f35760405162461bcd60e51b8152600401610ca390613adb565b6018805461ff001916610100179055565b600a546001600160a01b0316331461192e5760405162461bcd60e51b8152600401610ca390613adb565b601355565b600a546001600160a01b0316331461195d5760405162461bcd60e51b8152600401610ca390613adb565b60125460145461196e908390613bd5565b11156119cf5760405162461bcd60e51b815260206004820152602a60248201527f426f726564204261642042756e6e793a206d617820746f74616c20737570706c6044820152691e48195e18d95959195960b21b6064820152608401610ca3565b6000805b82811015611af45760008484838181106119fd57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a1291906133dc565b6001600160a01b03161415611a805760405162461bcd60e51b815260206004820152602e60248201527f426f726564204261642042756e6e793a20726563657069656e7420697320746860448201526d65206e756c6c206164647265737360901b6064820152608401610ca3565b611a8e601d80546001019055565b601d549150611ad1848483818110611ab657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611acb91906133dc565b8361268c565b601454611adf906001613bd5565b60145580611aec81613c9e565b9150506119d3565b50505050565b611b0433836123eb565b611b205760405162461bcd60e51b8152600401610ca390613b53565b611af4848484846128c0565b60178054610cd590613c63565b6000818152600260205260409020546060906001600160a01b0316611bb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ca3565b601854610100900460ff16611c595760168054611bd490613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0090613c63565b8015611c4d5780601f10611c2257610100808354040283529160200191611c4d565b820191906000526020600020905b815481529060010190602001808311611c3057829003601f168201915b50505050509050919050565b6000611c636128f3565b90506000815111611c835760405180602001604052806000815250611cb1565b80611c8d84612902565b6017604051602001611ca193929190613804565b6040516020818303038152906040525b9392505050565b601854640100000000900460ff16611d125760405162461bcd60e51b815260206004820152601f60248201527f426f726564204261642042756e6e793a2050726573616c65206973204f4646006044820152606401610ca3565b60185462010000900460ff1615611d3b5760405162461bcd60e51b8152600401610ca390613b10565b6004811115611d5c5760405162461bcd60e51b8152600401610ca390613916565b33600090815260196020526040902054600490611d7a908390613bd5565b1115611d985760405162461bcd60e51b8152600401610ca390613916565b60125481601454611da99190613bd5565b1115611dc75760405162461bcd60e51b8152600401610ca3906139b6565b3481601b54611dd69190613c01565b1115611df45760405162461bcd60e51b8152600401610ca390613a40565b6000805b82811015610e6757611e0e601d80546001019055565b601d549150611e1d338361268c565b33600090815260196020526040902054611e38906001613bd5565b33600090815260196020526040902055601454611e56906001613bd5565b60145580611e6381613c9e565b915050611df8565b600a546001600160a01b03163314611e955760405162461bcd60e51b8152600401610ca390613adb565b6018805464ff000000001981166401000000009182900460ff1615909102179055565b600a546001600160a01b03163314611ee25760405162461bcd60e51b8152600401610ca390613adb565b80516118c59060179060208401906132fb565b6018546301000000900460ff16611f4e5760405162461bcd60e51b815260206004820181905260248201527f426f726564204261642042756e6e793a20467265654d696e74206973204f46466044820152606401610ca3565b60185462010000900460ff1615611f775760405162461bcd60e51b8152600401610ca390613b10565b6001821115611f985760405162461bcd60e51b8152600401610ca390613916565b336000908152601a6020526040902054600190611fb6908490613bd5565b1115611fd45760405162461bcd60e51b8152600401610ca390613916565b611fde3382612a1c565b6120505760405162461bcd60e51b815260206004820152603760248201527f426f726564204261642042756e6e793a20596f7520617265206e6f742073656c60448201527f656374656420666f72207468652066726565206d696e740000000000000000006064820152608401610ca3565b601354826014546120619190613bd5565b111561207f5760405162461bcd60e51b8152600401610ca3906139b6565b6000805b83811015611af457612099601d80546001019055565b601d5491506120a8338361268c565b336000908152601a60205260409020546120c3906001613bd5565b336000908152601a60205260409020556014546120e1906001613bd5565b601455806120ee81613c9e565b915050612083565b600a546001600160a01b031633146121205760405162461bcd60e51b8152600401610ca390613adb565b80516118c59060169060208401906132fb565b600a546001600160a01b0316331461215d5760405162461bcd60e51b8152600401610ca390613adb565b6001600160a01b0381166121c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ca3565b6121cb8161279f565b50565b60006001600160e01b031982166380ac58cd60e01b14806121ff57506001600160e01b03198216635b5e139f60e01b145b80610b9657506301ffc9a760e01b6001600160e01b0319831614610b96565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612253826116ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916122b69086613c01565b6122c09190613bed565b6122ca9190613c20565b949350505050565b804710156123225760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ca3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461236f576040519150601f19603f3d011682016040523d82523d6000602084013e612374565b606091505b5050905080610e675760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ca3565b6000818152600260205260408120546001600160a01b03166124645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ca3565b600061246f836116ef565b9050806001600160a01b0316846001600160a01b031614806124aa5750836001600160a01b031661249f84610c2e565b6001600160a01b0316145b806122ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166124f4826116ef565b6001600160a01b03161461255c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ca3565b6001600160a01b0382166125be5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ca3565b6125c9838383612a65565b6125d460008261221e565b6001600160a01b03831660009081526003602052604081208054600192906125fd908490613c20565b90915550506001600160a01b038216600090815260036020526040812080546001929061262b908490613bd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118c5828260405180602001604052806000815250612b1d565b60006126b1826116ef565b90506126bf81600084612a65565b6126ca60008361221e565b6001600160a01b03811660009081526003602052604081208054600192906126f3908490613c20565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e67908490612b50565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156128535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ca3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128cb8484846124e1565b6128d784848484612c22565b611af45760405162461bcd60e51b8152600401610ca390613964565b606060158054610bab90613c63565b6060816129265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612950578061293a81613c9e565b91506129499050600a83613bed565b915061292a565b60008167ffffffffffffffff81111561297957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129a3576020820181803683370190505b5090505b84156122ca576129b8600183613c20565b91506129c5600a86613cb9565b6129d0906030613bd5565b60f81b8183815181106129f357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a15600a86613bed565b94506129a7565b6040516bffffffffffffffffffffffff19606084901b16602082015260009081906034016040516020818303038152906040528051906020012090506122ca83601c5483612d2f565b6001600160a01b038316612ac057612abb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ae3565b816001600160a01b0316836001600160a01b031614612ae357612ae38382612d45565b6001600160a01b038216612afa57610e6781612de2565b826001600160a01b0316826001600160a01b031614610e6757610e678282612ebb565b612b278383612eff565b612b346000848484612c22565b610e675760405162461bcd60e51b8152600401610ca390613964565b6000612ba5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661304d9092919063ffffffff16565b805190915015610e675780806020019051810190612bc391906135d1565b610e675760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ca3565b60006001600160a01b0384163b15612d2457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c669033908990889088906004016138c6565b602060405180830381600087803b158015612c8057600080fd5b505af1925050508015612cb0575060408051601f3d908101601f19168201909252612cad91810190613621565b60015b612d0a573d808015612cde576040519150601f19603f3d011682016040523d82523d6000602084013e612ce3565b606091505b508051612d025760405162461bcd60e51b8152600401610ca390613964565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122ca565b506001949350505050565b600082612d3c858461305c565b14949350505050565b60006001612d52846117b0565b612d5c9190613c20565b600083815260076020526040902054909150808214612daf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612df490600190613c20565b60008381526009602052604081205460088054939450909284908110612e2a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e5957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e9f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ec6836117b0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612f555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ca3565b6000818152600260205260409020546001600160a01b031615612fba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ca3565b612fc660008383612a65565b6001600160a01b0382166000908152600360205260408120805460019290612fef908490613bd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606122ca8484600085613116565b600081815b845181101561310e57600085828151811061308c57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116130ce5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506130fb565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061310681613c9e565b915050613061565b509392505050565b6060824710156131775760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610ca3565b843b6131c55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ca3565b600080866001600160a01b031685876040516131e191906137e8565b60006040518083038185875af1925050503d806000811461321e576040519150601f19603f3d011682016040523d82523d6000602084013e613223565b606091505b509150915061323382828661323e565b979650505050505050565b6060831561324d575081611cb1565b82511561325d5782518084602001fd5b8160405162461bcd60e51b8152600401610ca39190613903565b82805461328390613c63565b90600052602060002090601f0160209004810192826132a557600085556132eb565b82601f106132be5782800160ff198235161785556132eb565b828001600101855582156132eb579182015b828111156132eb5782358255916020019190600101906132d0565b506132f792915061336f565b5090565b82805461330790613c63565b90600052602060002090601f01602090048101928261332957600085556132eb565b82601f1061334257805160ff19168380011785556132eb565b828001600101855582156132eb579182015b828111156132eb578251825591602001919060010190613354565b5b808211156132f75760008155600101613370565b600067ffffffffffffffff83111561339e5761339e613cf9565b6133b1601f8401601f1916602001613ba4565b90508281528383830111156133c557600080fd5b828260208301376000602084830101529392505050565b6000602082840312156133ed578081fd5b8135611cb181613d0f565b6000806040838503121561340a578081fd5b823561341581613d0f565b9150602083013561342581613d0f565b809150509250929050565b600080600060608486031215613444578081fd5b833561344f81613d0f565b9250602084013561345f81613d0f565b929592945050506040919091013590565b60008060008060808587031215613485578081fd5b843561349081613d0f565b935060208501356134a081613d0f565b925060408501359150606085013567ffffffffffffffff8111156134c2578182fd5b8501601f810187136134d2578182fd5b6134e187823560208401613384565b91505092959194509250565b600080604083850312156134ff578182fd5b823561350a81613d0f565b9150602083013561342581613d24565b6000806040838503121561352c578182fd5b823561353781613d0f565b946020939093013593505050565b60008060208385031215613557578081fd5b823567ffffffffffffffff8082111561356e578283fd5b818501915085601f830112613581578283fd5b81358181111561358f578384fd5b8660208260051b85010111156135a3578384fd5b60209290920196919550909350505050565b6000602082840312156135c6578081fd5b8135611cb181613d24565b6000602082840312156135e2578081fd5b8151611cb181613d24565b6000602082840312156135fe578081fd5b5035919050565b600060208284031215613616578081fd5b8135611cb181613d32565b600060208284031215613632578081fd5b8151611cb181613d32565b6000806040838503121561340a578182fd5b60008060208385031215613661578182fd5b823567ffffffffffffffff80821115613678578384fd5b818501915085601f83011261368b578384fd5b813581811115613699578485fd5b8660208285010111156135a3578485fd5b6000602082840312156136bb578081fd5b813567ffffffffffffffff8111156136d1578182fd5b8201601f810184136136e1578182fd5b6122ca84823560208401613384565b600060208284031215613701578081fd5b5051919050565b6000806040838503121561371a578182fd5b8235915060208084013567ffffffffffffffff80821115613739578384fd5b818601915086601f83011261374c578384fd5b81358181111561375e5761375e613cf9565b8060051b915061376f848301613ba4565b8181528481019084860184860187018b1015613789578788fd5b8795505b838610156137ab57803583526001959095019491860191860161378d565b508096505050505050509250929050565b600081518084526137d4816020860160208601613c37565b601f01601f19169290920160200192915050565b600082516137fa818460208701613c37565b9190910192915050565b6000845160206138178285838a01613c37565b85519184019161382a8184848a01613c37565b85549201918390600181811c908083168061384657607f831692505b85831081141561386457634e487b7160e01b88526022600452602488fd5b8080156138785760018114613889576138b5565b60ff198516885283880195506138b5565b60008b815260209020895b858110156138ad5781548a820152908401908801613894565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138f9908301846137bc565b9695505050505050565b602081526000611cb160208301846137bc565b6020808252602e908201527f426f726564204261642042756e6e793a20596f752063616e2774206d696e742060408201526d736f206d75636820746f6b656e7360901b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f426f726564204261642042756e6e793a206d617820737570706c7920657863656040820152631959195960e21b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526030908201527f426f726564204261642042756e6e793a2045746865722076616c75652073656e60408201526f1d081a5cc81b9bdd0818dbdc9c9958dd60821b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f426f726564204261642042756e6e793a20636f6e7472616374206973207061756040820152621cd95960ea1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613bcd57613bcd613cf9565b604052919050565b60008219821115613be857613be8613ccd565b500190565b600082613bfc57613bfc613ce3565b500490565b6000816000190483118215151615613c1b57613c1b613ccd565b500290565b600082821015613c3257613c32613ccd565b500390565b60005b83811015613c52578181015183820152602001613c3a565b83811115611af45750506000910152565b600181811c90821680613c7757607f821691505b60208210811415613c9857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613cb257613cb2613ccd565b5060010190565b600082613cc857613cc8613ce3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146121cb57600080fd5b80151581146121cb57600080fd5b6001600160e01b0319811681146121cb57600080fdfea264697066735822122087cb73654314bdc45a1292a2a4a4878b5ee9ceb72dc55b5ba9da7e86a7ff918964736f6c63430008040033

Deployed Bytecode

0x60806040526004361061039a5760003560e01c80636e0e5b19116101dc578063b88d4fde11610102578063d5abeb01116100a0578063e33b7de31161006f578063e33b7de314610ad3578063e985e9c514610ae8578063f2c4ce1e14610b31578063f2fde38b14610b5157600080fd5b8063d5abeb0114610a54578063d79779b214610a6a578063da3ef23f14610aa0578063e2f36dce14610ac057600080fd5b8063c9b298f1116100dc578063c9b298f1146109e0578063ce7c2ac2146109f3578063d082a3f714610a29578063d589a4ef14610a3e57600080fd5b8063b88d4fde1461098b578063c6682862146109ab578063c87b56dd146109c057600080fd5b80639852595c1161017a578063a5fd7bec11610149578063a5fd7bec14610905578063a886c37714610925578063abfe76141461093b578063b5caab2f1461095e57600080fd5b80639852595c1461087a578063a22cb465146108b0578063a475b5dd146108d0578063a4828889146108e557600080fd5b80637f1e3711116101b65780637f1e3711146107fa5780638b83209b146108275780638da5cb5b1461084757806395d89b411461086557600080fd5b80636e0e5b19146107a557806370a08231146107c5578063715018a6146107e557600080fd5b80633a98ef39116102c1578063518302271161025f5780635c975abb1161022e5780635c975abb1461073b57806360e5bb851461075b5780636352211e146107705780636c0360eb1461079057600080fd5b806351830227146106bc57806351f38bb8146106db57806352e97326146106fb57806355f804b31461071b57600080fd5b806342966c681161029b57806342966c681461064757806346e79ffc1461066757806348b750441461067c5780634f6ccce71461069c57600080fd5b80633a98ef39146105cc578063406072a9146105e157806342842e0e1461062757600080fd5b80630d0c31b7116103395780632d773242116103085780632d773242146105635780632db11544146105785780632f745c591461058b5780633169ce40146105ab57600080fd5b80630d0c31b7146104ec57806318160ddd1461050e578063191655871461052357806323b872dd1461054357600080fd5b806307ebec271161037557806307ebec2714610463578063081812fc1461047d578063081c8c44146104b5578063095ea7b3146104ca57600080fd5b8062456379146103e857806301ffc9a71461041157806306fdde031461044157600080fd5b366103e3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103f457600080fd5b506103fe60145481565b6040519081526020015b60405180910390f35b34801561041d57600080fd5b5061043161042c366004613605565b610b71565b6040519015158152602001610408565b34801561044d57600080fd5b50610456610b9c565b6040516104089190613903565b34801561046f57600080fd5b506018546104319060ff1681565b34801561048957600080fd5b5061049d6104983660046135ed565b610c2e565b6040516001600160a01b039091168152602001610408565b3480156104c157600080fd5b50610456610cc8565b3480156104d657600080fd5b506104ea6104e536600461351a565b610d56565b005b3480156104f857600080fd5b5060185461043190640100000000900460ff1681565b34801561051a57600080fd5b506008546103fe565b34801561052f57600080fd5b506104ea61053e3660046133dc565b610e6c565b34801561054f57600080fd5b506104ea61055e366004613430565b610f9a565b34801561056f57600080fd5b506104ea610fcb565b6104ea6105863660046135ed565b611016565b34801561059757600080fd5b506103fe6105a636600461351a565b611192565b3480156105b757600080fd5b50601854610431906301000000900460ff1681565b3480156105d857600080fd5b50600b546103fe565b3480156105ed57600080fd5b506103fe6105fc36600461363d565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561063357600080fd5b506104ea610642366004613430565b611228565b34801561065357600080fd5b506104ea6106623660046135ed565b611243565b34801561067357600080fd5b506104ea61133a565b34801561068857600080fd5b506104ea61069736600461363d565b611383565b3480156106a857600080fd5b506103fe6106b73660046135ed565b61156b565b3480156106c857600080fd5b5060185461043190610100900460ff1681565b3480156106e757600080fd5b506104ea6106f63660046135ed565b61160c565b34801561070757600080fd5b506104ea6107163660046135ed565b61163b565b34801561072757600080fd5b506104ea61073636600461364f565b61166a565b34801561074757600080fd5b506018546104319062010000900460ff1681565b34801561076757600080fd5b506104ea6116a0565b34801561077c57600080fd5b5061049d61078b3660046135ed565b6116ef565b34801561079c57600080fd5b50610456611766565b3480156107b157600080fd5b506104ea6107c03660046135b5565b611773565b3480156107d157600080fd5b506103fe6107e03660046133dc565b6117b0565b3480156107f157600080fd5b506104ea611837565b34801561080657600080fd5b506103fe6108153660046133dc565b60196020526000908152604090205481565b34801561083357600080fd5b5061049d6108423660046135ed565b61186d565b34801561085357600080fd5b50600a546001600160a01b031661049d565b34801561087157600080fd5b506104566118ab565b34801561088657600080fd5b506103fe6108953660046133dc565b6001600160a01b03166000908152600e602052604090205490565b3480156108bc57600080fd5b506104ea6108cb3660046134ed565b6118ba565b3480156108dc57600080fd5b506104ea6118c9565b3480156108f157600080fd5b506104ea6109003660046135ed565b611904565b34801561091157600080fd5b506104ea610920366004613545565b611933565b34801561093157600080fd5b506103fe601c5481565b34801561094757600080fd5b506018546104319065010000000000900460ff1681565b34801561096a57600080fd5b506103fe6109793660046133dc565b601a6020526000908152604090205481565b34801561099757600080fd5b506104ea6109a6366004613470565b611afa565b3480156109b757600080fd5b50610456611b2c565b3480156109cc57600080fd5b506104566109db3660046135ed565b611b39565b6104ea6109ee3660046135ed565b611cb8565b3480156109ff57600080fd5b506103fe610a0e3660046133dc565b6001600160a01b03166000908152600d602052604090205490565b348015610a3557600080fd5b506104ea611e6b565b348015610a4a57600080fd5b506103fe60135481565b348015610a6057600080fd5b506103fe60125481565b348015610a7657600080fd5b506103fe610a853660046133dc565b6001600160a01b031660009081526010602052604090205490565b348015610aac57600080fd5b506104ea610abb3660046136aa565b611eb8565b6104ea610ace366004613708565b611ef5565b348015610adf57600080fd5b50600c546103fe565b348015610af457600080fd5b50610431610b033660046133f8565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b3d57600080fd5b506104ea610b4c3660046136aa565b6120f6565b348015610b5d57600080fd5b506104ea610b6c3660046133dc565b612133565b60006001600160e01b0319821663780e9d6360e01b1480610b965750610b96826121ce565b92915050565b606060008054610bab90613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd790613c63565b8015610c245780601f10610bf957610100808354040283529160200191610c24565b820191906000526020600020905b815481529060010190602001808311610c0757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60168054610cd590613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0190613c63565b8015610d4e5780601f10610d2357610100808354040283529160200191610d4e565b820191906000526020600020905b815481529060010190602001808311610d3157829003601f168201915b505050505081565b6000610d61826116ef565b9050806001600160a01b0316836001600160a01b03161415610dcf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610ca3565b336001600160a01b0382161480610deb5750610deb8133610b03565b610e5d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ca3565b610e67838361221e565b505050565b6001600160a01b0381166000908152600d6020526040902054610ea15760405162461bcd60e51b8152600401610ca3906139fa565b6000610eac600c5490565b610eb69047613bd5565b90506000610ee38383610ede866001600160a01b03166000908152600e602052604090205490565b61228c565b905080610f025760405162461bcd60e51b8152600401610ca390613a90565b6001600160a01b0383166000908152600e602052604081208054839290610f2a908490613bd5565b9250508190555080600c6000828254610f439190613bd5565b90915550610f53905083826122d2565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610fa433826123eb565b610fc05760405162461bcd60e51b8152600401610ca390613b53565b610e678383836124e1565b600a546001600160a01b03163314610ff55760405162461bcd60e51b8152600401610ca390613adb565b6018805463ff00000019811663010000009182900460ff1615909102179055565b60185465010000000000900460ff166110715760405162461bcd60e51b815260206004820152601e60248201527f426f726564204261642042756e6e793a205075626c6963206973204f464600006044820152606401610ca3565b600081116110c15760405162461bcd60e51b815260206004820152601c60248201527f426f726564204261642042756e6e793a207a65726f20616d6f756e74000000006044820152606401610ca3565b601254816014546110d29190613bd5565b11156110f05760405162461bcd60e51b8152600401610ca3906139b6565b3481601b546110ff9190613c01565b111561111d5760405162461bcd60e51b8152600401610ca390613a40565b60185462010000900460ff16156111465760405162461bcd60e51b8152600401610ca390613b10565b6000805b82811015610e6757611160601d80546001019055565b601d54915061116f338361268c565b60145461117d906001613bd5565b6014558061118a81613c9e565b91505061114a565b600061119d836117b0565b82106111ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610ca3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e6783838360405180602001604052806000815250611afa565b60185460ff166112a05760405162461bcd60e51b815260206004820152602260248201527f426f726564204261642042756e6e79203a206275726e696e672064697361626c604482015261195960f21b6064820152608401610ca3565b6112aa33826123eb565b61131c5760405162461bcd60e51b815260206004820152603760248201527f426f726564204261642042756e6e79203a206275726e2063616c6c657220697360448201527f206e6f74206f776e6572206e6f7220617070726f7665640000000000000000006064820152608401610ca3565b611325816126a6565b60016014546113349190613c20565b60145550565b600a546001600160a01b031633146113645760405162461bcd60e51b8152600401610ca390613adb565b6018805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546113b85760405162461bcd60e51b8152600401610ca3906139fa565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561141057600080fd5b505afa158015611424573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144891906136f0565b6114529190613bd5565b9050600061148b8383610ede87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114aa5760405162461bcd60e51b8152600401610ca390613a90565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906114e1908490613bd5565b90915550506001600160a01b0384166000908152601060205260408120805483929061150e908490613bd5565b9091555061151f905084848361274d565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061157660085490565b82106115d95760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610ca3565b600882815481106115fa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146116365760405162461bcd60e51b8152600401610ca390613adb565b601c55565b600a546001600160a01b031633146116655760405162461bcd60e51b8152600401610ca390613adb565b601255565b600a546001600160a01b031633146116945760405162461bcd60e51b8152600401610ca390613adb565b610e6760158383613277565b600a546001600160a01b031633146116ca5760405162461bcd60e51b8152600401610ca390613adb565b6018805465ff0000000000198116650100000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610b965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610ca3565b60158054610cd590613c63565b600a546001600160a01b0316331461179d5760405162461bcd60e51b8152600401610ca390613adb565b6018805460ff1916911515919091179055565b60006001600160a01b03821661181b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610ca3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146118615760405162461bcd60e51b8152600401610ca390613adb565b61186b600061279f565b565b6000600f828154811061189057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610bab90613c63565b6118c53383836127f1565b5050565b600a546001600160a01b031633146118f35760405162461bcd60e51b8152600401610ca390613adb565b6018805461ff001916610100179055565b600a546001600160a01b0316331461192e5760405162461bcd60e51b8152600401610ca390613adb565b601355565b600a546001600160a01b0316331461195d5760405162461bcd60e51b8152600401610ca390613adb565b60125460145461196e908390613bd5565b11156119cf5760405162461bcd60e51b815260206004820152602a60248201527f426f726564204261642042756e6e793a206d617820746f74616c20737570706c6044820152691e48195e18d95959195960b21b6064820152608401610ca3565b6000805b82811015611af45760008484838181106119fd57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a1291906133dc565b6001600160a01b03161415611a805760405162461bcd60e51b815260206004820152602e60248201527f426f726564204261642042756e6e793a20726563657069656e7420697320746860448201526d65206e756c6c206164647265737360901b6064820152608401610ca3565b611a8e601d80546001019055565b601d549150611ad1848483818110611ab657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611acb91906133dc565b8361268c565b601454611adf906001613bd5565b60145580611aec81613c9e565b9150506119d3565b50505050565b611b0433836123eb565b611b205760405162461bcd60e51b8152600401610ca390613b53565b611af4848484846128c0565b60178054610cd590613c63565b6000818152600260205260409020546060906001600160a01b0316611bb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610ca3565b601854610100900460ff16611c595760168054611bd490613c63565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0090613c63565b8015611c4d5780601f10611c2257610100808354040283529160200191611c4d565b820191906000526020600020905b815481529060010190602001808311611c3057829003601f168201915b50505050509050919050565b6000611c636128f3565b90506000815111611c835760405180602001604052806000815250611cb1565b80611c8d84612902565b6017604051602001611ca193929190613804565b6040516020818303038152906040525b9392505050565b601854640100000000900460ff16611d125760405162461bcd60e51b815260206004820152601f60248201527f426f726564204261642042756e6e793a2050726573616c65206973204f4646006044820152606401610ca3565b60185462010000900460ff1615611d3b5760405162461bcd60e51b8152600401610ca390613b10565b6004811115611d5c5760405162461bcd60e51b8152600401610ca390613916565b33600090815260196020526040902054600490611d7a908390613bd5565b1115611d985760405162461bcd60e51b8152600401610ca390613916565b60125481601454611da99190613bd5565b1115611dc75760405162461bcd60e51b8152600401610ca3906139b6565b3481601b54611dd69190613c01565b1115611df45760405162461bcd60e51b8152600401610ca390613a40565b6000805b82811015610e6757611e0e601d80546001019055565b601d549150611e1d338361268c565b33600090815260196020526040902054611e38906001613bd5565b33600090815260196020526040902055601454611e56906001613bd5565b60145580611e6381613c9e565b915050611df8565b600a546001600160a01b03163314611e955760405162461bcd60e51b8152600401610ca390613adb565b6018805464ff000000001981166401000000009182900460ff1615909102179055565b600a546001600160a01b03163314611ee25760405162461bcd60e51b8152600401610ca390613adb565b80516118c59060179060208401906132fb565b6018546301000000900460ff16611f4e5760405162461bcd60e51b815260206004820181905260248201527f426f726564204261642042756e6e793a20467265654d696e74206973204f46466044820152606401610ca3565b60185462010000900460ff1615611f775760405162461bcd60e51b8152600401610ca390613b10565b6001821115611f985760405162461bcd60e51b8152600401610ca390613916565b336000908152601a6020526040902054600190611fb6908490613bd5565b1115611fd45760405162461bcd60e51b8152600401610ca390613916565b611fde3382612a1c565b6120505760405162461bcd60e51b815260206004820152603760248201527f426f726564204261642042756e6e793a20596f7520617265206e6f742073656c60448201527f656374656420666f72207468652066726565206d696e740000000000000000006064820152608401610ca3565b601354826014546120619190613bd5565b111561207f5760405162461bcd60e51b8152600401610ca3906139b6565b6000805b83811015611af457612099601d80546001019055565b601d5491506120a8338361268c565b336000908152601a60205260409020546120c3906001613bd5565b336000908152601a60205260409020556014546120e1906001613bd5565b601455806120ee81613c9e565b915050612083565b600a546001600160a01b031633146121205760405162461bcd60e51b8152600401610ca390613adb565b80516118c59060169060208401906132fb565b600a546001600160a01b0316331461215d5760405162461bcd60e51b8152600401610ca390613adb565b6001600160a01b0381166121c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610ca3565b6121cb8161279f565b50565b60006001600160e01b031982166380ac58cd60e01b14806121ff57506001600160e01b03198216635b5e139f60e01b145b80610b9657506301ffc9a760e01b6001600160e01b0319831614610b96565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612253826116ef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916122b69086613c01565b6122c09190613bed565b6122ca9190613c20565b949350505050565b804710156123225760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ca3565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461236f576040519150601f19603f3d011682016040523d82523d6000602084013e612374565b606091505b5050905080610e675760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ca3565b6000818152600260205260408120546001600160a01b03166124645760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610ca3565b600061246f836116ef565b9050806001600160a01b0316846001600160a01b031614806124aa5750836001600160a01b031661249f84610c2e565b6001600160a01b0316145b806122ca57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166124f4826116ef565b6001600160a01b03161461255c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610ca3565b6001600160a01b0382166125be5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610ca3565b6125c9838383612a65565b6125d460008261221e565b6001600160a01b03831660009081526003602052604081208054600192906125fd908490613c20565b90915550506001600160a01b038216600090815260036020526040812080546001929061262b908490613bd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118c5828260405180602001604052806000815250612b1d565b60006126b1826116ef565b90506126bf81600084612a65565b6126ca60008361221e565b6001600160a01b03811660009081526003602052604081208054600192906126f3908490613c20565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e67908490612b50565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156128535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ca3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6128cb8484846124e1565b6128d784848484612c22565b611af45760405162461bcd60e51b8152600401610ca390613964565b606060158054610bab90613c63565b6060816129265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612950578061293a81613c9e565b91506129499050600a83613bed565b915061292a565b60008167ffffffffffffffff81111561297957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129a3576020820181803683370190505b5090505b84156122ca576129b8600183613c20565b91506129c5600a86613cb9565b6129d0906030613bd5565b60f81b8183815181106129f357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a15600a86613bed565b94506129a7565b6040516bffffffffffffffffffffffff19606084901b16602082015260009081906034016040516020818303038152906040528051906020012090506122ca83601c5483612d2f565b6001600160a01b038316612ac057612abb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ae3565b816001600160a01b0316836001600160a01b031614612ae357612ae38382612d45565b6001600160a01b038216612afa57610e6781612de2565b826001600160a01b0316826001600160a01b031614610e6757610e678282612ebb565b612b278383612eff565b612b346000848484612c22565b610e675760405162461bcd60e51b8152600401610ca390613964565b6000612ba5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661304d9092919063ffffffff16565b805190915015610e675780806020019051810190612bc391906135d1565b610e675760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ca3565b60006001600160a01b0384163b15612d2457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c669033908990889088906004016138c6565b602060405180830381600087803b158015612c8057600080fd5b505af1925050508015612cb0575060408051601f3d908101601f19168201909252612cad91810190613621565b60015b612d0a573d808015612cde576040519150601f19603f3d011682016040523d82523d6000602084013e612ce3565b606091505b508051612d025760405162461bcd60e51b8152600401610ca390613964565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122ca565b506001949350505050565b600082612d3c858461305c565b14949350505050565b60006001612d52846117b0565b612d5c9190613c20565b600083815260076020526040902054909150808214612daf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612df490600190613c20565b60008381526009602052604081205460088054939450909284908110612e2a57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612e5957634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612e9f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ec6836117b0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612f555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ca3565b6000818152600260205260409020546001600160a01b031615612fba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ca3565b612fc660008383612a65565b6001600160a01b0382166000908152600360205260408120805460019290612fef908490613bd5565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606122ca8484600085613116565b600081815b845181101561310e57600085828151811061308c57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116130ce5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506130fb565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061310681613c9e565b915050613061565b509392505050565b6060824710156131775760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610ca3565b843b6131c55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ca3565b600080866001600160a01b031685876040516131e191906137e8565b60006040518083038185875af1925050503d806000811461321e576040519150601f19603f3d011682016040523d82523d6000602084013e613223565b606091505b509150915061323382828661323e565b979650505050505050565b6060831561324d575081611cb1565b82511561325d5782518084602001fd5b8160405162461bcd60e51b8152600401610ca39190613903565b82805461328390613c63565b90600052602060002090601f0160209004810192826132a557600085556132eb565b82601f106132be5782800160ff198235161785556132eb565b828001600101855582156132eb579182015b828111156132eb5782358255916020019190600101906132d0565b506132f792915061336f565b5090565b82805461330790613c63565b90600052602060002090601f01602090048101928261332957600085556132eb565b82601f1061334257805160ff19168380011785556132eb565b828001600101855582156132eb579182015b828111156132eb578251825591602001919060010190613354565b5b808211156132f75760008155600101613370565b600067ffffffffffffffff83111561339e5761339e613cf9565b6133b1601f8401601f1916602001613ba4565b90508281528383830111156133c557600080fd5b828260208301376000602084830101529392505050565b6000602082840312156133ed578081fd5b8135611cb181613d0f565b6000806040838503121561340a578081fd5b823561341581613d0f565b9150602083013561342581613d0f565b809150509250929050565b600080600060608486031215613444578081fd5b833561344f81613d0f565b9250602084013561345f81613d0f565b929592945050506040919091013590565b60008060008060808587031215613485578081fd5b843561349081613d0f565b935060208501356134a081613d0f565b925060408501359150606085013567ffffffffffffffff8111156134c2578182fd5b8501601f810187136134d2578182fd5b6134e187823560208401613384565b91505092959194509250565b600080604083850312156134ff578182fd5b823561350a81613d0f565b9150602083013561342581613d24565b6000806040838503121561352c578182fd5b823561353781613d0f565b946020939093013593505050565b60008060208385031215613557578081fd5b823567ffffffffffffffff8082111561356e578283fd5b818501915085601f830112613581578283fd5b81358181111561358f578384fd5b8660208260051b85010111156135a3578384fd5b60209290920196919550909350505050565b6000602082840312156135c6578081fd5b8135611cb181613d24565b6000602082840312156135e2578081fd5b8151611cb181613d24565b6000602082840312156135fe578081fd5b5035919050565b600060208284031215613616578081fd5b8135611cb181613d32565b600060208284031215613632578081fd5b8151611cb181613d32565b6000806040838503121561340a578182fd5b60008060208385031215613661578182fd5b823567ffffffffffffffff80821115613678578384fd5b818501915085601f83011261368b578384fd5b813581811115613699578485fd5b8660208285010111156135a3578485fd5b6000602082840312156136bb578081fd5b813567ffffffffffffffff8111156136d1578182fd5b8201601f810184136136e1578182fd5b6122ca84823560208401613384565b600060208284031215613701578081fd5b5051919050565b6000806040838503121561371a578182fd5b8235915060208084013567ffffffffffffffff80821115613739578384fd5b818601915086601f83011261374c578384fd5b81358181111561375e5761375e613cf9565b8060051b915061376f848301613ba4565b8181528481019084860184860187018b1015613789578788fd5b8795505b838610156137ab57803583526001959095019491860191860161378d565b508096505050505050509250929050565b600081518084526137d4816020860160208601613c37565b601f01601f19169290920160200192915050565b600082516137fa818460208701613c37565b9190910192915050565b6000845160206138178285838a01613c37565b85519184019161382a8184848a01613c37565b85549201918390600181811c908083168061384657607f831692505b85831081141561386457634e487b7160e01b88526022600452602488fd5b8080156138785760018114613889576138b5565b60ff198516885283880195506138b5565b60008b815260209020895b858110156138ad5781548a820152908401908801613894565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906138f9908301846137bc565b9695505050505050565b602081526000611cb160208301846137bc565b6020808252602e908201527f426f726564204261642042756e6e793a20596f752063616e2774206d696e742060408201526d736f206d75636820746f6b656e7360901b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f426f726564204261642042756e6e793a206d617820737570706c7920657863656040820152631959195960e21b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b60208082526030908201527f426f726564204261642042756e6e793a2045746865722076616c75652073656e60408201526f1d081a5cc81b9bdd0818dbdc9c9958dd60821b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f426f726564204261642042756e6e793a20636f6e7472616374206973207061756040820152621cd95960ea1b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613bcd57613bcd613cf9565b604052919050565b60008219821115613be857613be8613ccd565b500190565b600082613bfc57613bfc613ce3565b500490565b6000816000190483118215151615613c1b57613c1b613ccd565b500290565b600082821015613c3257613c32613ccd565b500390565b60005b83811015613c52578181015183820152602001613c3a565b83811115611af45750506000910152565b600181811c90821680613c7757607f821691505b60208210811415613c9857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613cb257613cb2613ccd565b5060010190565b600082613cc857613cc8613ce3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146121cb57600080fd5b80151581146121cb57600080fd5b6001600160e01b0319811681146121cb57600080fdfea264697066735822122087cb73654314bdc45a1292a2a4a4878b5ee9ceb72dc55b5ba9da7e86a7ff918964736f6c63430008040033

Deployed Bytecode Sourcemap

62620:7886:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27464:40;9412:10;27464:40;;;-1:-1:-1;;;;;11767:32:1;;;11749:51;;27494:9:0;11831:2:1;11816:18;;11809:34;11722:18;27464:40:0;;;;;;;62620:7886;;;;;62878:23;;;;;;;;;;;;;;;;;;;12964:25:1;;;12952:2;12937:18;62878:23:0;;;;;;;;56391:224;;;;;;;;;;-1:-1:-1;56391:224:0;;;;;:::i;:::-;;:::i;:::-;;;12791:14:1;;12784:22;12766:41;;12754:2;12739:18;56391:224:0;12721:92:1;43885:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63019:33::-;;;;;;;;;;-1:-1:-1;63019:33:0;;;;;;;;45444:221;;;;;;;;;;-1:-1:-1;45444:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11523:32:1;;;11505:51;;11493:2;11478:18;45444:221:0;11460:102:1;62938:28:0;;;;;;;;;;;;;:::i;44967:411::-;;;;;;;;;;-1:-1:-1;44967:411:0;;;;;:::i;:::-;;:::i;:::-;;63169:32;;;;;;;;;;-1:-1:-1;63169:32:0;;;;;;;;;;;57031:113;;;;;;;;;;-1:-1:-1;57119:10:0;:17;57031:113;;29250:566;;;;;;;;;;-1:-1:-1;29250:566:0;;;;;:::i;:::-;;:::i;46194:339::-;;;;;;;;;;-1:-1:-1;46194:339:0;;;;;:::i;:::-;;:::i;64176:97::-;;;;;;;;;;;;;:::i;67714:786::-;;;;;;:::i;:::-;;:::i;56699:256::-;;;;;;;;;;-1:-1:-1;56699:256:0;;;;;:::i;:::-;;:::i;63129:33::-;;;;;;;;;;-1:-1:-1;63129:33:0;;;;;;;;;;;27595:91;;;;;;;;;;-1:-1:-1;27666:12:0;;27595:91;;28724:135;;;;;;;;;;-1:-1:-1;28724:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;28821:21:0;;;28794:7;28821:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;28724:135;46604:185;;;;;;;;;;-1:-1:-1;46604:185:0;;;;;:::i;:::-;;:::i;69903:333::-;;;;;;;;;;-1:-1:-1;69903:333:0;;;;;:::i;:::-;;:::i;64088:80::-;;;;;;;;;;;;;:::i;30084:641::-;;;;;;;;;;-1:-1:-1;30084:641:0;;;;;:::i;:::-;;:::i;57221:233::-;;;;;;;;;;-1:-1:-1;57221:233:0;;;;;:::i;:::-;;:::i;63059:28::-;;;;;;;;;;-1:-1:-1;63059:28:0;;;;;;;;;;;69780:115;;;;;;;;;;-1:-1:-1;69780:115:0;;;;;:::i;:::-;;:::i;69532:105::-;;;;;;;;;;-1:-1:-1;69532:105:0;;;;;:::i;:::-;;:::i;64482:112::-;;;;;;;;;;-1:-1:-1;64482:112:0;;;;;:::i;:::-;;:::i;63096:26::-;;;;;;;;;;-1:-1:-1;63096:26:0;;;;;;;;;;;64383:91;;;;;;;;;;;;;:::i;43579:239::-;;;;;;;;;;-1:-1:-1;43579:239:0;;;;;:::i;:::-;;:::i;62910:21::-;;;;;;;;;;;;;:::i;64787:115::-;;;;;;;;;;-1:-1:-1;64787:115:0;;;;;:::i;:::-;;:::i;43309:208::-;;;;;;;;;;-1:-1:-1;43309:208:0;;;;;:::i;:::-;;:::i;11259:103::-;;;;;;;;;;;;;:::i;63248:45::-;;;;;;;;;;-1:-1:-1;63248:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;28950:100;;;;;;;;;;-1:-1:-1;28950:100:0;;;;;:::i;:::-;;:::i;10608:87::-;;;;;;;;;;-1:-1:-1;10681:6:0;;-1:-1:-1;;;;;10681:6:0;10608:87;;44054:104;;;;;;;;;;;;;:::i;28446:109::-;;;;;;;;;;-1:-1:-1;28446:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;28529:18:0;28502:7;28529:18;;;:9;:18;;;;;;;28446:109;45737:155;;;;;;;;;;-1:-1:-1;45737:155:0;;;;;:::i;:::-;;:::i;64710:69::-;;;;;;;;;;;;;:::i;69645:127::-;;;;;;;;;;-1:-1:-1;69645:127:0;;;;;:::i;:::-;;:::i;64912:653::-;;;;;;;;;;-1:-1:-1;64912:653:0;;;;;:::i;:::-;;:::i;63414:27::-;;;;;;;;;;;;;;;;63208:31;;;;;;;;;;-1:-1:-1;63208:31:0;;;;;;;;;;;63300:51;;;;;;;;;;-1:-1:-1;63300:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;46860:328;;;;;;;;;;-1:-1:-1;46860:328:0;;;;;:::i;:::-;;:::i;62973:37::-;;;;;;;;;;;;;:::i;68508:723::-;;;;;;;;;;-1:-1:-1;68508:723:0;;;;;:::i;:::-;;:::i;66681:1025::-;;;;;;:::i;:::-;;:::i;28242:105::-;;;;;;;;;;-1:-1:-1;28242:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;28323:16:0;28296:7;28323:16;;;:7;:16;;;;;;;28242:105;64281:94;;;;;;;;;;;;;:::i;62827:44::-;;;;;;;;;;;;;;;;62788:32;;;;;;;;;;;;;;;;28032:119;;;;;;;;;;-1:-1:-1;28032:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;28117:26:0;28090:7;28117:26;;;:19;:26;;;;;;;28032:119;69239:151;;;;;;;;;;-1:-1:-1;69239:151:0;;;;;:::i;:::-;;:::i;65573:1100::-;;;;;;:::i;:::-;;:::i;27780:95::-;;;;;;;;;;-1:-1:-1;27853:14:0;;27780:95;;45963:164;;;;;;;;;;-1:-1:-1;45963:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46084:25:0;;;46060:4;46084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45963:164;69398:126;;;;;;;;;;-1:-1:-1;69398:126:0;;;;;:::i;:::-;;:::i;11517:201::-;;;;;;;;;;-1:-1:-1;11517:201:0;;;;;:::i;:::-;;:::i;56391:224::-;56493:4;-1:-1:-1;;;;;;56517:50:0;;-1:-1:-1;;;56517:50:0;;:90;;;56571:36;56595:11;56571:23;:36::i;:::-;56510:97;56391:224;-1:-1:-1;;56391:224:0:o;43885:100::-;43939:13;43972:5;43965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43885:100;:::o;45444:221::-;45520:7;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;45540:73;;;;-1:-1:-1;;;45540:73:0;;23434:2:1;45540:73:0;;;23416:21:1;23473:2;23453:18;;;23446:30;23512:34;23492:18;;;23485:62;-1:-1:-1;;;23563:18:1;;;23556:42;23615:19;;45540:73:0;;;;;;;;;-1:-1:-1;45633:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45633:24:0;;45444:221::o;62938:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44967:411::-;45048:13;45064:23;45079:7;45064:14;:23::i;:::-;45048:39;;45112:5;-1:-1:-1;;;;;45106:11:0;:2;-1:-1:-1;;;;;45106:11:0;;;45098:57;;;;-1:-1:-1;;;45098:57:0;;25849:2:1;45098:57:0;;;25831:21:1;25888:2;25868:18;;;25861:30;25927:34;25907:18;;;25900:62;-1:-1:-1;;;25978:18:1;;;25971:31;26019:19;;45098:57:0;25821:223:1;45098:57:0;9412:10;-1:-1:-1;;;;;45190:21:0;;;;:62;;-1:-1:-1;45215:37:0;45232:5;9412:10;45963:164;:::i;45215:37::-;45168:168;;;;-1:-1:-1;;;45168:168:0;;21468:2:1;45168:168:0;;;21450:21:1;21507:2;21487:18;;;21480:30;21546:34;21526:18;;;21519:62;21617:26;21597:18;;;21590:54;21661:19;;45168:168:0;21440:246:1;45168:168:0;45349:21;45358:2;45362:7;45349:8;:21::i;:::-;44967:411;;;:::o;29250:566::-;-1:-1:-1;;;;;29326:16:0;;29345:1;29326:16;;;:7;:16;;;;;;29318:71;;;;-1:-1:-1;;;29318:71:0;;;;;;;:::i;:::-;29402:21;29450:15;27853:14;;;27780:95;29450:15;29426:39;;:21;:39;:::i;:::-;29402:63;;29476:15;29494:58;29510:7;29519:13;29534:17;29543:7;-1:-1:-1;;;;;28529:18:0;28502:7;28529:18;;;:9;:18;;;;;;;28446:109;29534:17;29494:15;:58::i;:::-;29476:76;-1:-1:-1;29573:12:0;29565:68;;;;-1:-1:-1;;;29565:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29646:18:0;;;;;;:9;:18;;;;;:29;;29668:7;;29646:18;:29;;29668:7;;29646:29;:::i;:::-;;;;;;;;29704:7;29686:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;29724:35:0;;-1:-1:-1;29742:7:0;29751;29724:17;:35::i;:::-;29775:33;;;-1:-1:-1;;;;;11767:32:1;;11749:51;;11831:2;11816:18;;11809:34;;;29775:33:0;;11722:18:1;29775:33:0;;;;;;;29250:566;;;:::o;46194:339::-;46389:41;9412:10;46422:7;46389:18;:41::i;:::-;46381:103;;;;-1:-1:-1;;;46381:103:0;;;;;;;:::i;:::-;46497:28;46507:4;46513:2;46517:7;46497:9;:28::i;64176:97::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64252:13:::1;::::0;;-1:-1:-1;;64235:30:0;::::1;64252:13:::0;;;;::::1;;;64251:14;64235:30:::0;;::::1;;::::0;;64176:97::o;67714:786::-;67787:11;;;;;;;67779:54;;;;-1:-1:-1;;;67779:54:0;;22714:2:1;67779:54:0;;;22696:21:1;22753:2;22733:18;;;22726:30;22792:32;22772:18;;;22765:60;22842:18;;67779:54:0;22686:180:1;67779:54:0;67862:1;67852:7;:11;67844:52;;;;-1:-1:-1;;;67844:52:0;;28211:2:1;67844:52:0;;;28193:21:1;28250:2;28230:18;;;28223:30;28289;28269:18;;;28262:58;28337:18;;67844:52:0;28183:178:1;67844:52:0;67951:9;;67940:7;67929:8;;:18;;;;:::i;:::-;:31;;67907:117;;;;-1:-1:-1;;;67907:117:0;;;;;;;:::i;:::-;68077:9;68066:7;68057:6;;:16;;;;:::i;:::-;:29;;68035:127;;;;-1:-1:-1;;;68035:127:0;;;;;;;:::i;:::-;68182:6;;;;;;;68181:7;68173:55;;;;-1:-1:-1;;;68173:55:0;;;;;;;:::i;:::-;68239:18;;68268:225;68296:7;68290:3;:13;68268:225;;;68327:21;:9;1083:19;;1101:1;1083:19;;;994:127;68327:21;68376:9;964:14;68363:32;;68410:33;68420:10;68432;68410:9;:33::i;:::-;68469:8;;:12;;68480:1;68469:12;:::i;:::-;68458:8;:23;68305:5;;;;:::i;:::-;;;;68268:225;;56699:256;56796:7;56832:23;56849:5;56832:16;:23::i;:::-;56824:5;:31;56816:87;;;;-1:-1:-1;;;56816:87:0;;14265:2:1;56816:87:0;;;14247:21:1;14304:2;14284:18;;;14277:30;14343:34;14323:18;;;14316:62;-1:-1:-1;;;14394:18:1;;;14387:41;14445:19;;56816:87:0;14237:233:1;56816:87:0;-1:-1:-1;;;;;;56921:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;56699:256::o;46604:185::-;46742:39;46759:4;46765:2;46769:7;46742:39;;;;;;;;;;;;:16;:39::i;69903:333::-;69962:13;;;;69954:60;;;;-1:-1:-1;;;69954:60:0;;15860:2:1;69954:60:0;;;15842:21:1;15899:2;15879:18;;;15872:30;15938:34;15918:18;;;15911:62;-1:-1:-1;;;15989:18:1;;;15982:32;16031:19;;69954:60:0;15832:224:1;69954:60:0;70047:39;70066:10;70078:7;70047:18;:39::i;:::-;70025:144;;;;-1:-1:-1;;;70025:144:0;;13426:2:1;70025:144:0;;;13408:21:1;13465:2;13445:18;;;13438:30;13504:34;13484:18;;;13477:62;13575:25;13555:18;;;13548:53;13618:19;;70025:144:0;13398:245:1;70025:144:0;70180:14;70186:7;70180:5;:14::i;:::-;70227:1;70216:8;;:12;;;;:::i;:::-;70205:8;:23;-1:-1:-1;69903:333:0:o;64088:80::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64154:6:::1;::::0;;-1:-1:-1;;64144:16:0;::::1;64154:6:::0;;;;::::1;;;64153:7;64144:16:::0;;::::1;;::::0;;64088:80::o;30084:641::-;-1:-1:-1;;;;;30166:16:0;;30185:1;30166:16;;;:7;:16;;;;;;30158:71;;;;-1:-1:-1;;;30158:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28117:26:0;;30242:21;28117:26;;;:19;:26;;;;;;30266:30;;-1:-1:-1;;;30266:30:0;;30290:4;30266:30;;;11505:51:1;-1:-1:-1;;;;;30266:15:0;;;;;11478:18:1;;30266:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;30242:77;;30330:15;30348:65;30364:7;30373:13;30388:24;30397:5;30404:7;-1:-1:-1;;;;;28821:21:0;;;28794:7;28821:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;28724:135;30348:65;30330:83;-1:-1:-1;30434:12:0;30426:68;;;;-1:-1:-1;;;30426:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30507:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;30541:7;;30507:21;:41;;30541:7;;30507:41;:::i;:::-;;;;-1:-1:-1;;;;;;;30559:26:0;;;;;;:19;:26;;;;;:37;;30589:7;;30559:26;:37;;30589:7;;30559:37;:::i;:::-;;;;-1:-1:-1;30609:47:0;;-1:-1:-1;30632:5:0;30639:7;30648;30609:22;:47::i;:::-;30672:45;;;-1:-1:-1;;;;;11767:32:1;;;11749:51;;11831:2;11816:18;;11809:34;;;30672:45:0;;;;;11722:18:1;30672:45:0;;;;;;;30084:641;;;;:::o;57221:233::-;57296:7;57332:30;57119:10;:17;;57031:113;57332:30;57324:5;:38;57316:95;;;;-1:-1:-1;;;57316:95:0;;27027:2:1;57316:95:0;;;27009:21:1;27066:2;27046:18;;;27039:30;27105:34;27085:18;;;27078:62;-1:-1:-1;;;27156:18:1;;;27149:42;27208:19;;57316:95:0;26999:234:1;57316:95:0;57429:10;57440:5;57429:17;;;;;;-1:-1:-1;;;57429:17:0;;;;;;;;;;;;;;;;;57422:24;;57221:233;;;:::o;69780:115::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69859:12:::1;:28:::0;69780:115::o;69532:105::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69607:9:::1;:22:::0;69532:105::o;64482:112::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64563:23:::1;:7;64573:13:::0;;64563:23:::1;:::i;64383:91::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64455:11:::1;::::0;;-1:-1:-1;;64440:26:0;::::1;64455:11:::0;;;;::::1;;;64454:12;64440:26:::0;;::::1;;::::0;;64383:91::o;43579:239::-;43651:7;43687:16;;;:7;:16;;;;;;-1:-1:-1;;;;;43687:16:0;43722:19;43714:73;;;;-1:-1:-1;;;43714:73:0;;22304:2:1;43714:73:0;;;22286:21:1;22343:2;22323:18;;;22316:30;22382:34;22362:18;;;22355:62;-1:-1:-1;;;22433:18:1;;;22426:39;22482:19;;43714:73:0;22276:231:1;62910:21:0;;;;;;;:::i;64787:115::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64864:13:::1;:30:::0;;-1:-1:-1;;64864:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64787:115::o;43309:208::-;43381:7;-1:-1:-1;;;;;43409:19:0;;43401:74;;;;-1:-1:-1;;;43401:74:0;;21893:2:1;43401:74:0;;;21875:21:1;21932:2;21912:18;;;21905:30;21971:34;21951:18;;;21944:62;-1:-1:-1;;;22022:18:1;;;22015:40;22072:19;;43401:74:0;21865:232:1;43401:74:0;-1:-1:-1;;;;;;43493:16:0;;;;;:9;:16;;;;;;;43309:208::o;11259:103::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;11324:30:::1;11351:1;11324:18;:30::i;:::-;11259:103::o:0;28950:100::-;29001:7;29028;29036:5;29028:14;;;;;;-1:-1:-1;;;29028:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29028:14:0;;28950:100;-1:-1:-1;;28950:100:0:o;44054:104::-;44110:13;44143:7;44136:14;;;;;:::i;45737:155::-;45832:52;9412:10;45865:8;45875;45832:18;:52::i;:::-;45737:155;;:::o;64710:69::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64756:8:::1;:15:::0;;-1:-1:-1;;64756:15:0::1;;;::::0;;64710:69::o;69645:127::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69730:21:::1;:34:::0;69645:127::o;64912:653::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;65045:9:::1;::::0;65013:8:::1;::::0;:28:::1;::::0;65024:10;;65013:28:::1;:::i;:::-;:41;;64991:133;;;::::0;-1:-1:-1;;;64991:133:0;;24612:2:1;64991:133:0::1;::::0;::::1;24594:21:1::0;24651:2;24631:18;;;24624:30;24690:34;24670:18;;;24663:62;-1:-1:-1;;;24741:18:1;;;24734:40;24791:19;;64991:133:0::1;24584:232:1::0;64991:133:0::1;65137:18;::::0;65166:392:::1;65188:23:::0;;::::1;65166:392;;;65288:1;65261:10:::0;;65272:3;65261:15;;::::1;;;-1:-1:-1::0;;;65261:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;65261:29:0::1;;;65235:137;;;::::0;-1:-1:-1;;;65235:137:0;;19102:2:1;65235:137:0::1;::::0;::::1;19084:21:1::0;19141:2;19121:18;;;19114:30;19180:34;19160:18;;;19153:62;-1:-1:-1;;;19231:18:1;;;19224:44;19285:19;;65235:137:0::1;19074:236:1::0;65235:137:0::1;65387:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;65387:21:::1;65436:9;964:14:::0;65423:32:::1;;65470:38;65480:10;;65491:3;65480:15;;;;;-1:-1:-1::0;;;65480:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65497:10;65470:9;:38::i;:::-;65534:8;::::0;:12:::1;::::0;65545:1:::1;65534:12;:::i;:::-;65523:8;:23:::0;65213:5;::::1;::::0;::::1;:::i;:::-;;;;65166:392;;;;10899:1;64912:653:::0;;:::o;46860:328::-;47035:41;9412:10;47068:7;47035:18;:41::i;:::-;47027:103;;;;-1:-1:-1;;;47027:103:0;;;;;;;:::i;:::-;47141:39;47155:4;47161:2;47165:7;47174:5;47141:13;:39::i;62973:37::-;;;;;;;:::i;68508:723::-;48763:4;48787:16;;;:7;:16;;;;;;68626:13;;-1:-1:-1;;;;;48787:16:0;68657:113;;;;-1:-1:-1;;;68657:113:0;;25433:2:1;68657:113:0;;;25415:21:1;25472:2;25452:18;;;25445:30;25511:34;25491:18;;;25484:62;-1:-1:-1;;;25562:18:1;;;25555:45;25617:19;;68657:113:0;25405:237:1;68657:113:0;68785:8;;;;;;;68781:71;;68826:14;68819:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68508:723;;;:::o;68781:71::-;68864:28;68895:10;:8;:10::i;:::-;68864:41;;68967:1;68942:14;68936:28;:32;:287;;;;;;;;;;;;;;;;;69060:14;69101:18;:7;:16;:18::i;:::-;69146:13;69017:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68936:287;68916:307;68508:723;-1:-1:-1;;;68508:723:0:o;66681:1025::-;66755:12;;;;;;;66747:56;;;;-1:-1:-1;;;66747:56:0;;27440:2:1;66747:56:0;;;27422:21:1;27479:2;27459:18;;;27452:30;27518:33;27498:18;;;27491:61;27569:18;;66747:56:0;27412:181:1;66747:56:0;66823:6;;;;;;;66822:7;66814:55;;;;-1:-1:-1;;;66814:55:0;;;;;;;:::i;:::-;66915:1;66904:7;:12;;66882:108;;;;-1:-1:-1;;;66882:108:0;;;;;;;:::i;:::-;67023:10;67012:22;;;;:10;:22;;;;;;67048:1;;67012:32;;67037:7;;67012:32;:::i;:::-;:37;;67003:97;;;;-1:-1:-1;;;67003:97:0;;;;;;;:::i;:::-;67157:9;;67146:7;67135:8;;:18;;;;:::i;:::-;:31;;67113:117;;;;-1:-1:-1;;;67113:117:0;;;;;;;:::i;:::-;67283:9;67272:7;67263:6;;:16;;;;:::i;:::-;:29;;67241:127;;;;-1:-1:-1;;;67241:127:0;;;;;;;:::i;:::-;67379:18;;67408:291;67436:7;67430:3;:13;67408:291;;;67467:21;:9;1083:19;;1101:1;1083:19;;;994:127;67467:21;67516:9;964:14;67503:32;;67550:33;67560:10;67572;67550:9;:33::i;:::-;67634:10;67623:22;;;;:10;:22;;;;;;:26;;67648:1;67623:26;:::i;:::-;67609:10;67598:22;;;;:10;:22;;;;;:51;67675:8;;:12;;67686:1;67675:12;:::i;:::-;67664:8;:23;67445:5;;;;:::i;:::-;;;;67408:291;;64281:94;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64355:12:::1;::::0;;-1:-1:-1;;64339:28:0;::::1;64355:12:::0;;;;::::1;;;64354:13;64339:28:::0;;::::1;;::::0;;64281:94::o;69239:151::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69349:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;65573:1100::-:0;65668:13;;;;;;;65660:58;;;;-1:-1:-1;;;65660:58:0;;21107:2:1;65660:58:0;;;21089:21:1;;;21126:18;;;21119:30;21185:34;21165:18;;;21158:62;21237:18;;65660:58:0;21079:182:1;65660:58:0;65738:6;;;;;;;65737:7;65729:55;;;;-1:-1:-1;;;65729:55:0;;;;;;;:::i;:::-;65828:1;65817:7;:12;;65795:108;;;;-1:-1:-1;;;65795:108:0;;;;;;;:::i;:::-;65953:10;65936:28;;;;:16;:28;;;;;;65978:1;;65936:38;;65967:7;;65936:38;:::i;:::-;:43;;65914:139;;;;-1:-1:-1;;;65914:139:0;;;;;;;:::i;:::-;66074:33;66089:10;66101:5;66074:14;:33::i;:::-;66066:101;;;;-1:-1:-1;;;66066:101:0;;18678:2:1;66066:101:0;;;18660:21:1;18717:2;18697:18;;;18690:30;18756:34;18736:18;;;18729:62;18827:25;18807:18;;;18800:53;18870:19;;66066:101:0;18650:245:1;66066:101:0;66224:21;;66213:7;66202:8;;:18;;;;:::i;:::-;:43;;66180:129;;;;-1:-1:-1;;;66180:129:0;;;;;;;:::i;:::-;66320:18;;66349:317;66377:7;66371:3;:13;66349:317;;;66408:21;:9;1083:19;;1101:1;1083:19;;;994:127;66408:21;66457:9;964:14;66444:32;;66491:33;66501:10;66513;66491:9;:33::i;:::-;66587:10;66570:28;;;;:16;:28;;;;;;:32;;66601:1;66570:32;:::i;:::-;66556:10;66539:28;;;;:16;:28;;;;;:63;66628:8;;:12;;66639:1;66628:12;:::i;:::-;66617:8;:23;66386:5;;;;:::i;:::-;;;;66349:317;;69398:126;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69484:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;11517:201::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11606:22:0;::::1;11598:73;;;::::0;-1:-1:-1;;;11598:73:0;;15096:2:1;11598:73:0::1;::::0;::::1;15078:21:1::0;15135:2;15115:18;;;15108:30;15174:34;15154:18;;;15147:62;-1:-1:-1;;;15225:18:1;;;15218:36;15271:19;;11598:73:0::1;15068:228:1::0;11598:73:0::1;11682:28;11701:8;11682:18;:28::i;:::-;11517:201:::0;:::o;42940:305::-;43042:4;-1:-1:-1;;;;;;43079:40:0;;-1:-1:-1;;;43079:40:0;;:105;;-1:-1:-1;;;;;;;43136:48:0;;-1:-1:-1;;;43136:48:0;43079:105;:158;;;-1:-1:-1;;;;;;;;;;34745:40:0;;;43201:36;34636:157;52680:174;52755:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52755:29:0;-1:-1:-1;;;;;52755:29:0;;;;;;;;:24;;52809:23;52755:24;52809:14;:23::i;:::-;-1:-1:-1;;;;;52800:46:0;;;;;;;;;;;52680:174;;:::o;30903:248::-;31113:12;;-1:-1:-1;;;;;31093:16:0;;31049:7;31093:16;;;:7;:16;;;;;;31049:7;;31128:15;;31077:32;;:13;:32;:::i;:::-;31076:49;;;;:::i;:::-;:67;;;;:::i;:::-;31069:74;30903:248;-1:-1:-1;;;;30903:248:0:o;14218:317::-;14333:6;14308:21;:31;;14300:73;;;;-1:-1:-1;;;14300:73:0;;19517:2:1;14300:73:0;;;19499:21:1;19556:2;19536:18;;;19529:30;19595:31;19575:18;;;19568:59;19644:18;;14300:73:0;19489:179:1;14300:73:0;14387:12;14405:9;-1:-1:-1;;;;;14405:14:0;14427:6;14405:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14386:52;;;14457:7;14449:78;;;;-1:-1:-1;;;14449:78:0;;18251:2:1;14449:78:0;;;18233:21:1;18290:2;18270:18;;;18263:30;18329:34;18309:18;;;18302:62;18400:28;18380:18;;;18373:56;18446:19;;14449:78:0;18223:248:1;48992:348:0;49085:4;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;49102:73;;;;-1:-1:-1;;;49102:73:0;;20282:2:1;49102:73:0;;;20264:21:1;20321:2;20301:18;;;20294:30;20360:34;20340:18;;;20333:62;-1:-1:-1;;;20411:18:1;;;20404:42;20463:19;;49102:73:0;20254:234:1;49102:73:0;49186:13;49202:23;49217:7;49202:14;:23::i;:::-;49186:39;;49255:5;-1:-1:-1;;;;;49244:16:0;:7;-1:-1:-1;;;;;49244:16:0;;:51;;;;49288:7;-1:-1:-1;;;;;49264:31:0;:20;49276:7;49264:11;:20::i;:::-;-1:-1:-1;;;;;49264:31:0;;49244:51;:87;;;-1:-1:-1;;;;;;46084:25:0;;;46060:4;46084:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49236:96;48992:348;-1:-1:-1;;;;48992:348:0:o;51984:578::-;52143:4;-1:-1:-1;;;;;52116:31:0;:23;52131:7;52116:14;:23::i;:::-;-1:-1:-1;;;;;52116:31:0;;52108:85;;;;-1:-1:-1;;;52108:85:0;;25023:2:1;52108:85:0;;;25005:21:1;25062:2;25042:18;;;25035:30;25101:34;25081:18;;;25074:62;-1:-1:-1;;;25152:18:1;;;25145:39;25201:19;;52108:85:0;24995:231:1;52108:85:0;-1:-1:-1;;;;;52212:16:0;;52204:65;;;;-1:-1:-1;;;52204:65:0;;17075:2:1;52204:65:0;;;17057:21:1;17114:2;17094:18;;;17087:30;17153:34;17133:18;;;17126:62;-1:-1:-1;;;17204:18:1;;;17197:34;17248:19;;52204:65:0;17047:226:1;52204:65:0;52282:39;52303:4;52309:2;52313:7;52282:20;:39::i;:::-;52386:29;52403:1;52407:7;52386:8;:29::i;:::-;-1:-1:-1;;;;;52428:15:0;;;;;;:9;:15;;;;;:20;;52447:1;;52428:15;:20;;52447:1;;52428:20;:::i;:::-;;;;-1:-1:-1;;;;;;;52459:13:0;;;;;;:9;:13;;;;;:18;;52476:1;;52459:13;:18;;52476:1;;52459:18;:::i;:::-;;;;-1:-1:-1;;52488:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;52488:21:0;-1:-1:-1;;;;;52488:21:0;;;;;;;;;52527:27;;52488:16;;52527:27;;;;;;;51984:578;;;:::o;49682:110::-;49758:26;49768:2;49772:7;49758:26;;;;;;;;;;;;:9;:26::i;51287:360::-;51347:13;51363:23;51378:7;51363:14;:23::i;:::-;51347:39;;51399:48;51420:5;51435:1;51439:7;51399:20;:48::i;:::-;51488:29;51505:1;51509:7;51488:8;:29::i;:::-;-1:-1:-1;;;;;51530:16:0;;;;;;:9;:16;;;;;:21;;51550:1;;51530:16;:21;;51550:1;;51530:21;:::i;:::-;;;;-1:-1:-1;;51569:16:0;;;;:7;:16;;;;;;51562:23;;-1:-1:-1;;;;;;51562:23:0;;;51603:36;51577:7;;51569:16;-1:-1:-1;;;;;51603:36:0;;;;;51569:16;;51603:36;51287:360;;:::o;20924:211::-;21068:58;;;-1:-1:-1;;;;;11767:32:1;;21068:58:0;;;11749:51:1;11816:18;;;;11809:34;;;21068:58:0;;;;;;;;;;11722:18:1;;;;21068:58:0;;;;;;;;-1:-1:-1;;;;;21068:58:0;-1:-1:-1;;;21068:58:0;;;21041:86;;21061:5;;21041:19;:86::i;11878:191::-;11971:6;;;-1:-1:-1;;;;;11988:17:0;;;-1:-1:-1;;;;;;11988:17:0;;;;;;;12021:40;;11971:6;;;11988:17;11971:6;;12021:40;;11952:16;;12021:40;11878:191;;:::o;52996:315::-;53151:8;-1:-1:-1;;;;;53142:17:0;:5;-1:-1:-1;;;;;53142:17:0;;;53134:55;;;;-1:-1:-1;;;53134:55:0;;17480:2:1;53134:55:0;;;17462:21:1;17519:2;17499:18;;;17492:30;17558:27;17538:18;;;17531:55;17603:18;;53134:55:0;17452:175:1;53134:55:0;-1:-1:-1;;;;;53200:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53200:46:0;;;;;;;;;;53262:41;;12766::1;;;53262::0;;12739:18:1;53262:41:0;;;;;;;52996:315;;;:::o;48070:::-;48227:28;48237:4;48243:2;48247:7;48227:9;:28::i;:::-;48274:48;48297:4;48303:2;48307:7;48316:5;48274:22;:48::i;:::-;48266:111;;;;-1:-1:-1;;;48266:111:0;;;;;;;:::i;64602:100::-;64654:13;64687:7;64680:14;;;;;:::i;6894:723::-;6950:13;7171:10;7167:53;;-1:-1:-1;;7198:10:0;;;;;;;;;;;;-1:-1:-1;;;7198:10:0;;;;;6894:723::o;7167:53::-;7245:5;7230:12;7286:78;7293:9;;7286:78;;7319:8;;;;:::i;:::-;;-1:-1:-1;7342:10:0;;-1:-1:-1;7350:2:0;7342:10;;:::i;:::-;;;7286:78;;;7374:19;7406:6;7396:17;;;;;;-1:-1:-1;;;7396:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7396:17:0;;7374:39;;7424:154;7431:10;;7424:154;;7458:11;7468:1;7458:11;;:::i;:::-;;-1:-1:-1;7527:10:0;7535:2;7527:5;:10;:::i;:::-;7514:24;;:2;:24;:::i;:::-;7501:39;;7484:6;7491;7484:14;;;;;;-1:-1:-1;;;7484:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;7484:56:0;;;;;;;;-1:-1:-1;7555:11:0;7564:2;7555:11;;:::i;:::-;;;7424:154;;70244:259;70406:25;;-1:-1:-1;;8997:2:1;8993:15;;;8989:53;70406:25:0;;;8977:66:1;70359:4:0;;;;9059:12:1;;70406:25:0;;;;;;;;;;;;70396:36;;;;;;70381:51;;70450:45;70469:5;70476:12;;70490:4;70450:18;:45::i;58067:589::-;-1:-1:-1;;;;;58273:18:0;;58269:187;;58308:40;58340:7;59483:10;:17;;59456:24;;;;:15;:24;;;;;:44;;;59511:24;;;;;;;;;;;;59379:164;58308:40;58269:187;;;58378:2;-1:-1:-1;;;;;58370:10:0;:4;-1:-1:-1;;;;;58370:10:0;;58366:90;;58397:47;58430:4;58436:7;58397:32;:47::i;:::-;-1:-1:-1;;;;;58470:16:0;;58466:183;;58503:45;58540:7;58503:36;:45::i;58466:183::-;58576:4;-1:-1:-1;;;;;58570:10:0;:2;-1:-1:-1;;;;;58570:10:0;;58566:83;;58597:40;58625:2;58629:7;58597:27;:40::i;50019:321::-;50149:18;50155:2;50159:7;50149:5;:18::i;:::-;50200:54;50231:1;50235:2;50239:7;50248:5;50200:22;:54::i;:::-;50178:154;;;;-1:-1:-1;;;50178:154:0;;;;;;;:::i;23497:716::-;23921:23;23947:69;23975:4;23947:69;;;;;;;;;;;;;;;;;23955:5;-1:-1:-1;;;;;23947:27:0;;;:69;;;;;:::i;:::-;24031:17;;23921:95;;-1:-1:-1;24031:21:0;24027:179;;24128:10;24117:30;;;;;;;;;;;;:::i;:::-;24109:85;;;;-1:-1:-1;;;24109:85:0;;27800:2:1;24109:85:0;;;27782:21:1;27839:2;27819:18;;;27812:30;27878:34;27858:18;;;27851:62;-1:-1:-1;;;27929:18:1;;;27922:40;27979:19;;24109:85:0;27772:232:1;53876:799:0;54031:4;-1:-1:-1;;;;;54052:13:0;;13219:20;13267:8;54048:620;;54088:72;;-1:-1:-1;;;54088:72:0;;-1:-1:-1;;;;;54088:36:0;;;;;:72;;9412:10;;54139:4;;54145:7;;54154:5;;54088:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54088:72:0;;;;;;;;-1:-1:-1;;54088:72:0;;;;;;;;;;;;:::i;:::-;;;54084:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54330:13:0;;54326:272;;54373:60;;-1:-1:-1;;;54373:60:0;;;;;;;:::i;54326:272::-;54548:6;54542:13;54533:6;54529:2;54525:15;54518:38;54084:529;-1:-1:-1;;;;;;54211:51:0;-1:-1:-1;;;54211:51:0;;-1:-1:-1;54204:58:0;;54048:620;-1:-1:-1;54652:4:0;53876:799;;;;;;:::o;5269:190::-;5394:4;5447;5418:25;5431:5;5438:4;5418:12;:25::i;:::-;:33;;5269:190;-1:-1:-1;;;;5269:190:0:o;60170:988::-;60436:22;60486:1;60461:22;60478:4;60461:16;:22::i;:::-;:26;;;;:::i;:::-;60498:18;60519:26;;;:17;:26;;;;;;60436:51;;-1:-1:-1;60652:28:0;;;60648:328;;-1:-1:-1;;;;;60719:18:0;;60697:19;60719:18;;;:12;:18;;;;;;;;:34;;;;;;;;;60770:30;;;;;;:44;;;60887:30;;:17;:30;;;;;:43;;;60648:328;-1:-1:-1;61072:26:0;;;;:17;:26;;;;;;;;61065:33;;;-1:-1:-1;;;;;61116:18:0;;;;;:12;:18;;;;;:34;;;;;;;61109:41;60170:988::o;61453:1079::-;61731:10;:17;61706:22;;61731:21;;61751:1;;61731:21;:::i;:::-;61763:18;61784:24;;;:15;:24;;;;;;62157:10;:26;;61706:46;;-1:-1:-1;61784:24:0;;61706:46;;62157:26;;;;-1:-1:-1;;;62157:26:0;;;;;;;;;;;;;;;;;62135:48;;62221:11;62196:10;62207;62196:22;;;;;;-1:-1:-1;;;62196:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;62301:28;;;:15;:28;;;;;;;:41;;;62473:24;;;;;62466:31;62508:10;:16;;;;;-1:-1:-1;;;62508:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;61453:1079;;;;:::o;58957:221::-;59042:14;59059:20;59076:2;59059:16;:20::i;:::-;-1:-1:-1;;;;;59090:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59135:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;58957:221:0:o;50676:382::-;-1:-1:-1;;;;;50756:16:0;;50748:61;;;;-1:-1:-1;;;50748:61:0;;23073:2:1;50748:61:0;;;23055:21:1;;;23092:18;;;23085:30;23151:34;23131:18;;;23124:62;23203:18;;50748:61:0;23045:182:1;50748:61:0;48763:4;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;:30;50820:58;;;;-1:-1:-1;;;50820:58:0;;15503:2:1;50820:58:0;;;15485:21:1;15542:2;15522:18;;;15515:30;15581;15561:18;;;15554:58;15629:18;;50820:58:0;15475:178:1;50820:58:0;50891:45;50920:1;50924:2;50928:7;50891:20;:45::i;:::-;-1:-1:-1;;;;;50949:13:0;;;;;;:9;:13;;;;;:18;;50966:1;;50949:13;:18;;50966:1;;50949:18;:::i;:::-;;;;-1:-1:-1;;50978:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50978:21:0;-1:-1:-1;;;;;50978:21:0;;;;;;;;51017:33;;50978:16;;;51017:33;;50978:16;;51017:33;50676:382;;:::o;15702:229::-;15839:12;15871:52;15893:6;15901:4;15907:1;15910:12;15871:21;:52::i;5821:701::-;5904:7;5947:4;5904:7;5962:523;5986:5;:12;5982:1;:16;5962:523;;;6020:20;6043:5;6049:1;6043:8;;;;;;-1:-1:-1;;;6043:8:0;;;;;;;;;;;;;;;6020:31;;6086:12;6070;:28;6066:408;;6223:44;;;;;;9239:19:1;;;9274:12;;;9267:28;;;9311:12;;6223:44:0;;;;;;;;;;;;6213:55;;;;;;6198:70;;6066:408;;;6413:44;;;;;;9239:19:1;;;9274:12;;;9267:28;;;9311:12;;6413:44:0;;;;;;;;;;;;6403:55;;;;;;6388:70;;6066:408;-1:-1:-1;6000:3:0;;;;:::i;:::-;;;;5962:523;;;-1:-1:-1;6502:12:0;5821:701;-1:-1:-1;;;5821:701:0:o;16822:510::-;16992:12;17050:5;17025:21;:30;;17017:81;;;;-1:-1:-1;;;17017:81:0;;19875:2:1;17017:81:0;;;19857:21:1;19914:2;19894:18;;;19887:30;19953:34;19933:18;;;19926:62;-1:-1:-1;;;20004:18:1;;;19997:36;20050:19;;17017:81:0;19847:228:1;17017:81:0;13219:20;;17109:60;;;;-1:-1:-1;;;17109:60:0;;26669:2:1;17109:60:0;;;26651:21:1;26708:2;26688:18;;;26681:30;26747:31;26727:18;;;26720:59;26796:18;;17109:60:0;26641:179:1;17109:60:0;17183:12;17197:23;17224:6;-1:-1:-1;;;;;17224:11:0;17243:5;17250:4;17224:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17182:73;;;;17273:51;17290:7;17299:10;17311:12;17273:16;:51::i;:::-;17266:58;16822:510;-1:-1:-1;;;;;;;16822:510:0:o;19508:712::-;19658:12;19687:7;19683:530;;;-1:-1:-1;19718:10:0;19711:17;;19683:530;19832:17;;:21;19828:374;;20030:10;20024:17;20091:15;20078:10;20074:2;20070:19;20063:44;19978:148;20173:12;20166:20;;-1:-1:-1;;;20166:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:257::-;484:6;537:2;525:9;516:7;512:23;508:32;505:2;;;558:6;550;543:22;505:2;602:9;589:23;621:31;646:5;621:31;:::i;957:398::-;1025:6;1033;1086:2;1074:9;1065:7;1061:23;1057:32;1054:2;;;1107:6;1099;1092:22;1054:2;1151:9;1138:23;1170:31;1195:5;1170:31;:::i;:::-;1220:5;-1:-1:-1;1277:2:1;1262:18;;1249:32;1290:33;1249:32;1290:33;:::i;:::-;1342:7;1332:17;;;1044:311;;;;;:::o;1360:466::-;1437:6;1445;1453;1506:2;1494:9;1485:7;1481:23;1477:32;1474:2;;;1527:6;1519;1512:22;1474:2;1571:9;1558:23;1590:31;1615:5;1590:31;:::i;:::-;1640:5;-1:-1:-1;1697:2:1;1682:18;;1669:32;1710:33;1669:32;1710:33;:::i;:::-;1464:362;;1762:7;;-1:-1:-1;;;1816:2:1;1801:18;;;;1788:32;;1464:362::o;1831:824::-;1926:6;1934;1942;1950;2003:3;1991:9;1982:7;1978:23;1974:33;1971:2;;;2025:6;2017;2010:22;1971:2;2069:9;2056:23;2088:31;2113:5;2088:31;:::i;:::-;2138:5;-1:-1:-1;2195:2:1;2180:18;;2167:32;2208:33;2167:32;2208:33;:::i;:::-;2260:7;-1:-1:-1;2314:2:1;2299:18;;2286:32;;-1:-1:-1;2369:2:1;2354:18;;2341:32;2396:18;2385:30;;2382:2;;;2433:6;2425;2418:22;2382:2;2461:22;;2514:4;2506:13;;2502:27;-1:-1:-1;2492:2:1;;2548:6;2540;2533:22;2492:2;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1961:694;;;;;;;:::o;2660:392::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:2;;;2807:6;2799;2792:22;2754:2;2851:9;2838:23;2870:31;2895:5;2870:31;:::i;:::-;2920:5;-1:-1:-1;2977:2:1;2962:18;;2949:32;2990:30;2949:32;2990:30;:::i;3057:325::-;3125:6;3133;3186:2;3174:9;3165:7;3161:23;3157:32;3154:2;;;3207:6;3199;3192:22;3154:2;3251:9;3238:23;3270:31;3295:5;3270:31;:::i;:::-;3320:5;3372:2;3357:18;;;;3344:32;;-1:-1:-1;;;3144:238:1:o;3387:665::-;3473:6;3481;3534:2;3522:9;3513:7;3509:23;3505:32;3502:2;;;3555:6;3547;3540:22;3502:2;3600:9;3587:23;3629:18;3670:2;3662:6;3659:14;3656:2;;;3691:6;3683;3676:22;3656:2;3734:6;3723:9;3719:22;3709:32;;3779:7;3772:4;3768:2;3764:13;3760:27;3750:2;;3806:6;3798;3791:22;3750:2;3851;3838:16;3877:2;3869:6;3866:14;3863:2;;;3898:6;3890;3883:22;3863:2;3956:7;3951:2;3941:6;3938:1;3934:14;3930:2;3926:23;3922:32;3919:45;3916:2;;;3982:6;3974;3967:22;3916:2;4018;4010:11;;;;;4040:6;;-1:-1:-1;3492:560:1;;-1:-1:-1;;;;3492:560:1:o;4057:251::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4187:6;4179;4172:22;4134:2;4231:9;4218:23;4250:28;4272:5;4250:28;:::i;4313:255::-;4380:6;4433:2;4421:9;4412:7;4408:23;4404:32;4401:2;;;4454:6;4446;4439:22;4401:2;4491:9;4485:16;4510:28;4532:5;4510:28;:::i;4573:190::-;4632:6;4685:2;4673:9;4664:7;4660:23;4656:32;4653:2;;;4706:6;4698;4691:22;4653:2;-1:-1:-1;4734:23:1;;4643:120;-1:-1:-1;4643:120:1:o;4768:255::-;4826:6;4879:2;4867:9;4858:7;4854:23;4850:32;4847:2;;;4900:6;4892;4885:22;4847:2;4944:9;4931:23;4963:30;4987:5;4963:30;:::i;5028:259::-;5097:6;5150:2;5138:9;5129:7;5125:23;5121:32;5118:2;;;5171:6;5163;5156:22;5118:2;5208:9;5202:16;5227:30;5251:5;5227:30;:::i;5568:412::-;5650:6;5658;5711:2;5699:9;5690:7;5686:23;5682:32;5679:2;;;5732:6;5724;5717:22;5985:642;6056:6;6064;6117:2;6105:9;6096:7;6092:23;6088:32;6085:2;;;6138:6;6130;6123:22;6085:2;6183:9;6170:23;6212:18;6253:2;6245:6;6242:14;6239:2;;;6274:6;6266;6259:22;6239:2;6317:6;6306:9;6302:22;6292:32;;6362:7;6355:4;6351:2;6347:13;6343:27;6333:2;;6389:6;6381;6374:22;6333:2;6434;6421:16;6460:2;6452:6;6449:14;6446:2;;;6481:6;6473;6466:22;6446:2;6531:7;6526:2;6517:6;6513:2;6509:15;6505:24;6502:37;6499:2;;;6557:6;6549;6542:22;6632:480;6701:6;6754:2;6742:9;6733:7;6729:23;6725:32;6722:2;;;6775:6;6767;6760:22;6722:2;6820:9;6807:23;6853:18;6845:6;6842:30;6839:2;;;6890:6;6882;6875:22;6839:2;6918:22;;6971:4;6963:13;;6959:27;-1:-1:-1;6949:2:1;;7005:6;6997;6990:22;6949:2;7033:73;7098:7;7093:2;7080:16;7075:2;7071;7067:11;7033:73;:::i;7312:194::-;7382:6;7435:2;7423:9;7414:7;7410:23;7406:32;7403:2;;;7456:6;7448;7441:22;7403:2;-1:-1:-1;7484:16:1;;7393:113;-1:-1:-1;7393:113:1:o;7511:1070::-;7604:6;7612;7665:2;7653:9;7644:7;7640:23;7636:32;7633:2;;;7686:6;7678;7671:22;7633:2;7727:9;7714:23;7704:33;;7756:2;7809;7798:9;7794:18;7781:32;7832:18;7873:2;7865:6;7862:14;7859:2;;;7894:6;7886;7879:22;7859:2;7937:6;7926:9;7922:22;7912:32;;7982:7;7975:4;7971:2;7967:13;7963:27;7953:2;;8009:6;8001;7994:22;7953:2;8050;8037:16;8072:2;8068;8065:10;8062:2;;;8078:18;;:::i;:::-;8124:2;8121:1;8117:10;8107:20;;8147:28;8171:2;8167;8163:11;8147:28;:::i;:::-;8209:15;;;8240:12;;;;8272:11;;;8302;;;8298:20;;8295:33;-1:-1:-1;8292:2:1;;;8346:6;8338;8331:22;8292:2;8373:6;8364:15;;8388:163;8402:2;8399:1;8396:9;8388:163;;;8459:17;;8447:30;;8420:1;8413:9;;;;;8497:12;;;;8529;;8388:163;;;8392:3;8570:5;8560:15;;;;;;;;7623:958;;;;;:::o;8586:257::-;8627:3;8665:5;8659:12;8692:6;8687:3;8680:19;8708:63;8764:6;8757:4;8752:3;8748:14;8741:4;8734:5;8730:16;8708:63;:::i;:::-;8825:2;8804:15;-1:-1:-1;;8800:29:1;8791:39;;;;8832:4;8787:50;;8635:208;-1:-1:-1;;8635:208:1:o;9334:274::-;9463:3;9501:6;9495:13;9517:53;9563:6;9558:3;9551:4;9543:6;9539:17;9517:53;:::i;:::-;9586:16;;;;;9471:137;-1:-1:-1;;9471:137:1:o;9613:1531::-;9837:3;9875:6;9869:13;9901:4;9914:51;9958:6;9953:3;9948:2;9940:6;9936:15;9914:51;:::i;:::-;10028:13;;9987:16;;;;10050:55;10028:13;9987:16;10072:15;;;10050:55;:::i;:::-;10196:13;;10127:20;;;10167:3;;10256:1;10278:18;;;;10331;;;;10358:2;;10436:4;10426:8;10422:19;10410:31;;10358:2;10499;10489:8;10486:16;10466:18;10463:40;10460:2;;;-1:-1:-1;;;10526:33:1;;10582:4;10579:1;10572:15;10612:4;10533:3;10600:17;10460:2;10643:18;10670:110;;;;10794:1;10789:330;;;;10636:483;;10670:110;-1:-1:-1;;10705:24:1;;10691:39;;10750:20;;;;-1:-1:-1;10670:110:1;;10789:330;28875:4;28894:17;;;28944:4;28928:21;;10884:3;10900:169;10914:8;10911:1;10908:15;10900:169;;;10996:14;;10981:13;;;10974:37;11039:16;;;;10931:10;;10900:169;;;10904:3;;11100:8;11093:5;11089:20;11082:27;;10636:483;-1:-1:-1;11135:3:1;;9845:1299;-1:-1:-1;;;;;;;;;;;9845:1299:1:o;11854:488::-;-1:-1:-1;;;;;12123:15:1;;;12105:34;;12175:15;;12170:2;12155:18;;12148:43;12222:2;12207:18;;12200:34;;;12270:3;12265:2;12250:18;;12243:31;;;12048:4;;12291:45;;12316:19;;12308:6;12291:45;:::i;:::-;12283:53;12057:285;-1:-1:-1;;;;;;12057:285:1:o;13000:219::-;13149:2;13138:9;13131:21;13112:4;13169:44;13209:2;13198:9;13194:18;13186:6;13169:44;:::i;13648:410::-;13850:2;13832:21;;;13889:2;13869:18;;;13862:30;13928:34;13923:2;13908:18;;13901:62;-1:-1:-1;;;13994:2:1;13979:18;;13972:44;14048:3;14033:19;;13822:236::o;14475:414::-;14677:2;14659:21;;;14716:2;14696:18;;;14689:30;14755:34;14750:2;14735:18;;14728:62;-1:-1:-1;;;14821:2:1;14806:18;;14799:48;14879:3;14864:19;;14649:240::o;16061:400::-;16263:2;16245:21;;;16302:2;16282:18;;;16275:30;16341:34;16336:2;16321:18;;16314:62;-1:-1:-1;;;16407:2:1;16392:18;;16385:34;16451:3;16436:19;;16235:226::o;16466:402::-;16668:2;16650:21;;;16707:2;16687:18;;;16680:30;16746:34;16741:2;16726:18;;16719:62;-1:-1:-1;;;16812:2:1;16797:18;;16790:36;16858:3;16843:19;;16640:228::o;17632:412::-;17834:2;17816:21;;;17873:2;17853:18;;;17846:30;17912:34;17907:2;17892:18;;17885:62;-1:-1:-1;;;17978:2:1;17963:18;;17956:46;18034:3;18019:19;;17806:238::o;20493:407::-;20695:2;20677:21;;;20734:2;20714:18;;;20707:30;20773:34;20768:2;20753:18;;20746:62;-1:-1:-1;;;20839:2:1;20824:18;;20817:41;20890:3;20875:19;;20667:233::o;23645:356::-;23847:2;23829:21;;;23866:18;;;23859:30;23925:34;23920:2;23905:18;;23898:62;23992:2;23977:18;;23819:182::o;24006:399::-;24208:2;24190:21;;;24247:2;24227:18;;;24220:30;24286:34;24281:2;24266:18;;24259:62;-1:-1:-1;;;24352:2:1;24337:18;;24330:33;24395:3;24380:19;;24180:225::o;26049:413::-;26251:2;26233:21;;;26290:2;26270:18;;;26263:30;26329:34;26324:2;26309:18;;26302:62;-1:-1:-1;;;26395:2:1;26380:18;;26373:47;26452:3;26437:19;;26223:239::o;28548:275::-;28619:2;28613:9;28684:2;28665:13;;-1:-1:-1;;28661:27:1;28649:40;;28719:18;28704:34;;28740:22;;;28701:62;28698:2;;;28766:18;;:::i;:::-;28802:2;28795:22;28593:230;;-1:-1:-1;28593:230:1:o;28960:128::-;29000:3;29031:1;29027:6;29024:1;29021:13;29018:2;;;29037:18;;:::i;:::-;-1:-1:-1;29073:9:1;;29008:80::o;29093:120::-;29133:1;29159;29149:2;;29164:18;;:::i;:::-;-1:-1:-1;29198:9:1;;29139:74::o;29218:168::-;29258:7;29324:1;29320;29316:6;29312:14;29309:1;29306:21;29301:1;29294:9;29287:17;29283:45;29280:2;;;29331:18;;:::i;:::-;-1:-1:-1;29371:9:1;;29270:116::o;29391:125::-;29431:4;29459:1;29456;29453:8;29450:2;;;29464:18;;:::i;:::-;-1:-1:-1;29501:9:1;;29440:76::o;29521:258::-;29593:1;29603:113;29617:6;29614:1;29611:13;29603:113;;;29693:11;;;29687:18;29674:11;;;29667:39;29639:2;29632:10;29603:113;;;29734:6;29731:1;29728:13;29725:2;;;-1:-1:-1;;29769:1:1;29751:16;;29744:27;29574:205::o;29784:380::-;29863:1;29859:12;;;;29906;;;29927:2;;29981:4;29973:6;29969:17;29959:27;;29927:2;30034;30026:6;30023:14;30003:18;30000:38;29997:2;;;30080:10;30075:3;30071:20;30068:1;30061:31;30115:4;30112:1;30105:15;30143:4;30140:1;30133:15;29997:2;;29839:325;;;:::o;30169:135::-;30208:3;-1:-1:-1;;30229:17:1;;30226:2;;;30249:18;;:::i;:::-;-1:-1:-1;30296:1:1;30285:13;;30216:88::o;30309:112::-;30341:1;30367;30357:2;;30372:18;;:::i;:::-;-1:-1:-1;30406:9:1;;30347:74::o;30426:127::-;30487:10;30482:3;30478:20;30475:1;30468:31;30518:4;30515:1;30508:15;30542:4;30539:1;30532:15;30558:127;30619:10;30614:3;30610:20;30607:1;30600:31;30650:4;30647:1;30640:15;30674:4;30671:1;30664:15;30690:127;30751:10;30746:3;30742:20;30739:1;30732:31;30782:4;30779:1;30772:15;30806:4;30803:1;30796:15;30822:131;-1:-1:-1;;;;;30897:31:1;;30887:42;;30877:2;;30943:1;30940;30933:12;30958:118;31044:5;31037:13;31030:21;31023:5;31020:32;31010:2;;31066:1;31063;31056:12;31081:131;-1:-1:-1;;;;;;31155:32:1;;31145:43;;31135:2;;31202:1;31199;31192:12

Swarm Source

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