ETH Price: $3,004.83 (+4.30%)
Gas: 2 Gwei

Token

Rich Dwarves Tribe (DWARF)
 

Overview

Max Total Supply

4,499 DWARF

Holders

2,973

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
valetta.eth
Balance
1 DWARF
0x3fcf7d00fd269ddb19cddde28846d7c47be33dbe
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RichDwarvesTribe

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

// 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/RichDwarvesTribe.sol



pragma solidity ^0.8.4;






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

    uint256 public maxSupply = 4999;
    uint256 public giftSupply = 3;
    uint256 public totalNFT;
    uint256 public totalMint;

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

    bool public isBurnEnabled = false;
    bool public paused = false;
    bool public revealed = false;
    bool public whitelistState = false;
    bool public presaleState = false;
    bool public publicState = false;

    uint256 presaleAmountLimit = 100;
    mapping(address => uint256) public _presaleClaimed;

    uint256 _price = 200000000000000000; //0.2 ETH

    bytes32 public whitelistRoot;
    bytes32 public presaleRoot;

    Counters.Counter private _tokenIds;

    uint256[] private _teamShares = [50, 50];
    address[] private _team = [
        0x2b81104A9cb4C30b58702580fc142a49941be6E9,
        0xF478E86fBa35DB853E6f569a9143Ed4Bd84a98a6
    ];

    constructor()
        ERC721("Rich Dwarves Tribe", "DWARF")
        PaymentSplitter(_team, _teamShares)
    {}

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

    function changeWhitelistState() public onlyOwner {
        whitelistState = !whitelistState;
    }

    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,
            "Rich Dwarves Tribe: max total supply exceeded"
        );

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

    function whitelistMint(uint256 _amount, bytes32[] memory proof) external payable {
        require(whitelistState, "Rich Dwarves: Presale is OFF");
        require(!paused, "Rich Dwarves Tribe: contract is paused");
        require(
            _amount <= presaleAmountLimit,
            "Rich Dwarves Tribe: You can't mint so much tokens"
        );
        require(
            _presaleClaimed[msg.sender] + _amount <= presaleAmountLimit,
            "Rich Dwarves Tribe: You can't mint so much tokens"
        );

        require(verify(msg.sender, proof), "Rich Dwarves Tribe: You are not selected for the presale");

        require(
            totalMint + _amount <= maxSupply - giftSupply,
            "Rich Dwarves Tribe: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Rich Dwarves Tribe: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + 1;
            totalNFT = totalNFT + 1;
            totalMint = totalMint + 1;
            
        }
    }

    function presaleMint(uint256 _amount) external payable {
        require(presaleState, "Rich Dwarves: Presale is OFF");
        require(!paused, "Rich Dwarves Tribe: contract is paused");
        require(
            _amount <= 3,
            "Rich Dwarves Tribe: You can't mint so much tokens"
        );

        require(
            totalMint + _amount <= maxSupply - giftSupply,
            "Rich Dwarves Tribe: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Rich Dwarves Tribe: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + 1;
            totalNFT = totalNFT + 1;
            totalMint = totalMint + 1;
        }
    }

    function publicMint(uint256 _amount) external payable {
        require(publicState, "Rich Dwarves: Public is OFF");
        require(_amount > 0, "Rich Dwarves Tribe: zero amount");
        require(
            totalMint + _amount <= maxSupply - giftSupply,
            "Rich Dwarves Tribe: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Rich Dwarves Tribe: Ether value sent is not correct"
        );
        require(!paused, "Rich Dwarves Tribe: contract is paused");
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            totalNFT = totalNFT + 1;
            totalMint = totalMint +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 changeWhitelistRoot(bytes32 _whitelistRoot) public onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function changePresaleRoot(bytes32 _presaleRoot) public onlyOwner {
        presaleRoot = _presaleRoot;
    }

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

    function verify(address account, bytes32[] memory proof)
        internal
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, whitelistRoot, 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":"_presaleClaimed","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":"changePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_presaleRoot","type":"bytes32"}],"name":"changePresaleRoot","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":"_whitelistRoot","type":"bytes32"}],"name":"changeWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeWhitelistState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"presaleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

611387601255600360135560c06040526005608081905264173539b7b760d91b60a0908152620000339160189190620005a6565b506019805465ffffffffffff191690556064601a556702c68af0bb140000601c556040805180820190915260328082526020808301919091526200007991600262000635565b5060408051808201909152732b81104a9cb4c30b58702580fc142a49941be6e9815273f478e86fba35db853e6f569a9143ed4bd84a98a66020820152620000c590602190600262000678565b50348015620000d357600080fd5b5060218054806020026020016040519081016040528092919081815260200182805480156200012c57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200010d575b505050505060208054806020026020016040519081016040528092919081815260200182805480156200017f57602002820191906000526020600020905b8154815260200190600101908083116200016a575b5050604080518082018252601281527152696368204477617276657320547269626560701b602080830191825283518085019094526005845264222ba0a92360d91b908401528151919550919350620001dd925060009190620005a6565b508051620001f3906001906020840190620005a6565b505050620002106200020a6200036260201b60201c565b62000366565b8051825114620002825760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002d55760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000279565b60005b82518110156200035957620003448382815181106200030757634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200033057634e487b7160e01b600052603260045260246000fd5b6020026020010151620003b860201b60201c565b8062000350816200073f565b915050620002d8565b50505062000773565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004255760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000279565b60008111620004775760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000279565b6001600160a01b0382166000908152600d602052604090205415620004f35760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000279565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b546200055d908290620006e7565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620005b49062000702565b90600052602060002090601f016020900481019282620005d8576000855562000623565b82601f10620005f357805160ff191683800117855562000623565b8280016001018555821562000623579182015b828111156200062357825182559160200191906001019062000606565b5062000631929150620006d0565b5090565b82805482825590600052602060002090810192821562000623579160200282015b8281111562000623578251829060ff1690559160200191906001019062000656565b82805482825590600052602060002090810192821562000623579160200282015b828111156200062357825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000699565b5b80821115620006315760008155600101620006d1565b60008219821115620006fd57620006fd6200075d565b500190565b600181811c908216806200071757607f821691505b602082108114156200073957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200075657620007566200075d565b5060010190565b634e487b7160e01b600052601160045260246000fd5b613de580620007836000396000f3fe6080604052600436106103a55760003560e01c80636352211e116101e7578063b88d4fde1161010d578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610ad2578063f2c4ce1e14610b1b578063f2fde38b14610b3b578063faaeb1cd14610b5b57600080fd5b8063d5abeb0114610a51578063d79779b214610a67578063da3ef23f14610a9d578063e33b7de314610abd57600080fd5b8063c9b298f1116100dc578063c9b298f1146109e0578063ce7c2ac2146109f3578063d082a3f714610a29578063d2cab05614610a3e57600080fd5b8063b88d4fde1461096b578063c66828621461098b578063c6a7cbc9146109a0578063c87b56dd146109c057600080fd5b80638cc4de1911610185578063a22cb46511610154578063a22cb465146108f3578063a475b5dd14610913578063a5fd7bec14610928578063abfe76141461094857600080fd5b80638cc4de191461085d5780638da5cb5b1461088a57806395d89b41146108a85780639852595c146108bd57600080fd5b806370a08231116101c157806370a08231146107f2578063715018a61461081257806385449697146108275780638b83209b1461083d57600080fd5b80636352211e1461079d5780636c0360eb146107bd5780636e0e5b19146107d257600080fd5b8063386bfc98116102cc57806348b750441161026a57806355f804b31161023957806355f804b31461073357806359a7715a146107535780635c975abb1461076957806360e5bb851461078857600080fd5b806348b75044146106b35780634f6ccce7146106d357806351830227146106f357806352e973261461071357600080fd5b806342842e0e116102a657806342842e0e1461063d5780634293516d1461065d57806342966c681461067e57806346e79ffc1461069e57600080fd5b8063386bfc98146105cc5780633a98ef39146105e2578063406072a9146105f757600080fd5b80630d0c31b7116103445780632254b015116103135780632254b0151461056357806323b872dd146105795780632db11544146105995780632f745c59146105ac57600080fd5b80630d0c31b7146104f75780630e6246341461051957806318160ddd1461052e578063191655871461054357600080fd5b806307ebec271161038057806307ebec271461046e578063081812fc14610488578063081c8c44146104c0578063095ea7b3146104d557600080fd5b8062456379146103f357806301ffc9a71461041c57806306fdde031461044c57600080fd5b366103ee577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ff57600080fd5b5061040960145481565b6040519081526020015b60405180910390f35b34801561042857600080fd5b5061043c610437366004613660565b610b7b565b6040519015158152602001610413565b34801561045857600080fd5b50610461610ba6565b604051610413919061395e565b34801561047a57600080fd5b5060195461043c9060ff1681565b34801561049457600080fd5b506104a86104a3366004613648565b610c38565b6040516001600160a01b039091168152602001610413565b3480156104cc57600080fd5b50610461610cd2565b3480156104e157600080fd5b506104f56104f0366004613575565b610d60565b005b34801561050357600080fd5b5060195461043c90640100000000900460ff1681565b34801561052557600080fd5b506104f5610e76565b34801561053a57600080fd5b50600854610409565b34801561054f57600080fd5b506104f561055e366004613437565b610ec1565b34801561056f57600080fd5b5061040960135481565b34801561058557600080fd5b506104f561059436600461348b565b610fef565b6104f56105a7366004613648565b611020565b3480156105b857600080fd5b506104096105c7366004613575565b6111b9565b3480156105d857600080fd5b50610409601d5481565b3480156105ee57600080fd5b50600b54610409565b34801561060357600080fd5b50610409610612366004613698565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561064957600080fd5b506104f561065836600461348b565b61124f565b34801561066957600080fd5b5060195461043c906301000000900460ff1681565b34801561068a57600080fd5b506104f5610699366004613648565b61126a565b3480156106aa57600080fd5b506104f5611362565b3480156106bf57600080fd5b506104f56106ce366004613698565b6113a9565b3480156106df57600080fd5b506104096106ee366004613648565b611591565b3480156106ff57600080fd5b5060195461043c9062010000900460ff1681565b34801561071f57600080fd5b506104f561072e366004613648565b611632565b34801561073f57600080fd5b506104f561074e3660046136aa565b611661565b34801561075f57600080fd5b5061040960155481565b34801561077557600080fd5b5060195461043c90610100900460ff1681565b34801561079457600080fd5b506104f5611697565b3480156107a957600080fd5b506104a86107b8366004613648565b6116e6565b3480156107c957600080fd5b5061046161175d565b3480156107de57600080fd5b506104f56107ed366004613610565b61176a565b3480156107fe57600080fd5b5061040961080d366004613437565b6117a7565b34801561081e57600080fd5b506104f561182e565b34801561083357600080fd5b50610409601e5481565b34801561084957600080fd5b506104a8610858366004613648565b611864565b34801561086957600080fd5b50610409610878366004613437565b601b6020526000908152604090205481565b34801561089657600080fd5b50600a546001600160a01b03166104a8565b3480156108b457600080fd5b506104616118a2565b3480156108c957600080fd5b506104096108d8366004613437565b6001600160a01b03166000908152600e602052604090205490565b3480156108ff57600080fd5b506104f561090e366004613548565b6118b1565b34801561091f57600080fd5b506104f56118c0565b34801561093457600080fd5b506104f56109433660046135a0565b6118fd565b34801561095457600080fd5b5060195461043c9065010000000000900460ff1681565b34801561097757600080fd5b506104f56109863660046134cb565b611aca565b34801561099757600080fd5b50610461611afc565b3480156109ac57600080fd5b506104f56109bb366004613648565b611b09565b3480156109cc57600080fd5b506104616109db366004613648565b611b38565b6104f56109ee366004613648565b611cb8565b3480156109ff57600080fd5b50610409610a0e366004613437565b6001600160a01b03166000908152600d602052604090205490565b348015610a3557600080fd5b506104f5611e4c565b6104f5610a4c366004613763565b611e99565b348015610a5d57600080fd5b5061040960125481565b348015610a7357600080fd5b50610409610a82366004613437565b6001600160a01b031660009081526010602052604090205490565b348015610aa957600080fd5b506104f5610ab8366004613705565b6120e5565b348015610ac957600080fd5b50600c54610409565b348015610ade57600080fd5b5061043c610aed366004613453565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b2757600080fd5b506104f5610b36366004613705565b612122565b348015610b4757600080fd5b506104f5610b56366004613437565b61215f565b348015610b6757600080fd5b506104f5610b76366004613648565b6121fa565b60006001600160e01b0319821663780e9d6360e01b1480610ba05750610ba082612229565b92915050565b606060008054610bb590613cca565b80601f0160208091040260200160405190810160405280929190818152602001828054610be190613cca565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60178054610cdf90613cca565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90613cca565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b505050505081565b6000610d6b826116e6565b9050806001600160a01b0316836001600160a01b03161415610dd95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610cad565b336001600160a01b0382161480610df55750610df58133610aed565b610e675760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cad565b610e718383612279565b505050565b600a546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610cad90613aa5565b6019805463ff00000019811663010000009182900460ff1615909102179055565b6001600160a01b0381166000908152600d6020526040902054610ef65760405162461bcd60e51b8152600401610cad906139c3565b6000610f01600c5490565b610f0b9047613c3c565b90506000610f388383610f33866001600160a01b03166000908152600e602052604090205490565b6122e7565b905080610f575760405162461bcd60e51b8152600401610cad90613a09565b6001600160a01b0383166000908152600e602052604081208054839290610f7f908490613c3c565b9250508190555080600c6000828254610f989190613c3c565b90915550610fa89050838261232d565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ff93382612446565b6110155760405162461bcd60e51b8152600401610cad90613b73565b610e7183838361253c565b60195465010000000000900460ff1661107b5760405162461bcd60e51b815260206004820152601b60248201527f5269636820447761727665733a205075626c6963206973204f464600000000006044820152606401610cad565b600081116110cb5760405162461bcd60e51b815260206004820152601f60248201527f5269636820447761727665732054726962653a207a65726f20616d6f756e74006044820152606401610cad565b6013546012546110db9190613c87565b816015546110e99190613c3c565b11156111075760405162461bcd60e51b8152600401610cad90613bc4565b3481601c546111169190613c68565b11156111345760405162461bcd60e51b8152600401610cad90613ada565b601954610100900460ff161561115c5760405162461bcd60e51b8152600401610cad90613b2d565b6000805b82811015610e7157611176601f80546001019055565b601f54915061118533836126e7565b601454611193906001613c3c565b6014556015546111a4906001613c3c565b601555806111b181613d05565b915050611160565b60006111c4836117a7565b82106112265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610cad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e7183838360405180602001604052806000815250611aca565b60195460ff166112c85760405162461bcd60e51b8152602060048201526024808201527f5269636820447761727665732054726962653a206275726e696e672064697361604482015263189b195960e21b6064820152608401610cad565b6112d23382612446565b6113445760405162461bcd60e51b815260206004820152603960248201527f5269636820447761727665732054726962653a206275726e2063616c6c65722060448201527f6973206e6f74206f776e6572206e6f7220617070726f766564000000000000006064820152608401610cad565b61134d81612701565b600160145461135c9190613c87565b60145550565b600a546001600160a01b0316331461138c5760405162461bcd60e51b8152600401610cad90613aa5565b6019805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546113de5760405162461bcd60e51b8152600401610cad906139c3565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561143657600080fd5b505afa15801561144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146e919061374b565b6114789190613c3c565b905060006114b18383610f3387876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114d05760405162461bcd60e51b8152600401610cad90613a09565b6001600160a01b03808516600090815260116020908152604080832093871683529290529081208054839290611507908490613c3c565b90915550506001600160a01b03841660009081526010602052604081208054839290611534908490613c3c565b9091555061154590508484836127a8565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061159c60085490565b82106115ff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610cad565b6008828154811061162057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461165c5760405162461bcd60e51b8152600401610cad90613aa5565b601255565b600a546001600160a01b0316331461168b5760405162461bcd60e51b8152600401610cad90613aa5565b610e71601683836132d2565b600a546001600160a01b031633146116c15760405162461bcd60e51b8152600401610cad90613aa5565b6019805465ff0000000000198116650100000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ba05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610cad565b60168054610cdf90613cca565b600a546001600160a01b031633146117945760405162461bcd60e51b8152600401610cad90613aa5565b6019805460ff1916911515919091179055565b60006001600160a01b0382166118125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610cad565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146118585760405162461bcd60e51b8152600401610cad90613aa5565b61186260006127fa565b565b6000600f828154811061188757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610bb590613cca565b6118bc33838361284c565b5050565b600a546001600160a01b031633146118ea5760405162461bcd60e51b8152600401610cad90613aa5565b6019805462ff0000191662010000179055565b600a546001600160a01b031633146119275760405162461bcd60e51b8152600401610cad90613aa5565b601254601454611938908390613c3c565b111561199c5760405162461bcd60e51b815260206004820152602d60248201527f5269636820447761727665732054726962653a206d617820746f74616c20737560448201526c1c1c1b1e48195e18d959591959609a1b6064820152608401610cad565b6000805b82811015611ac45760008484838181106119ca57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119df9190613437565b6001600160a01b03161415611a505760405162461bcd60e51b815260206004820152603160248201527f5269636820447761727665732054726962653a20726563657069656e7420697360448201527020746865206e756c6c206164647265737360781b6064820152608401610cad565b611a5e601f80546001019055565b601f549150611aa1848483818110611a8657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a9b9190613437565b836126e7565b601454611aaf906001613c3c565b60145580611abc81613d05565b9150506119a0565b50505050565b611ad43383612446565b611af05760405162461bcd60e51b8152600401610cad90613b73565b611ac48484848461291b565b60188054610cdf90613cca565b600a546001600160a01b03163314611b335760405162461bcd60e51b8152600401610cad90613aa5565b601d55565b6000818152600260205260409020546060906001600160a01b0316611bb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cad565b60195462010000900460ff16611c595760178054611bd490613cca565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0090613cca565b8015611c4d5780601f10611c2257610100808354040283529160200191611c4d565b820191906000526020600020905b815481529060010190602001808311611c3057829003601f168201915b50505050509050919050565b6000611c6361294e565b90506000815111611c835760405180602001604052806000815250611cb1565b80611c8d8461295d565b6018604051602001611ca19392919061385f565b6040516020818303038152906040525b9392505050565b601954640100000000900460ff16611d125760405162461bcd60e51b815260206004820152601c60248201527f5269636820447761727665733a2050726573616c65206973204f4646000000006044820152606401610cad565b601954610100900460ff1615611d3a5760405162461bcd60e51b8152600401610cad90613b2d565b6003811115611d5b5760405162461bcd60e51b8152600401610cad90613a54565b601354601254611d6b9190613c87565b81601554611d799190613c3c565b1115611d975760405162461bcd60e51b8152600401610cad90613bc4565b3481601c54611da69190613c68565b1115611dc45760405162461bcd60e51b8152600401610cad90613ada565b6000805b82811015610e7157611dde601f80546001019055565b601f549150611ded33836126e7565b336000908152601b6020526040902054611e08906001613c3c565b336000908152601b6020526040902055601454611e26906001613c3c565b601455601554611e37906001613c3c565b60155580611e4481613d05565b915050611dc8565b600a546001600160a01b03163314611e765760405162461bcd60e51b8152600401610cad90613aa5565b6019805464ff000000001981166401000000009182900460ff1615909102179055565b6019546301000000900460ff16611ef25760405162461bcd60e51b815260206004820152601c60248201527f5269636820447761727665733a2050726573616c65206973204f4646000000006044820152606401610cad565b601954610100900460ff1615611f1a5760405162461bcd60e51b8152600401610cad90613b2d565b601a54821115611f3c5760405162461bcd60e51b8152600401610cad90613a54565b601a54336000908152601b6020526040902054611f5a908490613c3c565b1115611f785760405162461bcd60e51b8152600401610cad90613a54565b611f823382612a77565b611ff45760405162461bcd60e51b815260206004820152603860248201527f5269636820447761727665732054726962653a20596f7520617265206e6f742060448201527f73656c656374656420666f72207468652070726573616c6500000000000000006064820152608401610cad565b6013546012546120049190613c87565b826015546120129190613c3c565b11156120305760405162461bcd60e51b8152600401610cad90613bc4565b3482601c5461203f9190613c68565b111561205d5760405162461bcd60e51b8152600401610cad90613ada565b6000805b83811015611ac457612077601f80546001019055565b601f54915061208633836126e7565b336000908152601b60205260409020546120a1906001613c3c565b336000908152601b60205260409020556014546120bf906001613c3c565b6014556015546120d0906001613c3c565b601555806120dd81613d05565b915050612061565b600a546001600160a01b0316331461210f5760405162461bcd60e51b8152600401610cad90613aa5565b80516118bc906018906020840190613356565b600a546001600160a01b0316331461214c5760405162461bcd60e51b8152600401610cad90613aa5565b80516118bc906017906020840190613356565b600a546001600160a01b031633146121895760405162461bcd60e51b8152600401610cad90613aa5565b6001600160a01b0381166121ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cad565b6121f7816127fa565b50565b600a546001600160a01b031633146122245760405162461bcd60e51b8152600401610cad90613aa5565b601e55565b60006001600160e01b031982166380ac58cd60e01b148061225a57506001600160e01b03198216635b5e139f60e01b145b80610ba057506301ffc9a760e01b6001600160e01b0319831614610ba0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122ae826116e6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916123119086613c68565b61231b9190613c54565b6123259190613c87565b949350505050565b8047101561237d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cad565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123ca576040519150601f19603f3d011682016040523d82523d6000602084013e6123cf565b606091505b5050905080610e715760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cad565b6000818152600260205260408120546001600160a01b03166124bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cad565b60006124ca836116e6565b9050806001600160a01b0316846001600160a01b031614806125055750836001600160a01b03166124fa84610c38565b6001600160a01b0316145b8061232557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b031661254f826116e6565b6001600160a01b0316146125b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610cad565b6001600160a01b0382166126195760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cad565b612624838383612ac0565b61262f600082612279565b6001600160a01b0383166000908152600360205260408120805460019290612658908490613c87565b90915550506001600160a01b0382166000908152600360205260408120805460019290612686908490613c3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118bc828260405180602001604052806000815250612b78565b600061270c826116e6565b905061271a81600084612ac0565b612725600083612279565b6001600160a01b038116600090815260036020526040812080546001929061274e908490613c87565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e71908490612bab565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156128ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cad565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61292684848461253c565b61293284848484612c7d565b611ac45760405162461bcd60e51b8152600401610cad90613971565b606060168054610bb590613cca565b6060816129815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129ab578061299581613d05565b91506129a49050600a83613c54565b9150612985565b60008167ffffffffffffffff8111156129d457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129fe576020820181803683370190505b5090505b841561232557612a13600183613c87565b9150612a20600a86613d20565b612a2b906030613c3c565b60f81b818381518110612a4e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a70600a86613c54565b9450612a02565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905061232583601d5483612d8a565b6001600160a01b038316612b1b57612b1681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b3e565b816001600160a01b0316836001600160a01b031614612b3e57612b3e8382612da0565b6001600160a01b038216612b5557610e7181612e3d565b826001600160a01b0316826001600160a01b031614610e7157610e718282612f16565b612b828383612f5a565b612b8f6000848484612c7d565b610e715760405162461bcd60e51b8152600401610cad90613971565b6000612c00826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130a89092919063ffffffff16565b805190915015610e715780806020019051810190612c1e919061362c565b610e715760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610cad565b60006001600160a01b0384163b15612d7f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cc1903390899088908890600401613921565b602060405180830381600087803b158015612cdb57600080fd5b505af1925050508015612d0b575060408051601f3d908101601f19168201909252612d089181019061367c565b60015b612d65573d808015612d39576040519150601f19603f3d011682016040523d82523d6000602084013e612d3e565b606091505b508051612d5d5760405162461bcd60e51b8152600401610cad90613971565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612325565b506001949350505050565b600082612d9785846130b7565b14949350505050565b60006001612dad846117a7565b612db79190613c87565b600083815260076020526040902054909150808214612e0a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e4f90600190613c87565b60008381526009602052604081205460088054939450909284908110612e8557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612eb457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612efa57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f21836117a7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612fb05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cad565b6000818152600260205260409020546001600160a01b0316156130155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610cad565b61302160008383612ac0565b6001600160a01b038216600090815260036020526040812080546001929061304a908490613c3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606123258484600085613171565b600081815b84518110156131695760008582815181106130e757634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311613129576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613156565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061316181613d05565b9150506130bc565b509392505050565b6060824710156131d25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610cad565b843b6132205760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610cad565b600080866001600160a01b0316858760405161323c9190613843565b60006040518083038185875af1925050503d8060008114613279576040519150601f19603f3d011682016040523d82523d6000602084013e61327e565b606091505b509150915061328e828286613299565b979650505050505050565b606083156132a8575081611cb1565b8251156132b85782518084602001fd5b8160405162461bcd60e51b8152600401610cad919061395e565b8280546132de90613cca565b90600052602060002090601f0160209004810192826133005760008555613346565b82601f106133195782800160ff19823516178555613346565b82800160010185558215613346579182015b8281111561334657823582559160200191906001019061332b565b506133529291506133ca565b5090565b82805461336290613cca565b90600052602060002090601f0160209004810192826133845760008555613346565b82601f1061339d57805160ff1916838001178555613346565b82800160010185558215613346579182015b828111156133465782518255916020019190600101906133af565b5b8082111561335257600081556001016133cb565b600067ffffffffffffffff8311156133f9576133f9613d60565b61340c601f8401601f1916602001613c0b565b905082815283838301111561342057600080fd5b828260208301376000602084830101529392505050565b600060208284031215613448578081fd5b8135611cb181613d76565b60008060408385031215613465578081fd5b823561347081613d76565b9150602083013561348081613d76565b809150509250929050565b60008060006060848603121561349f578081fd5b83356134aa81613d76565b925060208401356134ba81613d76565b929592945050506040919091013590565b600080600080608085870312156134e0578081fd5b84356134eb81613d76565b935060208501356134fb81613d76565b925060408501359150606085013567ffffffffffffffff81111561351d578182fd5b8501601f8101871361352d578182fd5b61353c878235602084016133df565b91505092959194509250565b6000806040838503121561355a578182fd5b823561356581613d76565b9150602083013561348081613d8b565b60008060408385031215613587578182fd5b823561359281613d76565b946020939093013593505050565b600080602083850312156135b2578081fd5b823567ffffffffffffffff808211156135c9578283fd5b818501915085601f8301126135dc578283fd5b8135818111156135ea578384fd5b8660208260051b85010111156135fe578384fd5b60209290920196919550909350505050565b600060208284031215613621578081fd5b8135611cb181613d8b565b60006020828403121561363d578081fd5b8151611cb181613d8b565b600060208284031215613659578081fd5b5035919050565b600060208284031215613671578081fd5b8135611cb181613d99565b60006020828403121561368d578081fd5b8151611cb181613d99565b60008060408385031215613465578182fd5b600080602083850312156136bc578182fd5b823567ffffffffffffffff808211156136d3578384fd5b818501915085601f8301126136e6578384fd5b8135818111156136f4578485fd5b8660208285010111156135fe578485fd5b600060208284031215613716578081fd5b813567ffffffffffffffff81111561372c578182fd5b8201601f8101841361373c578182fd5b612325848235602084016133df565b60006020828403121561375c578081fd5b5051919050565b60008060408385031215613775578182fd5b8235915060208084013567ffffffffffffffff80821115613794578384fd5b818601915086601f8301126137a7578384fd5b8135818111156137b9576137b9613d60565b8060051b91506137ca848301613c0b565b8181528481019084860184860187018b10156137e4578788fd5b8795505b838610156138065780358352600195909501949186019186016137e8565b508096505050505050509250929050565b6000815180845261382f816020860160208601613c9e565b601f01601f19169290920160200192915050565b60008251613855818460208701613c9e565b9190910192915050565b6000845160206138728285838a01613c9e565b8551918401916138858184848a01613c9e565b85549201918390600181811c90808316806138a157607f831692505b8583108114156138bf57634e487b7160e01b88526022600452602488fd5b8080156138d357600181146138e457613910565b60ff19851688528388019550613910565b60008b815260209020895b858110156139085781548a8201529084019088016138ef565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061395490830184613817565b9695505050505050565b602081526000611cb16020830184613817565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526031908201527f5269636820447761727665732054726962653a20596f752063616e2774206d696040820152706e7420736f206d75636820746f6b656e7360781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f5269636820447761727665732054726962653a2045746865722076616c7565206040820152721cd95b9d081a5cc81b9bdd0818dbdc9c9958dd606a1b606082015260800190565b60208082526026908201527f5269636820447761727665732054726962653a20636f6e7472616374206973206040820152651c185d5cd95960d21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f5269636820447761727665732054726962653a206d617820737570706c7920656040820152661e18d95959195960ca1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c3457613c34613d60565b604052919050565b60008219821115613c4f57613c4f613d34565b500190565b600082613c6357613c63613d4a565b500490565b6000816000190483118215151615613c8257613c82613d34565b500290565b600082821015613c9957613c99613d34565b500390565b60005b83811015613cb9578181015183820152602001613ca1565b83811115611ac45750506000910152565b600181811c90821680613cde57607f821691505b60208210811415613cff57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d1957613d19613d34565b5060010190565b600082613d2f57613d2f613d4a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146121f757600080fd5b80151581146121f757600080fd5b6001600160e01b0319811681146121f757600080fdfea264697066735822122072fbfc9ec03e3d99d4987c7b534a4fb5699ed660a4aa42d2a8a7a4766f763ca964736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103a55760003560e01c80636352211e116101e7578063b88d4fde1161010d578063d5abeb01116100a0578063e985e9c51161006f578063e985e9c514610ad2578063f2c4ce1e14610b1b578063f2fde38b14610b3b578063faaeb1cd14610b5b57600080fd5b8063d5abeb0114610a51578063d79779b214610a67578063da3ef23f14610a9d578063e33b7de314610abd57600080fd5b8063c9b298f1116100dc578063c9b298f1146109e0578063ce7c2ac2146109f3578063d082a3f714610a29578063d2cab05614610a3e57600080fd5b8063b88d4fde1461096b578063c66828621461098b578063c6a7cbc9146109a0578063c87b56dd146109c057600080fd5b80638cc4de1911610185578063a22cb46511610154578063a22cb465146108f3578063a475b5dd14610913578063a5fd7bec14610928578063abfe76141461094857600080fd5b80638cc4de191461085d5780638da5cb5b1461088a57806395d89b41146108a85780639852595c146108bd57600080fd5b806370a08231116101c157806370a08231146107f2578063715018a61461081257806385449697146108275780638b83209b1461083d57600080fd5b80636352211e1461079d5780636c0360eb146107bd5780636e0e5b19146107d257600080fd5b8063386bfc98116102cc57806348b750441161026a57806355f804b31161023957806355f804b31461073357806359a7715a146107535780635c975abb1461076957806360e5bb851461078857600080fd5b806348b75044146106b35780634f6ccce7146106d357806351830227146106f357806352e973261461071357600080fd5b806342842e0e116102a657806342842e0e1461063d5780634293516d1461065d57806342966c681461067e57806346e79ffc1461069e57600080fd5b8063386bfc98146105cc5780633a98ef39146105e2578063406072a9146105f757600080fd5b80630d0c31b7116103445780632254b015116103135780632254b0151461056357806323b872dd146105795780632db11544146105995780632f745c59146105ac57600080fd5b80630d0c31b7146104f75780630e6246341461051957806318160ddd1461052e578063191655871461054357600080fd5b806307ebec271161038057806307ebec271461046e578063081812fc14610488578063081c8c44146104c0578063095ea7b3146104d557600080fd5b8062456379146103f357806301ffc9a71461041c57806306fdde031461044c57600080fd5b366103ee577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ff57600080fd5b5061040960145481565b6040519081526020015b60405180910390f35b34801561042857600080fd5b5061043c610437366004613660565b610b7b565b6040519015158152602001610413565b34801561045857600080fd5b50610461610ba6565b604051610413919061395e565b34801561047a57600080fd5b5060195461043c9060ff1681565b34801561049457600080fd5b506104a86104a3366004613648565b610c38565b6040516001600160a01b039091168152602001610413565b3480156104cc57600080fd5b50610461610cd2565b3480156104e157600080fd5b506104f56104f0366004613575565b610d60565b005b34801561050357600080fd5b5060195461043c90640100000000900460ff1681565b34801561052557600080fd5b506104f5610e76565b34801561053a57600080fd5b50600854610409565b34801561054f57600080fd5b506104f561055e366004613437565b610ec1565b34801561056f57600080fd5b5061040960135481565b34801561058557600080fd5b506104f561059436600461348b565b610fef565b6104f56105a7366004613648565b611020565b3480156105b857600080fd5b506104096105c7366004613575565b6111b9565b3480156105d857600080fd5b50610409601d5481565b3480156105ee57600080fd5b50600b54610409565b34801561060357600080fd5b50610409610612366004613698565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561064957600080fd5b506104f561065836600461348b565b61124f565b34801561066957600080fd5b5060195461043c906301000000900460ff1681565b34801561068a57600080fd5b506104f5610699366004613648565b61126a565b3480156106aa57600080fd5b506104f5611362565b3480156106bf57600080fd5b506104f56106ce366004613698565b6113a9565b3480156106df57600080fd5b506104096106ee366004613648565b611591565b3480156106ff57600080fd5b5060195461043c9062010000900460ff1681565b34801561071f57600080fd5b506104f561072e366004613648565b611632565b34801561073f57600080fd5b506104f561074e3660046136aa565b611661565b34801561075f57600080fd5b5061040960155481565b34801561077557600080fd5b5060195461043c90610100900460ff1681565b34801561079457600080fd5b506104f5611697565b3480156107a957600080fd5b506104a86107b8366004613648565b6116e6565b3480156107c957600080fd5b5061046161175d565b3480156107de57600080fd5b506104f56107ed366004613610565b61176a565b3480156107fe57600080fd5b5061040961080d366004613437565b6117a7565b34801561081e57600080fd5b506104f561182e565b34801561083357600080fd5b50610409601e5481565b34801561084957600080fd5b506104a8610858366004613648565b611864565b34801561086957600080fd5b50610409610878366004613437565b601b6020526000908152604090205481565b34801561089657600080fd5b50600a546001600160a01b03166104a8565b3480156108b457600080fd5b506104616118a2565b3480156108c957600080fd5b506104096108d8366004613437565b6001600160a01b03166000908152600e602052604090205490565b3480156108ff57600080fd5b506104f561090e366004613548565b6118b1565b34801561091f57600080fd5b506104f56118c0565b34801561093457600080fd5b506104f56109433660046135a0565b6118fd565b34801561095457600080fd5b5060195461043c9065010000000000900460ff1681565b34801561097757600080fd5b506104f56109863660046134cb565b611aca565b34801561099757600080fd5b50610461611afc565b3480156109ac57600080fd5b506104f56109bb366004613648565b611b09565b3480156109cc57600080fd5b506104616109db366004613648565b611b38565b6104f56109ee366004613648565b611cb8565b3480156109ff57600080fd5b50610409610a0e366004613437565b6001600160a01b03166000908152600d602052604090205490565b348015610a3557600080fd5b506104f5611e4c565b6104f5610a4c366004613763565b611e99565b348015610a5d57600080fd5b5061040960125481565b348015610a7357600080fd5b50610409610a82366004613437565b6001600160a01b031660009081526010602052604090205490565b348015610aa957600080fd5b506104f5610ab8366004613705565b6120e5565b348015610ac957600080fd5b50600c54610409565b348015610ade57600080fd5b5061043c610aed366004613453565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b2757600080fd5b506104f5610b36366004613705565b612122565b348015610b4757600080fd5b506104f5610b56366004613437565b61215f565b348015610b6757600080fd5b506104f5610b76366004613648565b6121fa565b60006001600160e01b0319821663780e9d6360e01b1480610ba05750610ba082612229565b92915050565b606060008054610bb590613cca565b80601f0160208091040260200160405190810160405280929190818152602001828054610be190613cca565b8015610c2e5780601f10610c0357610100808354040283529160200191610c2e565b820191906000526020600020905b815481529060010190602001808311610c1157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610cb65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60178054610cdf90613cca565b80601f0160208091040260200160405190810160405280929190818152602001828054610d0b90613cca565b8015610d585780601f10610d2d57610100808354040283529160200191610d58565b820191906000526020600020905b815481529060010190602001808311610d3b57829003601f168201915b505050505081565b6000610d6b826116e6565b9050806001600160a01b0316836001600160a01b03161415610dd95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610cad565b336001600160a01b0382161480610df55750610df58133610aed565b610e675760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610cad565b610e718383612279565b505050565b600a546001600160a01b03163314610ea05760405162461bcd60e51b8152600401610cad90613aa5565b6019805463ff00000019811663010000009182900460ff1615909102179055565b6001600160a01b0381166000908152600d6020526040902054610ef65760405162461bcd60e51b8152600401610cad906139c3565b6000610f01600c5490565b610f0b9047613c3c565b90506000610f388383610f33866001600160a01b03166000908152600e602052604090205490565b6122e7565b905080610f575760405162461bcd60e51b8152600401610cad90613a09565b6001600160a01b0383166000908152600e602052604081208054839290610f7f908490613c3c565b9250508190555080600c6000828254610f989190613c3c565b90915550610fa89050838261232d565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ff93382612446565b6110155760405162461bcd60e51b8152600401610cad90613b73565b610e7183838361253c565b60195465010000000000900460ff1661107b5760405162461bcd60e51b815260206004820152601b60248201527f5269636820447761727665733a205075626c6963206973204f464600000000006044820152606401610cad565b600081116110cb5760405162461bcd60e51b815260206004820152601f60248201527f5269636820447761727665732054726962653a207a65726f20616d6f756e74006044820152606401610cad565b6013546012546110db9190613c87565b816015546110e99190613c3c565b11156111075760405162461bcd60e51b8152600401610cad90613bc4565b3481601c546111169190613c68565b11156111345760405162461bcd60e51b8152600401610cad90613ada565b601954610100900460ff161561115c5760405162461bcd60e51b8152600401610cad90613b2d565b6000805b82811015610e7157611176601f80546001019055565b601f54915061118533836126e7565b601454611193906001613c3c565b6014556015546111a4906001613c3c565b601555806111b181613d05565b915050611160565b60006111c4836117a7565b82106112265760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610cad565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e7183838360405180602001604052806000815250611aca565b60195460ff166112c85760405162461bcd60e51b8152602060048201526024808201527f5269636820447761727665732054726962653a206275726e696e672064697361604482015263189b195960e21b6064820152608401610cad565b6112d23382612446565b6113445760405162461bcd60e51b815260206004820152603960248201527f5269636820447761727665732054726962653a206275726e2063616c6c65722060448201527f6973206e6f74206f776e6572206e6f7220617070726f766564000000000000006064820152608401610cad565b61134d81612701565b600160145461135c9190613c87565b60145550565b600a546001600160a01b0316331461138c5760405162461bcd60e51b8152600401610cad90613aa5565b6019805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546113de5760405162461bcd60e51b8152600401610cad906139c3565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561143657600080fd5b505afa15801561144a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146e919061374b565b6114789190613c3c565b905060006114b18383610f3387876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114d05760405162461bcd60e51b8152600401610cad90613a09565b6001600160a01b03808516600090815260116020908152604080832093871683529290529081208054839290611507908490613c3c565b90915550506001600160a01b03841660009081526010602052604081208054839290611534908490613c3c565b9091555061154590508484836127a8565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061159c60085490565b82106115ff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610cad565b6008828154811061162057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b0316331461165c5760405162461bcd60e51b8152600401610cad90613aa5565b601255565b600a546001600160a01b0316331461168b5760405162461bcd60e51b8152600401610cad90613aa5565b610e71601683836132d2565b600a546001600160a01b031633146116c15760405162461bcd60e51b8152600401610cad90613aa5565b6019805465ff0000000000198116650100000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ba05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610cad565b60168054610cdf90613cca565b600a546001600160a01b031633146117945760405162461bcd60e51b8152600401610cad90613aa5565b6019805460ff1916911515919091179055565b60006001600160a01b0382166118125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610cad565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146118585760405162461bcd60e51b8152600401610cad90613aa5565b61186260006127fa565b565b6000600f828154811061188757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610bb590613cca565b6118bc33838361284c565b5050565b600a546001600160a01b031633146118ea5760405162461bcd60e51b8152600401610cad90613aa5565b6019805462ff0000191662010000179055565b600a546001600160a01b031633146119275760405162461bcd60e51b8152600401610cad90613aa5565b601254601454611938908390613c3c565b111561199c5760405162461bcd60e51b815260206004820152602d60248201527f5269636820447761727665732054726962653a206d617820746f74616c20737560448201526c1c1c1b1e48195e18d959591959609a1b6064820152608401610cad565b6000805b82811015611ac45760008484838181106119ca57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119df9190613437565b6001600160a01b03161415611a505760405162461bcd60e51b815260206004820152603160248201527f5269636820447761727665732054726962653a20726563657069656e7420697360448201527020746865206e756c6c206164647265737360781b6064820152608401610cad565b611a5e601f80546001019055565b601f549150611aa1848483818110611a8657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a9b9190613437565b836126e7565b601454611aaf906001613c3c565b60145580611abc81613d05565b9150506119a0565b50505050565b611ad43383612446565b611af05760405162461bcd60e51b8152600401610cad90613b73565b611ac48484848461291b565b60188054610cdf90613cca565b600a546001600160a01b03163314611b335760405162461bcd60e51b8152600401610cad90613aa5565b601d55565b6000818152600260205260409020546060906001600160a01b0316611bb75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610cad565b60195462010000900460ff16611c595760178054611bd490613cca565b80601f0160208091040260200160405190810160405280929190818152602001828054611c0090613cca565b8015611c4d5780601f10611c2257610100808354040283529160200191611c4d565b820191906000526020600020905b815481529060010190602001808311611c3057829003601f168201915b50505050509050919050565b6000611c6361294e565b90506000815111611c835760405180602001604052806000815250611cb1565b80611c8d8461295d565b6018604051602001611ca19392919061385f565b6040516020818303038152906040525b9392505050565b601954640100000000900460ff16611d125760405162461bcd60e51b815260206004820152601c60248201527f5269636820447761727665733a2050726573616c65206973204f4646000000006044820152606401610cad565b601954610100900460ff1615611d3a5760405162461bcd60e51b8152600401610cad90613b2d565b6003811115611d5b5760405162461bcd60e51b8152600401610cad90613a54565b601354601254611d6b9190613c87565b81601554611d799190613c3c565b1115611d975760405162461bcd60e51b8152600401610cad90613bc4565b3481601c54611da69190613c68565b1115611dc45760405162461bcd60e51b8152600401610cad90613ada565b6000805b82811015610e7157611dde601f80546001019055565b601f549150611ded33836126e7565b336000908152601b6020526040902054611e08906001613c3c565b336000908152601b6020526040902055601454611e26906001613c3c565b601455601554611e37906001613c3c565b60155580611e4481613d05565b915050611dc8565b600a546001600160a01b03163314611e765760405162461bcd60e51b8152600401610cad90613aa5565b6019805464ff000000001981166401000000009182900460ff1615909102179055565b6019546301000000900460ff16611ef25760405162461bcd60e51b815260206004820152601c60248201527f5269636820447761727665733a2050726573616c65206973204f4646000000006044820152606401610cad565b601954610100900460ff1615611f1a5760405162461bcd60e51b8152600401610cad90613b2d565b601a54821115611f3c5760405162461bcd60e51b8152600401610cad90613a54565b601a54336000908152601b6020526040902054611f5a908490613c3c565b1115611f785760405162461bcd60e51b8152600401610cad90613a54565b611f823382612a77565b611ff45760405162461bcd60e51b815260206004820152603860248201527f5269636820447761727665732054726962653a20596f7520617265206e6f742060448201527f73656c656374656420666f72207468652070726573616c6500000000000000006064820152608401610cad565b6013546012546120049190613c87565b826015546120129190613c3c565b11156120305760405162461bcd60e51b8152600401610cad90613bc4565b3482601c5461203f9190613c68565b111561205d5760405162461bcd60e51b8152600401610cad90613ada565b6000805b83811015611ac457612077601f80546001019055565b601f54915061208633836126e7565b336000908152601b60205260409020546120a1906001613c3c565b336000908152601b60205260409020556014546120bf906001613c3c565b6014556015546120d0906001613c3c565b601555806120dd81613d05565b915050612061565b600a546001600160a01b0316331461210f5760405162461bcd60e51b8152600401610cad90613aa5565b80516118bc906018906020840190613356565b600a546001600160a01b0316331461214c5760405162461bcd60e51b8152600401610cad90613aa5565b80516118bc906017906020840190613356565b600a546001600160a01b031633146121895760405162461bcd60e51b8152600401610cad90613aa5565b6001600160a01b0381166121ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cad565b6121f7816127fa565b50565b600a546001600160a01b031633146122245760405162461bcd60e51b8152600401610cad90613aa5565b601e55565b60006001600160e01b031982166380ac58cd60e01b148061225a57506001600160e01b03198216635b5e139f60e01b145b80610ba057506301ffc9a760e01b6001600160e01b0319831614610ba0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122ae826116e6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916123119086613c68565b61231b9190613c54565b6123259190613c87565b949350505050565b8047101561237d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610cad565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123ca576040519150601f19603f3d011682016040523d82523d6000602084013e6123cf565b606091505b5050905080610e715760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610cad565b6000818152600260205260408120546001600160a01b03166124bf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610cad565b60006124ca836116e6565b9050806001600160a01b0316846001600160a01b031614806125055750836001600160a01b03166124fa84610c38565b6001600160a01b0316145b8061232557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b031661254f826116e6565b6001600160a01b0316146125b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610cad565b6001600160a01b0382166126195760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610cad565b612624838383612ac0565b61262f600082612279565b6001600160a01b0383166000908152600360205260408120805460019290612658908490613c87565b90915550506001600160a01b0382166000908152600360205260408120805460019290612686908490613c3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118bc828260405180602001604052806000815250612b78565b600061270c826116e6565b905061271a81600084612ac0565b612725600083612279565b6001600160a01b038116600090815260036020526040812080546001929061274e908490613c87565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e71908490612bab565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156128ae5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610cad565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61292684848461253c565b61293284848484612c7d565b611ac45760405162461bcd60e51b8152600401610cad90613971565b606060168054610bb590613cca565b6060816129815750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129ab578061299581613d05565b91506129a49050600a83613c54565b9150612985565b60008167ffffffffffffffff8111156129d457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129fe576020820181803683370190505b5090505b841561232557612a13600183613c87565b9150612a20600a86613d20565b612a2b906030613c3c565b60f81b818381518110612a4e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a70600a86613c54565b9450612a02565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905061232583601d5483612d8a565b6001600160a01b038316612b1b57612b1681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b3e565b816001600160a01b0316836001600160a01b031614612b3e57612b3e8382612da0565b6001600160a01b038216612b5557610e7181612e3d565b826001600160a01b0316826001600160a01b031614610e7157610e718282612f16565b612b828383612f5a565b612b8f6000848484612c7d565b610e715760405162461bcd60e51b8152600401610cad90613971565b6000612c00826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130a89092919063ffffffff16565b805190915015610e715780806020019051810190612c1e919061362c565b610e715760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610cad565b60006001600160a01b0384163b15612d7f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cc1903390899088908890600401613921565b602060405180830381600087803b158015612cdb57600080fd5b505af1925050508015612d0b575060408051601f3d908101601f19168201909252612d089181019061367c565b60015b612d65573d808015612d39576040519150601f19603f3d011682016040523d82523d6000602084013e612d3e565b606091505b508051612d5d5760405162461bcd60e51b8152600401610cad90613971565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612325565b506001949350505050565b600082612d9785846130b7565b14949350505050565b60006001612dad846117a7565b612db79190613c87565b600083815260076020526040902054909150808214612e0a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e4f90600190613c87565b60008381526009602052604081205460088054939450909284908110612e8557634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612eb457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612efa57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f21836117a7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612fb05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610cad565b6000818152600260205260409020546001600160a01b0316156130155760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610cad565b61302160008383612ac0565b6001600160a01b038216600090815260036020526040812080546001929061304a908490613c3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606123258484600085613171565b600081815b84518110156131695760008582815181106130e757634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311613129576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250613156565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061316181613d05565b9150506130bc565b509392505050565b6060824710156131d25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610cad565b843b6132205760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610cad565b600080866001600160a01b0316858760405161323c9190613843565b60006040518083038185875af1925050503d8060008114613279576040519150601f19603f3d011682016040523d82523d6000602084013e61327e565b606091505b509150915061328e828286613299565b979650505050505050565b606083156132a8575081611cb1565b8251156132b85782518084602001fd5b8160405162461bcd60e51b8152600401610cad919061395e565b8280546132de90613cca565b90600052602060002090601f0160209004810192826133005760008555613346565b82601f106133195782800160ff19823516178555613346565b82800160010185558215613346579182015b8281111561334657823582559160200191906001019061332b565b506133529291506133ca565b5090565b82805461336290613cca565b90600052602060002090601f0160209004810192826133845760008555613346565b82601f1061339d57805160ff1916838001178555613346565b82800160010185558215613346579182015b828111156133465782518255916020019190600101906133af565b5b8082111561335257600081556001016133cb565b600067ffffffffffffffff8311156133f9576133f9613d60565b61340c601f8401601f1916602001613c0b565b905082815283838301111561342057600080fd5b828260208301376000602084830101529392505050565b600060208284031215613448578081fd5b8135611cb181613d76565b60008060408385031215613465578081fd5b823561347081613d76565b9150602083013561348081613d76565b809150509250929050565b60008060006060848603121561349f578081fd5b83356134aa81613d76565b925060208401356134ba81613d76565b929592945050506040919091013590565b600080600080608085870312156134e0578081fd5b84356134eb81613d76565b935060208501356134fb81613d76565b925060408501359150606085013567ffffffffffffffff81111561351d578182fd5b8501601f8101871361352d578182fd5b61353c878235602084016133df565b91505092959194509250565b6000806040838503121561355a578182fd5b823561356581613d76565b9150602083013561348081613d8b565b60008060408385031215613587578182fd5b823561359281613d76565b946020939093013593505050565b600080602083850312156135b2578081fd5b823567ffffffffffffffff808211156135c9578283fd5b818501915085601f8301126135dc578283fd5b8135818111156135ea578384fd5b8660208260051b85010111156135fe578384fd5b60209290920196919550909350505050565b600060208284031215613621578081fd5b8135611cb181613d8b565b60006020828403121561363d578081fd5b8151611cb181613d8b565b600060208284031215613659578081fd5b5035919050565b600060208284031215613671578081fd5b8135611cb181613d99565b60006020828403121561368d578081fd5b8151611cb181613d99565b60008060408385031215613465578182fd5b600080602083850312156136bc578182fd5b823567ffffffffffffffff808211156136d3578384fd5b818501915085601f8301126136e6578384fd5b8135818111156136f4578485fd5b8660208285010111156135fe578485fd5b600060208284031215613716578081fd5b813567ffffffffffffffff81111561372c578182fd5b8201601f8101841361373c578182fd5b612325848235602084016133df565b60006020828403121561375c578081fd5b5051919050565b60008060408385031215613775578182fd5b8235915060208084013567ffffffffffffffff80821115613794578384fd5b818601915086601f8301126137a7578384fd5b8135818111156137b9576137b9613d60565b8060051b91506137ca848301613c0b565b8181528481019084860184860187018b10156137e4578788fd5b8795505b838610156138065780358352600195909501949186019186016137e8565b508096505050505050509250929050565b6000815180845261382f816020860160208601613c9e565b601f01601f19169290920160200192915050565b60008251613855818460208701613c9e565b9190910192915050565b6000845160206138728285838a01613c9e565b8551918401916138858184848a01613c9e565b85549201918390600181811c90808316806138a157607f831692505b8583108114156138bf57634e487b7160e01b88526022600452602488fd5b8080156138d357600181146138e457613910565b60ff19851688528388019550613910565b60008b815260209020895b858110156139085781548a8201529084019088016138ef565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061395490830184613817565b9695505050505050565b602081526000611cb16020830184613817565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526031908201527f5269636820447761727665732054726962653a20596f752063616e2774206d696040820152706e7420736f206d75636820746f6b656e7360781b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f5269636820447761727665732054726962653a2045746865722076616c7565206040820152721cd95b9d081a5cc81b9bdd0818dbdc9c9958dd606a1b606082015260800190565b60208082526026908201527f5269636820447761727665732054726962653a20636f6e7472616374206973206040820152651c185d5cd95960d21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526027908201527f5269636820447761727665732054726962653a206d617820737570706c7920656040820152661e18d95959195960ca1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715613c3457613c34613d60565b604052919050565b60008219821115613c4f57613c4f613d34565b500190565b600082613c6357613c63613d4a565b500490565b6000816000190483118215151615613c8257613c82613d34565b500290565b600082821015613c9957613c99613d34565b500390565b60005b83811015613cb9578181015183820152602001613ca1565b83811115611ac45750506000910152565b600181811c90821680613cde57607f821691505b60208210811415613cff57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d1957613d19613d34565b5060010190565b600082613d2f57613d2f613d4a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146121f757600080fd5b80151581146121f757600080fd5b6001600160e01b0319811681146121f757600080fdfea264697066735822122072fbfc9ec03e3d99d4987c7b534a4fb5699ed660a4aa42d2a8a7a4766f763ca964736f6c63430008040033

Deployed Bytecode Sourcemap

62623:7884: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;;;;;;;62623:7884;;;;;62868:23;;;;;;;;;;;;;;;;;;;12964:25:1;;;12952:2;12937:18;62868: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;63040:33::-;;;;;;;;;;-1:-1:-1;63040: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;62959:28:0;;;;;;;;;;;;;:::i;44967:411::-;;;;;;;;;;-1:-1:-1;44967:411:0;;;;;:::i;:::-;;:::i;:::-;;63189:32;;;;;;;;;;-1:-1:-1;63189:32:0;;;;;;;;;;;63937:100;;;;;;;;;;;;;:::i;57031:113::-;;;;;;;;;;-1:-1:-1;57119:10:0;:17;57031:113;;29250:566;;;;;;;;;;-1:-1:-1;29250:566:0;;;;;:::i;:::-;;:::i;62832:29::-;;;;;;;;;;;;;;;;46194:339;;;;;;;;;;-1:-1:-1;46194:339:0;;;;;:::i;:::-;;:::i;67668:848::-;;;;;;:::i;:::-;;:::i;56699:256::-;;;;;;;;;;-1:-1:-1;56699:256:0;;;;;:::i;:::-;;:::i;63420:28::-;;;;;;;;;;;;;;;;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;63148:34::-;;;;;;;;;;-1:-1:-1;63148:34:0;;;;;;;;;;;69907:337;;;;;;;;;;-1:-1:-1;69907:337:0;;;;;:::i;:::-;;:::i;63849:80::-;;;;;;;;;;;;;:::i;30084:641::-;;;;;;;;;;-1:-1:-1;30084:641:0;;;;;:::i;:::-;;:::i;57221:233::-;;;;;;;;;;-1:-1:-1;57221:233:0;;;;;:::i;:::-;;:::i;63113:28::-;;;;;;;;;;-1:-1:-1;63113:28:0;;;;;;;;;;;69548:105;;;;;;;;;;-1:-1:-1;69548:105:0;;;;;:::i;:::-;;:::i;64246:112::-;;;;;;;;;;-1:-1:-1;64246:112:0;;;;;:::i;:::-;;:::i;62898:24::-;;;;;;;;;;;;;;;;63080:26;;;;;;;;;;-1:-1:-1;63080:26:0;;;;;;;;;;;64147:91;;;;;;;;;;;;;:::i;43579:239::-;;;;;;;;;;-1:-1:-1;43579:239:0;;;;;:::i;:::-;;:::i;62931:21::-;;;;;;;;;;;;;:::i;64551:115::-;;;;;;;;;;-1:-1:-1;64551:115:0;;;;;:::i;:::-;;:::i;43309:208::-;;;;;;;;;;-1:-1:-1;43309:208:0;;;;;:::i;:::-;;:::i;11259:103::-;;;;;;;;;;;;;:::i;63455:26::-;;;;;;;;;;;;;;;;28950:100;;;;;;;;;;-1:-1:-1;28950:100:0;;;;;:::i;:::-;;:::i;63307:50::-;;;;;;;;;;-1:-1:-1;63307:50:0;;;;;:::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;64474:69::-;;;;;;;;;;;;;:::i;64678:659::-;;;;;;;;;;-1:-1:-1;64678:659:0;;;;;:::i;:::-;;:::i;63228:31::-;;;;;;;;;;-1:-1:-1;63228:31:0;;;;;;;;;;;46860:328;;;;;;;;;;-1:-1:-1;46860:328:0;;;;;:::i;:::-;;:::i;62994:37::-;;;;;;;;;;;;;:::i;69661:119::-;;;;;;;;;;-1:-1:-1;69661:119:0;;;;;:::i;:::-;;:::i;68524:723::-;;;;;;;;;;-1:-1:-1;68524:723:0;;;;;:::i;:::-;;:::i;66674:986::-;;;;;;:::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;64045:94;;;;;;;;;;;;;:::i;65345:1321::-;;;;;;:::i;:::-;;:::i;62794:31::-;;;;;;;;;;;;;;;;28032:119;;;;;;;;;;-1:-1:-1;28032:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;28117:26:0;28090:7;28117:26;;;:19;:26;;;;;;;28032:119;69255:151;;;;;;;;;;-1:-1:-1;69255:151:0;;;;;:::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;69414:126;;;;;;;;;;-1:-1:-1;69414:126:0;;;;;:::i;:::-;;:::i;11517:201::-;;;;;;;;;;-1:-1:-1;11517:201:0;;;;;:::i;:::-;;:::i;69788:111::-;;;;;;;;;;-1:-1:-1;69788:111: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;;22132:2:1;45540:73:0;;;22114:21:1;22171:2;22151:18;;;22144:30;22210:34;22190:18;;;22183:62;-1:-1:-1;;;22261:18:1;;;22254:42;22313:19;;45540:73:0;;;;;;;;;-1:-1:-1;45633:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45633:24:0;;45444:221::o;62959: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;;24984:2:1;45098:57:0;;;24966:21:1;25023:2;25003:18;;;24996:30;25062:34;25042:18;;;25035:62;-1:-1:-1;;;25113:18:1;;;25106:31;25154:19;;45098:57:0;24956: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;;20107:2:1;45168:168:0;;;20089:21:1;20146:2;20126:18;;;20119:30;20185:34;20165:18;;;20158:62;20256:26;20236:18;;;20229:54;20300:19;;45168:168:0;20079:246:1;45168:168:0;45349:21;45358:2;45362:7;45349:8;:21::i;:::-;44967:411;;;:::o;63937:100::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64015:14:::1;::::0;;-1:-1:-1;;63997:32:0;::::1;64015:14:::0;;;;::::1;;;64014:15;63997:32:::0;;::::1;;::::0;;63937:100::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;67668:848::-;67741:11;;;;;;;67733:51;;;;-1:-1:-1;;;67733:51:0;;16550:2:1;67733:51:0;;;16532:21:1;16589:2;16569:18;;;16562:30;16628:29;16608:18;;;16601:57;16675:18;;67733:51:0;16522:177:1;67733:51:0;67813:1;67803:7;:11;67795:55;;;;-1:-1:-1;;;67795:55:0;;15783:2:1;67795:55:0;;;15765:21:1;15822:2;15802:18;;;15795:30;15861:33;15841:18;;;15834:61;15912:18;;67795:55:0;15755:181:1;67795:55:0;67918:10;;67906:9;;:22;;;;:::i;:::-;67895:7;67883:9;;:19;;;;:::i;:::-;:45;;67861:134;;;;-1:-1:-1;;;67861:134:0;;;;;;;:::i;:::-;68048:9;68037:7;68028:6;;:16;;;;:::i;:::-;:29;;68006:130;;;;-1:-1:-1;;;68006:130:0;;;;;;;:::i;:::-;68156:6;;;;;;;68155:7;68147:58;;;;-1:-1:-1;;;68147:58:0;;;;;;;:::i;:::-;68216:18;;68245:264;68273:7;68267:3;:13;68245:264;;;68304:21;:9;1083:19;;1101:1;1083:19;;;994:127;68304:21;68353:9;964:14;68340:32;;68387:33;68397:10;68409;68387:9;:33::i;:::-;68446:8;;:12;;68457:1;68446:12;:::i;:::-;68435:8;:23;68485:9;;:12;;68496:1;68485:12;:::i;:::-;68473:9;:24;68282:5;;;;:::i;:::-;;;;68245:264;;56699:256;56796:7;56832:23;56849:5;56832:16;:23::i;:::-;56824:5;:31;56816:87;;;;-1:-1:-1;;;56816:87:0;;13831:2:1;56816:87:0;;;13813:21:1;13870:2;13850:18;;;13843:30;13909:34;13889:18;;;13882:62;-1:-1:-1;;;13960:18:1;;;13953:41;14011:19;;56816:87:0;13803: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;69907:337::-;69966:13;;;;69958:62;;;;-1:-1:-1;;;69958:62:0;;13426:2:1;69958:62:0;;;13408:21:1;13465:2;13445:18;;;13438:30;13504:34;13484:18;;;13477:62;-1:-1:-1;;;13555:18:1;;;13548:34;13599:19;;69958:62:0;13398:226:1;69958:62:0;70053:39;70072:10;70084:7;70053:18;:39::i;:::-;70031:146;;;;-1:-1:-1;;;70031:146:0;;26569:2:1;70031:146:0;;;26551:21:1;26608:2;26588:18;;;26581:30;26647:34;26627:18;;;26620:62;26718:27;26698:18;;;26691:55;26763:19;;70031:146:0;26541:247:1;70031:146:0;70188:14;70194:7;70188:5;:14::i;:::-;70235:1;70224:8;;:12;;;;:::i;:::-;70213:8;:23;-1:-1:-1;69907:337:0:o;63849:80::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;63915:6:::1;::::0;;-1:-1:-1;;63905:16:0;::::1;63915:6;::::0;;;::::1;;;63914:7;63905:16:::0;;::::1;;::::0;;63849: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;;27403:2:1;57316:95:0;;;27385:21:1;27442:2;27422:18;;;27415:30;27481:34;27461:18;;;27454:62;-1:-1:-1;;;27532:18:1;;;27525:42;27584:19;;57316:95:0;27375:234:1;57316:95:0;57429:10;57440:5;57429:17;;;;;;-1:-1:-1;;;57429:17:0;;;;;;;;;;;;;;;;;57422:24;;57221:233;;;:::o;69548:105::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69623:9:::1;:22:::0;69548:105::o;64246:112::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64327:23:::1;:7;64337:13:::0;;64327:23:::1;:::i;64147:91::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64219:11:::1;::::0;;-1:-1:-1;;64204:26:0;::::1;64219:11:::0;;;;::::1;;;64218:12;64204:26:::0;;::::1;;::::0;;64147: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;;20943:2:1;43714:73:0;;;20925:21:1;20982:2;20962:18;;;20955:30;21021:34;21001:18;;;20994:62;-1:-1:-1;;;21072:18:1;;;21065:39;21121:19;;43714:73:0;20915:231:1;62931:21:0;;;;;;;:::i;64551:115::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64628:13:::1;:30:::0;;-1:-1:-1;;64628:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64551:115::o;43309:208::-;43381:7;-1:-1:-1;;;;;43409:19:0;;43401:74;;;;-1:-1:-1;;;43401:74:0;;20532:2:1;43401:74:0;;;20514:21:1;20571:2;20551:18;;;20544:30;20610:34;20590:18;;;20583:62;-1:-1:-1;;;20661:18:1;;;20654:40;20711:19;;43401:74:0;20504: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;64474:69::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64520:8:::1;:15:::0;;-1:-1:-1;;64520:15:0::1;::::0;::::1;::::0;;64474:69::o;64678:659::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64811:9:::1;::::0;64779:8:::1;::::0;:28:::1;::::0;64790:10;;64779:28:::1;:::i;:::-;:41;;64757:136;;;::::0;-1:-1:-1;;;64757:136:0;;23326:2:1;64757:136:0::1;::::0;::::1;23308:21:1::0;23365:2;23345:18;;;23338:30;23404:34;23384:18;;;23377:62;-1:-1:-1;;;23455:18:1;;;23448:43;23508:19;;64757:136:0::1;23298:235:1::0;64757:136:0::1;64906:18;::::0;64935:395:::1;64957:23:::0;;::::1;64935:395;;;65057:1;65030:10:::0;;65041:3;65030:15;;::::1;;;-1:-1:-1::0;;;65030:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;65030:29:0::1;;;65004:140;;;::::0;-1:-1:-1;;;65004:140:0;;24566:2:1;65004:140:0::1;::::0;::::1;24548:21:1::0;24605:2;24585:18;;;24578:30;24644:34;24624:18;;;24617:62;-1:-1:-1;;;24695:18:1;;;24688:47;24752:19;;65004:140:0::1;24538:239:1::0;65004:140:0::1;65159:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;65159:21:::1;65208:9;964:14:::0;65195:32:::1;;65242:38;65252:10;;65263:3;65252:15;;;;;-1:-1:-1::0;;;65252:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65269:10;65242:9;:38::i;:::-;65306:8;::::0;:12:::1;::::0;65317:1:::1;65306:12;:::i;:::-;65295:8;:23:::0;64982:5;::::1;::::0;::::1;:::i;:::-;;;;64935:395;;;;10899:1;64678:659:::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;62994:37::-;;;;;;;:::i;69661:119::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69742:13:::1;:30:::0;69661:119::o;68524:723::-;48763:4;48787:16;;;:7;:16;;;;;;68642:13;;-1:-1:-1;;;;;48787:16:0;68673:113;;;;-1:-1:-1;;;68673:113:0;;24150:2:1;68673:113:0;;;24132:21:1;24189:2;24169:18;;;24162:30;24228:34;24208:18;;;24201:62;-1:-1:-1;;;24279:18:1;;;24272:45;24334:19;;68673:113:0;24122:237:1;68673:113:0;68801:8;;;;;;;68797:71;;68842:14;68835:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68524:723;;;:::o;68797:71::-;68880:28;68911:10;:8;:10::i;:::-;68880:41;;68983:1;68958:14;68952:28;:32;:287;;;;;;;;;;;;;;;;;69076:14;69117:18;:7;:16;:18::i;:::-;69162:13;69033:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68952:287;68932:307;68524:723;-1:-1:-1;;;68524:723:0:o;66674:986::-;66748:12;;;;;;;66740:53;;;;-1:-1:-1;;;66740:53:0;;14662:2:1;66740:53:0;;;14644:21:1;14701:2;14681:18;;;14674:30;14740;14720:18;;;14713:58;14788:18;;66740:53:0;14634:178:1;66740:53:0;66813:6;;;;;;;66812:7;66804:58;;;;-1:-1:-1;;;66804:58:0;;;;;;;:::i;:::-;66906:1;66895:7;:12;;66873:111;;;;-1:-1:-1;;;66873:111:0;;;;;;;:::i;:::-;67054:10;;67042:9;;:22;;;;:::i;:::-;67031:7;67019:9;;:19;;;;:::i;:::-;:45;;66997:134;;;;-1:-1:-1;;;66997:134:0;;;;;;;:::i;:::-;67184:9;67173:7;67164:6;;:16;;;;:::i;:::-;:29;;67142:130;;;;-1:-1:-1;;;67142:130:0;;;;;;;:::i;:::-;67283:18;;67312:341;67340:7;67334:3;:13;67312:341;;;67371:21;:9;1083:19;;1101:1;1083:19;;;994:127;67371:21;67420:9;964:14;67407:32;;67454:33;67464:10;67476;67454:9;:33::i;:::-;67548:10;67532:27;;;;:15;:27;;;;;;:31;;67562:1;67532:31;:::i;:::-;67518:10;67502:27;;;;:15;:27;;;;;:61;67589:8;;:12;;67600:1;67589:12;:::i;:::-;67578:8;:23;67628:9;;:13;;67640:1;67628:13;:::i;:::-;67616:9;:25;67349:5;;;;:::i;:::-;;;;67312:341;;64045:94;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64119:12:::1;::::0;;-1:-1:-1;;64103:28:0;::::1;64119:12:::0;;;;::::1;;;64118:13;64103:28:::0;;::::1;;::::0;;64045:94::o;65345:1321::-;65445:14;;;;;;;65437:55;;;;-1:-1:-1;;;65437:55:0;;14662:2:1;65437:55:0;;;14644:21:1;14701:2;14681:18;;;14674:30;14740;14720:18;;;14713:58;14788:18;;65437:55:0;14634:178:1;65437:55:0;65512:6;;;;;;;65511:7;65503:58;;;;-1:-1:-1;;;65503:58:0;;;;;;;:::i;:::-;65605:18;;65594:7;:29;;65572:128;;;;-1:-1:-1;;;65572:128:0;;;;;;;:::i;:::-;65774:18;;65749:10;65733:27;;;;:15;:27;;;;;;:37;;65763:7;;65733:37;:::i;:::-;:59;;65711:158;;;;-1:-1:-1;;;65711:158:0;;;;;;;:::i;:::-;65890:25;65897:10;65909:5;65890:6;:25::i;:::-;65882:94;;;;-1:-1:-1;;;65882:94:0;;19682:2:1;65882:94:0;;;19664:21:1;19721:2;19701:18;;;19694:30;19760:34;19740:18;;;19733:62;19831:26;19811:18;;;19804:54;19875:19;;65882:94:0;19654:246:1;65882:94:0;66046:10;;66034:9;;:22;;;;:::i;:::-;66023:7;66011:9;;:19;;;;:::i;:::-;:45;;65989:134;;;;-1:-1:-1;;;65989:134:0;;;;;;;:::i;:::-;66176:9;66165:7;66156:6;;:16;;;;:::i;:::-;:29;;66134:130;;;;-1:-1:-1;;;66134:130:0;;;;;;;:::i;:::-;66275:18;;66304:355;66332:7;66326:3;:13;66304:355;;;66363:21;:9;1083:19;;1101:1;1083:19;;;994:127;66363:21;66412:9;964:14;66399:32;;66446:33;66456:10;66468;66446:9;:33::i;:::-;66540:10;66524:27;;;;:15;:27;;;;;;:31;;66554:1;66524:31;:::i;:::-;66510:10;66494:27;;;;:15;:27;;;;;:61;66581:8;;:12;;66592:1;66581:12;:::i;:::-;66570:8;:23;66620:9;;:13;;66632:1;66620:13;:::i;:::-;66608:9;:25;66341:5;;;;:::i;:::-;;;;66304:355;;69255:151;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69365:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;69414:126::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69500: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;;15019:2:1;11598:73:0::1;::::0;::::1;15001:21:1::0;15058:2;15038:18;;;15031:30;15097:34;15077:18;;;15070:62;-1:-1:-1;;;15148:18:1;;;15141:36;15194:19;;11598:73:0::1;14991:228:1::0;11598:73:0::1;11682:28;11701:8;11682:18;:28::i;:::-;11517:201:::0;:::o;69788:111::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;69865:11:::1;:26:::0;69788:111::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;;18092:2:1;14300:73:0;;;18074:21:1;18131:2;18111:18;;;18104:30;18170:31;18150:18;;;18143:59;18219:18;;14300:73:0;18064: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;;17665:2:1;14449:78:0;;;17647:21:1;17704:2;17684:18;;;17677:30;17743:34;17723:18;;;17716:62;17814:28;17794:18;;;17787:56;17860:19;;14449:78:0;17637: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;;18857:2:1;49102:73:0;;;18839:21:1;18896:2;18876:18;;;18869:30;18935:34;18915:18;;;18908:62;-1:-1:-1;;;18986:18:1;;;18979:42;19038:19;;49102:73:0;18829: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;;23740:2:1;52108:85:0;;;23722:21:1;23779:2;23759:18;;;23752:30;23818:34;23798:18;;;23791:62;-1:-1:-1;;;23869:18:1;;;23862:39;23918:19;;52108:85:0;23712:231:1;52108:85:0;-1:-1:-1;;;;;52212:16:0;;52204:65;;;;-1:-1:-1;;;52204:65:0;;16906:2:1;52204:65:0;;;16888:21:1;16945:2;16925:18;;;16918:30;16984:34;16964:18;;;16957:62;-1:-1:-1;;;17035:18:1;;;17028:34;17079:19;;52204:65:0;16878: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;;17311:2:1;53134:55:0;;;17293:21:1;17350:2;17330:18;;;17323:30;17389:27;17369:18;;;17362:55;17434:18;;53134:55:0;17283: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;64366:100::-;64418:13;64451:7;64444: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;;70252:252;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:46;70469:5;70476:13;;70491:4;70450:18;:46::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;;27816:2:1;24109:85:0;;;27798:21:1;27855:2;27835:18;;;27828:30;27894:34;27874:18;;;27867:62;-1:-1:-1;;;27945:18:1;;;27938:40;27995:19;;24109:85:0;27788: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;;21771:2:1;50748:61:0;;;21753:21:1;;;21790:18;;;21783:30;21849:34;21829:18;;;21822:62;21901:18;;50748:61:0;21743: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;;15426:2:1;50820:58:0;;;15408:21:1;15465:2;15445:18;;;15438:30;15504;15484:18;;;15477:58;15552:18;;50820:58:0;15398: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;;18450:2:1;17017:81:0;;;18432:21:1;18489:2;18469:18;;;18462:30;18528:34;18508:18;;;18501:62;-1:-1:-1;;;18579:18:1;;;18572:36;18625:19;;17017:81:0;18422:228:1;17017:81:0;13219:20;;17109:60;;;;-1:-1:-1;;;17109:60:0;;26211:2:1;17109:60:0;;;26193:21:1;26250:2;26230:18;;;26223:30;26289:31;26269:18;;;26262:59;26338:18;;17109:60:0;26183: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;28534:4;28553:17;;;28603:4;28587: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;14041:414::-;14243:2;14225:21;;;14282:2;14262:18;;;14255:30;14321:34;14316:2;14301:18;;14294:62;-1:-1:-1;;;14387:2:1;14372:18;;14365:48;14445:3;14430:19;;14215:240::o;15941:402::-;16143:2;16125:21;;;16182:2;16162:18;;;16155:30;16221:34;16216:2;16201:18;;16194:62;-1:-1:-1;;;16287:2:1;16272:18;;16265:36;16333:3;16318:19;;16115:228::o;19068:407::-;19270:2;19252:21;;;19309:2;19289:18;;;19282:30;19348:34;19343:2;19328:18;;19321:62;-1:-1:-1;;;19414:2:1;19399:18;;19392:41;19465:3;19450:19;;19242:233::o;21151:413::-;21353:2;21335:21;;;21392:2;21372:18;;;21365:30;21431:34;21426:2;21411:18;;21404:62;-1:-1:-1;;;21497:2:1;21482:18;;21475:47;21554:3;21539:19;;21325:239::o;22343:356::-;22545:2;22527:21;;;22564:18;;;22557:30;22623:34;22618:2;22603:18;;22596:62;22690:2;22675:18;;22517:182::o;22704:415::-;22906:2;22888:21;;;22945:2;22925:18;;;22918:30;22984:34;22979:2;22964:18;;22957:62;-1:-1:-1;;;23050:2:1;23035:18;;23028:49;23109:3;23094:19;;22878:241::o;25184:402::-;25386:2;25368:21;;;25425:2;25405:18;;;25398:30;25464:34;25459:2;25444:18;;25437:62;-1:-1:-1;;;25530:2:1;25515:18;;25508:36;25576:3;25561:19;;25358:228::o;25591:413::-;25793:2;25775:21;;;25832:2;25812:18;;;25805:30;25871:34;25866:2;25851:18;;25844:62;-1:-1:-1;;;25937:2:1;25922:18;;25915:47;25994:3;25979:19;;25765:239::o;26793:403::-;26995:2;26977:21;;;27034:2;27014:18;;;27007:30;27073:34;27068:2;27053:18;;27046:62;-1:-1:-1;;;27139:2:1;27124:18;;27117:37;27186:3;27171:19;;26967:229::o;28207:275::-;28278:2;28272:9;28343:2;28324:13;;-1:-1:-1;;28320:27:1;28308:40;;28378:18;28363:34;;28399:22;;;28360:62;28357:2;;;28425:18;;:::i;:::-;28461:2;28454:22;28252:230;;-1:-1:-1;28252:230:1:o;28619:128::-;28659:3;28690:1;28686:6;28683:1;28680:13;28677:2;;;28696:18;;:::i;:::-;-1:-1:-1;28732:9:1;;28667:80::o;28752:120::-;28792:1;28818;28808:2;;28823:18;;:::i;:::-;-1:-1:-1;28857:9:1;;28798:74::o;28877:168::-;28917:7;28983:1;28979;28975:6;28971:14;28968:1;28965:21;28960:1;28953:9;28946:17;28942:45;28939:2;;;28990:18;;:::i;:::-;-1:-1:-1;29030:9:1;;28929:116::o;29050:125::-;29090:4;29118:1;29115;29112:8;29109:2;;;29123:18;;:::i;:::-;-1:-1:-1;29160:9:1;;29099:76::o;29180:258::-;29252:1;29262:113;29276:6;29273:1;29270:13;29262:113;;;29352:11;;;29346:18;29333:11;;;29326:39;29298:2;29291:10;29262:113;;;29393:6;29390:1;29387:13;29384:2;;;-1:-1:-1;;29428:1:1;29410:16;;29403:27;29233:205::o;29443:380::-;29522:1;29518:12;;;;29565;;;29586:2;;29640:4;29632:6;29628:17;29618:27;;29586:2;29693;29685:6;29682:14;29662:18;29659:38;29656:2;;;29739:10;29734:3;29730:20;29727:1;29720:31;29774:4;29771:1;29764:15;29802:4;29799:1;29792:15;29656:2;;29498:325;;;:::o;29828:135::-;29867:3;-1:-1:-1;;29888:17:1;;29885:2;;;29908:18;;:::i;:::-;-1:-1:-1;29955:1:1;29944:13;;29875:88::o;29968:112::-;30000:1;30026;30016:2;;30031:18;;:::i;:::-;-1:-1:-1;30065:9:1;;30006:74::o;30085:127::-;30146:10;30141:3;30137:20;30134:1;30127:31;30177:4;30174:1;30167:15;30201:4;30198:1;30191:15;30217:127;30278:10;30273:3;30269:20;30266:1;30259:31;30309:4;30306:1;30299:15;30333:4;30330:1;30323:15;30349:127;30410:10;30405:3;30401:20;30398:1;30391:31;30441:4;30438:1;30431:15;30465:4;30462:1;30455:15;30481:131;-1:-1:-1;;;;;30556:31:1;;30546:42;;30536:2;;30602:1;30599;30592:12;30617:118;30703:5;30696:13;30689:21;30682:5;30679:32;30669:2;;30725:1;30722;30715:12;30740:131;-1:-1:-1;;;;;;30814:32:1;;30804:43;;30794:2;;30861:1;30858;30851:12

Swarm Source

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