ETH Price: $3,110.71 (+1.30%)
Gas: 4 Gwei

Token

Cyber Sneakers (SNEAKER)
 

Overview

Max Total Supply

595 SNEAKER

Holders

358

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
fasc.eth
Balance
2 SNEAKER
0x2394a98ddd1e35461cb5df09d7b5c365a9f22670
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:
CyberSneakers

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

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



pragma solidity ^0.8.4;






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

    uint256 public maxSupply = 8888;
    uint256 public giftSupply = 150;
    uint256 public totalNFT;
    uint256 public mintedNFT;

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

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

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

    mapping(address => uint256) public _nftMinted;

    uint256 _price = 250000000000000000; //0.25 ETH

    bytes32 public whitelistRoot;

    Counters.Counter private _tokenIds;

    uint256[] private _teamShares = [5, 95];
    address[] private _team = [
        0xDeF9f876cd92a4D3161BCdaDA7B8F63AC429A9f2,
        0xB478E24C6E71063dd72450fd345aDCf05a89520A
    ];

    constructor()
        ERC721("Cyber Sneakers", "SNEAKER")
        PaymentSplitter(_team, _teamShares)
    {}

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

    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,
            "Cyber Sneakers: max total supply exceeded"
        );

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

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

        require(
            _amount <= 10,
            "Cyber Sneakers: You can't mint so much tokens"
        );

        require( _nftMinted[msg.sender] + _amount <= 10, "Cyber Sneakers: You can't mint so much tokens");

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

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

    function changeWhitelistRoot(bytes32 _whitelistRoot) public onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Cyber Sneakers : burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Cyber Sneakers : 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":"_nftMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeGiftSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"changeWhitelistRoot","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":"mintedNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6122b8601255609660135560c06040526005608081905264173539b7b760d91b60a09081526200003391601891906200059e565b506019805464ffffffffff191690556703782dace9d90000601b556040805180820190915260058152605f60208201526200007390601e9060026200062d565b506040805180820190915273def9f876cd92a4d3161bcdada7b8f63ac429a9f2815273b478e24c6e71063dd72450fd345adcf05a89520a6020820152620000bf90601f90600262000670565b50348015620000cd57600080fd5b50601f8054806020026020016040519081016040528092919081815260200182805480156200012657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000107575b5050505050601e8054806020026020016040519081016040528092919081815260200182805480156200017957602002820191906000526020600020905b81548152602001906001019080831162000164575b5050604080518082018252600e81526d437962657220536e65616b65727360901b60208083019182528351808501909452600784526629a722a0a5a2a960c91b908401528151919550919350620001d59250600091906200059e565b508051620001eb9060019060208401906200059e565b50505062000208620002026200035a60201b60201c565b6200035e565b80518251146200027a5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002cd5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000271565b60005b825181101562000351576200033c838281518110620002ff57634e487b7160e01b600052603260045260246000fd5b60200260200101518383815181106200032857634e487b7160e01b600052603260045260246000fd5b6020026020010151620003b060201b60201c565b80620003488162000737565b915050620002d0565b5050506200076b565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200041d5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000271565b600081116200046f5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000271565b6001600160a01b0382166000908152600d602052604090205415620004eb5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000271565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b5462000555908290620006df565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620005ac90620006fa565b90600052602060002090601f016020900481019282620005d057600085556200061b565b82601f10620005eb57805160ff19168380011785556200061b565b828001600101855582156200061b579182015b828111156200061b578251825591602001919060010190620005fe565b5062000629929150620006c8565b5090565b8280548282559060005260206000209081019282156200061b579160200282015b828111156200061b578251829060ff169055916020019190600101906200064e565b8280548282559060005260206000209081019282156200061b579160200282015b828111156200061b57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000691565b5b80821115620006295760008155600101620006c9565b60008219821115620006f557620006f562000755565b500190565b600181811c908216806200070f57607f821691505b602082108114156200073157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200074e576200074e62000755565b5060010190565b634e487b7160e01b600052601160045260246000fd5b613892806200077b6000396000f3fe6080604052600436106103795760003560e01c80636352211e116101d1578063abfe761411610102578063d082a3f7116100a0578063e33b7de31161006f578063e33b7de314610a50578063e985e9c514610a65578063f2c4ce1e14610aae578063f2fde38b14610ace57600080fd5b8063d082a3f7146109cf578063d5abeb01146109e4578063d79779b2146109fa578063da3ef23f14610a3057600080fd5b8063c6a7cbc9116100dc578063c6a7cbc914610946578063c87b56dd14610966578063c9b298f114610986578063ce7c2ac21461099957600080fd5b8063abfe7614146108ef578063b88d4fde14610911578063c66828621461093157600080fd5b80638b83209b1161016f5780639852595c116101495780639852595c14610864578063a22cb4651461089a578063a475b5dd146108ba578063a5fd7bec146108cf57600080fd5b80638b83209b146108115780638da5cb5b1461083157806395d89b411461084f57600080fd5b80636f0b7871116101ab5780636f0b78711461079957806370a08231146107af578063715018a6146107cf5780637f1e3711146107e457600080fd5b80636352211e146107445780636c0360eb146107645780636e0e5b191461077957600080fd5b80632f745c59116102ab57806348b750441161024957806352e973261161022357806352e97326146106cf57806355f804b3146106ef5780635c975abb1461070f57806360e5bb851461072f57600080fd5b806348b75044146106705780634f6ccce71461069057806351830227146106b057600080fd5b8063406072a911610285578063406072a9146105d557806342842e0e1461061b57806342966c681461063b57806346e79ffc1461065b57600080fd5b80632f745c591461058a578063386bfc98146105aa5780633a98ef39146105c057600080fd5b80630d0c31b71161031857806319165587116102f257806319165587146105215780632254b0151461054157806323b872dd146105575780632db115441461057757600080fd5b80630d0c31b7146104cb57806310ed7621146104ec57806318160ddd1461050c57600080fd5b806307ebec271161035457806307ebec2714610442578063081812fc1461045c578063081c8c4414610494578063095ea7b3146104a957600080fd5b8062456379146103c757806301ffc9a7146103f057806306fdde031461042057600080fd5b366103c2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d357600080fd5b506103dd60145481565b6040519081526020015b60405180910390f35b3480156103fc57600080fd5b5061041061040b366004613202565b610aee565b60405190151581526020016103e7565b34801561042c57600080fd5b50610435610b19565b6040516103e7919061344c565b34801561044e57600080fd5b506019546104109060ff1681565b34801561046857600080fd5b5061047c6104773660046131ea565b610bab565b6040516001600160a01b0390911681526020016103e7565b3480156104a057600080fd5b50610435610c45565b3480156104b557600080fd5b506104c96104c4366004613117565b610cd3565b005b3480156104d757600080fd5b50601954610410906301000000900460ff1681565b3480156104f857600080fd5b506104c96105073660046131ea565b610de9565b34801561051857600080fd5b506008546103dd565b34801561052d57600080fd5b506104c961053c366004612fd9565b610e18565b34801561054d57600080fd5b506103dd60135481565b34801561056357600080fd5b506104c961057236600461302d565b610f46565b6104c96105853660046131ea565b610f77565b34801561059657600080fd5b506103dd6105a5366004613117565b611110565b3480156105b657600080fd5b506103dd601c5481565b3480156105cc57600080fd5b50600b546103dd565b3480156105e157600080fd5b506103dd6105f036600461323a565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561062757600080fd5b506104c961063636600461302d565b6111a6565b34801561064757600080fd5b506104c96106563660046131ea565b6111c1565b34801561066757600080fd5b506104c96112b0565b34801561067c57600080fd5b506104c961068b36600461323a565b6112f9565b34801561069c57600080fd5b506103dd6106ab3660046131ea565b6114e1565b3480156106bc57600080fd5b5060195461041090610100900460ff1681565b3480156106db57600080fd5b506104c96106ea3660046131ea565b611582565b3480156106fb57600080fd5b506104c961070a36600461324c565b6115b1565b34801561071b57600080fd5b506019546104109062010000900460ff1681565b34801561073b57600080fd5b506104c96115e7565b34801561075057600080fd5b5061047c61075f3660046131ea565b611634565b34801561077057600080fd5b506104356116ab565b34801561078557600080fd5b506104c96107943660046131b2565b6116b8565b3480156107a557600080fd5b506103dd60155481565b3480156107bb57600080fd5b506103dd6107ca366004612fd9565b6116f5565b3480156107db57600080fd5b506104c961177c565b3480156107f057600080fd5b506103dd6107ff366004612fd9565b601a6020526000908152604090205481565b34801561081d57600080fd5b5061047c61082c3660046131ea565b6117b2565b34801561083d57600080fd5b50600a546001600160a01b031661047c565b34801561085b57600080fd5b506104356117f0565b34801561087057600080fd5b506103dd61087f366004612fd9565b6001600160a01b03166000908152600e602052604090205490565b3480156108a657600080fd5b506104c96108b53660046130ea565b6117ff565b3480156108c657600080fd5b506104c961180e565b3480156108db57600080fd5b506104c96108ea366004613142565b611849565b3480156108fb57600080fd5b5060195461041090640100000000900460ff1681565b34801561091d57600080fd5b506104c961092c36600461306d565b611a0e565b34801561093d57600080fd5b50610435611a40565b34801561095257600080fd5b506104c96109613660046131ea565b611a4d565b34801561097257600080fd5b506104356109813660046131ea565b611a7c565b6104c96109943660046131ea565b611bfb565b3480156109a557600080fd5b506103dd6109b4366004612fd9565b6001600160a01b03166000908152600d602052604090205490565b3480156109db57600080fd5b506104c9611dcb565b3480156109f057600080fd5b506103dd60125481565b348015610a0657600080fd5b506103dd610a15366004612fd9565b6001600160a01b031660009081526010602052604090205490565b348015610a3c57600080fd5b506104c9610a4b3660046132a7565b611e16565b348015610a5c57600080fd5b50600c546103dd565b348015610a7157600080fd5b50610410610a80366004612ff5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610aba57600080fd5b506104c9610ac93660046132a7565b611e53565b348015610ada57600080fd5b506104c9610ae9366004612fd9565b611e90565b60006001600160e01b0319821663780e9d6360e01b1480610b135750610b1382611f2b565b92915050565b606060008054610b2890613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5490613777565b8015610ba15780601f10610b7657610100808354040283529160200191610ba1565b820191906000526020600020905b815481529060010190602001808311610b8457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60178054610c5290613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90613777565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b505050505081565b6000610cde82611634565b9050806001600160a01b0316836001600160a01b03161415610d4c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c20565b336001600160a01b0382161480610d685750610d688133610a80565b610dda5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c20565b610de48383611f7b565b505050565b600a546001600160a01b03163314610e135760405162461bcd60e51b8152600401610c2090613591565b601355565b6001600160a01b0381166000908152600d6020526040902054610e4d5760405162461bcd60e51b8152600401610c20906134b1565b6000610e58600c5490565b610e6290476136e9565b90506000610e8f8383610e8a866001600160a01b03166000908152600e602052604090205490565b611fe9565b905080610eae5760405162461bcd60e51b8152600401610c20906134f7565b6001600160a01b0383166000908152600e602052604081208054839290610ed69084906136e9565b9250508190555080600c6000828254610eef91906136e9565b90915550610eff9050838261202f565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f503382612148565b610f6c5760405162461bcd60e51b8152600401610c2090613608565b610de483838361223e565b601954640100000000900460ff16610fd15760405162461bcd60e51b815260206004820152601d60248201527f437962657220536e65616b6572733a205075626c6963206973204f46460000006044820152606401610c20565b600081116110215760405162461bcd60e51b815260206004820152601b60248201527f437962657220536e65616b6572733a207a65726f20616d6f756e7400000000006044820152606401610c20565b6013546012546110319190613734565b8160155461103f91906136e9565b111561105d5760405162461bcd60e51b8152600401610c20906136a6565b3481601b5461106c9190613715565b111561108a5760405162461bcd60e51b8152600401610c2090613542565b60195462010000900460ff16156110b35760405162461bcd60e51b8152600401610c20906135c6565b6000805b82811015610de4576110cd601d80546001019055565b601d5491506110dc33836123e9565b6014546110ea9060016136e9565b6014556015546110fb9060016136e9565b60155580611108816137b2565b9150506110b7565b600061111b836116f5565b821061117d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c20565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610de483838360405180602001604052806000815250611a0e565b60195460ff1661121d5760405162461bcd60e51b815260206004820152602160248201527f437962657220536e65616b657273203a206275726e696e672064697361626c656044820152601960fa1b6064820152608401610c20565b6112273382612148565b6112925760405162461bcd60e51b815260206004820152603660248201527f437962657220536e65616b657273203a206275726e2063616c6c6572206973206044820152751b9bdd081bdddb995c881b9bdc88185c1c1c9bdd995960521b6064820152608401610c20565b61129b81612403565b60016014546112aa9190613734565b60145550565b600a546001600160a01b031633146112da5760405162461bcd60e51b8152600401610c2090613591565b6019805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d602052604090205461132e5760405162461bcd60e51b8152600401610c20906134b1565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be91906132ed565b6113c891906136e9565b905060006114018383610e8a87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114205760405162461bcd60e51b8152600401610c20906134f7565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906114579084906136e9565b90915550506001600160a01b038416600090815260106020526040812080548392906114849084906136e9565b9091555061149590508484836124aa565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b60006114ec60085490565b821061154f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c20565b6008828154811061157057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146115ac5760405162461bcd60e51b8152600401610c2090613591565b601255565b600a546001600160a01b031633146115db5760405162461bcd60e51b8152600401610c2090613591565b610de460168383612e56565b600a546001600160a01b031633146116115760405162461bcd60e51b8152600401610c2090613591565b6019805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610b135760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c20565b60168054610c5290613777565b600a546001600160a01b031633146116e25760405162461bcd60e51b8152600401610c2090613591565b6019805460ff1916911515919091179055565b60006001600160a01b0382166117605760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c20565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117a65760405162461bcd60e51b8152600401610c2090613591565b6117b060006124fc565b565b6000600f82815481106117d557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610b2890613777565b61180a33838361254e565b5050565b600a546001600160a01b031633146118385760405162461bcd60e51b8152600401610c2090613591565b6019805461ff001916610100179055565b600a546001600160a01b031633146118735760405162461bcd60e51b8152600401610c2090613591565b6012546014546118849083906136e9565b11156118e45760405162461bcd60e51b815260206004820152602960248201527f437962657220536e65616b6572733a206d617820746f74616c20737570706c7960448201526808195e18d95959195960ba1b6064820152608401610c20565b6000805b82811015611a0857600084848381811061191257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119279190612fd9565b6001600160a01b031614156119945760405162461bcd60e51b815260206004820152602d60248201527f437962657220536e65616b6572733a20726563657069656e742069732074686560448201526c206e756c6c206164647265737360981b6064820152608401610c20565b6119a2601d80546001019055565b601d5491506119e58484838181106119ca57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119df9190612fd9565b836123e9565b6014546119f39060016136e9565b60145580611a00816137b2565b9150506118e8565b50505050565b611a183383612148565b611a345760405162461bcd60e51b8152600401610c2090613608565b611a088484848461261d565b60188054610c5290613777565b600a546001600160a01b03163314611a775760405162461bcd60e51b8152600401610c2090613591565b601c55565b6000818152600260205260409020546060906001600160a01b0316611afb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c20565b601954610100900460ff16611b9c5760178054611b1790613777565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4390613777565b8015611b905780601f10611b6557610100808354040283529160200191611b90565b820191906000526020600020905b815481529060010190602001808311611b7357829003601f168201915b50505050509050919050565b6000611ba6612650565b90506000815111611bc65760405180602001604052806000815250611bf4565b80611bd08461265f565b6018604051602001611be49392919061334d565b6040516020818303038152906040525b9392505050565b6019546301000000900460ff16611c545760405162461bcd60e51b815260206004820152601e60248201527f437962657220536e65616b6572733a2050726573616c65206973204f464600006044820152606401610c20565b60195462010000900460ff1615611c7d5760405162461bcd60e51b8152600401610c20906135c6565b600a811115611c9e5760405162461bcd60e51b8152600401610c2090613659565b336000908152601a6020526040902054600a90611cbc9083906136e9565b1115611cda5760405162461bcd60e51b8152600401610c2090613659565b601354601254611cea9190613734565b81601554611cf891906136e9565b1115611d165760405162461bcd60e51b8152600401610c20906136a6565b3481601b54611d259190613715565b1115611d435760405162461bcd60e51b8152600401610c2090613542565b6000805b82811015610de457611d5d601d80546001019055565b601d549150611d6c33836123e9565b336000908152601a6020526040902054611d879060016136e9565b336000908152601a6020526040902055601454611da59060016136e9565b601455601554611db69060016136e9565b60155580611dc3816137b2565b915050611d47565b600a546001600160a01b03163314611df55760405162461bcd60e51b8152600401610c2090613591565b6019805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b03163314611e405760405162461bcd60e51b8152600401610c2090613591565b805161180a906018906020840190612eda565b600a546001600160a01b03163314611e7d5760405162461bcd60e51b8152600401610c2090613591565b805161180a906017906020840190612eda565b600a546001600160a01b03163314611eba5760405162461bcd60e51b8152600401610c2090613591565b6001600160a01b038116611f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b611f28816124fc565b50565b60006001600160e01b031982166380ac58cd60e01b1480611f5c57506001600160e01b03198216635b5e139f60e01b145b80610b1357506301ffc9a760e01b6001600160e01b0319831614610b13565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fb082611634565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916120139086613715565b61201d9190613701565b6120279190613734565b949350505050565b8047101561207f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c20565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120cc576040519150601f19603f3d011682016040523d82523d6000602084013e6120d1565b606091505b5050905080610de45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c20565b6000818152600260205260408120546001600160a01b03166121c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c20565b60006121cc83611634565b9050806001600160a01b0316846001600160a01b031614806122075750836001600160a01b03166121fc84610bab565b6001600160a01b0316145b8061202757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b031661225182611634565b6001600160a01b0316146122b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c20565b6001600160a01b03821661231b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b612326838383612779565b612331600082611f7b565b6001600160a01b038316600090815260036020526040812080546001929061235a908490613734565b90915550506001600160a01b03821660009081526003602052604081208054600192906123889084906136e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61180a828260405180602001604052806000815250612831565b600061240e82611634565b905061241c81600084612779565b612427600083611f7b565b6001600160a01b0381166000908152600360205260408120805460019290612450908490613734565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610de4908490612864565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156125b05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c20565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61262884848461223e565b61263484848484612936565b611a085760405162461bcd60e51b8152600401610c209061345f565b606060168054610b2890613777565b6060816126835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126ad5780612697816137b2565b91506126a69050600a83613701565b9150612687565b60008167ffffffffffffffff8111156126d657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612700576020820181803683370190505b5090505b841561202757612715600183613734565b9150612722600a866137cd565b61272d9060306136e9565b60f81b81838151811061275057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612772600a86613701565b9450612704565b6001600160a01b0383166127d4576127cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127f7565b816001600160a01b0316836001600160a01b0316146127f7576127f78382612a43565b6001600160a01b03821661280e57610de481612ae0565b826001600160a01b0316826001600160a01b031614610de457610de48282612bb9565b61283b8383612bfd565b6128486000848484612936565b610de45760405162461bcd60e51b8152600401610c209061345f565b60006128b9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d4b9092919063ffffffff16565b805190915015610de457808060200190518101906128d791906131ce565b610de45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c20565b60006001600160a01b0384163b15612a3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061297a90339089908890889060040161340f565b602060405180830381600087803b15801561299457600080fd5b505af19250505080156129c4575060408051601f3d908101601f191682019092526129c19181019061321e565b60015b612a1e573d8080156129f2576040519150601f19603f3d011682016040523d82523d6000602084013e6129f7565b606091505b508051612a165760405162461bcd60e51b8152600401610c209061345f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612027565b506001949350505050565b60006001612a50846116f5565b612a5a9190613734565b600083815260076020526040902054909150808214612aad576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612af290600190613734565b60008381526009602052604081205460088054939450909284908110612b2857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612b5757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b9d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612bc4836116f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612c535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c20565b6000818152600260205260409020546001600160a01b031615612cb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c20565b612cc460008383612779565b6001600160a01b0382166000908152600360205260408120805460019290612ced9084906136e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612027848460008585843b612da45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c20565b600080866001600160a01b03168587604051612dc09190613331565b60006040518083038185875af1925050503d8060008114612dfd576040519150601f19603f3d011682016040523d82523d6000602084013e612e02565b606091505b5091509150612e12828286612e1d565b979650505050505050565b60608315612e2c575081611bf4565b825115612e3c5782518084602001fd5b8160405162461bcd60e51b8152600401610c20919061344c565b828054612e6290613777565b90600052602060002090601f016020900481019282612e845760008555612eca565b82601f10612e9d5782800160ff19823516178555612eca565b82800160010185558215612eca579182015b82811115612eca578235825591602001919060010190612eaf565b50612ed6929150612f4e565b5090565b828054612ee690613777565b90600052602060002090601f016020900481019282612f085760008555612eca565b82601f10612f2157805160ff1916838001178555612eca565b82800160010185558215612eca579182015b82811115612eca578251825591602001919060010190612f33565b5b80821115612ed65760008155600101612f4f565b600067ffffffffffffffff80841115612f7e57612f7e61380d565b604051601f8501601f19908116603f01168101908282118183101715612fa657612fa661380d565b81604052809350858152868686011115612fbf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612fea578081fd5b8135611bf481613823565b60008060408385031215613007578081fd5b823561301281613823565b9150602083013561302281613823565b809150509250929050565b600080600060608486031215613041578081fd5b833561304c81613823565b9250602084013561305c81613823565b929592945050506040919091013590565b60008060008060808587031215613082578081fd5b843561308d81613823565b9350602085013561309d81613823565b925060408501359150606085013567ffffffffffffffff8111156130bf578182fd5b8501601f810187136130cf578182fd5b6130de87823560208401612f63565b91505092959194509250565b600080604083850312156130fc578182fd5b823561310781613823565b9150602083013561302281613838565b60008060408385031215613129578182fd5b823561313481613823565b946020939093013593505050565b60008060208385031215613154578182fd5b823567ffffffffffffffff8082111561316b578384fd5b818501915085601f83011261317e578384fd5b81358181111561318c578485fd5b8660208260051b85010111156131a0578485fd5b60209290920196919550909350505050565b6000602082840312156131c3578081fd5b8135611bf481613838565b6000602082840312156131df578081fd5b8151611bf481613838565b6000602082840312156131fb578081fd5b5035919050565b600060208284031215613213578081fd5b8135611bf481613846565b60006020828403121561322f578081fd5b8151611bf481613846565b60008060408385031215613007578182fd5b6000806020838503121561325e578182fd5b823567ffffffffffffffff80821115613275578384fd5b818501915085601f830112613288578384fd5b813581811115613296578485fd5b8660208285010111156131a0578485fd5b6000602082840312156132b8578081fd5b813567ffffffffffffffff8111156132ce578182fd5b8201601f810184136132de578182fd5b61202784823560208401612f63565b6000602082840312156132fe578081fd5b5051919050565b6000815180845261331d81602086016020860161374b565b601f01601f19169290920160200192915050565b6000825161334381846020870161374b565b9190910192915050565b6000845160206133608285838a0161374b565b8551918401916133738184848a0161374b565b85549201918390600181811c908083168061338f57607f831692505b8583108114156133ad57634e487b7160e01b88526022600452602488fd5b8080156133c157600181146133d2576133fe565b60ff198516885283880195506133fe565b60008b815260209020895b858110156133f65781548a8201529084019088016133dd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061344290830184613305565b9695505050505050565b602081526000611bf46020830184613305565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252602f908201527f437962657220536e65616b6572733a2045746865722076616c75652073656e7460408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f437962657220536e65616b6572733a20636f6e74726163742069732070617573604082015261195960f21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602d908201527f437962657220536e65616b6572733a20596f752063616e2774206d696e74207360408201526c6f206d75636820746f6b656e7360981b606082015260800190565b60208082526023908201527f437962657220536e65616b6572733a206d617820737570706c7920657863656560408201526219195960ea1b606082015260800190565b600082198211156136fc576136fc6137e1565b500190565b600082613710576137106137f7565b500490565b600081600019048311821515161561372f5761372f6137e1565b500290565b600082821015613746576137466137e1565b500390565b60005b8381101561376657818101518382015260200161374e565b83811115611a085750506000910152565b600181811c9082168061378b57607f821691505b602082108114156137ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137c6576137c66137e1565b5060010190565b6000826137dc576137dc6137f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f2857600080fd5b8015158114611f2857600080fd5b6001600160e01b031981168114611f2857600080fdfea2646970667358221220430b81fd008f7a869f282876b272b5dc7502094ad3514ac8e9d0245656f7f7ea64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103795760003560e01c80636352211e116101d1578063abfe761411610102578063d082a3f7116100a0578063e33b7de31161006f578063e33b7de314610a50578063e985e9c514610a65578063f2c4ce1e14610aae578063f2fde38b14610ace57600080fd5b8063d082a3f7146109cf578063d5abeb01146109e4578063d79779b2146109fa578063da3ef23f14610a3057600080fd5b8063c6a7cbc9116100dc578063c6a7cbc914610946578063c87b56dd14610966578063c9b298f114610986578063ce7c2ac21461099957600080fd5b8063abfe7614146108ef578063b88d4fde14610911578063c66828621461093157600080fd5b80638b83209b1161016f5780639852595c116101495780639852595c14610864578063a22cb4651461089a578063a475b5dd146108ba578063a5fd7bec146108cf57600080fd5b80638b83209b146108115780638da5cb5b1461083157806395d89b411461084f57600080fd5b80636f0b7871116101ab5780636f0b78711461079957806370a08231146107af578063715018a6146107cf5780637f1e3711146107e457600080fd5b80636352211e146107445780636c0360eb146107645780636e0e5b191461077957600080fd5b80632f745c59116102ab57806348b750441161024957806352e973261161022357806352e97326146106cf57806355f804b3146106ef5780635c975abb1461070f57806360e5bb851461072f57600080fd5b806348b75044146106705780634f6ccce71461069057806351830227146106b057600080fd5b8063406072a911610285578063406072a9146105d557806342842e0e1461061b57806342966c681461063b57806346e79ffc1461065b57600080fd5b80632f745c591461058a578063386bfc98146105aa5780633a98ef39146105c057600080fd5b80630d0c31b71161031857806319165587116102f257806319165587146105215780632254b0151461054157806323b872dd146105575780632db115441461057757600080fd5b80630d0c31b7146104cb57806310ed7621146104ec57806318160ddd1461050c57600080fd5b806307ebec271161035457806307ebec2714610442578063081812fc1461045c578063081c8c4414610494578063095ea7b3146104a957600080fd5b8062456379146103c757806301ffc9a7146103f057806306fdde031461042057600080fd5b366103c2577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103d357600080fd5b506103dd60145481565b6040519081526020015b60405180910390f35b3480156103fc57600080fd5b5061041061040b366004613202565b610aee565b60405190151581526020016103e7565b34801561042c57600080fd5b50610435610b19565b6040516103e7919061344c565b34801561044e57600080fd5b506019546104109060ff1681565b34801561046857600080fd5b5061047c6104773660046131ea565b610bab565b6040516001600160a01b0390911681526020016103e7565b3480156104a057600080fd5b50610435610c45565b3480156104b557600080fd5b506104c96104c4366004613117565b610cd3565b005b3480156104d757600080fd5b50601954610410906301000000900460ff1681565b3480156104f857600080fd5b506104c96105073660046131ea565b610de9565b34801561051857600080fd5b506008546103dd565b34801561052d57600080fd5b506104c961053c366004612fd9565b610e18565b34801561054d57600080fd5b506103dd60135481565b34801561056357600080fd5b506104c961057236600461302d565b610f46565b6104c96105853660046131ea565b610f77565b34801561059657600080fd5b506103dd6105a5366004613117565b611110565b3480156105b657600080fd5b506103dd601c5481565b3480156105cc57600080fd5b50600b546103dd565b3480156105e157600080fd5b506103dd6105f036600461323a565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561062757600080fd5b506104c961063636600461302d565b6111a6565b34801561064757600080fd5b506104c96106563660046131ea565b6111c1565b34801561066757600080fd5b506104c96112b0565b34801561067c57600080fd5b506104c961068b36600461323a565b6112f9565b34801561069c57600080fd5b506103dd6106ab3660046131ea565b6114e1565b3480156106bc57600080fd5b5060195461041090610100900460ff1681565b3480156106db57600080fd5b506104c96106ea3660046131ea565b611582565b3480156106fb57600080fd5b506104c961070a36600461324c565b6115b1565b34801561071b57600080fd5b506019546104109062010000900460ff1681565b34801561073b57600080fd5b506104c96115e7565b34801561075057600080fd5b5061047c61075f3660046131ea565b611634565b34801561077057600080fd5b506104356116ab565b34801561078557600080fd5b506104c96107943660046131b2565b6116b8565b3480156107a557600080fd5b506103dd60155481565b3480156107bb57600080fd5b506103dd6107ca366004612fd9565b6116f5565b3480156107db57600080fd5b506104c961177c565b3480156107f057600080fd5b506103dd6107ff366004612fd9565b601a6020526000908152604090205481565b34801561081d57600080fd5b5061047c61082c3660046131ea565b6117b2565b34801561083d57600080fd5b50600a546001600160a01b031661047c565b34801561085b57600080fd5b506104356117f0565b34801561087057600080fd5b506103dd61087f366004612fd9565b6001600160a01b03166000908152600e602052604090205490565b3480156108a657600080fd5b506104c96108b53660046130ea565b6117ff565b3480156108c657600080fd5b506104c961180e565b3480156108db57600080fd5b506104c96108ea366004613142565b611849565b3480156108fb57600080fd5b5060195461041090640100000000900460ff1681565b34801561091d57600080fd5b506104c961092c36600461306d565b611a0e565b34801561093d57600080fd5b50610435611a40565b34801561095257600080fd5b506104c96109613660046131ea565b611a4d565b34801561097257600080fd5b506104356109813660046131ea565b611a7c565b6104c96109943660046131ea565b611bfb565b3480156109a557600080fd5b506103dd6109b4366004612fd9565b6001600160a01b03166000908152600d602052604090205490565b3480156109db57600080fd5b506104c9611dcb565b3480156109f057600080fd5b506103dd60125481565b348015610a0657600080fd5b506103dd610a15366004612fd9565b6001600160a01b031660009081526010602052604090205490565b348015610a3c57600080fd5b506104c9610a4b3660046132a7565b611e16565b348015610a5c57600080fd5b50600c546103dd565b348015610a7157600080fd5b50610410610a80366004612ff5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610aba57600080fd5b506104c9610ac93660046132a7565b611e53565b348015610ada57600080fd5b506104c9610ae9366004612fd9565b611e90565b60006001600160e01b0319821663780e9d6360e01b1480610b135750610b1382611f2b565b92915050565b606060008054610b2890613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5490613777565b8015610ba15780601f10610b7657610100808354040283529160200191610ba1565b820191906000526020600020905b815481529060010190602001808311610b8457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60178054610c5290613777565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7e90613777565b8015610ccb5780601f10610ca057610100808354040283529160200191610ccb565b820191906000526020600020905b815481529060010190602001808311610cae57829003601f168201915b505050505081565b6000610cde82611634565b9050806001600160a01b0316836001600160a01b03161415610d4c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c20565b336001600160a01b0382161480610d685750610d688133610a80565b610dda5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c20565b610de48383611f7b565b505050565b600a546001600160a01b03163314610e135760405162461bcd60e51b8152600401610c2090613591565b601355565b6001600160a01b0381166000908152600d6020526040902054610e4d5760405162461bcd60e51b8152600401610c20906134b1565b6000610e58600c5490565b610e6290476136e9565b90506000610e8f8383610e8a866001600160a01b03166000908152600e602052604090205490565b611fe9565b905080610eae5760405162461bcd60e51b8152600401610c20906134f7565b6001600160a01b0383166000908152600e602052604081208054839290610ed69084906136e9565b9250508190555080600c6000828254610eef91906136e9565b90915550610eff9050838261202f565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f503382612148565b610f6c5760405162461bcd60e51b8152600401610c2090613608565b610de483838361223e565b601954640100000000900460ff16610fd15760405162461bcd60e51b815260206004820152601d60248201527f437962657220536e65616b6572733a205075626c6963206973204f46460000006044820152606401610c20565b600081116110215760405162461bcd60e51b815260206004820152601b60248201527f437962657220536e65616b6572733a207a65726f20616d6f756e7400000000006044820152606401610c20565b6013546012546110319190613734565b8160155461103f91906136e9565b111561105d5760405162461bcd60e51b8152600401610c20906136a6565b3481601b5461106c9190613715565b111561108a5760405162461bcd60e51b8152600401610c2090613542565b60195462010000900460ff16156110b35760405162461bcd60e51b8152600401610c20906135c6565b6000805b82811015610de4576110cd601d80546001019055565b601d5491506110dc33836123e9565b6014546110ea9060016136e9565b6014556015546110fb9060016136e9565b60155580611108816137b2565b9150506110b7565b600061111b836116f5565b821061117d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c20565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610de483838360405180602001604052806000815250611a0e565b60195460ff1661121d5760405162461bcd60e51b815260206004820152602160248201527f437962657220536e65616b657273203a206275726e696e672064697361626c656044820152601960fa1b6064820152608401610c20565b6112273382612148565b6112925760405162461bcd60e51b815260206004820152603660248201527f437962657220536e65616b657273203a206275726e2063616c6c6572206973206044820152751b9bdd081bdddb995c881b9bdc88185c1c1c9bdd995960521b6064820152608401610c20565b61129b81612403565b60016014546112aa9190613734565b60145550565b600a546001600160a01b031633146112da5760405162461bcd60e51b8152600401610c2090613591565b6019805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b0381166000908152600d602052604090205461132e5760405162461bcd60e51b8152600401610c20906134b1565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561138657600080fd5b505afa15801561139a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113be91906132ed565b6113c891906136e9565b905060006114018383610e8a87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114205760405162461bcd60e51b8152600401610c20906134f7565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906114579084906136e9565b90915550506001600160a01b038416600090815260106020526040812080548392906114849084906136e9565b9091555061149590508484836124aa565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b60006114ec60085490565b821061154f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c20565b6008828154811061157057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146115ac5760405162461bcd60e51b8152600401610c2090613591565b601255565b600a546001600160a01b031633146115db5760405162461bcd60e51b8152600401610c2090613591565b610de460168383612e56565b600a546001600160a01b031633146116115760405162461bcd60e51b8152600401610c2090613591565b6019805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610b135760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c20565b60168054610c5290613777565b600a546001600160a01b031633146116e25760405162461bcd60e51b8152600401610c2090613591565b6019805460ff1916911515919091179055565b60006001600160a01b0382166117605760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c20565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117a65760405162461bcd60e51b8152600401610c2090613591565b6117b060006124fc565b565b6000600f82815481106117d557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610b2890613777565b61180a33838361254e565b5050565b600a546001600160a01b031633146118385760405162461bcd60e51b8152600401610c2090613591565b6019805461ff001916610100179055565b600a546001600160a01b031633146118735760405162461bcd60e51b8152600401610c2090613591565b6012546014546118849083906136e9565b11156118e45760405162461bcd60e51b815260206004820152602960248201527f437962657220536e65616b6572733a206d617820746f74616c20737570706c7960448201526808195e18d95959195960ba1b6064820152608401610c20565b6000805b82811015611a0857600084848381811061191257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119279190612fd9565b6001600160a01b031614156119945760405162461bcd60e51b815260206004820152602d60248201527f437962657220536e65616b6572733a20726563657069656e742069732074686560448201526c206e756c6c206164647265737360981b6064820152608401610c20565b6119a2601d80546001019055565b601d5491506119e58484838181106119ca57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119df9190612fd9565b836123e9565b6014546119f39060016136e9565b60145580611a00816137b2565b9150506118e8565b50505050565b611a183383612148565b611a345760405162461bcd60e51b8152600401610c2090613608565b611a088484848461261d565b60188054610c5290613777565b600a546001600160a01b03163314611a775760405162461bcd60e51b8152600401610c2090613591565b601c55565b6000818152600260205260409020546060906001600160a01b0316611afb5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c20565b601954610100900460ff16611b9c5760178054611b1790613777565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4390613777565b8015611b905780601f10611b6557610100808354040283529160200191611b90565b820191906000526020600020905b815481529060010190602001808311611b7357829003601f168201915b50505050509050919050565b6000611ba6612650565b90506000815111611bc65760405180602001604052806000815250611bf4565b80611bd08461265f565b6018604051602001611be49392919061334d565b6040516020818303038152906040525b9392505050565b6019546301000000900460ff16611c545760405162461bcd60e51b815260206004820152601e60248201527f437962657220536e65616b6572733a2050726573616c65206973204f464600006044820152606401610c20565b60195462010000900460ff1615611c7d5760405162461bcd60e51b8152600401610c20906135c6565b600a811115611c9e5760405162461bcd60e51b8152600401610c2090613659565b336000908152601a6020526040902054600a90611cbc9083906136e9565b1115611cda5760405162461bcd60e51b8152600401610c2090613659565b601354601254611cea9190613734565b81601554611cf891906136e9565b1115611d165760405162461bcd60e51b8152600401610c20906136a6565b3481601b54611d259190613715565b1115611d435760405162461bcd60e51b8152600401610c2090613542565b6000805b82811015610de457611d5d601d80546001019055565b601d549150611d6c33836123e9565b336000908152601a6020526040902054611d879060016136e9565b336000908152601a6020526040902055601454611da59060016136e9565b601455601554611db69060016136e9565b60155580611dc3816137b2565b915050611d47565b600a546001600160a01b03163314611df55760405162461bcd60e51b8152600401610c2090613591565b6019805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b03163314611e405760405162461bcd60e51b8152600401610c2090613591565b805161180a906018906020840190612eda565b600a546001600160a01b03163314611e7d5760405162461bcd60e51b8152600401610c2090613591565b805161180a906017906020840190612eda565b600a546001600160a01b03163314611eba5760405162461bcd60e51b8152600401610c2090613591565b6001600160a01b038116611f1f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c20565b611f28816124fc565b50565b60006001600160e01b031982166380ac58cd60e01b1480611f5c57506001600160e01b03198216635b5e139f60e01b145b80610b1357506301ffc9a760e01b6001600160e01b0319831614610b13565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611fb082611634565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916120139086613715565b61201d9190613701565b6120279190613734565b949350505050565b8047101561207f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c20565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146120cc576040519150601f19603f3d011682016040523d82523d6000602084013e6120d1565b606091505b5050905080610de45760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c20565b6000818152600260205260408120546001600160a01b03166121c15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c20565b60006121cc83611634565b9050806001600160a01b0316846001600160a01b031614806122075750836001600160a01b03166121fc84610bab565b6001600160a01b0316145b8061202757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b031661225182611634565b6001600160a01b0316146122b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c20565b6001600160a01b03821661231b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c20565b612326838383612779565b612331600082611f7b565b6001600160a01b038316600090815260036020526040812080546001929061235a908490613734565b90915550506001600160a01b03821660009081526003602052604081208054600192906123889084906136e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61180a828260405180602001604052806000815250612831565b600061240e82611634565b905061241c81600084612779565b612427600083611f7b565b6001600160a01b0381166000908152600360205260408120805460019290612450908490613734565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610de4908490612864565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156125b05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c20565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61262884848461223e565b61263484848484612936565b611a085760405162461bcd60e51b8152600401610c209061345f565b606060168054610b2890613777565b6060816126835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126ad5780612697816137b2565b91506126a69050600a83613701565b9150612687565b60008167ffffffffffffffff8111156126d657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612700576020820181803683370190505b5090505b841561202757612715600183613734565b9150612722600a866137cd565b61272d9060306136e9565b60f81b81838151811061275057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612772600a86613701565b9450612704565b6001600160a01b0383166127d4576127cf81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6127f7565b816001600160a01b0316836001600160a01b0316146127f7576127f78382612a43565b6001600160a01b03821661280e57610de481612ae0565b826001600160a01b0316826001600160a01b031614610de457610de48282612bb9565b61283b8383612bfd565b6128486000848484612936565b610de45760405162461bcd60e51b8152600401610c209061345f565b60006128b9826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612d4b9092919063ffffffff16565b805190915015610de457808060200190518101906128d791906131ce565b610de45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c20565b60006001600160a01b0384163b15612a3857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061297a90339089908890889060040161340f565b602060405180830381600087803b15801561299457600080fd5b505af19250505080156129c4575060408051601f3d908101601f191682019092526129c19181019061321e565b60015b612a1e573d8080156129f2576040519150601f19603f3d011682016040523d82523d6000602084013e6129f7565b606091505b508051612a165760405162461bcd60e51b8152600401610c209061345f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612027565b506001949350505050565b60006001612a50846116f5565b612a5a9190613734565b600083815260076020526040902054909150808214612aad576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612af290600190613734565b60008381526009602052604081205460088054939450909284908110612b2857634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612b5757634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b9d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612bc4836116f5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612c535760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c20565b6000818152600260205260409020546001600160a01b031615612cb85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c20565b612cc460008383612779565b6001600160a01b0382166000908152600360205260408120805460019290612ced9084906136e9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612027848460008585843b612da45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c20565b600080866001600160a01b03168587604051612dc09190613331565b60006040518083038185875af1925050503d8060008114612dfd576040519150601f19603f3d011682016040523d82523d6000602084013e612e02565b606091505b5091509150612e12828286612e1d565b979650505050505050565b60608315612e2c575081611bf4565b825115612e3c5782518084602001fd5b8160405162461bcd60e51b8152600401610c20919061344c565b828054612e6290613777565b90600052602060002090601f016020900481019282612e845760008555612eca565b82601f10612e9d5782800160ff19823516178555612eca565b82800160010185558215612eca579182015b82811115612eca578235825591602001919060010190612eaf565b50612ed6929150612f4e565b5090565b828054612ee690613777565b90600052602060002090601f016020900481019282612f085760008555612eca565b82601f10612f2157805160ff1916838001178555612eca565b82800160010185558215612eca579182015b82811115612eca578251825591602001919060010190612f33565b5b80821115612ed65760008155600101612f4f565b600067ffffffffffffffff80841115612f7e57612f7e61380d565b604051601f8501601f19908116603f01168101908282118183101715612fa657612fa661380d565b81604052809350858152868686011115612fbf57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612fea578081fd5b8135611bf481613823565b60008060408385031215613007578081fd5b823561301281613823565b9150602083013561302281613823565b809150509250929050565b600080600060608486031215613041578081fd5b833561304c81613823565b9250602084013561305c81613823565b929592945050506040919091013590565b60008060008060808587031215613082578081fd5b843561308d81613823565b9350602085013561309d81613823565b925060408501359150606085013567ffffffffffffffff8111156130bf578182fd5b8501601f810187136130cf578182fd5b6130de87823560208401612f63565b91505092959194509250565b600080604083850312156130fc578182fd5b823561310781613823565b9150602083013561302281613838565b60008060408385031215613129578182fd5b823561313481613823565b946020939093013593505050565b60008060208385031215613154578182fd5b823567ffffffffffffffff8082111561316b578384fd5b818501915085601f83011261317e578384fd5b81358181111561318c578485fd5b8660208260051b85010111156131a0578485fd5b60209290920196919550909350505050565b6000602082840312156131c3578081fd5b8135611bf481613838565b6000602082840312156131df578081fd5b8151611bf481613838565b6000602082840312156131fb578081fd5b5035919050565b600060208284031215613213578081fd5b8135611bf481613846565b60006020828403121561322f578081fd5b8151611bf481613846565b60008060408385031215613007578182fd5b6000806020838503121561325e578182fd5b823567ffffffffffffffff80821115613275578384fd5b818501915085601f830112613288578384fd5b813581811115613296578485fd5b8660208285010111156131a0578485fd5b6000602082840312156132b8578081fd5b813567ffffffffffffffff8111156132ce578182fd5b8201601f810184136132de578182fd5b61202784823560208401612f63565b6000602082840312156132fe578081fd5b5051919050565b6000815180845261331d81602086016020860161374b565b601f01601f19169290920160200192915050565b6000825161334381846020870161374b565b9190910192915050565b6000845160206133608285838a0161374b565b8551918401916133738184848a0161374b565b85549201918390600181811c908083168061338f57607f831692505b8583108114156133ad57634e487b7160e01b88526022600452602488fd5b8080156133c157600181146133d2576133fe565b60ff198516885283880195506133fe565b60008b815260209020895b858110156133f65781548a8201529084019088016133dd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061344290830184613305565b9695505050505050565b602081526000611bf46020830184613305565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252602f908201527f437962657220536e65616b6572733a2045746865722076616c75652073656e7460408201526e081a5cc81b9bdd0818dbdc9c9958dd608a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526022908201527f437962657220536e65616b6572733a20636f6e74726163742069732070617573604082015261195960f21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602d908201527f437962657220536e65616b6572733a20596f752063616e2774206d696e74207360408201526c6f206d75636820746f6b656e7360981b606082015260800190565b60208082526023908201527f437962657220536e65616b6572733a206d617820737570706c7920657863656560408201526219195960ea1b606082015260800190565b600082198211156136fc576136fc6137e1565b500190565b600082613710576137106137f7565b500490565b600081600019048311821515161561372f5761372f6137e1565b500290565b600082821015613746576137466137e1565b500390565b60005b8381101561376657818101518382015260200161374e565b83811115611a085750506000910152565b600181811c9082168061378b57607f821691505b602082108114156137ac57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156137c6576137c66137e1565b5060010190565b6000826137dc576137dc6137f7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611f2857600080fd5b8015158114611f2857600080fd5b6001600160e01b031981168114611f2857600080fdfea2646970667358221220430b81fd008f7a869f282876b272b5dc7502094ad3514ac8e9d0245656f7f7ea64736f6c63430008040033

Deployed Bytecode Sourcemap

62620:6382:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27464:40;9412:10;27464:40;;;-1:-1:-1;;;;;10431:32:1;;;10413:51;;27494:9:0;10495:2:1;10480:18;;10473:34;10386:18;27464:40:0;;;;;;;62620:6382;;;;;62864:23;;;;;;;;;;;;;;;;;;;11628:25:1;;;11616:2;11601:18;62864:23:0;;;;;;;;56391:224;;;;;;;;;;-1:-1:-1;56391:224:0;;;;;:::i;:::-;;:::i;:::-;;;11455:14:1;;11448:22;11430:41;;11418:2;11403:18;56391:224:0;11385:92:1;43885:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63036:33::-;;;;;;;;;;-1:-1:-1;63036:33:0;;;;;;;;45444:221;;;;;;;;;;-1:-1:-1;45444:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10187:32:1;;;10169:51;;10157:2;10142:18;45444:221:0;10124:102:1;62955:28:0;;;;;;;;;;;;;:::i;44967:411::-;;;;;;;;;;-1:-1:-1;44967:411:0;;;;;:::i;:::-;;:::i;:::-;;63146:32;;;;;;;;;;-1:-1:-1;63146:32:0;;;;;;;;;;;68168:105;;;;;;;;;;-1:-1:-1;68168:105:0;;;;;:::i;:::-;;:::i;57031:113::-;;;;;;;;;;-1:-1:-1;57119:10:0;:17;57031:113;;29250:566;;;;;;;;;;-1:-1:-1;29250:566:0;;;;;:::i;:::-;;:::i;62826:31::-;;;;;;;;;;;;;;;;46194:339;;;;;;;;;;-1:-1:-1;46194:339:0;;;;;:::i;:::-;;:::i;66188:835::-;;;;;;:::i;:::-;;:::i;56699:256::-;;;;;;;;;;-1:-1:-1;56699:256:0;;;;;:::i;:::-;;:::i;63334: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;68408:331::-;;;;;;;;;;-1:-1:-1;68408:331:0;;;;;:::i;:::-;;:::i;63727:80::-;;;;;;;;;;;;;:::i;30084:641::-;;;;;;;;;;-1:-1:-1;30084:641:0;;;;;:::i;:::-;;:::i;57221:233::-;;;;;;;;;;-1:-1:-1;57221:233:0;;;;;:::i;:::-;;:::i;63076:28::-;;;;;;;;;;-1:-1:-1;63076:28:0;;;;;;;;;;;68055:105;;;;;;;;;;-1:-1:-1;68055:105:0;;;;;:::i;:::-;;:::i;64016:112::-;;;;;;;;;;-1:-1:-1;64016:112:0;;;;;:::i;:::-;;:::i;63113:26::-;;;;;;;;;;-1:-1:-1;63113:26:0;;;;;;;;;;;63917:91;;;;;;;;;;;;;:::i;43579:239::-;;;;;;;;;;-1:-1:-1;43579:239:0;;;;;:::i;:::-;;:::i;62927:21::-;;;;;;;;;;;;;:::i;64321:115::-;;;;;;;;;;-1:-1:-1;64321:115:0;;;;;:::i;:::-;;:::i;62894:24::-;;;;;;;;;;;;;;;;43309:208;;;;;;;;;;-1:-1:-1;43309:208:0;;;;;:::i;:::-;;:::i;11259:103::-;;;;;;;;;;;;;:::i;63225:45::-;;;;;;;;;;-1:-1:-1;63225:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;28950:100;;;;;;;;;;-1:-1:-1;28950:100:0;;;;;:::i;:::-;;:::i;10608:87::-;;;;;;;;;;-1:-1:-1;10681:6:0;;-1:-1:-1;;;;;10681:6:0;10608:87;;44054:104;;;;;;;;;;;;;:::i;28446:109::-;;;;;;;;;;-1:-1:-1;28446:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;28529:18:0;28502:7;28529:18;;;:9;:18;;;;;;;28446:109;45737:155;;;;;;;;;;-1:-1:-1;45737:155:0;;;;;:::i;:::-;;:::i;64244:69::-;;;;;;;;;;;;;:::i;64446:651::-;;;;;;;;;;-1:-1:-1;64446:651:0;;;;;:::i;:::-;;:::i;63185:31::-;;;;;;;;;;-1:-1:-1;63185:31:0;;;;;;;;;;;46860:328;;;;;;;;;;-1:-1:-1;46860:328:0;;;;;:::i;:::-;;:::i;62990:37::-;;;;;;;;;;;;;:::i;68281:119::-;;;;;;;;;;-1:-1:-1;68281:119:0;;;;;:::i;:::-;;:::i;67031:723::-;;;;;;;;;;-1:-1:-1;67031:723:0;;;;;:::i;:::-;;:::i;65105:1075::-;;;;;;:::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;63815:94;;;;;;;;;;;;;:::i;62788:31::-;;;;;;;;;;;;;;;;28032:119;;;;;;;;;;-1:-1:-1;28032:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;28117:26:0;28090:7;28117:26;;;:19;:26;;;;;;;28032:119;67762:151;;;;;;;;;;-1:-1:-1;67762: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;67921:126;;;;;;;;;;-1:-1:-1;67921:126:0;;;;;:::i;:::-;;:::i;11517:201::-;;;;;;;;;;-1:-1:-1;11517:201:0;;;;;:::i;:::-;;:::i;56391:224::-;56493:4;-1:-1:-1;;;;;;56517:50:0;;-1:-1:-1;;;56517:50:0;;:90;;;56571:36;56595:11;56571:23;:36::i;:::-;56510:97;56391:224;-1:-1:-1;;56391:224:0:o;43885:100::-;43939:13;43972:5;43965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43885:100;:::o;45444:221::-;45520:7;48787:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48787:16:0;45540:73;;;;-1:-1:-1;;;45540:73:0;;20788:2:1;45540:73:0;;;20770:21:1;20827:2;20807:18;;;20800:30;20866:34;20846:18;;;20839:62;-1:-1:-1;;;20917:18:1;;;20910:42;20969:19;;45540:73:0;;;;;;;;;-1:-1:-1;45633:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45633:24:0;;45444:221::o;62955: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;;22791:2:1;45098:57:0;;;22773:21:1;22830:2;22810:18;;;22803:30;22869:34;22849:18;;;22842:62;-1:-1:-1;;;22920:18:1;;;22913:31;22961:19;;45098:57:0;22763: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;;18406:2:1;45168:168:0;;;18388:21:1;18445:2;18425:18;;;18418:30;18484:34;18464:18;;;18457:62;18555:26;18535:18;;;18528:54;18599:19;;45168:168:0;18378:246:1;45168:168:0;45349:21;45358:2;45362:7;45349:8;:21::i;:::-;44967:411;;;:::o;68168:105::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68242:10:::1;:23:::0;68168:105::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;;;;;10431:32:1;;10413:51;;10495:2;10480:18;;10473:34;;;29775:33:0;;10386: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;66188:835::-;66261:11;;;;;;;66253:53;;;;-1:-1:-1;;;66253:53:0;;18048:2:1;66253:53:0;;;18030:21:1;18087:2;18067:18;;;18060:30;18126:31;18106:18;;;18099:59;18175:18;;66253:53:0;18020:179:1;66253:53:0;66335:1;66325:7;:11;66317:51;;;;-1:-1:-1;;;66317:51:0;;17692:2:1;66317:51:0;;;17674:21:1;17731:2;17711:18;;;17704:30;17770:29;17750:18;;;17743:57;17817:18;;66317:51:0;17664:177:1;66317:51:0;66436:10;;66424:9;;:22;;;;:::i;:::-;66413:7;66401:9;;:19;;;;:::i;:::-;:45;;66379:130;;;;-1:-1:-1;;;66379:130:0;;;;;;;:::i;:::-;66562:9;66551:7;66542:6;;:16;;;;:::i;:::-;:29;;66520:126;;;;-1:-1:-1;;;66520:126:0;;;;;;;:::i;:::-;66666:6;;;;;;;66665:7;66657:54;;;;-1:-1:-1;;;66657:54:0;;;;;;;:::i;:::-;66722:18;;66751:265;66779:7;66773:3;:13;66751:265;;;66810:21;:9;1083:19;;1101:1;1083:19;;;994:127;66810:21;66859:9;964:14;66846:32;;66893:33;66903:10;66915;66893:9;:33::i;:::-;66952:8;;:12;;66963:1;66952:12;:::i;:::-;66941:8;:23;66991:9;;:13;;67003:1;66991:13;:::i;:::-;66979:9;:25;66788:5;;;;:::i;:::-;;;;66751:265;;56699:256;56796:7;56832:23;56849:5;56832:16;:23::i;:::-;56824:5;:31;56816:87;;;;-1:-1:-1;;;56816:87:0;;12090:2:1;56816:87:0;;;12072:21:1;12129:2;12109:18;;;12102:30;12168:34;12148:18;;;12141:62;-1:-1:-1;;;12219:18:1;;;12212:41;12270:19;;56816:87:0;12062: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;68408:331::-;68467:13;;;;68459:59;;;;-1:-1:-1;;;68459:59:0;;26034:2:1;68459:59:0;;;26016:21:1;26073:2;26053:18;;;26046:30;26112:34;26092:18;;;26085:62;-1:-1:-1;;;26163:18:1;;;26156:31;26204:19;;68459:59:0;26006:223:1;68459:59:0;68551:39;68570:10;68582:7;68551:18;:39::i;:::-;68529:143;;;;-1:-1:-1;;;68529:143:0;;24796:2:1;68529:143:0;;;24778:21:1;24835:2;24815:18;;;24808:30;24874:34;24854:18;;;24847:62;-1:-1:-1;;;24925:18:1;;;24918:52;24987:19;;68529:143:0;24768:244:1;68529:143:0;68683:14;68689:7;68683:5;:14::i;:::-;68730:1;68719:8;;:12;;;;:::i;:::-;68708:8;:23;-1:-1:-1;68408:331:0:o;63727:80::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;63793:6:::1;::::0;;-1:-1:-1;;63783:16:0;::::1;63793:6:::0;;;;::::1;;;63792:7;63783:16:::0;;::::1;;::::0;;63727: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;;;10169:51:1;-1:-1:-1;;;;;30266:15:0;;;;;10142: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;;;;;10431:32:1;;;10413:51;;10495:2;10480:18;;10473:34;;;30672:45:0;;;;;10386: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;;24383:2:1;57316:95:0;;;24365:21:1;24422:2;24402:18;;;24395:30;24461:34;24441:18;;;24434:62;-1:-1:-1;;;24512:18:1;;;24505:42;24564:19;;57316:95:0;24355:234:1;57316:95:0;57429:10;57440:5;57429:17;;;;;;-1:-1:-1;;;57429:17:0;;;;;;;;;;;;;;;;;57422:24;;57221:233;;;:::o;68055:105::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68130:9:::1;:22:::0;68055:105::o;64016:112::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64097:23:::1;:7;64107:13:::0;;64097:23:::1;:::i;63917:91::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;63989:11:::1;::::0;;-1:-1:-1;;63974:26:0;::::1;63989:11:::0;;;;::::1;;;63988:12;63974:26:::0;;::::1;;::::0;;63917: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;;19242:2:1;43714:73:0;;;19224:21:1;19281:2;19261:18;;;19254:30;19320:34;19300:18;;;19293:62;-1:-1:-1;;;19371:18:1;;;19364:39;19420:19;;43714:73:0;19214:231:1;62927:21:0;;;;;;;:::i;64321:115::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64398:13:::1;:30:::0;;-1:-1:-1;;64398:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;64321:115::o;43309:208::-;43381:7;-1:-1:-1;;;;;43409:19:0;;43401:74;;;;-1:-1:-1;;;43401:74:0;;18831:2:1;43401:74:0;;;18813:21:1;18870:2;18850:18;;;18843:30;18909:34;18889:18;;;18882:62;-1:-1:-1;;;18960:18:1;;;18953:40;19010:19;;43401:74:0;18803: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;64244:69::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64290:8:::1;:15:::0;;-1:-1:-1;;64290:15:0::1;;;::::0;;64244:69::o;64446:651::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;64579:9:::1;::::0;64547:8:::1;::::0;:28:::1;::::0;64558:10;;64547:28:::1;:::i;:::-;:41;;64525:132;;;::::0;-1:-1:-1;;;64525:132:0;;14099:2:1;64525:132:0::1;::::0;::::1;14081:21:1::0;14138:2;14118:18;;;14111:30;14177:34;14157:18;;;14150:62;-1:-1:-1;;;14228:18:1;;;14221:39;14277:19;;64525:132:0::1;14071:231:1::0;64525:132:0::1;64670:18;::::0;64699:391:::1;64721:23:::0;;::::1;64699:391;;;64821:1;64794:10:::0;;64805:3;64794:15;;::::1;;;-1:-1:-1::0;;;64794:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;64794:29:0::1;;;64768:136;;;::::0;-1:-1:-1;;;64768:136:0;;13685:2:1;64768:136:0::1;::::0;::::1;13667:21:1::0;13724:2;13704:18;;;13697:30;13763:34;13743:18;;;13736:62;-1:-1:-1;;;13814:18:1;;;13807:43;13867:19;;64768:136:0::1;13657:235:1::0;64768:136:0::1;64919:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;64919:21:::1;64968:9;964:14:::0;64955:32:::1;;65002:38;65012:10;;65023:3;65012:15;;;;;-1:-1:-1::0;;;65012:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65029:10;65002:9;:38::i;:::-;65066:8;::::0;:12:::1;::::0;65077:1:::1;65066:12;:::i;:::-;65055:8;:23:::0;64746:5;::::1;::::0;::::1;:::i;:::-;;;;64699:391;;;;10899:1;64446:651:::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;62990:37::-;;;;;;;:::i;68281:119::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68362:13:::1;:30:::0;68281:119::o;67031:723::-;48763:4;48787:16;;;:7;:16;;;;;;67149:13;;-1:-1:-1;;;;;48787:16:0;67180:113;;;;-1:-1:-1;;;67180:113:0;;22375:2:1;67180:113:0;;;22357:21:1;22414:2;22394:18;;;22387:30;22453:34;22433:18;;;22426:62;-1:-1:-1;;;22504:18:1;;;22497:45;22559:19;;67180:113:0;22347:237:1;67180:113:0;67308:8;;;;;;;67304:71;;67349:14;67342:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67031:723;;;:::o;67304:71::-;67387:28;67418:10;:8;:10::i;:::-;67387:41;;67490:1;67465:14;67459:28;:32;:287;;;;;;;;;;;;;;;;;67583:14;67624:18;:7;:16;:18::i;:::-;67669:13;67540:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67459:287;67439:307;67031:723;-1:-1:-1;;;67031:723:0:o;65105:1075::-;65179:12;;;;;;;65171:55;;;;-1:-1:-1;;;65171:55:0;;20429:2:1;65171:55:0;;;20411:21:1;20468:2;20448:18;;;20441:30;20507:32;20487:18;;;20480:60;20557:18;;65171:55:0;20401:180:1;65171:55:0;65246:6;;;;;;;65245:7;65237:54;;;;-1:-1:-1;;;65237:54:0;;;;;;;:::i;:::-;65337:2;65326:7;:13;;65304:108;;;;-1:-1:-1;;;65304:108:0;;;;;;;:::i;:::-;65445:10;65434:22;;;;:10;:22;;;;;;65470:2;;65434:32;;65459:7;;65434:32;:::i;:::-;:38;;65425:97;;;;-1:-1:-1;;;65425:97:0;;;;;;;:::i;:::-;65592:10;;65580:9;;:22;;;;:::i;:::-;65569:7;65557:9;;:19;;;;:::i;:::-;:45;;65535:130;;;;-1:-1:-1;;;65535:130:0;;;;;;;:::i;:::-;65718:9;65707:7;65698:6;;:16;;;;:::i;:::-;:29;;65676:126;;;;-1:-1:-1;;;65676:126:0;;;;;;;:::i;:::-;65813:18;;65842:331;65870:7;65864:3;:13;65842:331;;;65901:21;:9;1083:19;;1101:1;1083:19;;;994:127;65901:21;65950:9;964:14;65937:32;;65984:33;65994:10;66006;65984:9;:33::i;:::-;66068:10;66057:22;;;;:10;:22;;;;;;:26;;66082:1;66057:26;:::i;:::-;66043:10;66032:22;;;;:10;:22;;;;;:51;66109:8;;:12;;66120:1;66109:12;:::i;:::-;66098:8;:23;66148:9;;:13;;66160:1;66148:13;:::i;:::-;66136:9;:25;65879:5;;;;:::i;:::-;;;;65842:331;;63815:94;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;63889:12:::1;::::0;;-1:-1:-1;;63873:28:0;::::1;63889:12:::0;;;;::::1;;;63888:13;63873:28:::0;;::::1;;::::0;;63815:94::o;67762:151::-;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;67872:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;67921:126::-:0;10681:6;;-1:-1:-1;;;;;10681:6:0;9412:10;10828:23;10820:68;;;;-1:-1:-1;;;10820:68:0;;;;;;;:::i;:::-;68007: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;;12921:2:1;11598:73:0::1;::::0;::::1;12903:21:1::0;12960:2;12940:18;;;12933:30;12999:34;12979:18;;;12972:62;-1:-1:-1;;;13050:18:1;;;13043:36;13096:19;;11598:73:0::1;12893:228:1::0;11598:73:0::1;11682:28;11701:8;11682:18;:28::i;:::-;11517:201:::0;:::o;42940:305::-;43042:4;-1:-1:-1;;;;;;43079:40:0;;-1:-1:-1;;;43079:40:0;;:105;;-1:-1:-1;;;;;;;43136:48:0;;-1:-1:-1;;;43136:48:0;43079:105;:158;;;-1:-1:-1;;;;;;;;;;34745:40:0;;;43201:36;34636:157;52680:174;52755:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52755:29:0;-1:-1:-1;;;;;52755:29:0;;;;;;;;:24;;52809:23;52755:24;52809:14;:23::i;:::-;-1:-1:-1;;;;;52800:46:0;;;;;;;;;;;52680:174;;:::o;30903:248::-;31113:12;;-1:-1:-1;;;;;31093:16:0;;31049:7;31093:16;;;:7;:16;;;;;;31049:7;;31128:15;;31077:32;;:13;:32;:::i;:::-;31076:49;;;;:::i;:::-;:67;;;;:::i;:::-;31069:74;30903:248;-1:-1:-1;;;;30903:248:0:o;14218:317::-;14333:6;14308:21;:31;;14300:73;;;;-1:-1:-1;;;14300:73:0;;16102:2:1;14300:73:0;;;16084:21:1;16141:2;16121:18;;;16114:30;16180:31;16160:18;;;16153:59;16229:18;;14300:73:0;16074: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;;15675:2:1;14449:78:0;;;15657:21:1;15714:2;15694:18;;;15687:30;15753:34;15733:18;;;15726:62;15824:28;15804:18;;;15797:56;15870:19;;14449:78:0;15647: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;;16867:2:1;49102:73:0;;;16849:21:1;16906:2;16886:18;;;16879:30;16945:34;16925:18;;;16918:62;-1:-1:-1;;;16996:18:1;;;16989:42;17048:19;;49102:73:0;16839: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;;21562:2:1;52108:85:0;;;21544:21:1;21601:2;21581:18;;;21574:30;21640:34;21620:18;;;21613:62;-1:-1:-1;;;21691:18:1;;;21684:39;21740:19;;52108:85:0;21534:231:1;52108:85:0;-1:-1:-1;;;;;52212:16:0;;52204:65;;;;-1:-1:-1;;;52204:65:0;;14916:2:1;52204:65:0;;;14898:21:1;14955:2;14935:18;;;14928:30;14994:34;14974:18;;;14967:62;-1:-1:-1;;;15045:18:1;;;15038:34;15089:19;;52204:65:0;14888: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;;;;;10431:32:1;;21068:58:0;;;10413:51:1;10480:18;;;;10473:34;;;21068:58:0;;;;;;;;;;10386: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;;15321:2:1;53134:55:0;;;15303:21:1;15360:2;15340:18;;;15333:30;15399:27;15379:18;;;15372:55;15444:18;;53134:55:0;15293:175:1;53134:55:0;-1:-1:-1;;;;;53200:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53200:46:0;;;;;;;;;;53262:41;;11430::1;;;53262::0;;11403: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;64136:100::-;64188:13;64221:7;64214: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;;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;;25219:2:1;24109:85:0;;;25201:21:1;25258:2;25238:18;;;25231:30;25297:34;25277:18;;;25270:62;-1:-1:-1;;;25348:18:1;;;25341:40;25398:19;;24109:85:0;25191: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;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;;19652:2:1;50748:61:0;;;19634:21:1;;;19671:18;;;19664:30;19730:34;19710:18;;;19703:62;19782:18;;50748:61:0;19624: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;;13328:2:1;50820:58:0;;;13310:21:1;13367:2;13347:18;;;13340:30;13406;13386:18;;;13379:58;13454:18;;50820:58:0;13300: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;15839;13219:20;;17109:60;;;;-1:-1:-1;;;17109:60:0;;23611:2:1;17109:60:0;;;23593:21:1;23650:2;23630:18;;;23623:30;23689:31;23669:18;;;23662:59;23738:18;;17109:60:0;23583: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:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;2151:6;2159;2167;2175;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:392::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3215:30;3174:32;3215:30;:::i;3282:325::-;3350:6;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:2;;;3432:6;3424;3417:22;3379:2;3476:9;3463:23;3495:31;3520:5;3495:31;:::i;:::-;3545:5;3597:2;3582:18;;;;3569:32;;-1:-1:-1;;;3369:238:1:o;3612:665::-;3698:6;3706;3759:2;3747:9;3738:7;3734:23;3730:32;3727:2;;;3780:6;3772;3765:22;3727:2;3825:9;3812:23;3854:18;3895:2;3887:6;3884:14;3881:2;;;3916:6;3908;3901:22;3881:2;3959:6;3948:9;3944:22;3934:32;;4004:7;3997:4;3993:2;3989:13;3985:27;3975:2;;4031:6;4023;4016:22;3975:2;4076;4063:16;4102:2;4094:6;4091:14;4088:2;;;4123:6;4115;4108:22;4088:2;4181:7;4176:2;4166:6;4163:1;4159:14;4155:2;4151:23;4147:32;4144:45;4141:2;;;4207:6;4199;4192:22;4141:2;4243;4235:11;;;;;4265:6;;-1:-1:-1;3717:560:1;;-1:-1:-1;;;;3717:560:1:o;4282:251::-;4338:6;4391:2;4379:9;4370:7;4366:23;4362:32;4359:2;;;4412:6;4404;4397:22;4359:2;4456:9;4443:23;4475:28;4497:5;4475:28;:::i;4538:255::-;4605:6;4658:2;4646:9;4637:7;4633:23;4629:32;4626:2;;;4679:6;4671;4664:22;4626:2;4716:9;4710:16;4735:28;4757:5;4735:28;:::i;4798:190::-;4857:6;4910:2;4898:9;4889:7;4885:23;4881:32;4878:2;;;4931:6;4923;4916:22;4878:2;-1:-1:-1;4959:23:1;;4868:120;-1:-1:-1;4868:120:1:o;4993:255::-;5051:6;5104:2;5092:9;5083:7;5079:23;5075:32;5072:2;;;5125:6;5117;5110:22;5072:2;5169:9;5156:23;5188:30;5212:5;5188:30;:::i;5253:259::-;5322:6;5375:2;5363:9;5354:7;5350:23;5346:32;5343:2;;;5396:6;5388;5381:22;5343:2;5433:9;5427:16;5452:30;5476:5;5452:30;:::i;5793:412::-;5875:6;5883;5936:2;5924:9;5915:7;5911:23;5907:32;5904:2;;;5957:6;5949;5942:22;6210:642;6281:6;6289;6342:2;6330:9;6321:7;6317:23;6313:32;6310:2;;;6363:6;6355;6348:22;6310:2;6408:9;6395:23;6437:18;6478:2;6470:6;6467:14;6464:2;;;6499:6;6491;6484:22;6464:2;6542:6;6531:9;6527:22;6517:32;;6587:7;6580:4;6576:2;6572:13;6568:27;6558:2;;6614:6;6606;6599:22;6558:2;6659;6646:16;6685:2;6677:6;6674:14;6671:2;;;6706:6;6698;6691:22;6671:2;6756:7;6751:2;6742:6;6738:2;6734:15;6730:24;6727:37;6724:2;;;6782:6;6774;6767:22;6857:480;6926:6;6979:2;6967:9;6958:7;6954:23;6950:32;6947:2;;;7000:6;6992;6985:22;6947:2;7045:9;7032:23;7078:18;7070:6;7067:30;7064:2;;;7115:6;7107;7100:22;7064:2;7143:22;;7196:4;7188:13;;7184:27;-1:-1:-1;7174:2:1;;7230:6;7222;7215:22;7174:2;7258:73;7323:7;7318:2;7305:16;7300:2;7296;7292:11;7258:73;:::i;7537:194::-;7607:6;7660:2;7648:9;7639:7;7635:23;7631:32;7628:2;;;7681:6;7673;7666:22;7628:2;-1:-1:-1;7709:16:1;;7618:113;-1:-1:-1;7618:113:1:o;7736:257::-;7777:3;7815:5;7809:12;7842:6;7837:3;7830:19;7858:63;7914:6;7907:4;7902:3;7898:14;7891:4;7884:5;7880:16;7858:63;:::i;:::-;7975:2;7954:15;-1:-1:-1;;7950:29:1;7941:39;;;;7982:4;7937:50;;7785:208;-1:-1:-1;;7785:208:1:o;7998:274::-;8127:3;8165:6;8159:13;8181:53;8227:6;8222:3;8215:4;8207:6;8203:17;8181:53;:::i;:::-;8250:16;;;;;8135:137;-1:-1:-1;;8135:137:1:o;8277:1531::-;8501:3;8539:6;8533:13;8565:4;8578:51;8622:6;8617:3;8612:2;8604:6;8600:15;8578:51;:::i;:::-;8692:13;;8651:16;;;;8714:55;8692:13;8651:16;8736:15;;;8714:55;:::i;:::-;8860:13;;8791:20;;;8831:3;;8920:1;8942:18;;;;8995;;;;9022:2;;9100:4;9090:8;9086:19;9074:31;;9022:2;9163;9153:8;9150:16;9130:18;9127:40;9124:2;;;-1:-1:-1;;;9190:33:1;;9246:4;9243:1;9236:15;9276:4;9197:3;9264:17;9124:2;9307:18;9334:110;;;;9458:1;9453:330;;;;9300:483;;9334:110;-1:-1:-1;;9369:24:1;;9355:39;;9414:20;;;;-1:-1:-1;9334:110:1;;9453:330;26463:4;26482:17;;;26532:4;26516:21;;9548:3;9564:169;9578:8;9575:1;9572:15;9564:169;;;9660:14;;9645:13;;;9638:37;9703:16;;;;9595:10;;9564:169;;;9568:3;;9764:8;9757:5;9753:20;9746:27;;9300:483;-1:-1:-1;9799:3:1;;8509:1299;-1:-1:-1;;;;;;;;;;;8509:1299:1:o;10518:488::-;-1:-1:-1;;;;;10787:15:1;;;10769:34;;10839:15;;10834:2;10819:18;;10812:43;10886:2;10871:18;;10864:34;;;10934:3;10929:2;10914:18;;10907:31;;;10712:4;;10955:45;;10980:19;;10972:6;10955:45;:::i;:::-;10947:53;10721:285;-1:-1:-1;;;;;;10721:285:1:o;11664:219::-;11813:2;11802:9;11795:21;11776:4;11833:44;11873:2;11862:9;11858:18;11850:6;11833:44;:::i;12300:414::-;12502:2;12484:21;;;12541:2;12521:18;;;12514:30;12580:34;12575:2;12560:18;;12553:62;-1:-1:-1;;;12646:2:1;12631:18;;12624:48;12704:3;12689:19;;12474:240::o;14307:402::-;14509:2;14491:21;;;14548:2;14528:18;;;14521:30;14587:34;14582:2;14567:18;;14560:62;-1:-1:-1;;;14653:2:1;14638:18;;14631:36;14699:3;14684:19;;14481:228::o;17078:407::-;17280:2;17262:21;;;17319:2;17299:18;;;17292:30;17358:34;17353:2;17338:18;;17331:62;-1:-1:-1;;;17424:2:1;17409:18;;17402:41;17475:3;17460:19;;17252:233::o;19811:411::-;20013:2;19995:21;;;20052:2;20032:18;;;20025:30;20091:34;20086:2;20071:18;;20064:62;-1:-1:-1;;;20157:2:1;20142:18;;20135:45;20212:3;20197:19;;19985:237::o;20999:356::-;21201:2;21183:21;;;21220:18;;;21213:30;21279:34;21274:2;21259:18;;21252:62;21346:2;21331:18;;21173:182::o;21770:398::-;21972:2;21954:21;;;22011:2;21991:18;;;21984:30;22050:34;22045:2;22030:18;;22023:62;-1:-1:-1;;;22116:2:1;22101:18;;22094:32;22158:3;22143:19;;21944:224::o;22991:413::-;23193:2;23175:21;;;23232:2;23212:18;;;23205:30;23271:34;23266:2;23251:18;;23244:62;-1:-1:-1;;;23337:2:1;23322:18;;23315:47;23394:3;23379:19;;23165:239::o;23767:409::-;23969:2;23951:21;;;24008:2;23988:18;;;23981:30;24047:34;24042:2;24027:18;;24020:62;-1:-1:-1;;;24113:2:1;24098:18;;24091:43;24166:3;24151:19;;23941:235::o;25428:399::-;25630:2;25612:21;;;25669:2;25649:18;;;25642:30;25708:34;25703:2;25688:18;;25681:62;-1:-1:-1;;;25774:2:1;25759:18;;25752:33;25817:3;25802:19;;25602:225::o;26548:128::-;26588:3;26619:1;26615:6;26612:1;26609:13;26606:2;;;26625:18;;:::i;:::-;-1:-1:-1;26661:9:1;;26596:80::o;26681:120::-;26721:1;26747;26737:2;;26752:18;;:::i;:::-;-1:-1:-1;26786:9:1;;26727:74::o;26806:168::-;26846:7;26912:1;26908;26904:6;26900:14;26897:1;26894:21;26889:1;26882:9;26875:17;26871:45;26868:2;;;26919:18;;:::i;:::-;-1:-1:-1;26959:9:1;;26858:116::o;26979:125::-;27019:4;27047:1;27044;27041:8;27038:2;;;27052:18;;:::i;:::-;-1:-1:-1;27089:9:1;;27028:76::o;27109:258::-;27181:1;27191:113;27205:6;27202:1;27199:13;27191:113;;;27281:11;;;27275:18;27262:11;;;27255:39;27227:2;27220:10;27191:113;;;27322:6;27319:1;27316:13;27313:2;;;-1:-1:-1;;27357:1:1;27339:16;;27332:27;27162:205::o;27372:380::-;27451:1;27447:12;;;;27494;;;27515:2;;27569:4;27561:6;27557:17;27547:27;;27515:2;27622;27614:6;27611:14;27591:18;27588:38;27585:2;;;27668:10;27663:3;27659:20;27656:1;27649:31;27703:4;27700:1;27693:15;27731:4;27728:1;27721:15;27585:2;;27427:325;;;:::o;27757:135::-;27796:3;-1:-1:-1;;27817:17:1;;27814:2;;;27837:18;;:::i;:::-;-1:-1:-1;27884:1:1;27873:13;;27804:88::o;27897:112::-;27929:1;27955;27945:2;;27960:18;;:::i;:::-;-1:-1:-1;27994:9:1;;27935:74::o;28014:127::-;28075:10;28070:3;28066:20;28063:1;28056:31;28106:4;28103:1;28096:15;28130:4;28127:1;28120:15;28146:127;28207:10;28202:3;28198:20;28195:1;28188:31;28238:4;28235:1;28228:15;28262:4;28259:1;28252:15;28278:127;28339:10;28334:3;28330:20;28327:1;28320:31;28370:4;28367:1;28360:15;28394:4;28391:1;28384:15;28410:131;-1:-1:-1;;;;;28485:31:1;;28475:42;;28465:2;;28531:1;28528;28521:12;28546:118;28632:5;28625:13;28618:21;28611:5;28608:32;28598:2;;28654:1;28651;28644:12;28669:131;-1:-1:-1;;;;;;28743:32:1;;28733:43;;28723:2;;28790:1;28787;28780:12

Swarm Source

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