ETH Price: $2,731.89 (+0.90%)

Token

Loopy Friends (LOOPY)
 

Overview

Max Total Supply

324 LOOPY

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LOOPY
0x5b50784e6f44f9488dbf858be523616859d49e50
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:
LoopyFriends

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-28
*/

//██╗░░░░░░█████╗░░█████╗░██████╗░██╗░░░██╗  ███████╗██████╗░██╗███████╗███╗░░██╗██████╗░░██████╗
//██║░░░░░██╔══██╗██╔══██╗██╔══██╗╚██╗░██╔╝  ██╔════╝██╔══██╗██║██╔════╝████╗░██║██╔══██╗██╔════╝
//██║░░░░░██║░░██║██║░░██║██████╔╝░╚████╔╝░  █████╗░░██████╔╝██║█████╗░░██╔██╗██║██║░░██║╚█████╗░
//██║░░░░░██║░░██║██║░░██║██╔═══╝░░░╚██╔╝░░  ██╔══╝░░██╔══██╗██║██╔══╝░░██║╚████║██║░░██║░╚═══██╗
//███████╗╚█████╔╝╚█████╔╝██║░░░░░░░░██║░░░  ██║░░░░░██║░░██║██║███████╗██║░╚███║██████╔╝██████╔╝
//╚══════╝░╚════╝░░╚════╝░╚═╝░░░░░░░░╚═╝░░░  ╚═╝░░░░░╚═╝░░╚═╝╚═╝╚══════╝╚═╝░░╚══╝╚═════╝░╚═════╝░

// A project by 3 brothers. 3D Looping Animated NFTs with Music - made with love <3


// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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) {
        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));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// 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/interfaces/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;


// 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/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/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// 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: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;









contract LoopyFriends is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    string private baseURI = "";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = false;

    uint256 public constant MAX_MINTS_PER_TX = 10;
    uint256 public maxSupply = 2300;
    uint256 public constant WALLETLIMIT = 0;

    uint256 public constant PUBLIC_SALE_PRICE = 0.015 ether;
    uint256 public NUM_ALLOWLIST_MINTS = 2300;
    bool public isPublicSaleActive = false;

    bytes32 public allowlistMerkleRoot;


    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }



    modifier maxMintsPerTX(uint256 numberOfTokens) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per transaction exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <=
                maxSupply,
            "Not enough mints remaining to mint"
        );
        _;
    }

    modifier allowlistMintsAvailable() {
        require(
            totalSupply() <=
                NUM_ALLOWLIST_MINTS,
            "Not enough allowlist mints remain"
        );
        _;
    }



    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            (price * numberOfTokens) == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    modifier isValidMerkleProof(bytes32[] calldata merkleProof, bytes32 root) {
        require(
            MerkleProof.verify(
                merkleProof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "Address does not exist in list"
        );
        _;
    }


    modifier isWalletLimit() {
        require(
            _numberMinted(msg.sender) <= 
              WALLETLIMIT,
         "There is a per-wallet limit!"
        );
        _;
    }

    constructor(
    ) ERC721A("Loopy Friends", "LOOPY", 2300, maxSupply) {
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============

    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
    {

        _safeMint(msg.sender, numberOfTokens);
    }
  
    function allowlistMint(bytes32[] calldata merkleProof, uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens)
        isWalletLimit
        isValidMerkleProof(merkleProof, allowlistMerkleRoot)
    {
        _safeMint(msg.sender, numberOfTokens);
    }




    // ============ PUBLIC READ-ONLY FUNCTIONS ============

    function getBaseURI() external view returns (string memory) {
        return baseURI;
    }

    // ============ OWNER-ONLY ADMIN FUNCTIONS ============

    function setAllowlistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        allowlistMerkleRoot = merkleRoot;
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    // function to disable gasless listings for security in case
    // opensea ever shuts down or is compromised
    function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive)
        external
        onlyOwner
    {
        isOpenSeaProxyActive = _isOpenSeaProxyActive;
    }

    function setIsPublicSaleActive(bool _isPublicSaleActive)
        external
        onlyOwner
    {
        isPublicSaleActive = _isPublicSaleActive;
    }

    function setNumAllowlistMints(uint256 _numallowlistmints)
        external
        onlyOwner
    {
        NUM_ALLOWLIST_MINTS = _numallowlistmints;
    }


    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }



    // ============ SUPPORTING FUNCTIONS ============

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(
            openSeaProxyRegistryAddress
        );
        if (
            isOpenSeaProxyActive &&
            address(proxyRegistry.proxies(owner)) == operator
        ) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Nonexistent token");

        return
            string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json"));
    }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "Nonexistent token");

        return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100));
    }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {

}

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

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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_ALLOWLIST_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WALLETLIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numallowlistmints","type":"uint256"}],"name":"setNumAllowlistMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260008055600060075560405180602001604052806000815250600b9080519060200190620000349291906200031a565b5073a5409ec958c83c3f309868babaca7c86dcb077c1600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60146101000a81548160ff0219169083151502179055506108fc600d556108fc600e556000600f60006101000a81548160ff021916908315150217905550348015620000d957600080fd5b506040518060400160405280600d81526020017f4c6f6f707920467269656e6473000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4f4f50590000000000000000000000000000000000000000000000000000008152506108fc600d546000811162000192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000189906200043a565b60405180910390fd5b60008211620001d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001cf9062000418565b60405180910390fd5b8360019080519060200190620001f09291906200031a565b508260029080519060200190620002099291906200031a565b508160a081815250508060808181525050505050506200023e620002326200024c60201b60201c565b6200025460201b60201c565b600160098190555062000570565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000328906200046d565b90600052602060002090601f0160209004810192826200034c576000855562000398565b82601f106200036757805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003975782518255916020019190600101906200037a565b5b509050620003a79190620003ab565b5090565b5b80821115620003c6576000816000905550600101620003ac565b5090565b6000620003d96027836200045c565b9150620003e682620004d2565b604082019050919050565b600062000400602e836200045c565b91506200040d8262000521565b604082019050919050565b600060208201905081810360008301526200043381620003ca565b9050919050565b600060208201905081810360008301526200045581620003f1565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048657607f821691505b602082108114156200049d576200049c620004a3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516154c2620005a1600039600081816129480152818161297101526130740152600050506154c26000f3fe6080604052600436106102255760003560e01c806355f804b311610123578063a4bbcd8a116100ab578063d7224ba01161006f578063d7224ba0146107ee578063e43082f714610819578063e985e9c514610842578063f2fde38b1461087f578063f95df414146108a857610225565b8063a4bbcd8a14610707578063b88d4fde14610732578063c6a91b421461075b578063c87b56dd14610786578063d5abeb01146107c357610225565b8063715018a6116100f2578063715018a6146106555780638da5cb5b1461066c57806395d89b4114610697578063a0712d68146106c2578063a22cb465146106de57610225565b806355f804b3146105875780636352211e146105b057806370a08231146105ed578063714c53981461062a57610225565b806323b872dd116101b15780633ccfd60b116101755780633ccfd60b146104b6578063409b06b5146104cd57806342842e0e146104f857806349df728c146105215780634f6ccce71461054a57610225565b806323b872dd146103be57806328cad13d146103e7578063293108e0146104105780632a55205a1461043b5780632f745c591461047957610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630dca2063146103235780631338a83f1461034c57806318160ddd146103685780631e84c4131461039357610225565b806301ffc9a71461022a57806306fdde031461026757806307e89ec014610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613a40565b6108d1565b60405161025e919061428e565b60405180910390f35b34801561027357600080fd5b5061027c61094b565b60405161028991906142c4565b60405180910390f35b34801561029e57600080fd5b506102a76109dd565b6040516102b49190614666565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613b3d565b6109e8565b6040516102f191906141fe565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613919565b610a6d565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613b3d565b610b86565b005b61036660048036038101906103619190613959565b610c0c565b005b34801561037457600080fd5b5061037d610e6d565b60405161038a9190614666565b60405180910390f35b34801561039f57600080fd5b506103a8610e76565b6040516103b5919061428e565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190613803565b610e89565b005b3480156103f357600080fd5b5061040e600480360381019061040991906139b9565b610e99565b005b34801561041c57600080fd5b50610425610f32565b60405161043291906142a9565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190613b97565b610f38565b604051610470929190614265565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613919565b610fa4565b6040516104ad9190614666565b60405180910390f35b3480156104c257600080fd5b506104cb6111a2565b005b3480156104d957600080fd5b506104e261126d565b6040516104ef9190614666565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190613803565b611272565b005b34801561052d57600080fd5b5061054860048036038101906105439190613a9a565b611292565b005b34801561055657600080fd5b50610571600480360381019061056c9190613b3d565b61142d565b60405161057e9190614666565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613af4565b611480565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613b3d565b611516565b6040516105e491906141fe565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613796565b61152c565b6040516106219190614666565b60405180910390f35b34801561063657600080fd5b5061063f611615565b60405161064c91906142c4565b60405180910390f35b34801561066157600080fd5b5061066a6116a7565b005b34801561067857600080fd5b5061068161172f565b60405161068e91906141fe565b60405180910390f35b3480156106a357600080fd5b506106ac611759565b6040516106b991906142c4565b60405180910390f35b6106dc60048036038101906106d79190613b3d565b6117eb565b005b3480156106ea57600080fd5b50610705600480360381019061070091906138d9565b611994565b005b34801561071357600080fd5b5061071c611b15565b6040516107299190614666565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613856565b611b1b565b005b34801561076757600080fd5b50610770611b77565b60405161077d9190614666565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613b3d565b611b7c565b6040516107ba91906142c4565b60405180910390f35b3480156107cf57600080fd5b506107d8611c04565b6040516107e59190614666565b60405180910390f35b3480156107fa57600080fd5b50610803611c0a565b6040516108109190614666565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906139b9565b611c10565b005b34801561084e57600080fd5b50610869600480360381019061086491906137c3565b611ca9565b604051610876919061428e565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a19190613796565b611dc3565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613a13565b611ebb565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610944575061094382611f41565b5b9050919050565b60606001805461095a90614a19565b80601f016020809104026020016040519081016040528092919081815260200182805461098690614a19565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b66354a6ba7a1800081565b60006109f38261208b565b610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990614626565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7882611516565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906144e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b08612098565b73ffffffffffffffffffffffffffffffffffffffff161480610b375750610b3681610b31612098565b611ca9565b5b610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614426565b60405180910390fd5b610b818383836120a0565b505050565b610b8e612098565b73ffffffffffffffffffffffffffffffffffffffff16610bac61172f565b73ffffffffffffffffffffffffffffffffffffffff1614610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990614486565b60405180910390fd5b80600e8190555050565b60026009541415610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906145c6565b60405180910390fd5b600260098190555066354a6ba7a1800081348183610c70919061482d565b14610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790614586565b60405180910390fd5b82600d5481610cbd610e6d565b610cc791906147a6565b1115610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614366565b60405180910390fd5b83600a811115610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906143c6565b60405180910390fd5b6000610d5833612152565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090614546565b60405180910390fd5b8686601054610e10838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001610df5919061417d565b6040516020818303038152906040528051906020012061223b565b610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906143e6565b60405180910390fd5b610e5933896122f1565b505050505050506001600981905550505050565b60008054905090565b600f60009054906101000a900460ff1681565b610e9483838361230f565b505050565b610ea1612098565b73ffffffffffffffffffffffffffffffffffffffff16610ebf61172f565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90614486565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60105481565b600080610f448461208b565b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90614406565b60405180910390fd5b30610f99610f928560056128c8565b60646128de565b915091509250929050565b6000610faf8361152c565b8210610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906142e6565b60405180910390fd5b6000610ffa610e6d565b905060008060005b83811015611160576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114c578684141561113d57819550505050505061119c565b838061114890614a7c565b9450505b50808061115890614a7c565b915050611002565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906145a6565b60405180910390fd5b92915050565b6111aa612098565b73ffffffffffffffffffffffffffffffffffffffff166111c861172f565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614486565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611269573d6000803e3d6000fd5b5050565b600081565b61128d83838360405180602001604052806000815250611b1b565b505050565b61129a612098565b73ffffffffffffffffffffffffffffffffffffffff166112b861172f565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590614486565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161134991906141fe565b60206040518083038186803b15801561136157600080fd5b505afa158015611375573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113999190613b6a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113d6929190614265565b602060405180830381600087803b1580156113f057600080fd5b505af1158015611404573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142891906139e6565b505050565b6000611437610e6d565b8210611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614346565b60405180910390fd5b819050919050565b611488612098565b73ffffffffffffffffffffffffffffffffffffffff166114a661172f565b73ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390614486565b60405180910390fd5b80600b90805190602001906115129291906134b1565b5050565b6000611521826128f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490614446565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461162490614a19565b80601f016020809104026020016040519081016040528092919081815260200182805461165090614a19565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b6116af612098565b73ffffffffffffffffffffffffffffffffffffffff166116cd61172f565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90614486565b60405180910390fd5b61172d6000612af7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461176890614a19565b80601f016020809104026020016040519081016040528092919081815260200182805461179490614a19565b80156117e15780601f106117b6576101008083540402835291602001916117e1565b820191906000526020600020905b8154815290600101906020018083116117c457829003601f168201915b5050505050905090565b60026009541415611831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611828906145c6565b60405180910390fd5b600260098190555066354a6ba7a180008134818361184f919061482d565b1461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690614586565b60405180910390fd5b600f60009054906101000a900460ff166118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590614606565b60405180910390fd5b82600d54816118eb610e6d565b6118f591906147a6565b1115611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90614366565b60405180910390fd5b83600a81111561197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611972906143c6565b60405180910390fd5b61198533866122f1565b50505050600160098190555050565b61199c612098565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a01906144a6565b60405180910390fd5b8060066000611a17612098565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac4612098565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b09919061428e565b60405180910390a35050565b600e5481565b611b2684848461230f565b611b3284848484612bbd565b611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890614506565b60405180910390fd5b50505050565b600a81565b6060611b878261208b565b611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614406565b60405180910390fd5b600b611bdd600184611bd891906147a6565b612d54565b604051602001611bee9291906141c4565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611c18612098565b73ffffffffffffffffffffffffffffffffffffffff16611c3661172f565b73ffffffffffffffffffffffffffffffffffffffff1614611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614486565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611da057508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611d3891906141fe565b60206040518083038186803b158015611d5057600080fd5b505afa158015611d64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d889190613ac7565b73ffffffffffffffffffffffffffffffffffffffff16145b15611daf576001915050611dbd565b611db98484612eb5565b9150505b92915050565b611dcb612098565b73ffffffffffffffffffffffffffffffffffffffff16611de961172f565b73ffffffffffffffffffffffffffffffffffffffff1614611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614486565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690614306565b60405180910390fd5b611eb881612af7565b50565b611ec3612098565b73ffffffffffffffffffffffffffffffffffffffff16611ee161172f565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614486565b60405180910390fd5b8060108190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061200c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061207457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612084575061208382612f49565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906143a6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60008082905060005b85518110156122e357600086828151811061226257612261614bb1565b5b602002602001015190508083116122a3578281604051602001612286929190614198565b6040516020818303038152906040528051906020012092506122cf565b80836040516020016122b6929190614198565b6040516020818303038152906040528051906020012092505b5080806122db90614a7c565b915050612244565b508381149150509392505050565b61230b828260405180602001604052806000815250612fb3565b5050565b600061231a826128f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612341612098565b73ffffffffffffffffffffffffffffffffffffffff16148061239d5750612366612098565b73ffffffffffffffffffffffffffffffffffffffff16612385846109e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806123b957506123b882600001516123b3612098565b611ca9565b5b9050806123fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f2906144c6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d490614386565b60405180910390fd5b6124ea8585856001613492565b6124fa60008484600001516120a0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125689190614887565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661260c9190614760565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461271291906147a6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612858576127888161208b565b15612857576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c08686866001613498565b505050505050565b600081836128d6919061482d565b905092915050565b600081836128ec91906147fc565b905092915050565b6128fc613537565b6129058261208b565b612944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293b90614326565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106129a85760017f00000000000000000000000000000000000000000000000000000000000000008461299b91906148bb565b6129a591906147a6565b90505b60008390505b818110612ab6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aa257809350505050612af2565b508080612aae906149ef565b9150506129ae565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae9906145e6565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612bde8473ffffffffffffffffffffffffffffffffffffffff1661349e565b15612d47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c07612098565b8786866040518563ffffffff1660e01b8152600401612c299493929190614219565b602060405180830381600087803b158015612c4357600080fd5b505af1925050508015612c7457506040513d601f19601f82011682018060405250810190612c719190613a6d565b60015b612cf7573d8060008114612ca4576040519150601f19603f3d011682016040523d82523d6000602084013e612ca9565b606091505b50600081511415612cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce690614506565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d4c565b600190505b949350505050565b60606000821415612d9c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eb0565b600082905060005b60008214612dce578080612db790614a7c565b915050600a82612dc791906147fc565b9150612da4565b60008167ffffffffffffffff811115612dea57612de9614be0565b5b6040519080825280601f01601f191660200182016040528015612e1c5781602001600182028036833780820191505090505b5090505b60008514612ea957600182612e3591906148bb565b9150600a85612e449190614af3565b6030612e5091906147a6565b60f81b818381518110612e6657612e65614bb1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ea291906147fc565b9450612e20565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302090614566565b60405180910390fd5b6130328161208b565b15613072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306990614526565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614646565b60405180910390fd5b6130e26000858386613492565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131df9190614760565b6fffffffffffffffffffffffffffffffff1681526020018583602001516132069190614760565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561347557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134156000888488612bbd565b613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b90614506565b60405180910390fd5b818061345f90614a7c565b925050808061346d90614a7c565b9150506133a4565b508060008190555061348a6000878588613498565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b8280546134bd90614a19565b90600052602060002090601f0160209004810192826134df5760008555613526565b82601f106134f857805160ff1916838001178555613526565b82800160010185558215613526579182015b8281111561352557825182559160200191906001019061350a565b5b5090506135339190613571565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561358a576000816000905550600101613572565b5090565b60006135a161359c846146a6565b614681565b9050828152602081018484840111156135bd576135bc614c1e565b5b6135c88482856149ad565b509392505050565b60006135e36135de846146d7565b614681565b9050828152602081018484840111156135ff576135fe614c1e565b5b61360a8482856149ad565b509392505050565b600081359050613621816153eb565b92915050565b60008083601f84011261363d5761363c614c14565b5b8235905067ffffffffffffffff81111561365a57613659614c0f565b5b60208301915083602082028301111561367657613675614c19565b5b9250929050565b60008135905061368c81615402565b92915050565b6000815190506136a181615402565b92915050565b6000813590506136b681615419565b92915050565b6000813590506136cb81615430565b92915050565b6000815190506136e081615430565b92915050565b600082601f8301126136fb576136fa614c14565b5b813561370b84826020860161358e565b91505092915050565b60008135905061372381615447565b92915050565b6000815190506137388161545e565b92915050565b600082601f83011261375357613752614c14565b5b81356137638482602086016135d0565b91505092915050565b60008135905061377b81615475565b92915050565b60008151905061379081615475565b92915050565b6000602082840312156137ac576137ab614c28565b5b60006137ba84828501613612565b91505092915050565b600080604083850312156137da576137d9614c28565b5b60006137e885828601613612565b92505060206137f985828601613612565b9150509250929050565b60008060006060848603121561381c5761381b614c28565b5b600061382a86828701613612565b935050602061383b86828701613612565b925050604061384c8682870161376c565b9150509250925092565b600080600080608085870312156138705761386f614c28565b5b600061387e87828801613612565b945050602061388f87828801613612565b93505060406138a08782880161376c565b925050606085013567ffffffffffffffff8111156138c1576138c0614c23565b5b6138cd878288016136e6565b91505092959194509250565b600080604083850312156138f0576138ef614c28565b5b60006138fe85828601613612565b925050602061390f8582860161367d565b9150509250929050565b600080604083850312156139305761392f614c28565b5b600061393e85828601613612565b925050602061394f8582860161376c565b9150509250929050565b60008060006040848603121561397257613971614c28565b5b600084013567ffffffffffffffff8111156139905761398f614c23565b5b61399c86828701613627565b935093505060206139af8682870161376c565b9150509250925092565b6000602082840312156139cf576139ce614c28565b5b60006139dd8482850161367d565b91505092915050565b6000602082840312156139fc576139fb614c28565b5b6000613a0a84828501613692565b91505092915050565b600060208284031215613a2957613a28614c28565b5b6000613a37848285016136a7565b91505092915050565b600060208284031215613a5657613a55614c28565b5b6000613a64848285016136bc565b91505092915050565b600060208284031215613a8357613a82614c28565b5b6000613a91848285016136d1565b91505092915050565b600060208284031215613ab057613aaf614c28565b5b6000613abe84828501613714565b91505092915050565b600060208284031215613add57613adc614c28565b5b6000613aeb84828501613729565b91505092915050565b600060208284031215613b0a57613b09614c28565b5b600082013567ffffffffffffffff811115613b2857613b27614c23565b5b613b348482850161373e565b91505092915050565b600060208284031215613b5357613b52614c28565b5b6000613b618482850161376c565b91505092915050565b600060208284031215613b8057613b7f614c28565b5b6000613b8e84828501613781565b91505092915050565b60008060408385031215613bae57613bad614c28565b5b6000613bbc8582860161376c565b9250506020613bcd8582860161376c565b9150509250929050565b613be0816148ef565b82525050565b613bf7613bf2826148ef565b614ac5565b82525050565b613c0681614901565b82525050565b613c158161490d565b82525050565b613c2c613c278261490d565b614ad7565b82525050565b6000613c3d8261471d565b613c478185614733565b9350613c578185602086016149bc565b613c6081614c2d565b840191505092915050565b6000613c7682614728565b613c808185614744565b9350613c908185602086016149bc565b613c9981614c2d565b840191505092915050565b6000613caf82614728565b613cb98185614755565b9350613cc98185602086016149bc565b80840191505092915050565b60008154613ce281614a19565b613cec8186614755565b94506001821660008114613d075760018114613d1857613d4b565b60ff19831686528186019350613d4b565b613d2185614708565b60005b83811015613d4357815481890152600182019150602081019050613d24565b838801955050505b50505092915050565b6000613d61602283614744565b9150613d6c82614c4b565b604082019050919050565b6000613d84602683614744565b9150613d8f82614c9a565b604082019050919050565b6000613da7602a83614744565b9150613db282614ce9565b604082019050919050565b6000613dca602383614744565b9150613dd582614d38565b604082019050919050565b6000613ded602283614744565b9150613df882614d87565b604082019050919050565b6000613e10602583614744565b9150613e1b82614dd6565b604082019050919050565b6000613e33603183614744565b9150613e3e82614e25565b604082019050919050565b6000613e56602283614744565b9150613e6182614e74565b604082019050919050565b6000613e79601e83614744565b9150613e8482614ec3565b602082019050919050565b6000613e9c601183614744565b9150613ea782614eec565b602082019050919050565b6000613ebf603983614744565b9150613eca82614f15565b604082019050919050565b6000613ee2602b83614744565b9150613eed82614f64565b604082019050919050565b6000613f05602683614744565b9150613f1082614fb3565b604082019050919050565b6000613f28600583614755565b9150613f3382615002565b600582019050919050565b6000613f4b602083614744565b9150613f568261502b565b602082019050919050565b6000613f6e601a83614744565b9150613f7982615054565b602082019050919050565b6000613f91603283614744565b9150613f9c8261507d565b604082019050919050565b6000613fb4602283614744565b9150613fbf826150cc565b604082019050919050565b6000613fd7603383614744565b9150613fe28261511b565b604082019050919050565b6000613ffa601d83614744565b91506140058261516a565b602082019050919050565b600061401d601c83614744565b915061402882615193565b602082019050919050565b6000614040602183614744565b915061404b826151bc565b604082019050919050565b6000614063601883614744565b915061406e8261520b565b602082019050919050565b6000614086602e83614744565b915061409182615234565b604082019050919050565b60006140a9601f83614744565b91506140b482615283565b602082019050919050565b60006140cc602f83614744565b91506140d7826152ac565b604082019050919050565b60006140ef601783614744565b91506140fa826152fb565b602082019050919050565b6000614112602d83614744565b915061411d82615324565b604082019050919050565b6000614135602283614744565b915061414082615373565b604082019050919050565b6000614158600183614755565b9150614163826153c2565b600182019050919050565b614177816149a3565b82525050565b60006141898284613be6565b60148201915081905092915050565b60006141a48285613c1b565b6020820191506141b48284613c1b565b6020820191508190509392505050565b60006141d08285613cd5565b91506141db8261414b565b91506141e78284613ca4565b91506141f282613f1b565b91508190509392505050565b60006020820190506142136000830184613bd7565b92915050565b600060808201905061422e6000830187613bd7565b61423b6020830186613bd7565b614248604083018561416e565b818103606083015261425a8184613c32565b905095945050505050565b600060408201905061427a6000830185613bd7565b614287602083018461416e565b9392505050565b60006020820190506142a36000830184613bfd565b92915050565b60006020820190506142be6000830184613c0c565b92915050565b600060208201905081810360008301526142de8184613c6b565b905092915050565b600060208201905081810360008301526142ff81613d54565b9050919050565b6000602082019050818103600083015261431f81613d77565b9050919050565b6000602082019050818103600083015261433f81613d9a565b9050919050565b6000602082019050818103600083015261435f81613dbd565b9050919050565b6000602082019050818103600083015261437f81613de0565b9050919050565b6000602082019050818103600083015261439f81613e03565b9050919050565b600060208201905081810360008301526143bf81613e26565b9050919050565b600060208201905081810360008301526143df81613e49565b9050919050565b600060208201905081810360008301526143ff81613e6c565b9050919050565b6000602082019050818103600083015261441f81613e8f565b9050919050565b6000602082019050818103600083015261443f81613eb2565b9050919050565b6000602082019050818103600083015261445f81613ed5565b9050919050565b6000602082019050818103600083015261447f81613ef8565b9050919050565b6000602082019050818103600083015261449f81613f3e565b9050919050565b600060208201905081810360008301526144bf81613f61565b9050919050565b600060208201905081810360008301526144df81613f84565b9050919050565b600060208201905081810360008301526144ff81613fa7565b9050919050565b6000602082019050818103600083015261451f81613fca565b9050919050565b6000602082019050818103600083015261453f81613fed565b9050919050565b6000602082019050818103600083015261455f81614010565b9050919050565b6000602082019050818103600083015261457f81614033565b9050919050565b6000602082019050818103600083015261459f81614056565b9050919050565b600060208201905081810360008301526145bf81614079565b9050919050565b600060208201905081810360008301526145df8161409c565b9050919050565b600060208201905081810360008301526145ff816140bf565b9050919050565b6000602082019050818103600083015261461f816140e2565b9050919050565b6000602082019050818103600083015261463f81614105565b9050919050565b6000602082019050818103600083015261465f81614128565b9050919050565b600060208201905061467b600083018461416e565b92915050565b600061468b61469c565b90506146978282614a4b565b919050565b6000604051905090565b600067ffffffffffffffff8211156146c1576146c0614be0565b5b6146ca82614c2d565b9050602081019050919050565b600067ffffffffffffffff8211156146f2576146f1614be0565b5b6146fb82614c2d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061476b82614967565b915061477683614967565b9250826fffffffffffffffffffffffffffffffff0382111561479b5761479a614b24565b5b828201905092915050565b60006147b1826149a3565b91506147bc836149a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147f1576147f0614b24565b5b828201905092915050565b6000614807826149a3565b9150614812836149a3565b92508261482257614821614b53565b5b828204905092915050565b6000614838826149a3565b9150614843836149a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561487c5761487b614b24565b5b828202905092915050565b600061489282614967565b915061489d83614967565b9250828210156148b0576148af614b24565b5b828203905092915050565b60006148c6826149a3565b91506148d1836149a3565b9250828210156148e4576148e3614b24565b5b828203905092915050565b60006148fa82614983565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061494e826148ef565b9050919050565b6000614960826148ef565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149da5780820151818401526020810190506149bf565b838111156149e9576000848401525b50505050565b60006149fa826149a3565b91506000821415614a0e57614a0d614b24565b5b600182039050919050565b60006002820490506001821680614a3157607f821691505b60208210811415614a4557614a44614b82565b5b50919050565b614a5482614c2d565b810181811067ffffffffffffffff82111715614a7357614a72614be0565b5b80604052505050565b6000614a87826149a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aba57614ab9614b24565b5b600182019050919050565b6000614ad082614ae1565b9050919050565b6000819050919050565b6000614aec82614c3e565b9050919050565b6000614afe826149a3565b9150614b09836149a3565b925082614b1957614b18614b53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f54686572652069732061207065722d77616c6c6574206c696d69742100000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6153f4816148ef565b81146153ff57600080fd5b50565b61540b81614901565b811461541657600080fd5b50565b6154228161490d565b811461542d57600080fd5b50565b61543981614917565b811461544457600080fd5b50565b61545081614943565b811461545b57600080fd5b50565b61546781614955565b811461547257600080fd5b50565b61547e816149a3565b811461548957600080fd5b5056fea26469706673582212206430e3266445026fb7ccc652acf36f76b12ce107adfaecb1ed0e078a2e5fe3f564736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c806355f804b311610123578063a4bbcd8a116100ab578063d7224ba01161006f578063d7224ba0146107ee578063e43082f714610819578063e985e9c514610842578063f2fde38b1461087f578063f95df414146108a857610225565b8063a4bbcd8a14610707578063b88d4fde14610732578063c6a91b421461075b578063c87b56dd14610786578063d5abeb01146107c357610225565b8063715018a6116100f2578063715018a6146106555780638da5cb5b1461066c57806395d89b4114610697578063a0712d68146106c2578063a22cb465146106de57610225565b806355f804b3146105875780636352211e146105b057806370a08231146105ed578063714c53981461062a57610225565b806323b872dd116101b15780633ccfd60b116101755780633ccfd60b146104b6578063409b06b5146104cd57806342842e0e146104f857806349df728c146105215780634f6ccce71461054a57610225565b806323b872dd146103be57806328cad13d146103e7578063293108e0146104105780632a55205a1461043b5780632f745c591461047957610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630dca2063146103235780631338a83f1461034c57806318160ddd146103685780631e84c4131461039357610225565b806301ffc9a71461022a57806306fdde031461026757806307e89ec014610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613a40565b6108d1565b60405161025e919061428e565b60405180910390f35b34801561027357600080fd5b5061027c61094b565b60405161028991906142c4565b60405180910390f35b34801561029e57600080fd5b506102a76109dd565b6040516102b49190614666565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613b3d565b6109e8565b6040516102f191906141fe565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613919565b610a6d565b005b34801561032f57600080fd5b5061034a60048036038101906103459190613b3d565b610b86565b005b61036660048036038101906103619190613959565b610c0c565b005b34801561037457600080fd5b5061037d610e6d565b60405161038a9190614666565b60405180910390f35b34801561039f57600080fd5b506103a8610e76565b6040516103b5919061428e565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e09190613803565b610e89565b005b3480156103f357600080fd5b5061040e600480360381019061040991906139b9565b610e99565b005b34801561041c57600080fd5b50610425610f32565b60405161043291906142a9565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d9190613b97565b610f38565b604051610470929190614265565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190613919565b610fa4565b6040516104ad9190614666565b60405180910390f35b3480156104c257600080fd5b506104cb6111a2565b005b3480156104d957600080fd5b506104e261126d565b6040516104ef9190614666565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190613803565b611272565b005b34801561052d57600080fd5b5061054860048036038101906105439190613a9a565b611292565b005b34801561055657600080fd5b50610571600480360381019061056c9190613b3d565b61142d565b60405161057e9190614666565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190613af4565b611480565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190613b3d565b611516565b6040516105e491906141fe565b60405180910390f35b3480156105f957600080fd5b50610614600480360381019061060f9190613796565b61152c565b6040516106219190614666565b60405180910390f35b34801561063657600080fd5b5061063f611615565b60405161064c91906142c4565b60405180910390f35b34801561066157600080fd5b5061066a6116a7565b005b34801561067857600080fd5b5061068161172f565b60405161068e91906141fe565b60405180910390f35b3480156106a357600080fd5b506106ac611759565b6040516106b991906142c4565b60405180910390f35b6106dc60048036038101906106d79190613b3d565b6117eb565b005b3480156106ea57600080fd5b50610705600480360381019061070091906138d9565b611994565b005b34801561071357600080fd5b5061071c611b15565b6040516107299190614666565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613856565b611b1b565b005b34801561076757600080fd5b50610770611b77565b60405161077d9190614666565b60405180910390f35b34801561079257600080fd5b506107ad60048036038101906107a89190613b3d565b611b7c565b6040516107ba91906142c4565b60405180910390f35b3480156107cf57600080fd5b506107d8611c04565b6040516107e59190614666565b60405180910390f35b3480156107fa57600080fd5b50610803611c0a565b6040516108109190614666565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b91906139b9565b611c10565b005b34801561084e57600080fd5b50610869600480360381019061086491906137c3565b611ca9565b604051610876919061428e565b60405180910390f35b34801561088b57600080fd5b506108a660048036038101906108a19190613796565b611dc3565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190613a13565b611ebb565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610944575061094382611f41565b5b9050919050565b60606001805461095a90614a19565b80601f016020809104026020016040519081016040528092919081815260200182805461098690614a19565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b66354a6ba7a1800081565b60006109f38261208b565b610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990614626565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7882611516565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae0906144e6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b08612098565b73ffffffffffffffffffffffffffffffffffffffff161480610b375750610b3681610b31612098565b611ca9565b5b610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90614426565b60405180910390fd5b610b818383836120a0565b505050565b610b8e612098565b73ffffffffffffffffffffffffffffffffffffffff16610bac61172f565b73ffffffffffffffffffffffffffffffffffffffff1614610c02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf990614486565b60405180910390fd5b80600e8190555050565b60026009541415610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906145c6565b60405180910390fd5b600260098190555066354a6ba7a1800081348183610c70919061482d565b14610cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca790614586565b60405180910390fd5b82600d5481610cbd610e6d565b610cc791906147a6565b1115610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614366565b60405180910390fd5b83600a811115610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d44906143c6565b60405180910390fd5b6000610d5833612152565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9090614546565b60405180910390fd5b8686601054610e10838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508233604051602001610df5919061417d565b6040516020818303038152906040528051906020012061223b565b610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e46906143e6565b60405180910390fd5b610e5933896122f1565b505050505050506001600981905550505050565b60008054905090565b600f60009054906101000a900460ff1681565b610e9483838361230f565b505050565b610ea1612098565b73ffffffffffffffffffffffffffffffffffffffff16610ebf61172f565b73ffffffffffffffffffffffffffffffffffffffff1614610f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0c90614486565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b60105481565b600080610f448461208b565b610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a90614406565b60405180910390fd5b30610f99610f928560056128c8565b60646128de565b915091509250929050565b6000610faf8361152c565b8210610ff0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe7906142e6565b60405180910390fd5b6000610ffa610e6d565b905060008060005b83811015611160576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114c578684141561113d57819550505050505061119c565b838061114890614a7c565b9450505b50808061115890614a7c565b915050611002565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611193906145a6565b60405180910390fd5b92915050565b6111aa612098565b73ffffffffffffffffffffffffffffffffffffffff166111c861172f565b73ffffffffffffffffffffffffffffffffffffffff161461121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590614486565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611269573d6000803e3d6000fd5b5050565b600081565b61128d83838360405180602001604052806000815250611b1b565b505050565b61129a612098565b73ffffffffffffffffffffffffffffffffffffffff166112b861172f565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590614486565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161134991906141fe565b60206040518083038186803b15801561136157600080fd5b505afa158015611375573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113999190613b6a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113d6929190614265565b602060405180830381600087803b1580156113f057600080fd5b505af1158015611404573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061142891906139e6565b505050565b6000611437610e6d565b8210611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90614346565b60405180910390fd5b819050919050565b611488612098565b73ffffffffffffffffffffffffffffffffffffffff166114a661172f565b73ffffffffffffffffffffffffffffffffffffffff16146114fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f390614486565b60405180910390fd5b80600b90805190602001906115129291906134b1565b5050565b6000611521826128f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490614446565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b805461162490614a19565b80601f016020809104026020016040519081016040528092919081815260200182805461165090614a19565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b6116af612098565b73ffffffffffffffffffffffffffffffffffffffff166116cd61172f565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90614486565b60405180910390fd5b61172d6000612af7565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461176890614a19565b80601f016020809104026020016040519081016040528092919081815260200182805461179490614a19565b80156117e15780601f106117b6576101008083540402835291602001916117e1565b820191906000526020600020905b8154815290600101906020018083116117c457829003601f168201915b5050505050905090565b60026009541415611831576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611828906145c6565b60405180910390fd5b600260098190555066354a6ba7a180008134818361184f919061482d565b1461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690614586565b60405180910390fd5b600f60009054906101000a900460ff166118de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d590614606565b60405180910390fd5b82600d54816118eb610e6d565b6118f591906147a6565b1115611936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192d90614366565b60405180910390fd5b83600a81111561197b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611972906143c6565b60405180910390fd5b61198533866122f1565b50505050600160098190555050565b61199c612098565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a01906144a6565b60405180910390fd5b8060066000611a17612098565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ac4612098565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b09919061428e565b60405180910390a35050565b600e5481565b611b2684848461230f565b611b3284848484612bbd565b611b71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6890614506565b60405180910390fd5b50505050565b600a81565b6060611b878261208b565b611bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbd90614406565b60405180910390fd5b600b611bdd600184611bd891906147a6565b612d54565b604051602001611bee9291906141c4565b6040516020818303038152906040529050919050565b600d5481565b60075481565b611c18612098565b73ffffffffffffffffffffffffffffffffffffffff16611c3661172f565b73ffffffffffffffffffffffffffffffffffffffff1614611c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8390614486565b60405180910390fd5b80600c60146101000a81548160ff02191690831515021790555050565b600080600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600c60149054906101000a900460ff168015611da057508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611d3891906141fe565b60206040518083038186803b158015611d5057600080fd5b505afa158015611d64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d889190613ac7565b73ffffffffffffffffffffffffffffffffffffffff16145b15611daf576001915050611dbd565b611db98484612eb5565b9150505b92915050565b611dcb612098565b73ffffffffffffffffffffffffffffffffffffffff16611de961172f565b73ffffffffffffffffffffffffffffffffffffffff1614611e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3690614486565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690614306565b60405180910390fd5b611eb881612af7565b50565b611ec3612098565b73ffffffffffffffffffffffffffffffffffffffff16611ee161172f565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614486565b60405180910390fd5b8060108190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061200c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061207457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612084575061208382612f49565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906143a6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60008082905060005b85518110156122e357600086828151811061226257612261614bb1565b5b602002602001015190508083116122a3578281604051602001612286929190614198565b6040516020818303038152906040528051906020012092506122cf565b80836040516020016122b6929190614198565b6040516020818303038152906040528051906020012092505b5080806122db90614a7c565b915050612244565b508381149150509392505050565b61230b828260405180602001604052806000815250612fb3565b5050565b600061231a826128f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612341612098565b73ffffffffffffffffffffffffffffffffffffffff16148061239d5750612366612098565b73ffffffffffffffffffffffffffffffffffffffff16612385846109e8565b73ffffffffffffffffffffffffffffffffffffffff16145b806123b957506123b882600001516123b3612098565b611ca9565b5b9050806123fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f2906144c6565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461246d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246490614466565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d490614386565b60405180910390fd5b6124ea8585856001613492565b6124fa60008484600001516120a0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166125689190614887565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661260c9190614760565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461271291906147a6565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612858576127888161208b565b15612857576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46128c08686866001613498565b505050505050565b600081836128d6919061482d565b905092915050565b600081836128ec91906147fc565b905092915050565b6128fc613537565b6129058261208b565b612944576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293b90614326565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000008fc83106129a85760017f00000000000000000000000000000000000000000000000000000000000008fc8461299b91906148bb565b6129a591906147a6565b90505b60008390505b818110612ab6576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612aa257809350505050612af2565b508080612aae906149ef565b9150506129ae565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae9906145e6565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612bde8473ffffffffffffffffffffffffffffffffffffffff1661349e565b15612d47578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c07612098565b8786866040518563ffffffff1660e01b8152600401612c299493929190614219565b602060405180830381600087803b158015612c4357600080fd5b505af1925050508015612c7457506040513d601f19601f82011682018060405250810190612c719190613a6d565b60015b612cf7573d8060008114612ca4576040519150601f19603f3d011682016040523d82523d6000602084013e612ca9565b606091505b50600081511415612cef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce690614506565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612d4c565b600190505b949350505050565b60606000821415612d9c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eb0565b600082905060005b60008214612dce578080612db790614a7c565b915050600a82612dc791906147fc565b9150612da4565b60008167ffffffffffffffff811115612dea57612de9614be0565b5b6040519080825280601f01601f191660200182016040528015612e1c5781602001600182028036833780820191505090505b5090505b60008514612ea957600182612e3591906148bb565b9150600a85612e449190614af3565b6030612e5091906147a6565b60f81b818381518110612e6657612e65614bb1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ea291906147fc565b9450612e20565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613029576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302090614566565b60405180910390fd5b6130328161208b565b15613072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306990614526565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000008fc8311156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc90614646565b60405180910390fd5b6130e26000858386613492565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516131df9190614760565b6fffffffffffffffffffffffffffffffff1681526020018583602001516132069190614760565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561347557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134156000888488612bbd565b613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b90614506565b60405180910390fd5b818061345f90614a7c565b925050808061346d90614a7c565b9150506133a4565b508060008190555061348a6000878588613498565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b8280546134bd90614a19565b90600052602060002090601f0160209004810192826134df5760008555613526565b82601f106134f857805160ff1916838001178555613526565b82800160010185558215613526579182015b8281111561352557825182559160200191906001019061350a565b5b5090506135339190613571565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561358a576000816000905550600101613572565b5090565b60006135a161359c846146a6565b614681565b9050828152602081018484840111156135bd576135bc614c1e565b5b6135c88482856149ad565b509392505050565b60006135e36135de846146d7565b614681565b9050828152602081018484840111156135ff576135fe614c1e565b5b61360a8482856149ad565b509392505050565b600081359050613621816153eb565b92915050565b60008083601f84011261363d5761363c614c14565b5b8235905067ffffffffffffffff81111561365a57613659614c0f565b5b60208301915083602082028301111561367657613675614c19565b5b9250929050565b60008135905061368c81615402565b92915050565b6000815190506136a181615402565b92915050565b6000813590506136b681615419565b92915050565b6000813590506136cb81615430565b92915050565b6000815190506136e081615430565b92915050565b600082601f8301126136fb576136fa614c14565b5b813561370b84826020860161358e565b91505092915050565b60008135905061372381615447565b92915050565b6000815190506137388161545e565b92915050565b600082601f83011261375357613752614c14565b5b81356137638482602086016135d0565b91505092915050565b60008135905061377b81615475565b92915050565b60008151905061379081615475565b92915050565b6000602082840312156137ac576137ab614c28565b5b60006137ba84828501613612565b91505092915050565b600080604083850312156137da576137d9614c28565b5b60006137e885828601613612565b92505060206137f985828601613612565b9150509250929050565b60008060006060848603121561381c5761381b614c28565b5b600061382a86828701613612565b935050602061383b86828701613612565b925050604061384c8682870161376c565b9150509250925092565b600080600080608085870312156138705761386f614c28565b5b600061387e87828801613612565b945050602061388f87828801613612565b93505060406138a08782880161376c565b925050606085013567ffffffffffffffff8111156138c1576138c0614c23565b5b6138cd878288016136e6565b91505092959194509250565b600080604083850312156138f0576138ef614c28565b5b60006138fe85828601613612565b925050602061390f8582860161367d565b9150509250929050565b600080604083850312156139305761392f614c28565b5b600061393e85828601613612565b925050602061394f8582860161376c565b9150509250929050565b60008060006040848603121561397257613971614c28565b5b600084013567ffffffffffffffff8111156139905761398f614c23565b5b61399c86828701613627565b935093505060206139af8682870161376c565b9150509250925092565b6000602082840312156139cf576139ce614c28565b5b60006139dd8482850161367d565b91505092915050565b6000602082840312156139fc576139fb614c28565b5b6000613a0a84828501613692565b91505092915050565b600060208284031215613a2957613a28614c28565b5b6000613a37848285016136a7565b91505092915050565b600060208284031215613a5657613a55614c28565b5b6000613a64848285016136bc565b91505092915050565b600060208284031215613a8357613a82614c28565b5b6000613a91848285016136d1565b91505092915050565b600060208284031215613ab057613aaf614c28565b5b6000613abe84828501613714565b91505092915050565b600060208284031215613add57613adc614c28565b5b6000613aeb84828501613729565b91505092915050565b600060208284031215613b0a57613b09614c28565b5b600082013567ffffffffffffffff811115613b2857613b27614c23565b5b613b348482850161373e565b91505092915050565b600060208284031215613b5357613b52614c28565b5b6000613b618482850161376c565b91505092915050565b600060208284031215613b8057613b7f614c28565b5b6000613b8e84828501613781565b91505092915050565b60008060408385031215613bae57613bad614c28565b5b6000613bbc8582860161376c565b9250506020613bcd8582860161376c565b9150509250929050565b613be0816148ef565b82525050565b613bf7613bf2826148ef565b614ac5565b82525050565b613c0681614901565b82525050565b613c158161490d565b82525050565b613c2c613c278261490d565b614ad7565b82525050565b6000613c3d8261471d565b613c478185614733565b9350613c578185602086016149bc565b613c6081614c2d565b840191505092915050565b6000613c7682614728565b613c808185614744565b9350613c908185602086016149bc565b613c9981614c2d565b840191505092915050565b6000613caf82614728565b613cb98185614755565b9350613cc98185602086016149bc565b80840191505092915050565b60008154613ce281614a19565b613cec8186614755565b94506001821660008114613d075760018114613d1857613d4b565b60ff19831686528186019350613d4b565b613d2185614708565b60005b83811015613d4357815481890152600182019150602081019050613d24565b838801955050505b50505092915050565b6000613d61602283614744565b9150613d6c82614c4b565b604082019050919050565b6000613d84602683614744565b9150613d8f82614c9a565b604082019050919050565b6000613da7602a83614744565b9150613db282614ce9565b604082019050919050565b6000613dca602383614744565b9150613dd582614d38565b604082019050919050565b6000613ded602283614744565b9150613df882614d87565b604082019050919050565b6000613e10602583614744565b9150613e1b82614dd6565b604082019050919050565b6000613e33603183614744565b9150613e3e82614e25565b604082019050919050565b6000613e56602283614744565b9150613e6182614e74565b604082019050919050565b6000613e79601e83614744565b9150613e8482614ec3565b602082019050919050565b6000613e9c601183614744565b9150613ea782614eec565b602082019050919050565b6000613ebf603983614744565b9150613eca82614f15565b604082019050919050565b6000613ee2602b83614744565b9150613eed82614f64565b604082019050919050565b6000613f05602683614744565b9150613f1082614fb3565b604082019050919050565b6000613f28600583614755565b9150613f3382615002565b600582019050919050565b6000613f4b602083614744565b9150613f568261502b565b602082019050919050565b6000613f6e601a83614744565b9150613f7982615054565b602082019050919050565b6000613f91603283614744565b9150613f9c8261507d565b604082019050919050565b6000613fb4602283614744565b9150613fbf826150cc565b604082019050919050565b6000613fd7603383614744565b9150613fe28261511b565b604082019050919050565b6000613ffa601d83614744565b91506140058261516a565b602082019050919050565b600061401d601c83614744565b915061402882615193565b602082019050919050565b6000614040602183614744565b915061404b826151bc565b604082019050919050565b6000614063601883614744565b915061406e8261520b565b602082019050919050565b6000614086602e83614744565b915061409182615234565b604082019050919050565b60006140a9601f83614744565b91506140b482615283565b602082019050919050565b60006140cc602f83614744565b91506140d7826152ac565b604082019050919050565b60006140ef601783614744565b91506140fa826152fb565b602082019050919050565b6000614112602d83614744565b915061411d82615324565b604082019050919050565b6000614135602283614744565b915061414082615373565b604082019050919050565b6000614158600183614755565b9150614163826153c2565b600182019050919050565b614177816149a3565b82525050565b60006141898284613be6565b60148201915081905092915050565b60006141a48285613c1b565b6020820191506141b48284613c1b565b6020820191508190509392505050565b60006141d08285613cd5565b91506141db8261414b565b91506141e78284613ca4565b91506141f282613f1b565b91508190509392505050565b60006020820190506142136000830184613bd7565b92915050565b600060808201905061422e6000830187613bd7565b61423b6020830186613bd7565b614248604083018561416e565b818103606083015261425a8184613c32565b905095945050505050565b600060408201905061427a6000830185613bd7565b614287602083018461416e565b9392505050565b60006020820190506142a36000830184613bfd565b92915050565b60006020820190506142be6000830184613c0c565b92915050565b600060208201905081810360008301526142de8184613c6b565b905092915050565b600060208201905081810360008301526142ff81613d54565b9050919050565b6000602082019050818103600083015261431f81613d77565b9050919050565b6000602082019050818103600083015261433f81613d9a565b9050919050565b6000602082019050818103600083015261435f81613dbd565b9050919050565b6000602082019050818103600083015261437f81613de0565b9050919050565b6000602082019050818103600083015261439f81613e03565b9050919050565b600060208201905081810360008301526143bf81613e26565b9050919050565b600060208201905081810360008301526143df81613e49565b9050919050565b600060208201905081810360008301526143ff81613e6c565b9050919050565b6000602082019050818103600083015261441f81613e8f565b9050919050565b6000602082019050818103600083015261443f81613eb2565b9050919050565b6000602082019050818103600083015261445f81613ed5565b9050919050565b6000602082019050818103600083015261447f81613ef8565b9050919050565b6000602082019050818103600083015261449f81613f3e565b9050919050565b600060208201905081810360008301526144bf81613f61565b9050919050565b600060208201905081810360008301526144df81613f84565b9050919050565b600060208201905081810360008301526144ff81613fa7565b9050919050565b6000602082019050818103600083015261451f81613fca565b9050919050565b6000602082019050818103600083015261453f81613fed565b9050919050565b6000602082019050818103600083015261455f81614010565b9050919050565b6000602082019050818103600083015261457f81614033565b9050919050565b6000602082019050818103600083015261459f81614056565b9050919050565b600060208201905081810360008301526145bf81614079565b9050919050565b600060208201905081810360008301526145df8161409c565b9050919050565b600060208201905081810360008301526145ff816140bf565b9050919050565b6000602082019050818103600083015261461f816140e2565b9050919050565b6000602082019050818103600083015261463f81614105565b9050919050565b6000602082019050818103600083015261465f81614128565b9050919050565b600060208201905061467b600083018461416e565b92915050565b600061468b61469c565b90506146978282614a4b565b919050565b6000604051905090565b600067ffffffffffffffff8211156146c1576146c0614be0565b5b6146ca82614c2d565b9050602081019050919050565b600067ffffffffffffffff8211156146f2576146f1614be0565b5b6146fb82614c2d565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061476b82614967565b915061477683614967565b9250826fffffffffffffffffffffffffffffffff0382111561479b5761479a614b24565b5b828201905092915050565b60006147b1826149a3565b91506147bc836149a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156147f1576147f0614b24565b5b828201905092915050565b6000614807826149a3565b9150614812836149a3565b92508261482257614821614b53565b5b828204905092915050565b6000614838826149a3565b9150614843836149a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561487c5761487b614b24565b5b828202905092915050565b600061489282614967565b915061489d83614967565b9250828210156148b0576148af614b24565b5b828203905092915050565b60006148c6826149a3565b91506148d1836149a3565b9250828210156148e4576148e3614b24565b5b828203905092915050565b60006148fa82614983565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061494e826148ef565b9050919050565b6000614960826148ef565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156149da5780820151818401526020810190506149bf565b838111156149e9576000848401525b50505050565b60006149fa826149a3565b91506000821415614a0e57614a0d614b24565b5b600182039050919050565b60006002820490506001821680614a3157607f821691505b60208210811415614a4557614a44614b82565b5b50919050565b614a5482614c2d565b810181811067ffffffffffffffff82111715614a7357614a72614be0565b5b80604052505050565b6000614a87826149a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aba57614ab9614b24565b5b600182019050919050565b6000614ad082614ae1565b9050919050565b6000819050919050565b6000614aec82614c3e565b9050919050565b6000614afe826149a3565b9150614b09836149a3565b925082614b1957614b18614b53565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4164647265737320646f6573206e6f7420657869737420696e206c6973740000600082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f54686572652069732061207065722d77616c6c6574206c696d69742100000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6153f4816148ef565b81146153ff57600080fd5b50565b61540b81614901565b811461541657600080fd5b50565b6154228161490d565b811461542d57600080fd5b50565b61543981614917565b811461544457600080fd5b50565b61545081614943565b811461545b57600080fd5b50565b61546781614955565b811461547257600080fd5b50565b61547e816149a3565b811461548957600080fd5b5056fea26469706673582212206430e3266445026fb7ccc652acf36f76b12ce107adfaecb1ed0e078a2e5fe3f564736f6c63430008070033

Deployed Bytecode Sourcemap

58451:6705:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63345:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47700:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58966:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49225:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48788:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62593:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61239:419;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44535:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59076:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50075:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62427:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59123:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64835:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;45166:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62762:143;;;;;;;;;;;;;:::i;:::-;;58918:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50280:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62913:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44698:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62029:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47523:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46400:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61735:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22558:103;;;;;;;;;;;;;:::i;:::-;;21907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47855:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60908:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49493:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59028:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50500:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58828:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64462:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58880:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54915:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62253:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63774:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22816:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61899:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63345:292;63493:4;63550:26;63535:41;;;:11;:41;;;;:94;;;;63593:36;63617:11;63593:23;:36::i;:::-;63535:94;63515:114;;63345:292;;;:::o;47700:94::-;47754:13;47783:5;47776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47700:94;:::o;58966:55::-;59010:11;58966:55;:::o;49225:204::-;49293:7;49317:16;49325:7;49317;:16::i;:::-;49309:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;49399:15;:24;49415:7;49399:24;;;;;;;;;;;;;;;;;;;;;49392:31;;49225:204;;;:::o;48788:379::-;48857:13;48873:24;48889:7;48873:15;:24::i;:::-;48857:40;;48918:5;48912:11;;:2;:11;;;;48904:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;49003:5;48987:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;49012:37;49029:5;49036:12;:10;:12::i;:::-;49012:16;:37::i;:::-;48987:62;48971:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;49133:28;49142:2;49146:7;49155:5;49133:8;:28::i;:::-;48850:317;48788:379;;:::o;62593:159::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62726:18:::1;62704:19;:40;;;;62593:159:::0;:::o;61239:419::-;13836:1;14434:7;;:19;;14426:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13836:1;14567:7;:18;;;;59010:11:::1;61420:14;60133:9;60114:14;60106:5;:22;;;;:::i;:::-;60105:37;60083:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;61457:14:::2;59694:9;;59659:14;59643:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;59621:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;61496:14:::3;58871:2;59441:14;:34;;59419:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;58956:1:::4;60619:25;60633:10;60619:13;:25::i;:::-;:56;;60597:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;61563:11:::5;;61576:19;;60329:144;60366:11;;60329:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60396:4;60446:10;60429:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;60419:39;;;;;;60329:18;:144::i;:::-;60307:224;;;;;;;;;;;;:::i;:::-;;;;;;;;;61613:37:::6;61623:10;61635:14;61613:9;:37::i;:::-;60739:1:::5;;;59776::::3;60205::::2;14598::::1;;13792::::0;14746:7;:22;;;;61239:419;;;:::o;44535:94::-;44588:7;44611:12;;44604:19;;44535:94;:::o;59076:38::-;;;;;;;;;;;;;:::o;50075:142::-;50183:28;50193:4;50199:2;50203:7;50183:9;:28::i;:::-;50075:142;;;:::o;62427:158::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62558:19:::1;62537:18;;:40;;;;;;;;;;;;;;;;;;62427:158:::0;:::o;59123:34::-;;;;:::o;64835:318::-;64960:16;64978:21;65025:16;65033:7;65025;:16::i;:::-;65017:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;65092:4;65099:45;65112:26;65125:9;65136:1;65112:12;:26::i;:::-;65140:3;65099:12;:45::i;:::-;65076:69;;;;64835:318;;;;;:::o;45166:744::-;45275:7;45310:16;45320:5;45310:9;:16::i;:::-;45302:5;:24;45294:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45372:22;45397:13;:11;:13::i;:::-;45372:38;;45417:19;45447:25;45497:9;45492:350;45516:14;45512:1;:18;45492:350;;;45546:31;45580:11;:14;45592:1;45580:14;;;;;;;;;;;45546:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45633:1;45607:28;;:9;:14;;;:28;;;45603:89;;45668:9;:14;;;45648:34;;45603:89;45725:5;45704:26;;:17;:26;;;45700:135;;;45762:5;45747:11;:20;45743:59;;;45789:1;45782:8;;;;;;;;;45743:59;45812:13;;;;;:::i;:::-;;;;45700:135;45537:305;45532:3;;;;;:::i;:::-;;;;45492:350;;;;45848:56;;;;;;;;;;:::i;:::-;;;;;;;;45166:744;;;;;:::o;62762:143::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62810:15:::1;62828:21;62810:39;;62868:10;62860:28;;:37;62889:7;62860:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62799:106;62762:143::o:0;58918:39::-;58956:1;58918:39;:::o;50280:157::-;50392:39;50409:4;50415:2;50419:7;50392:39;;;;;;;;;;;;:16;:39::i;:::-;50280:157;;;:::o;62913:168::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62979:15:::1;62997:5;:15;;;63021:4;62997:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;62979:48;;63038:5;:14;;;63053:10;63065:7;63038:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62968:113;62913:168:::0;:::o;44698:177::-;44765:7;44797:13;:11;:13::i;:::-;44789:5;:21;44781:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;44864:5;44857:12;;44698:177;;;:::o;62029:100::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62113:8:::1;62103:7;:18;;;;;;;;;;;;:::i;:::-;;62029:100:::0;:::o;47523:118::-;47587:7;47610:20;47622:7;47610:11;:20::i;:::-;:25;;;47603:32;;47523:118;;;:::o;46400:211::-;46464:7;46505:1;46488:19;;:5;:19;;;;46480:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;46577:12;:19;46590:5;46577:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;46569:36;;46562:43;;46400:211;;;:::o;61735:93::-;61780:13;61813:7;61806:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61735:93;:::o;22558:103::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22623:30:::1;22650:1;22623:18;:30::i;:::-;22558:103::o:0;21907:87::-;21953:7;21980:6;;;;;;;;;;;21973:13;;21907:87;:::o;47855:98::-;47911:13;47940:7;47933:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47855:98;:::o;60908:321::-;13836:1;14434:7;;:19;;14426:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;13836:1;14567:7;:18;;;;59010:11:::1;61048:14;60133:9;60114:14;60106:5;:22;;;;:::i;:::-;60105:37;60083:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;59283:18:::2;;;;;;;;;;;59275:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;61111:14:::3;59694:9;;59659:14;59643:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;59621:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;61150:14:::4;58871:2;59441:14;:34;;59419:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;61184:37:::5;61194:10;61206:14;61184:9;:37::i;:::-;59776:1:::4;59340::::3;14598::::1;;13792::::0;14746:7;:22;;;;60908:321;:::o;49493:274::-;49596:12;:10;:12::i;:::-;49584:24;;:8;:24;;;;49576:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49693:8;49648:18;:32;49667:12;:10;:12::i;:::-;49648:32;;;;;;;;;;;;;;;:42;49681:8;49648:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;49742:8;49713:48;;49728:12;:10;:12::i;:::-;49713:48;;;49752:8;49713:48;;;;;;:::i;:::-;;;;;;;;49493:274;;:::o;59028:41::-;;;;:::o;50500:311::-;50637:28;50647:4;50653:2;50657:7;50637:9;:28::i;:::-;50688:48;50711:4;50717:2;50721:7;50730:5;50688:22;:48::i;:::-;50672:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50500:311;;;;:::o;58828:45::-;58871:2;58828:45;:::o;64462:307::-;64580:13;64619:16;64627:7;64619;:16::i;:::-;64611:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;64714:7;64728:22;64737:1;64729:7;:9;;;;:::i;:::-;64728:20;:22::i;:::-;64697:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64670:91;;64462:307;;;:::o;58880:31::-;;;;:::o;54915:43::-;;;;:::o;62253:166::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62390:21:::1;62367:20;;:44;;;;;;;;;;;;;;;;;;62253:166:::0;:::o;63774:617::-;63899:4;64064:27;64122;;;;;;;;;;;64064:96;;64189:20;;;;;;;;;;;:86;;;;;64267:8;64226:49;;64234:13;:21;;;64256:5;64234:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64226:49;;;64189:86;64171:154;;;64309:4;64302:11;;;;;64171:154;64344:39;64367:5;64374:8;64344:22;:39::i;:::-;64337:46;;;63774:617;;;;;:::o;22816:201::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22925:1:::1;22905:22;;:8;:22;;;;22897:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22981:28;23000:8;22981:18;:28::i;:::-;22816:201:::0;:::o;61899:122::-;22138:12;:10;:12::i;:::-;22127:23;;:7;:5;:7::i;:::-;:23;;;22119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62003:10:::1;61981:19;:32;;;;61899:122:::0;:::o;45974:370::-;46101:4;46146:25;46131:40;;;:11;:40;;;;:99;;;;46197:33;46182:48;;;:11;:48;;;;46131:99;:160;;;;46256:35;46241:50;;;:11;:50;;;;46131:160;:207;;;;46302:36;46326:11;46302:23;:36::i;:::-;46131:207;46117:221;;45974:370;;;:::o;51050:105::-;51107:4;51137:12;;51127:7;:22;51120:29;;51050:105;;;:::o;20631:98::-;20684:7;20711:10;20704:17;;20631:98;:::o;54737:172::-;54861:2;54834:15;:24;54850:7;54834:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54895:7;54891:2;54875:28;;54884:5;54875:28;;;;;;;;;;;;54737:172;;;:::o;46617:240::-;46678:7;46727:1;46710:19;;:5;:19;;;;46694:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;46818:12;:19;46831:5;46818:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;46810:41;;46803:48;;46617:240;;;:::o;2693:830::-;2818:4;2835:20;2858:4;2835:27;;2880:9;2875:525;2899:5;:12;2895:1;:16;2875:525;;;2933:20;2956:5;2962:1;2956:8;;;;;;;;:::i;:::-;;;;;;;;2933:31;;3001:12;2985;:28;2981:408;;3155:12;3169;3138:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3128:55;;;;;;3113:70;;2981:408;;;3345:12;3359;3328:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3318:55;;;;;;3303:70;;2981:408;2918:482;2913:3;;;;;:::i;:::-;;;;2875:525;;;;3511:4;3495:12;:20;3488:27;;;2693:830;;;;;:::o;51161:98::-;51226:27;51236:2;51240:8;51226:27;;;;;;;;;;;;:9;:27::i;:::-;51161:98;;:::o;53102:1529::-;53199:35;53237:20;53249:7;53237:11;:20::i;:::-;53199:58;;53266:22;53308:13;:18;;;53292:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;53361:12;:10;:12::i;:::-;53337:36;;:20;53349:7;53337:11;:20::i;:::-;:36;;;53292:81;:142;;;;53384:50;53401:13;:18;;;53421:12;:10;:12::i;:::-;53384:16;:50::i;:::-;53292:142;53266:169;;53460:17;53444:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;53592:4;53570:26;;:13;:18;;;:26;;;53554:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;53681:1;53667:16;;:2;:16;;;;53659:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;53734:43;53756:4;53762:2;53766:7;53775:1;53734:21;:43::i;:::-;53834:49;53851:1;53855:7;53864:13;:18;;;53834:8;:49::i;:::-;53922:1;53892:12;:18;53905:4;53892:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53958:1;53930:12;:16;53943:2;53930:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53989:43;;;;;;;;54004:2;53989:43;;;;;;54015:15;53989:43;;;;;53966:11;:20;53978:7;53966:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54260:19;54292:1;54282:7;:11;;;;:::i;:::-;54260:33;;54345:1;54304:43;;:11;:24;54316:11;54304:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;54300:236;;;54362:20;54370:11;54362:7;:20::i;:::-;54358:171;;;54422:97;;;;;;;;54449:13;:18;;;54422:97;;;;;;54480:13;:28;;;54422:97;;;;;54395:11;:24;54407:11;54395:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54358:171;54300:236;54568:7;54564:2;54549:27;;54558:4;54549:27;;;;;;;;;;;;54583:42;54604:4;54610:2;54614:7;54623:1;54583:20;:42::i;:::-;53192:1439;;;53102:1529;;;:::o;7132:98::-;7190:7;7221:1;7217;:5;;;;:::i;:::-;7210:12;;7132:98;;;;:::o;7531:::-;7589:7;7620:1;7616;:5;;;;:::i;:::-;7609:12;;7531:98;;;;:::o;46863:606::-;46939:21;;:::i;:::-;46980:16;46988:7;46980;:16::i;:::-;46972:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;47052:26;47100:12;47089:7;:23;47085:93;;47169:1;47154:12;47144:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;47123:47;;47085:93;47191:12;47206:7;47191:22;;47186:212;47223:18;47215:4;:26;47186:212;;47260:31;47294:11;:17;47306:4;47294:17;;;;;;;;;;;47260:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47350:1;47324:28;;:9;:14;;;:28;;;47320:71;;47372:9;47365:16;;;;;;;47320:71;47251:147;47243:6;;;;;:::i;:::-;;;;47186:212;;;;47406:57;;;;;;;;;;:::i;:::-;;;;;;;;46863:606;;;;:::o;23177:191::-;23251:16;23270:6;;;;;;;;;;;23251:25;;23296:8;23287:6;;:17;;;;;;;;;;;;;;;;;;23351:8;23320:40;;23341:8;23320:40;;;;;;;;;;;;23240:128;23177:191;:::o;56452:690::-;56589:4;56606:15;:2;:13;;;:15::i;:::-;56602:535;;;56661:2;56645:36;;;56682:12;:10;:12::i;:::-;56696:4;56702:7;56711:5;56645:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;56632:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56893:1;56876:6;:13;:18;56872:215;;;56909:61;;;;;;;;;;:::i;:::-;;;;;;;;56872:215;57055:6;57049:13;57040:6;57036:2;57032:15;57025:38;56632:464;56777:45;;;56767:55;;;:6;:55;;;;56760:62;;;;;56602:535;57125:4;57118:11;;56452:690;;;;;;;:::o;18193:723::-;18249:13;18479:1;18470:5;:10;18466:53;;;18497:10;;;;;;;;;;;;;;;;;;;;;18466:53;18529:12;18544:5;18529:20;;18560:14;18585:78;18600:1;18592:4;:9;18585:78;;18618:8;;;;;:::i;:::-;;;;18649:2;18641:10;;;;;:::i;:::-;;;18585:78;;;18673:19;18705:6;18695:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18673:39;;18723:154;18739:1;18730:5;:10;18723:154;;18767:1;18757:11;;;;;:::i;:::-;;;18834:2;18826:5;:10;;;;:::i;:::-;18813:2;:24;;;;:::i;:::-;18800:39;;18783:6;18790;18783:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18863:2;18854:11;;;;;:::i;:::-;;;18723:154;;;18901:6;18887:21;;;;;18193:723;;;;:::o;49830:186::-;49952:4;49975:18;:25;49994:5;49975:25;;;;;;;;;;;;;;;:35;50001:8;49975:35;;;;;;;;;;;;;;;;;;;;;;;;;49968:42;;49830:186;;;;:::o;35307:157::-;35392:4;35431:25;35416:40;;;:11;:40;;;;35409:47;;35307:157;;;:::o;51598:1272::-;51703:20;51726:12;;51703:35;;51767:1;51753:16;;:2;:16;;;;51745:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51944:21;51952:12;51944:7;:21::i;:::-;51943:22;51935:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52026:12;52014:8;:24;;52006:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52086:61;52116:1;52120:2;52124:12;52138:8;52086:21;:61::i;:::-;52156:30;52189:12;:16;52202:2;52189:16;;;;;;;;;;;;;;;52156:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52231:119;;;;;;;;52281:8;52251:11;:19;;;:39;;;;:::i;:::-;52231:119;;;;;;52334:8;52299:11;:24;;;:44;;;;:::i;:::-;52231:119;;;;;52212:12;:16;52225:2;52212:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52385:43;;;;;;;;52400:2;52385:43;;;;;;52411:15;52385:43;;;;;52357:11;:25;52369:12;52357:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52437:20;52460:12;52437:35;;52486:9;52481:281;52505:8;52501:1;:12;52481:281;;;52559:12;52555:2;52534:38;;52551:1;52534:38;;;;;;;;;;;;52599:59;52630:1;52634:2;52638:12;52652:5;52599:22;:59::i;:::-;52581:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;52740:14;;;;;:::i;:::-;;;;52515:3;;;;;:::i;:::-;;;;52481:281;;;;52785:12;52770;:27;;;;52804:60;52833:1;52837:2;52841:12;52855:8;52804:20;:60::i;:::-;51696:1174;;;51598:1272;;;:::o;57604:141::-;;;;;:::o;58131:140::-;;;;;:::o;24195:387::-;24255:4;24463:12;24530:7;24518:20;24510:28;;24573:1;24566:4;:8;24559:15;;;24195:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1770:5;1801:6;1795:13;1786:22;;1817:30;1841:5;1817:30;:::i;:::-;1716:137;;;;:::o;1859:139::-;1905:5;1943:6;1930:20;1921:29;;1959:33;1986:5;1959:33;:::i;:::-;1859:139;;;;:::o;2004:137::-;2049:5;2087:6;2074:20;2065:29;;2103:32;2129:5;2103:32;:::i;:::-;2004:137;;;;:::o;2147:141::-;2203:5;2234:6;2228:13;2219:22;;2250:32;2276:5;2250:32;:::i;:::-;2147:141;;;;:::o;2307:338::-;2362:5;2411:3;2404:4;2396:6;2392:17;2388:27;2378:122;;2419:79;;:::i;:::-;2378:122;2536:6;2523:20;2561:78;2635:3;2627:6;2620:4;2612:6;2608:17;2561:78;:::i;:::-;2552:87;;2368:277;2307:338;;;;:::o;2651:167::-;2711:5;2749:6;2736:20;2727:29;;2765:47;2806:5;2765:47;:::i;:::-;2651:167;;;;:::o;2824:201::-;2910:5;2941:6;2935:13;2926:22;;2957:62;3013:5;2957:62;:::i;:::-;2824:201;;;;:::o;3045:340::-;3101:5;3150:3;3143:4;3135:6;3131:17;3127:27;3117:122;;3158:79;;:::i;:::-;3117:122;3275:6;3262:20;3300:79;3375:3;3367:6;3360:4;3352:6;3348:17;3300:79;:::i;:::-;3291:88;;3107:278;3045:340;;;;:::o;3391:139::-;3437:5;3475:6;3462:20;3453:29;;3491:33;3518:5;3491:33;:::i;:::-;3391:139;;;;:::o;3536:143::-;3593:5;3624:6;3618:13;3609:22;;3640:33;3667:5;3640:33;:::i;:::-;3536:143;;;;:::o;3685:329::-;3744:6;3793:2;3781:9;3772:7;3768:23;3764:32;3761:119;;;3799:79;;:::i;:::-;3761:119;3919:1;3944:53;3989:7;3980:6;3969:9;3965:22;3944:53;:::i;:::-;3934:63;;3890:117;3685:329;;;;:::o;4020:474::-;4088:6;4096;4145:2;4133:9;4124:7;4120:23;4116:32;4113:119;;;4151:79;;:::i;:::-;4113:119;4271:1;4296:53;4341:7;4332:6;4321:9;4317:22;4296:53;:::i;:::-;4286:63;;4242:117;4398:2;4424:53;4469:7;4460:6;4449:9;4445:22;4424:53;:::i;:::-;4414:63;;4369:118;4020:474;;;;;:::o;4500:619::-;4577:6;4585;4593;4642:2;4630:9;4621:7;4617:23;4613:32;4610:119;;;4648:79;;:::i;:::-;4610:119;4768:1;4793:53;4838:7;4829:6;4818:9;4814:22;4793:53;:::i;:::-;4783:63;;4739:117;4895:2;4921:53;4966:7;4957:6;4946:9;4942:22;4921:53;:::i;:::-;4911:63;;4866:118;5023:2;5049:53;5094:7;5085:6;5074:9;5070:22;5049:53;:::i;:::-;5039:63;;4994:118;4500:619;;;;;:::o;5125:943::-;5220:6;5228;5236;5244;5293:3;5281:9;5272:7;5268:23;5264:33;5261:120;;;5300:79;;:::i;:::-;5261:120;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:53;5618:7;5609:6;5598:9;5594:22;5573:53;:::i;:::-;5563:63;;5518:118;5675:2;5701:53;5746:7;5737:6;5726:9;5722:22;5701:53;:::i;:::-;5691:63;;5646:118;5831:2;5820:9;5816:18;5803:32;5862:18;5854:6;5851:30;5848:117;;;5884:79;;:::i;:::-;5848:117;5989:62;6043:7;6034:6;6023:9;6019:22;5989:62;:::i;:::-;5979:72;;5774:287;5125:943;;;;;;;:::o;6074:468::-;6139:6;6147;6196:2;6184:9;6175:7;6171:23;6167:32;6164:119;;;6202:79;;:::i;:::-;6164:119;6322:1;6347:53;6392:7;6383:6;6372:9;6368:22;6347:53;:::i;:::-;6337:63;;6293:117;6449:2;6475:50;6517:7;6508:6;6497:9;6493:22;6475:50;:::i;:::-;6465:60;;6420:115;6074:468;;;;;:::o;6548:474::-;6616:6;6624;6673:2;6661:9;6652:7;6648:23;6644:32;6641:119;;;6679:79;;:::i;:::-;6641:119;6799:1;6824:53;6869:7;6860:6;6849:9;6845:22;6824:53;:::i;:::-;6814:63;;6770:117;6926:2;6952:53;6997:7;6988:6;6977:9;6973:22;6952:53;:::i;:::-;6942:63;;6897:118;6548:474;;;;;:::o;7028:704::-;7123:6;7131;7139;7188:2;7176:9;7167:7;7163:23;7159:32;7156:119;;;7194:79;;:::i;:::-;7156:119;7342:1;7331:9;7327:17;7314:31;7372:18;7364:6;7361:30;7358:117;;;7394:79;;:::i;:::-;7358:117;7507:80;7579:7;7570:6;7559:9;7555:22;7507:80;:::i;:::-;7489:98;;;;7285:312;7636:2;7662:53;7707:7;7698:6;7687:9;7683:22;7662:53;:::i;:::-;7652:63;;7607:118;7028:704;;;;;:::o;7738:323::-;7794:6;7843:2;7831:9;7822:7;7818:23;7814:32;7811:119;;;7849:79;;:::i;:::-;7811:119;7969:1;7994:50;8036:7;8027:6;8016:9;8012:22;7994:50;:::i;:::-;7984:60;;7940:114;7738:323;;;;:::o;8067:345::-;8134:6;8183:2;8171:9;8162:7;8158:23;8154:32;8151:119;;;8189:79;;:::i;:::-;8151:119;8309:1;8334:61;8387:7;8378:6;8367:9;8363:22;8334:61;:::i;:::-;8324:71;;8280:125;8067:345;;;;:::o;8418:329::-;8477:6;8526:2;8514:9;8505:7;8501:23;8497:32;8494:119;;;8532:79;;:::i;:::-;8494:119;8652:1;8677:53;8722:7;8713:6;8702:9;8698:22;8677:53;:::i;:::-;8667:63;;8623:117;8418:329;;;;:::o;8753:327::-;8811:6;8860:2;8848:9;8839:7;8835:23;8831:32;8828:119;;;8866:79;;:::i;:::-;8828:119;8986:1;9011:52;9055:7;9046:6;9035:9;9031:22;9011:52;:::i;:::-;9001:62;;8957:116;8753:327;;;;:::o;9086:349::-;9155:6;9204:2;9192:9;9183:7;9179:23;9175:32;9172:119;;;9210:79;;:::i;:::-;9172:119;9330:1;9355:63;9410:7;9401:6;9390:9;9386:22;9355:63;:::i;:::-;9345:73;;9301:127;9086:349;;;;:::o;9441:357::-;9514:6;9563:2;9551:9;9542:7;9538:23;9534:32;9531:119;;;9569:79;;:::i;:::-;9531:119;9689:1;9714:67;9773:7;9764:6;9753:9;9749:22;9714:67;:::i;:::-;9704:77;;9660:131;9441:357;;;;:::o;9804:409::-;9903:6;9952:2;9940:9;9931:7;9927:23;9923:32;9920:119;;;9958:79;;:::i;:::-;9920:119;10078:1;10103:93;10188:7;10179:6;10168:9;10164:22;10103:93;:::i;:::-;10093:103;;10049:157;9804:409;;;;:::o;10219:509::-;10288:6;10337:2;10325:9;10316:7;10312:23;10308:32;10305:119;;;10343:79;;:::i;:::-;10305:119;10491:1;10480:9;10476:17;10463:31;10521:18;10513:6;10510:30;10507:117;;;10543:79;;:::i;:::-;10507:117;10648:63;10703:7;10694:6;10683:9;10679:22;10648:63;:::i;:::-;10638:73;;10434:287;10219:509;;;;:::o;10734:329::-;10793:6;10842:2;10830:9;10821:7;10817:23;10813:32;10810:119;;;10848:79;;:::i;:::-;10810:119;10968:1;10993:53;11038:7;11029:6;11018:9;11014:22;10993:53;:::i;:::-;10983:63;;10939:117;10734:329;;;;:::o;11069:351::-;11139:6;11188:2;11176:9;11167:7;11163:23;11159:32;11156:119;;;11194:79;;:::i;:::-;11156:119;11314:1;11339:64;11395:7;11386:6;11375:9;11371:22;11339:64;:::i;:::-;11329:74;;11285:128;11069:351;;;;:::o;11426:474::-;11494:6;11502;11551:2;11539:9;11530:7;11526:23;11522:32;11519:119;;;11557:79;;:::i;:::-;11519:119;11677:1;11702:53;11747:7;11738:6;11727:9;11723:22;11702:53;:::i;:::-;11692:63;;11648:117;11804:2;11830:53;11875:7;11866:6;11855:9;11851:22;11830:53;:::i;:::-;11820:63;;11775:118;11426:474;;;;;:::o;11906:118::-;11993:24;12011:5;11993:24;:::i;:::-;11988:3;11981:37;11906:118;;:::o;12030:157::-;12135:45;12155:24;12173:5;12155:24;:::i;:::-;12135:45;:::i;:::-;12130:3;12123:58;12030:157;;:::o;12193:109::-;12274:21;12289:5;12274:21;:::i;:::-;12269:3;12262:34;12193:109;;:::o;12308:118::-;12395:24;12413:5;12395:24;:::i;:::-;12390:3;12383:37;12308:118;;:::o;12432:157::-;12537:45;12557:24;12575:5;12557:24;:::i;:::-;12537:45;:::i;:::-;12532:3;12525:58;12432:157;;:::o;12595:360::-;12681:3;12709:38;12741:5;12709:38;:::i;:::-;12763:70;12826:6;12821:3;12763:70;:::i;:::-;12756:77;;12842:52;12887:6;12882:3;12875:4;12868:5;12864:16;12842:52;:::i;:::-;12919:29;12941:6;12919:29;:::i;:::-;12914:3;12910:39;12903:46;;12685:270;12595:360;;;;:::o;12961:364::-;13049:3;13077:39;13110:5;13077:39;:::i;:::-;13132:71;13196:6;13191:3;13132:71;:::i;:::-;13125:78;;13212:52;13257:6;13252:3;13245:4;13238:5;13234:16;13212:52;:::i;:::-;13289:29;13311:6;13289:29;:::i;:::-;13284:3;13280:39;13273:46;;13053:272;12961:364;;;;:::o;13331:377::-;13437:3;13465:39;13498:5;13465:39;:::i;:::-;13520:89;13602:6;13597:3;13520:89;:::i;:::-;13513:96;;13618:52;13663:6;13658:3;13651:4;13644:5;13640:16;13618:52;:::i;:::-;13695:6;13690:3;13686:16;13679:23;;13441:267;13331:377;;;;:::o;13738:845::-;13841:3;13878:5;13872:12;13907:36;13933:9;13907:36;:::i;:::-;13959:89;14041:6;14036:3;13959:89;:::i;:::-;13952:96;;14079:1;14068:9;14064:17;14095:1;14090:137;;;;14241:1;14236:341;;;;14057:520;;14090:137;14174:4;14170:9;14159;14155:25;14150:3;14143:38;14210:6;14205:3;14201:16;14194:23;;14090:137;;14236:341;14303:38;14335:5;14303:38;:::i;:::-;14363:1;14377:154;14391:6;14388:1;14385:13;14377:154;;;14465:7;14459:14;14455:1;14450:3;14446:11;14439:35;14515:1;14506:7;14502:15;14491:26;;14413:4;14410:1;14406:12;14401:17;;14377:154;;;14560:6;14555:3;14551:16;14544:23;;14243:334;;14057:520;;13845:738;;13738:845;;;;:::o;14589:366::-;14731:3;14752:67;14816:2;14811:3;14752:67;:::i;:::-;14745:74;;14828:93;14917:3;14828:93;:::i;:::-;14946:2;14941:3;14937:12;14930:19;;14589:366;;;:::o;14961:::-;15103:3;15124:67;15188:2;15183:3;15124:67;:::i;:::-;15117:74;;15200:93;15289:3;15200:93;:::i;:::-;15318:2;15313:3;15309:12;15302:19;;14961:366;;;:::o;15333:::-;15475:3;15496:67;15560:2;15555:3;15496:67;:::i;:::-;15489:74;;15572:93;15661:3;15572:93;:::i;:::-;15690:2;15685:3;15681:12;15674:19;;15333:366;;;:::o;15705:::-;15847:3;15868:67;15932:2;15927:3;15868:67;:::i;:::-;15861:74;;15944:93;16033:3;15944:93;:::i;:::-;16062:2;16057:3;16053:12;16046:19;;15705:366;;;:::o;16077:::-;16219:3;16240:67;16304:2;16299:3;16240:67;:::i;:::-;16233:74;;16316:93;16405:3;16316:93;:::i;:::-;16434:2;16429:3;16425:12;16418:19;;16077:366;;;:::o;16449:::-;16591:3;16612:67;16676:2;16671:3;16612:67;:::i;:::-;16605:74;;16688:93;16777:3;16688:93;:::i;:::-;16806:2;16801:3;16797:12;16790:19;;16449:366;;;:::o;16821:::-;16963:3;16984:67;17048:2;17043:3;16984:67;:::i;:::-;16977:74;;17060:93;17149:3;17060:93;:::i;:::-;17178:2;17173:3;17169:12;17162:19;;16821:366;;;:::o;17193:::-;17335:3;17356:67;17420:2;17415:3;17356:67;:::i;:::-;17349:74;;17432:93;17521:3;17432:93;:::i;:::-;17550:2;17545:3;17541:12;17534:19;;17193:366;;;:::o;17565:::-;17707:3;17728:67;17792:2;17787:3;17728:67;:::i;:::-;17721:74;;17804:93;17893:3;17804:93;:::i;:::-;17922:2;17917:3;17913:12;17906:19;;17565:366;;;:::o;17937:::-;18079:3;18100:67;18164:2;18159:3;18100:67;:::i;:::-;18093:74;;18176:93;18265:3;18176:93;:::i;:::-;18294:2;18289:3;18285:12;18278:19;;17937:366;;;:::o;18309:::-;18451:3;18472:67;18536:2;18531:3;18472:67;:::i;:::-;18465:74;;18548:93;18637:3;18548:93;:::i;:::-;18666:2;18661:3;18657:12;18650:19;;18309:366;;;:::o;18681:::-;18823:3;18844:67;18908:2;18903:3;18844:67;:::i;:::-;18837:74;;18920:93;19009:3;18920:93;:::i;:::-;19038:2;19033:3;19029:12;19022:19;;18681:366;;;:::o;19053:::-;19195:3;19216:67;19280:2;19275:3;19216:67;:::i;:::-;19209:74;;19292:93;19381:3;19292:93;:::i;:::-;19410:2;19405:3;19401:12;19394:19;;19053:366;;;:::o;19425:400::-;19585:3;19606:84;19688:1;19683:3;19606:84;:::i;:::-;19599:91;;19699:93;19788:3;19699:93;:::i;:::-;19817:1;19812:3;19808:11;19801:18;;19425:400;;;:::o;19831:366::-;19973:3;19994:67;20058:2;20053:3;19994:67;:::i;:::-;19987:74;;20070:93;20159:3;20070:93;:::i;:::-;20188:2;20183:3;20179:12;20172:19;;19831:366;;;:::o;20203:::-;20345:3;20366:67;20430:2;20425:3;20366:67;:::i;:::-;20359:74;;20442:93;20531:3;20442:93;:::i;:::-;20560:2;20555:3;20551:12;20544:19;;20203:366;;;:::o;20575:::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:::-;21089:3;21110:67;21174:2;21169:3;21110:67;:::i;:::-;21103:74;;21186:93;21275:3;21186:93;:::i;:::-;21304:2;21299:3;21295:12;21288:19;;20947:366;;;:::o;21319:::-;21461:3;21482:67;21546:2;21541:3;21482:67;:::i;:::-;21475:74;;21558:93;21647:3;21558:93;:::i;:::-;21676:2;21671:3;21667:12;21660:19;;21319:366;;;:::o;21691:::-;21833:3;21854:67;21918:2;21913:3;21854:67;:::i;:::-;21847:74;;21930:93;22019:3;21930:93;:::i;:::-;22048:2;22043:3;22039:12;22032:19;;21691:366;;;:::o;22063:::-;22205:3;22226:67;22290:2;22285:3;22226:67;:::i;:::-;22219:74;;22302:93;22391:3;22302:93;:::i;:::-;22420:2;22415:3;22411:12;22404:19;;22063:366;;;:::o;22435:::-;22577:3;22598:67;22662:2;22657:3;22598:67;:::i;:::-;22591:74;;22674:93;22763:3;22674:93;:::i;:::-;22792:2;22787:3;22783:12;22776:19;;22435:366;;;:::o;22807:::-;22949:3;22970:67;23034:2;23029:3;22970:67;:::i;:::-;22963:74;;23046:93;23135:3;23046:93;:::i;:::-;23164:2;23159:3;23155:12;23148:19;;22807:366;;;:::o;23179:::-;23321:3;23342:67;23406:2;23401:3;23342:67;:::i;:::-;23335:74;;23418:93;23507:3;23418:93;:::i;:::-;23536:2;23531:3;23527:12;23520:19;;23179:366;;;:::o;23551:::-;23693:3;23714:67;23778:2;23773:3;23714:67;:::i;:::-;23707:74;;23790:93;23879:3;23790:93;:::i;:::-;23908:2;23903:3;23899:12;23892:19;;23551:366;;;:::o;23923:::-;24065:3;24086:67;24150:2;24145:3;24086:67;:::i;:::-;24079:74;;24162:93;24251:3;24162:93;:::i;:::-;24280:2;24275:3;24271:12;24264:19;;23923:366;;;:::o;24295:::-;24437:3;24458:67;24522:2;24517:3;24458:67;:::i;:::-;24451:74;;24534:93;24623:3;24534:93;:::i;:::-;24652:2;24647:3;24643:12;24636:19;;24295:366;;;:::o;24667:::-;24809:3;24830:67;24894:2;24889:3;24830:67;:::i;:::-;24823:74;;24906:93;24995:3;24906:93;:::i;:::-;25024:2;25019:3;25015:12;25008:19;;24667:366;;;:::o;25039:::-;25181:3;25202:67;25266:2;25261:3;25202:67;:::i;:::-;25195:74;;25278:93;25367:3;25278:93;:::i;:::-;25396:2;25391:3;25387:12;25380:19;;25039:366;;;:::o;25411:400::-;25571:3;25592:84;25674:1;25669:3;25592:84;:::i;:::-;25585:91;;25685:93;25774:3;25685:93;:::i;:::-;25803:1;25798:3;25794:11;25787:18;;25411:400;;;:::o;25817:118::-;25904:24;25922:5;25904:24;:::i;:::-;25899:3;25892:37;25817:118;;:::o;25941:256::-;26053:3;26068:75;26139:3;26130:6;26068:75;:::i;:::-;26168:2;26163:3;26159:12;26152:19;;26188:3;26181:10;;25941:256;;;;:::o;26203:397::-;26343:3;26358:75;26429:3;26420:6;26358:75;:::i;:::-;26458:2;26453:3;26449:12;26442:19;;26471:75;26542:3;26533:6;26471:75;:::i;:::-;26571:2;26566:3;26562:12;26555:19;;26591:3;26584:10;;26203:397;;;;;:::o;26606:961::-;26985:3;27007:92;27095:3;27086:6;27007:92;:::i;:::-;27000:99;;27116:148;27260:3;27116:148;:::i;:::-;27109:155;;27281:95;27372:3;27363:6;27281:95;:::i;:::-;27274:102;;27393:148;27537:3;27393:148;:::i;:::-;27386:155;;27558:3;27551:10;;26606:961;;;;;:::o;27573:222::-;27666:4;27704:2;27693:9;27689:18;27681:26;;27717:71;27785:1;27774:9;27770:17;27761:6;27717:71;:::i;:::-;27573:222;;;;:::o;27801:640::-;27996:4;28034:3;28023:9;28019:19;28011:27;;28048:71;28116:1;28105:9;28101:17;28092:6;28048:71;:::i;:::-;28129:72;28197:2;28186:9;28182:18;28173:6;28129:72;:::i;:::-;28211;28279:2;28268:9;28264:18;28255:6;28211:72;:::i;:::-;28330:9;28324:4;28320:20;28315:2;28304:9;28300:18;28293:48;28358:76;28429:4;28420:6;28358:76;:::i;:::-;28350:84;;27801:640;;;;;;;:::o;28447:332::-;28568:4;28606:2;28595:9;28591:18;28583:26;;28619:71;28687:1;28676:9;28672:17;28663:6;28619:71;:::i;:::-;28700:72;28768:2;28757:9;28753:18;28744:6;28700:72;:::i;:::-;28447:332;;;;;:::o;28785:210::-;28872:4;28910:2;28899:9;28895:18;28887:26;;28923:65;28985:1;28974:9;28970:17;28961:6;28923:65;:::i;:::-;28785:210;;;;:::o;29001:222::-;29094:4;29132:2;29121:9;29117:18;29109:26;;29145:71;29213:1;29202:9;29198:17;29189:6;29145:71;:::i;:::-;29001:222;;;;:::o;29229:313::-;29342:4;29380:2;29369:9;29365:18;29357:26;;29429:9;29423:4;29419:20;29415:1;29404:9;29400:17;29393:47;29457:78;29530:4;29521:6;29457:78;:::i;:::-;29449:86;;29229:313;;;;:::o;29548:419::-;29714:4;29752:2;29741:9;29737:18;29729:26;;29801:9;29795:4;29791:20;29787:1;29776:9;29772:17;29765:47;29829:131;29955:4;29829:131;:::i;:::-;29821:139;;29548:419;;;:::o;29973:::-;30139:4;30177:2;30166:9;30162:18;30154:26;;30226:9;30220:4;30216:20;30212:1;30201:9;30197:17;30190:47;30254:131;30380:4;30254:131;:::i;:::-;30246:139;;29973:419;;;:::o;30398:::-;30564:4;30602:2;30591:9;30587:18;30579:26;;30651:9;30645:4;30641:20;30637:1;30626:9;30622:17;30615:47;30679:131;30805:4;30679:131;:::i;:::-;30671:139;;30398:419;;;:::o;30823:::-;30989:4;31027:2;31016:9;31012:18;31004:26;;31076:9;31070:4;31066:20;31062:1;31051:9;31047:17;31040:47;31104:131;31230:4;31104:131;:::i;:::-;31096:139;;30823:419;;;:::o;31248:::-;31414:4;31452:2;31441:9;31437:18;31429:26;;31501:9;31495:4;31491:20;31487:1;31476:9;31472:17;31465:47;31529:131;31655:4;31529:131;:::i;:::-;31521:139;;31248:419;;;:::o;31673:::-;31839:4;31877:2;31866:9;31862:18;31854:26;;31926:9;31920:4;31916:20;31912:1;31901:9;31897:17;31890:47;31954:131;32080:4;31954:131;:::i;:::-;31946:139;;31673:419;;;:::o;32098:::-;32264:4;32302:2;32291:9;32287:18;32279:26;;32351:9;32345:4;32341:20;32337:1;32326:9;32322:17;32315:47;32379:131;32505:4;32379:131;:::i;:::-;32371:139;;32098:419;;;:::o;32523:::-;32689:4;32727:2;32716:9;32712:18;32704:26;;32776:9;32770:4;32766:20;32762:1;32751:9;32747:17;32740:47;32804:131;32930:4;32804:131;:::i;:::-;32796:139;;32523:419;;;:::o;32948:::-;33114:4;33152:2;33141:9;33137:18;33129:26;;33201:9;33195:4;33191:20;33187:1;33176:9;33172:17;33165:47;33229:131;33355:4;33229:131;:::i;:::-;33221:139;;32948:419;;;:::o;33373:::-;33539:4;33577:2;33566:9;33562:18;33554:26;;33626:9;33620:4;33616:20;33612:1;33601:9;33597:17;33590:47;33654:131;33780:4;33654:131;:::i;:::-;33646:139;;33373:419;;;:::o;33798:::-;33964:4;34002:2;33991:9;33987:18;33979:26;;34051:9;34045:4;34041:20;34037:1;34026:9;34022:17;34015:47;34079:131;34205:4;34079:131;:::i;:::-;34071:139;;33798:419;;;:::o;34223:::-;34389:4;34427:2;34416:9;34412:18;34404:26;;34476:9;34470:4;34466:20;34462:1;34451:9;34447:17;34440:47;34504:131;34630:4;34504:131;:::i;:::-;34496:139;;34223:419;;;:::o;34648:::-;34814:4;34852:2;34841:9;34837:18;34829:26;;34901:9;34895:4;34891:20;34887:1;34876:9;34872:17;34865:47;34929:131;35055:4;34929:131;:::i;:::-;34921:139;;34648:419;;;:::o;35073:::-;35239:4;35277:2;35266:9;35262:18;35254:26;;35326:9;35320:4;35316:20;35312:1;35301:9;35297:17;35290:47;35354:131;35480:4;35354:131;:::i;:::-;35346:139;;35073:419;;;:::o;35498:::-;35664:4;35702:2;35691:9;35687:18;35679:26;;35751:9;35745:4;35741:20;35737:1;35726:9;35722:17;35715:47;35779:131;35905:4;35779:131;:::i;:::-;35771:139;;35498:419;;;:::o;35923:::-;36089:4;36127:2;36116:9;36112:18;36104:26;;36176:9;36170:4;36166:20;36162:1;36151:9;36147:17;36140:47;36204:131;36330:4;36204:131;:::i;:::-;36196:139;;35923:419;;;:::o;36348:::-;36514:4;36552:2;36541:9;36537:18;36529:26;;36601:9;36595:4;36591:20;36587:1;36576:9;36572:17;36565:47;36629:131;36755:4;36629:131;:::i;:::-;36621:139;;36348:419;;;:::o;36773:::-;36939:4;36977:2;36966:9;36962:18;36954:26;;37026:9;37020:4;37016:20;37012:1;37001:9;36997:17;36990:47;37054:131;37180:4;37054:131;:::i;:::-;37046:139;;36773:419;;;:::o;37198:::-;37364:4;37402:2;37391:9;37387:18;37379:26;;37451:9;37445:4;37441:20;37437:1;37426:9;37422:17;37415:47;37479:131;37605:4;37479:131;:::i;:::-;37471:139;;37198:419;;;:::o;37623:::-;37789:4;37827:2;37816:9;37812:18;37804:26;;37876:9;37870:4;37866:20;37862:1;37851:9;37847:17;37840:47;37904:131;38030:4;37904:131;:::i;:::-;37896:139;;37623:419;;;:::o;38048:::-;38214:4;38252:2;38241:9;38237:18;38229:26;;38301:9;38295:4;38291:20;38287:1;38276:9;38272:17;38265:47;38329:131;38455:4;38329:131;:::i;:::-;38321:139;;38048:419;;;:::o;38473:::-;38639:4;38677:2;38666:9;38662:18;38654:26;;38726:9;38720:4;38716:20;38712:1;38701:9;38697:17;38690:47;38754:131;38880:4;38754:131;:::i;:::-;38746:139;;38473:419;;;:::o;38898:::-;39064:4;39102:2;39091:9;39087:18;39079:26;;39151:9;39145:4;39141:20;39137:1;39126:9;39122:17;39115:47;39179:131;39305:4;39179:131;:::i;:::-;39171:139;;38898:419;;;:::o;39323:::-;39489:4;39527:2;39516:9;39512:18;39504:26;;39576:9;39570:4;39566:20;39562:1;39551:9;39547:17;39540:47;39604:131;39730:4;39604:131;:::i;:::-;39596:139;;39323:419;;;:::o;39748:::-;39914:4;39952:2;39941:9;39937:18;39929:26;;40001:9;39995:4;39991:20;39987:1;39976:9;39972:17;39965:47;40029:131;40155:4;40029:131;:::i;:::-;40021:139;;39748:419;;;:::o;40173:::-;40339:4;40377:2;40366:9;40362:18;40354:26;;40426:9;40420:4;40416:20;40412:1;40401:9;40397:17;40390:47;40454:131;40580:4;40454:131;:::i;:::-;40446:139;;40173:419;;;:::o;40598:::-;40764:4;40802:2;40791:9;40787:18;40779:26;;40851:9;40845:4;40841:20;40837:1;40826:9;40822:17;40815:47;40879:131;41005:4;40879:131;:::i;:::-;40871:139;;40598:419;;;:::o;41023:::-;41189:4;41227:2;41216:9;41212:18;41204:26;;41276:9;41270:4;41266:20;41262:1;41251:9;41247:17;41240:47;41304:131;41430:4;41304:131;:::i;:::-;41296:139;;41023:419;;;:::o;41448:222::-;41541:4;41579:2;41568:9;41564:18;41556:26;;41592:71;41660:1;41649:9;41645:17;41636:6;41592:71;:::i;:::-;41448:222;;;;:::o;41676:129::-;41710:6;41737:20;;:::i;:::-;41727:30;;41766:33;41794:4;41786:6;41766:33;:::i;:::-;41676:129;;;:::o;41811:75::-;41844:6;41877:2;41871:9;41861:19;;41811:75;:::o;41892:307::-;41953:4;42043:18;42035:6;42032:30;42029:56;;;42065:18;;:::i;:::-;42029:56;42103:29;42125:6;42103:29;:::i;:::-;42095:37;;42187:4;42181;42177:15;42169:23;;41892:307;;;:::o;42205:308::-;42267:4;42357:18;42349:6;42346:30;42343:56;;;42379:18;;:::i;:::-;42343:56;42417:29;42439:6;42417:29;:::i;:::-;42409:37;;42501:4;42495;42491:15;42483:23;;42205:308;;;:::o;42519:141::-;42568:4;42591:3;42583:11;;42614:3;42611:1;42604:14;42648:4;42645:1;42635:18;42627:26;;42519:141;;;:::o;42666:98::-;42717:6;42751:5;42745:12;42735:22;;42666:98;;;:::o;42770:99::-;42822:6;42856:5;42850:12;42840:22;;42770:99;;;:::o;42875:168::-;42958:11;42992:6;42987:3;42980:19;43032:4;43027:3;43023:14;43008:29;;42875:168;;;;:::o;43049:169::-;43133:11;43167:6;43162:3;43155:19;43207:4;43202:3;43198:14;43183:29;;43049:169;;;;:::o;43224:148::-;43326:11;43363:3;43348:18;;43224:148;;;;:::o;43378:273::-;43418:3;43437:20;43455:1;43437:20;:::i;:::-;43432:25;;43471:20;43489:1;43471:20;:::i;:::-;43466:25;;43593:1;43557:34;43553:42;43550:1;43547:49;43544:75;;;43599:18;;:::i;:::-;43544:75;43643:1;43640;43636:9;43629:16;;43378:273;;;;:::o;43657:305::-;43697:3;43716:20;43734:1;43716:20;:::i;:::-;43711:25;;43750:20;43768:1;43750:20;:::i;:::-;43745:25;;43904:1;43836:66;43832:74;43829:1;43826:81;43823:107;;;43910:18;;:::i;:::-;43823:107;43954:1;43951;43947:9;43940:16;;43657:305;;;;:::o;43968:185::-;44008:1;44025:20;44043:1;44025:20;:::i;:::-;44020:25;;44059:20;44077:1;44059:20;:::i;:::-;44054:25;;44098:1;44088:35;;44103:18;;:::i;:::-;44088:35;44145:1;44142;44138:9;44133:14;;43968:185;;;;:::o;44159:348::-;44199:7;44222:20;44240:1;44222:20;:::i;:::-;44217:25;;44256:20;44274:1;44256:20;:::i;:::-;44251:25;;44444:1;44376:66;44372:74;44369:1;44366:81;44361:1;44354:9;44347:17;44343:105;44340:131;;;44451:18;;:::i;:::-;44340:131;44499:1;44496;44492:9;44481:20;;44159:348;;;;:::o;44513:191::-;44553:4;44573:20;44591:1;44573:20;:::i;:::-;44568:25;;44607:20;44625:1;44607:20;:::i;:::-;44602:25;;44646:1;44643;44640:8;44637:34;;;44651:18;;:::i;:::-;44637:34;44696:1;44693;44689:9;44681:17;;44513:191;;;;:::o;44710:::-;44750:4;44770:20;44788:1;44770:20;:::i;:::-;44765:25;;44804:20;44822:1;44804:20;:::i;:::-;44799:25;;44843:1;44840;44837:8;44834:34;;;44848:18;;:::i;:::-;44834:34;44893:1;44890;44886:9;44878:17;;44710:191;;;;:::o;44907:96::-;44944:7;44973:24;44991:5;44973:24;:::i;:::-;44962:35;;44907:96;;;:::o;45009:90::-;45043:7;45086:5;45079:13;45072:21;45061:32;;45009:90;;;:::o;45105:77::-;45142:7;45171:5;45160:16;;45105:77;;;:::o;45188:149::-;45224:7;45264:66;45257:5;45253:78;45242:89;;45188:149;;;:::o;45343:110::-;45394:7;45423:24;45441:5;45423:24;:::i;:::-;45412:35;;45343:110;;;:::o;45459:125::-;45525:7;45554:24;45572:5;45554:24;:::i;:::-;45543:35;;45459:125;;;:::o;45590:118::-;45627:7;45667:34;45660:5;45656:46;45645:57;;45590:118;;;:::o;45714:126::-;45751:7;45791:42;45784:5;45780:54;45769:65;;45714:126;;;:::o;45846:77::-;45883:7;45912:5;45901:16;;45846:77;;;:::o;45929:154::-;46013:6;46008:3;46003;45990:30;46075:1;46066:6;46061:3;46057:16;46050:27;45929:154;;;:::o;46089:307::-;46157:1;46167:113;46181:6;46178:1;46175:13;46167:113;;;46266:1;46261:3;46257:11;46251:18;46247:1;46242:3;46238:11;46231:39;46203:2;46200:1;46196:10;46191:15;;46167:113;;;46298:6;46295:1;46292:13;46289:101;;;46378:1;46369:6;46364:3;46360:16;46353:27;46289:101;46138:258;46089:307;;;:::o;46402:171::-;46441:3;46464:24;46482:5;46464:24;:::i;:::-;46455:33;;46510:4;46503:5;46500:15;46497:41;;;46518:18;;:::i;:::-;46497:41;46565:1;46558:5;46554:13;46547:20;;46402:171;;;:::o;46579:320::-;46623:6;46660:1;46654:4;46650:12;46640:22;;46707:1;46701:4;46697:12;46728:18;46718:81;;46784:4;46776:6;46772:17;46762:27;;46718:81;46846:2;46838:6;46835:14;46815:18;46812:38;46809:84;;;46865:18;;:::i;:::-;46809:84;46630:269;46579:320;;;:::o;46905:281::-;46988:27;47010:4;46988:27;:::i;:::-;46980:6;46976:40;47118:6;47106:10;47103:22;47082:18;47070:10;47067:34;47064:62;47061:88;;;47129:18;;:::i;:::-;47061:88;47169:10;47165:2;47158:22;46948:238;46905:281;;:::o;47192:233::-;47231:3;47254:24;47272:5;47254:24;:::i;:::-;47245:33;;47300:66;47293:5;47290:77;47287:103;;;47370:18;;:::i;:::-;47287:103;47417:1;47410:5;47406:13;47399:20;;47192:233;;;:::o;47431:100::-;47470:7;47499:26;47519:5;47499:26;:::i;:::-;47488:37;;47431:100;;;:::o;47537:79::-;47576:7;47605:5;47594:16;;47537:79;;;:::o;47622:94::-;47661:7;47690:20;47704:5;47690:20;:::i;:::-;47679:31;;47622:94;;;:::o;47722:176::-;47754:1;47771:20;47789:1;47771:20;:::i;:::-;47766:25;;47805:20;47823:1;47805:20;:::i;:::-;47800:25;;47844:1;47834:35;;47849:18;;:::i;:::-;47834:35;47890:1;47887;47883:9;47878:14;;47722:176;;;;:::o;47904:180::-;47952:77;47949:1;47942:88;48049:4;48046:1;48039:15;48073:4;48070:1;48063:15;48090:180;48138:77;48135:1;48128:88;48235:4;48232:1;48225:15;48259:4;48256:1;48249:15;48276:180;48324:77;48321:1;48314:88;48421:4;48418:1;48411:15;48445:4;48442:1;48435:15;48462:180;48510:77;48507:1;48500:88;48607:4;48604:1;48597:15;48631:4;48628:1;48621:15;48648:180;48696:77;48693:1;48686:88;48793:4;48790:1;48783:15;48817:4;48814:1;48807:15;48834:117;48943:1;48940;48933:12;48957:117;49066:1;49063;49056:12;49080:117;49189:1;49186;49179:12;49203:117;49312:1;49309;49302:12;49326:117;49435:1;49432;49425:12;49449:117;49558:1;49555;49548:12;49572:102;49613:6;49664:2;49660:7;49655:2;49648:5;49644:14;49640:28;49630:38;;49572:102;;;:::o;49680:94::-;49713:8;49761:5;49757:2;49753:14;49732:35;;49680:94;;;:::o;49780:221::-;49920:34;49916:1;49908:6;49904:14;49897:58;49989:4;49984:2;49976:6;49972:15;49965:29;49780:221;:::o;50007:225::-;50147:34;50143:1;50135:6;50131:14;50124:58;50216:8;50211:2;50203:6;50199:15;50192:33;50007:225;:::o;50238:229::-;50378:34;50374:1;50366:6;50362:14;50355:58;50447:12;50442:2;50434:6;50430:15;50423:37;50238:229;:::o;50473:222::-;50613:34;50609:1;50601:6;50597:14;50590:58;50682:5;50677:2;50669:6;50665:15;50658:30;50473:222;:::o;50701:221::-;50841:34;50837:1;50829:6;50825:14;50818:58;50910:4;50905:2;50897:6;50893:15;50886:29;50701:221;:::o;50928:224::-;51068:34;51064:1;51056:6;51052:14;51045:58;51137:7;51132:2;51124:6;51120:15;51113:32;50928:224;:::o;51158:236::-;51298:34;51294:1;51286:6;51282:14;51275:58;51367:19;51362:2;51354:6;51350:15;51343:44;51158:236;:::o;51400:221::-;51540:34;51536:1;51528:6;51524:14;51517:58;51609:4;51604:2;51596:6;51592:15;51585:29;51400:221;:::o;51627:180::-;51767:32;51763:1;51755:6;51751:14;51744:56;51627:180;:::o;51813:167::-;51953:19;51949:1;51941:6;51937:14;51930:43;51813:167;:::o;51986:244::-;52126:34;52122:1;52114:6;52110:14;52103:58;52195:27;52190:2;52182:6;52178:15;52171:52;51986:244;:::o;52236:230::-;52376:34;52372:1;52364:6;52360:14;52353:58;52445:13;52440:2;52432:6;52428:15;52421:38;52236:230;:::o;52472:225::-;52612:34;52608:1;52600:6;52596:14;52589:58;52681:8;52676:2;52668:6;52664:15;52657:33;52472:225;:::o;52703:155::-;52843:7;52839:1;52831:6;52827:14;52820:31;52703:155;:::o;52864:182::-;53004:34;53000:1;52992:6;52988:14;52981:58;52864:182;:::o;53052:176::-;53192:28;53188:1;53180:6;53176:14;53169:52;53052:176;:::o;53234:237::-;53374:34;53370:1;53362:6;53358:14;53351:58;53443:20;53438:2;53430:6;53426:15;53419:45;53234:237;:::o;53477:221::-;53617:34;53613:1;53605:6;53601:14;53594:58;53686:4;53681:2;53673:6;53669:15;53662:29;53477:221;:::o;53704:238::-;53844:34;53840:1;53832:6;53828:14;53821:58;53913:21;53908:2;53900:6;53896:15;53889:46;53704:238;:::o;53948:179::-;54088:31;54084:1;54076:6;54072:14;54065:55;53948:179;:::o;54133:178::-;54273:30;54269:1;54261:6;54257:14;54250:54;54133:178;:::o;54317:220::-;54457:34;54453:1;54445:6;54441:14;54434:58;54526:3;54521:2;54513:6;54509:15;54502:28;54317:220;:::o;54543:174::-;54683:26;54679:1;54671:6;54667:14;54660:50;54543:174;:::o;54723:233::-;54863:34;54859:1;54851:6;54847:14;54840:58;54932:16;54927:2;54919:6;54915:15;54908:41;54723:233;:::o;54962:181::-;55102:33;55098:1;55090:6;55086:14;55079:57;54962:181;:::o;55149:234::-;55289:34;55285:1;55277:6;55273:14;55266:58;55358:17;55353:2;55345:6;55341:15;55334:42;55149:234;:::o;55389:173::-;55529:25;55525:1;55517:6;55513:14;55506:49;55389:173;:::o;55568:232::-;55708:34;55704:1;55696:6;55692:14;55685:58;55777:15;55772:2;55764:6;55760:15;55753:40;55568:232;:::o;55806:221::-;55946:34;55942:1;55934:6;55930:14;55923:58;56015:4;56010:2;56002:6;55998:15;55991:29;55806:221;:::o;56033:151::-;56173:3;56169:1;56161:6;56157:14;56150:27;56033:151;:::o;56190:122::-;56263:24;56281:5;56263:24;:::i;:::-;56256:5;56253:35;56243:63;;56302:1;56299;56292:12;56243:63;56190:122;:::o;56318:116::-;56388:21;56403:5;56388:21;:::i;:::-;56381:5;56378:32;56368:60;;56424:1;56421;56414:12;56368:60;56318:116;:::o;56440:122::-;56513:24;56531:5;56513:24;:::i;:::-;56506:5;56503:35;56493:63;;56552:1;56549;56542:12;56493:63;56440:122;:::o;56568:120::-;56640:23;56657:5;56640:23;:::i;:::-;56633:5;56630:34;56620:62;;56678:1;56675;56668:12;56620:62;56568:120;:::o;56694:150::-;56781:38;56813:5;56781:38;:::i;:::-;56774:5;56771:49;56761:77;;56834:1;56831;56824:12;56761:77;56694:150;:::o;56850:180::-;56952:53;56999:5;56952:53;:::i;:::-;56945:5;56942:64;56932:92;;57020:1;57017;57010:12;56932:92;56850:180;:::o;57036:122::-;57109:24;57127:5;57109:24;:::i;:::-;57102:5;57099:35;57089:63;;57148:1;57145;57138:12;57089:63;57036:122;:::o

Swarm Source

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