ETH Price: $3,437.69 (-1.21%)
Gas: 4 Gwei

Token

RR/BAKC (RR/BAKC)
 

Overview

Max Total Supply

5,555 RR/BAKC

Holders

1,046

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
1nine.eth
Balance
1 RR/BAKC
0x938497fc61d9b9a6bfbf26961cea801d196ee03c
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:
RRBAKC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-21
*/

// File: contracts/nft.sol

/**
 *Submitted for verification at Etherscan.io on 2022-06-21
*/

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

// 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 {}
}

//SPDX-License-Identifier: MIT
//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 RRBAKC is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    bool private isOpenSeaProxyActive = true;

    uint256 public constant MAX_MINTS_PER_TX = 5;
    uint256 public maxSupply = 5555;

    uint256 public constant PUBLIC_SALE_PRICE = 0.004 ether;
    uint256 public NUM_FREE_MINTS = 555;
    bool public isPublicSaleActive = true;




    // ============ 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 freeMintsAvailable() {
        require(
            totalSupply() <=
                NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }



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


    constructor(
    ) ERC721A("RR/BAKC", "RR/BAKC", 100, 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);
    }



    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too

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

    

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

    

    // 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 setNumFreeMints(uint256 _numfreemints)
        external
        onlyOwner
    {
        NUM_FREE_MINTS = _numfreemints;
    }


    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("ipfs://QmTDcCdt3yb6mZitzWBmQr65AW6Wska295Dg9nbEYpSUDR/", (tokenId+1).toString()));
    }

    /**
     * @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_FREE_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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","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"}]

60c060405260008055600060075573a5409ec958c83c3f309868babaca7c86dcb077c1600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600b60146101000a81548160ff0219169083151502179055506115b3600c5561022b600d556001600e60006101000a81548160ff021916908315150217905550348015620000b157600080fd5b506040518060400160405280600781526020017f52522f42414b43000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f52522f42414b43000000000000000000000000000000000000000000000000008152506064600c546000811162000169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001609062000411565b60405180910390fd5b60008211620001af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001a690620003ef565b60405180910390fd5b8360019080519060200190620001c7929190620002f1565b508260029080519060200190620001e0929190620002f1565b508160a0818152505080608081815250505050505062000215620002096200022360201b60201c565b6200022b60201b60201c565b600160098190555062000547565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002ff9062000444565b90600052602060002090601f0160209004810192826200032357600085556200036f565b82601f106200033e57805160ff19168380011785556200036f565b828001600101855582156200036f579182015b828111156200036e57825182559160200191906001019062000351565b5b5090506200037e919062000382565b5090565b5b808211156200039d57600081600090555060010162000383565b5090565b6000620003b060278362000433565b9150620003bd82620004a9565b604082019050919050565b6000620003d7602e8362000433565b9150620003e482620004f8565b604082019050919050565b600060208201905081810360008301526200040a81620003a1565b9050919050565b600060208201905081810360008301526200042c81620003c8565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045d57607f821691505b602082108114156200047457620004736200047a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614821620005786000396000818161224f0152818161227801526129a50152600050506148216000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146106e6578063e43082f714610711578063e985e9c51461073a578063f2fde38b14610777576101e3565b8063b88d4fde1461062a578063c6a91b4214610653578063c87b56dd1461067e578063d5abeb01146106bb576101e3565b806395d89b41116100d157806395d89b411461058f578063982d669e146105ba578063a0712d68146105e5578063a22cb46514610601576101e3565b80636352211e146104d357806370a0823114610510578063715018a61461054d5780638da5cb5b14610564576101e3565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b1461042d57806342842e0e1461044457806349df728c1461046d5780634f6ccce714610496576101e3565b806323b872dd1461036057806328cad13d146103895780632a55205a146103b25780632f745c59146103f0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630a00ae83146102e157806318160ddd1461030a5780631e84c41314610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061315a565b6107a0565b60405161021c91906137b8565b60405180910390f35b34801561023157600080fd5b5061023a61081a565b60405161024791906137d3565b60405180910390f35b34801561025c57600080fd5b506102656108ac565b6040516102729190613b15565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061320e565b6108b7565b6040516102af9190613728565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906130c0565b61093c565b005b3480156102ed57600080fd5b506103086004803603810190610303919061320e565b610a55565b005b34801561031657600080fd5b5061031f610adb565b60405161032c9190613b15565b60405180910390f35b34801561034157600080fd5b5061034a610ae4565b60405161035791906137b8565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612faa565b610af7565b005b34801561039557600080fd5b506103b060048036038101906103ab9190613100565b610b07565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613268565b610ba0565b6040516103e792919061378f565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906130c0565b610c0c565b6040516104249190613b15565b60405180910390f35b34801561043957600080fd5b50610442610e0a565b005b34801561045057600080fd5b5061046b60048036038101906104669190612faa565b610ed5565b005b34801561047957600080fd5b50610494600480360381019061048f91906131b4565b610ef5565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061320e565b611090565b6040516104ca9190613b15565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f5919061320e565b6110e3565b6040516105079190613728565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612f3d565b6110f9565b6040516105449190613b15565b60405180910390f35b34801561055957600080fd5b506105626111e2565b005b34801561057057600080fd5b5061057961126a565b6040516105869190613728565b60405180910390f35b34801561059b57600080fd5b506105a4611294565b6040516105b191906137d3565b60405180910390f35b3480156105c657600080fd5b506105cf611326565b6040516105dc9190613b15565b60405180910390f35b6105ff60048036038101906105fa919061320e565b61132c565b005b34801561060d57600080fd5b5061062860048036038101906106239190613080565b6114e7565b005b34801561063657600080fd5b50610651600480360381019061064c9190612ffd565b611668565b005b34801561065f57600080fd5b506106686116c4565b6040516106759190613b15565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a0919061320e565b6116c9565b6040516106b291906137d3565b60405180910390f35b3480156106c757600080fd5b506106d061174e565b6040516106dd9190613b15565b60405180910390f35b3480156106f257600080fd5b506106fb611754565b6040516107089190613b15565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613100565b61175a565b005b34801561074657600080fd5b50610761600480360381019061075c9190612f6a565b6117f3565b60405161076e91906137b8565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612f3d565b61190d565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610813575061081282611a05565b5b9050919050565b60606001805461082990613e78565b80601f016020809104026020016040519081016040528092919081815260200182805461085590613e78565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b660e35fa931a000081565b60006108c282611b4f565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890613ad5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610947826110e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906139b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7611b5c565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00611b5c565b6117f3565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c906138f5565b60405180910390fd5b610a50838383611b64565b505050565b610a5d611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610a7b61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613955565b60405180910390fd5b80600d8190555050565b60008054905090565b600e60009054906101000a900460ff1681565b610b02838383611c16565b505050565b610b0f611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610b2d61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90613955565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610bac84611b4f565b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906138d5565b60405180910390fd5b30610c01610bfa8560056121cf565b60646121e5565b915091509250929050565b6000610c17836110f9565b8210610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906137f5565b60405180910390fd5b6000610c62610adb565b905060008060005b83811015610dc8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db45786841415610da5578195505050505050610e04565b8380610db090613edb565b9450505b508080610dc090613edb565b915050610c6a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90613a55565b60405180910390fd5b92915050565b610e12611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610e3061126a565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613955565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed1573d6000803e3d6000fd5b5050565b610ef083838360405180602001604052806000815250611668565b505050565b610efd611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610f1b61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613955565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fac9190613728565b60206040518083038186803b158015610fc457600080fd5b505afa158015610fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffc919061323b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161103992919061378f565b602060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108b919061312d565b505050565b600061109a610adb565b82106110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613855565b60405180910390fd5b819050919050565b60006110ee826121fb565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190613915565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111ea611b5c565b73ffffffffffffffffffffffffffffffffffffffff1661120861126a565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613955565b60405180910390fd5b61126860006123fe565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112a390613e78565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf90613e78565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b5050505050905090565b600d5481565b60026009541415611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990613a75565b60405180910390fd5b6002600981905550660e35fa931a000081600d5461138e610adb565b11156113e2573481836113a19190613c96565b146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613a35565b60405180910390fd5b5b600e60009054906101000a900460ff16611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890613ab5565b60405180910390fd5b82600c548161143e610adb565b6114489190613c0f565b1115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613875565b60405180910390fd5b8360058111156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c5906138b5565b60405180910390fd5b6114d833866124c4565b50505050600160098190555050565b6114ef611b5c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490613975565b60405180910390fd5b806006600061156a611b5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611617611b5c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165c91906137b8565b60405180910390a35050565b611673848484611c16565b61167f848484846124e2565b6116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b5906139d5565b60405180910390fd5b50505050565b600581565b60606116d482611b4f565b611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906138d5565b60405180910390fd5b6117286001836117239190613c0f565b612679565b6040516020016117389190613706565b6040516020818303038152906040529050919050565b600c5481565b60075481565b611762611b5c565b73ffffffffffffffffffffffffffffffffffffffff1661178061126a565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613955565b60405180910390fd5b80600b60146101000a81548160ff02191690831515021790555050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600b60149054906101000a900460ff1680156118ea57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118829190613728565b60206040518083038186803b15801561189a57600080fd5b505afa1580156118ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d291906131e1565b73ffffffffffffffffffffffffffffffffffffffff16145b156118f9576001915050611907565b61190384846127da565b9150505b92915050565b611915611b5c565b73ffffffffffffffffffffffffffffffffffffffff1661193361126a565b73ffffffffffffffffffffffffffffffffffffffff1614611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613955565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613815565b60405180910390fd5b611a02816123fe565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ad057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b3857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b485750611b478261286e565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c21826121fb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c48611b5c565b73ffffffffffffffffffffffffffffffffffffffff161480611ca45750611c6d611b5c565b73ffffffffffffffffffffffffffffffffffffffff16611c8c846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc05750611cbf8260000151611cba611b5c565b6117f3565b5b905080611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990613995565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb90613895565b60405180910390fd5b611df185858560016128d8565b611e016000848460000151611b64565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e6f9190613cf0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f139190613bc9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120199190613c0f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215f5761208f81611b4f565b1561215e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c786868660016128de565b505050505050565b600081836121dd9190613c96565b905092915050565b600081836121f39190613c65565b905092915050565b612203612dd6565b61220c82611b4f565b61224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290613835565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106122af5760017f0000000000000000000000000000000000000000000000000000000000000000846122a29190613d24565b6122ac9190613c0f565b90505b60008390505b8181106123bd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a9578093505050506123f9565b5080806123b590613e4e565b9150506122b5565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613a95565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124de8282604051806020016040528060008152506128e4565b5050565b60006125038473ffffffffffffffffffffffffffffffffffffffff16612dc3565b1561266c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261252c611b5c565b8786866040518563ffffffff1660e01b815260040161254e9493929190613743565b602060405180830381600087803b15801561256857600080fd5b505af192505050801561259957506040513d601f19601f820116820180604052508101906125969190613187565b60015b61261c573d80600081146125c9576040519150601f19603f3d011682016040523d82523d6000602084013e6125ce565b606091505b50600081511415612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b906139d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612671565b600190505b949350505050565b606060008214156126c1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127d5565b600082905060005b600082146126f35780806126dc90613edb565b915050600a826126ec9190613c65565b91506126c9565b60008167ffffffffffffffff81111561270f5761270e614011565b5b6040519080825280601f01601f1916602001820160405280156127415781602001600182028036833780820191505090505b5090505b600085146127ce5760018261275a9190613d24565b9150600a856127699190613f24565b60306127759190613c0f565b60f81b81838151811061278b5761278a613fe2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c79190613c65565b9450612745565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190613a15565b60405180910390fd5b61296381611b4f565b156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906139f5565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90613af5565b60405180910390fd5b612a1360008583866128d8565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b109190613bc9565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b379190613bc9565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612da657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4660008884886124e2565b612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c906139d5565b60405180910390fd5b8180612d9090613edb565b9250508080612d9e90613edb565b915050612cd5565b5080600081905550612dbb60008785886128de565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000612e23612e1e84613b55565b613b30565b905082815260208101848484011115612e3f57612e3e614045565b5b612e4a848285613e0c565b509392505050565b600081359050612e6181614761565b92915050565b600081359050612e7681614778565b92915050565b600081519050612e8b81614778565b92915050565b600081359050612ea08161478f565b92915050565b600081519050612eb58161478f565b92915050565b600082601f830112612ed057612ecf614040565b5b8135612ee0848260208601612e10565b91505092915050565b600081359050612ef8816147a6565b92915050565b600081519050612f0d816147bd565b92915050565b600081359050612f22816147d4565b92915050565b600081519050612f37816147d4565b92915050565b600060208284031215612f5357612f5261404f565b5b6000612f6184828501612e52565b91505092915050565b60008060408385031215612f8157612f8061404f565b5b6000612f8f85828601612e52565b9250506020612fa085828601612e52565b9150509250929050565b600080600060608486031215612fc357612fc261404f565b5b6000612fd186828701612e52565b9350506020612fe286828701612e52565b9250506040612ff386828701612f13565b9150509250925092565b600080600080608085870312156130175761301661404f565b5b600061302587828801612e52565b945050602061303687828801612e52565b935050604061304787828801612f13565b925050606085013567ffffffffffffffff8111156130685761306761404a565b5b61307487828801612ebb565b91505092959194509250565b600080604083850312156130975761309661404f565b5b60006130a585828601612e52565b92505060206130b685828601612e67565b9150509250929050565b600080604083850312156130d7576130d661404f565b5b60006130e585828601612e52565b92505060206130f685828601612f13565b9150509250929050565b6000602082840312156131165761311561404f565b5b600061312484828501612e67565b91505092915050565b6000602082840312156131435761314261404f565b5b600061315184828501612e7c565b91505092915050565b6000602082840312156131705761316f61404f565b5b600061317e84828501612e91565b91505092915050565b60006020828403121561319d5761319c61404f565b5b60006131ab84828501612ea6565b91505092915050565b6000602082840312156131ca576131c961404f565b5b60006131d884828501612ee9565b91505092915050565b6000602082840312156131f7576131f661404f565b5b600061320584828501612efe565b91505092915050565b6000602082840312156132245761322361404f565b5b600061323284828501612f13565b91505092915050565b6000602082840312156132515761325061404f565b5b600061325f84828501612f28565b91505092915050565b6000806040838503121561327f5761327e61404f565b5b600061328d85828601612f13565b925050602061329e85828601612f13565b9150509250929050565b6132b181613d58565b82525050565b6132c081613d6a565b82525050565b60006132d182613b86565b6132db8185613b9c565b93506132eb818560208601613e1b565b6132f481614054565b840191505092915050565b600061330a82613b91565b6133148185613bad565b9350613324818560208601613e1b565b61332d81614054565b840191505092915050565b600061334382613b91565b61334d8185613bbe565b935061335d818560208601613e1b565b80840191505092915050565b6000613376602283613bad565b915061338182614065565b604082019050919050565b6000613399602683613bad565b91506133a4826140b4565b604082019050919050565b60006133bc602a83613bad565b91506133c782614103565b604082019050919050565b60006133df602383613bad565b91506133ea82614152565b604082019050919050565b6000613402602283613bad565b915061340d826141a1565b604082019050919050565b6000613425602583613bad565b9150613430826141f0565b604082019050919050565b6000613448602283613bad565b91506134538261423f565b604082019050919050565b600061346b601183613bad565b91506134768261428e565b602082019050919050565b600061348e603983613bad565b9150613499826142b7565b604082019050919050565b60006134b1602b83613bad565b91506134bc82614306565b604082019050919050565b60006134d4602683613bad565b91506134df82614355565b604082019050919050565b60006134f7602083613bad565b9150613502826143a4565b602082019050919050565b600061351a601a83613bad565b9150613525826143cd565b602082019050919050565b600061353d603283613bad565b9150613548826143f6565b604082019050919050565b6000613560602283613bad565b915061356b82614445565b604082019050919050565b6000613583603383613bad565b915061358e82614494565b604082019050919050565b60006135a6601d83613bad565b91506135b1826144e3565b602082019050919050565b60006135c9602183613bad565b91506135d48261450c565b604082019050919050565b60006135ec601883613bad565b91506135f78261455b565b602082019050919050565b600061360f602e83613bad565b915061361a82614584565b604082019050919050565b6000613632601f83613bad565b915061363d826145d3565b602082019050919050565b6000613655602f83613bad565b9150613660826145fc565b604082019050919050565b6000613678601783613bad565b91506136838261464b565b602082019050919050565b600061369b602d83613bad565b91506136a682614674565b604082019050919050565b60006136be603683613bbe565b91506136c9826146c3565b603682019050919050565b60006136e1602283613bad565b91506136ec82614712565b604082019050919050565b61370081613e02565b82525050565b6000613711826136b1565b915061371d8284613338565b915081905092915050565b600060208201905061373d60008301846132a8565b92915050565b600060808201905061375860008301876132a8565b61376560208301866132a8565b61377260408301856136f7565b818103606083015261378481846132c6565b905095945050505050565b60006040820190506137a460008301856132a8565b6137b160208301846136f7565b9392505050565b60006020820190506137cd60008301846132b7565b92915050565b600060208201905081810360008301526137ed81846132ff565b905092915050565b6000602082019050818103600083015261380e81613369565b9050919050565b6000602082019050818103600083015261382e8161338c565b9050919050565b6000602082019050818103600083015261384e816133af565b9050919050565b6000602082019050818103600083015261386e816133d2565b9050919050565b6000602082019050818103600083015261388e816133f5565b9050919050565b600060208201905081810360008301526138ae81613418565b9050919050565b600060208201905081810360008301526138ce8161343b565b9050919050565b600060208201905081810360008301526138ee8161345e565b9050919050565b6000602082019050818103600083015261390e81613481565b9050919050565b6000602082019050818103600083015261392e816134a4565b9050919050565b6000602082019050818103600083015261394e816134c7565b9050919050565b6000602082019050818103600083015261396e816134ea565b9050919050565b6000602082019050818103600083015261398e8161350d565b9050919050565b600060208201905081810360008301526139ae81613530565b9050919050565b600060208201905081810360008301526139ce81613553565b9050919050565b600060208201905081810360008301526139ee81613576565b9050919050565b60006020820190508181036000830152613a0e81613599565b9050919050565b60006020820190508181036000830152613a2e816135bc565b9050919050565b60006020820190508181036000830152613a4e816135df565b9050919050565b60006020820190508181036000830152613a6e81613602565b9050919050565b60006020820190508181036000830152613a8e81613625565b9050919050565b60006020820190508181036000830152613aae81613648565b9050919050565b60006020820190508181036000830152613ace8161366b565b9050919050565b60006020820190508181036000830152613aee8161368e565b9050919050565b60006020820190508181036000830152613b0e816136d4565b9050919050565b6000602082019050613b2a60008301846136f7565b92915050565b6000613b3a613b4b565b9050613b468282613eaa565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7057613b6f614011565b5b613b7982614054565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bd482613dc6565b9150613bdf83613dc6565b9250826fffffffffffffffffffffffffffffffff03821115613c0457613c03613f55565b5b828201905092915050565b6000613c1a82613e02565b9150613c2583613e02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c5a57613c59613f55565b5b828201905092915050565b6000613c7082613e02565b9150613c7b83613e02565b925082613c8b57613c8a613f84565b5b828204905092915050565b6000613ca182613e02565b9150613cac83613e02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ce557613ce4613f55565b5b828202905092915050565b6000613cfb82613dc6565b9150613d0683613dc6565b925082821015613d1957613d18613f55565b5b828203905092915050565b6000613d2f82613e02565b9150613d3a83613e02565b925082821015613d4d57613d4c613f55565b5b828203905092915050565b6000613d6382613de2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dad82613d58565b9050919050565b6000613dbf82613d58565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e39578082015181840152602081019050613e1e565b83811115613e48576000848401525b50505050565b6000613e5982613e02565b91506000821415613e6d57613e6c613f55565b5b600182039050919050565b60006002820490506001821680613e9057607f821691505b60208210811415613ea457613ea3613fb3565b5b50919050565b613eb382614054565b810181811067ffffffffffffffff82111715613ed257613ed1614011565b5b80604052505050565b6000613ee682613e02565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1957613f18613f55565b5b600182019050919050565b6000613f2f82613e02565b9150613f3a83613e02565b925082613f4a57613f49613f84565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f697066733a2f2f516d544463436474337962366d5a69747a57426d517236354160008201527f573657736b613239354467396e62455970535544522f00000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61476a81613d58565b811461477557600080fd5b50565b61478181613d6a565b811461478c57600080fd5b50565b61479881613d76565b81146147a357600080fd5b50565b6147af81613da2565b81146147ba57600080fd5b50565b6147c681613db4565b81146147d157600080fd5b50565b6147dd81613e02565b81146147e857600080fd5b5056fea26469706673582212202f0631f87a9cecd4e138bdf771bd856ba9ea92b2e8515d6761d4dcc8e010b2e864736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063b88d4fde11610095578063d7224ba011610064578063d7224ba0146106e6578063e43082f714610711578063e985e9c51461073a578063f2fde38b14610777576101e3565b8063b88d4fde1461062a578063c6a91b4214610653578063c87b56dd1461067e578063d5abeb01146106bb576101e3565b806395d89b41116100d157806395d89b411461058f578063982d669e146105ba578063a0712d68146105e5578063a22cb46514610601576101e3565b80636352211e146104d357806370a0823114610510578063715018a61461054d5780638da5cb5b14610564576101e3565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b1461042d57806342842e0e1461044457806349df728c1461046d5780634f6ccce714610496576101e3565b806323b872dd1461036057806328cad13d146103895780632a55205a146103b25780632f745c59146103f0576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630a00ae83146102e157806318160ddd1461030a5780631e84c41314610335576101e3565b806301ffc9a7146101e857806306fdde031461022557806307e89ec014610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a919061315a565b6107a0565b60405161021c91906137b8565b60405180910390f35b34801561023157600080fd5b5061023a61081a565b60405161024791906137d3565b60405180910390f35b34801561025c57600080fd5b506102656108ac565b6040516102729190613b15565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061320e565b6108b7565b6040516102af9190613728565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da91906130c0565b61093c565b005b3480156102ed57600080fd5b506103086004803603810190610303919061320e565b610a55565b005b34801561031657600080fd5b5061031f610adb565b60405161032c9190613b15565b60405180910390f35b34801561034157600080fd5b5061034a610ae4565b60405161035791906137b8565b60405180910390f35b34801561036c57600080fd5b5061038760048036038101906103829190612faa565b610af7565b005b34801561039557600080fd5b506103b060048036038101906103ab9190613100565b610b07565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613268565b610ba0565b6040516103e792919061378f565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906130c0565b610c0c565b6040516104249190613b15565b60405180910390f35b34801561043957600080fd5b50610442610e0a565b005b34801561045057600080fd5b5061046b60048036038101906104669190612faa565b610ed5565b005b34801561047957600080fd5b50610494600480360381019061048f91906131b4565b610ef5565b005b3480156104a257600080fd5b506104bd60048036038101906104b8919061320e565b611090565b6040516104ca9190613b15565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f5919061320e565b6110e3565b6040516105079190613728565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190612f3d565b6110f9565b6040516105449190613b15565b60405180910390f35b34801561055957600080fd5b506105626111e2565b005b34801561057057600080fd5b5061057961126a565b6040516105869190613728565b60405180910390f35b34801561059b57600080fd5b506105a4611294565b6040516105b191906137d3565b60405180910390f35b3480156105c657600080fd5b506105cf611326565b6040516105dc9190613b15565b60405180910390f35b6105ff60048036038101906105fa919061320e565b61132c565b005b34801561060d57600080fd5b5061062860048036038101906106239190613080565b6114e7565b005b34801561063657600080fd5b50610651600480360381019061064c9190612ffd565b611668565b005b34801561065f57600080fd5b506106686116c4565b6040516106759190613b15565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a0919061320e565b6116c9565b6040516106b291906137d3565b60405180910390f35b3480156106c757600080fd5b506106d061174e565b6040516106dd9190613b15565b60405180910390f35b3480156106f257600080fd5b506106fb611754565b6040516107089190613b15565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613100565b61175a565b005b34801561074657600080fd5b50610761600480360381019061075c9190612f6a565b6117f3565b60405161076e91906137b8565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190612f3d565b61190d565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610813575061081282611a05565b5b9050919050565b60606001805461082990613e78565b80601f016020809104026020016040519081016040528092919081815260200182805461085590613e78565b80156108a25780601f10610877576101008083540402835291602001916108a2565b820191906000526020600020905b81548152906001019060200180831161088557829003601f168201915b5050505050905090565b660e35fa931a000081565b60006108c282611b4f565b610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890613ad5565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610947826110e3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906139b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d7611b5c565b73ffffffffffffffffffffffffffffffffffffffff161480610a065750610a0581610a00611b5c565b6117f3565b5b610a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3c906138f5565b60405180910390fd5b610a50838383611b64565b505050565b610a5d611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610a7b61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890613955565b60405180910390fd5b80600d8190555050565b60008054905090565b600e60009054906101000a900460ff1681565b610b02838383611c16565b505050565b610b0f611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610b2d61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90613955565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600080610bac84611b4f565b610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906138d5565b60405180910390fd5b30610c01610bfa8560056121cf565b60646121e5565b915091509250929050565b6000610c17836110f9565b8210610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906137f5565b60405180910390fd5b6000610c62610adb565b905060008060005b83811015610dc8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db45786841415610da5578195505050505050610e04565b8380610db090613edb565b9450505b508080610dc090613edb565b915050610c6a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfb90613a55565b60405180910390fd5b92915050565b610e12611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610e3061126a565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613955565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed1573d6000803e3d6000fd5b5050565b610ef083838360405180602001604052806000815250611668565b505050565b610efd611b5c565b73ffffffffffffffffffffffffffffffffffffffff16610f1b61126a565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613955565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fac9190613728565b60206040518083038186803b158015610fc457600080fd5b505afa158015610fd8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ffc919061323b565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161103992919061378f565b602060405180830381600087803b15801561105357600080fd5b505af1158015611067573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108b919061312d565b505050565b600061109a610adb565b82106110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290613855565b60405180910390fd5b819050919050565b60006110ee826121fb565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561116a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116190613915565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111ea611b5c565b73ffffffffffffffffffffffffffffffffffffffff1661120861126a565b73ffffffffffffffffffffffffffffffffffffffff161461125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590613955565b60405180910390fd5b61126860006123fe565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546112a390613e78565b80601f01602080910402602001604051908101604052809291908181526020018280546112cf90613e78565b801561131c5780601f106112f15761010080835404028352916020019161131c565b820191906000526020600020905b8154815290600101906020018083116112ff57829003601f168201915b5050505050905090565b600d5481565b60026009541415611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990613a75565b60405180910390fd5b6002600981905550660e35fa931a000081600d5461138e610adb565b11156113e2573481836113a19190613c96565b146113e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d890613a35565b60405180910390fd5b5b600e60009054906101000a900460ff16611431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142890613ab5565b60405180910390fd5b82600c548161143e610adb565b6114489190613c0f565b1115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613875565b60405180910390fd5b8360058111156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c5906138b5565b60405180910390fd5b6114d833866124c4565b50505050600160098190555050565b6114ef611b5c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155490613975565b60405180910390fd5b806006600061156a611b5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611617611b5c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161165c91906137b8565b60405180910390a35050565b611673848484611c16565b61167f848484846124e2565b6116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b5906139d5565b60405180910390fd5b50505050565b600581565b60606116d482611b4f565b611713576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170a906138d5565b60405180910390fd5b6117286001836117239190613c0f565b612679565b6040516020016117389190613706565b6040516020818303038152906040529050919050565b600c5481565b60075481565b611762611b5c565b73ffffffffffffffffffffffffffffffffffffffff1661178061126a565b73ffffffffffffffffffffffffffffffffffffffff16146117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613955565b60405180910390fd5b80600b60146101000a81548160ff02191690831515021790555050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600b60149054906101000a900460ff1680156118ea57508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016118829190613728565b60206040518083038186803b15801561189a57600080fd5b505afa1580156118ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d291906131e1565b73ffffffffffffffffffffffffffffffffffffffff16145b156118f9576001915050611907565b61190384846127da565b9150505b92915050565b611915611b5c565b73ffffffffffffffffffffffffffffffffffffffff1661193361126a565b73ffffffffffffffffffffffffffffffffffffffff1614611989576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198090613955565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613815565b60405180910390fd5b611a02816123fe565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ad057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b3857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b485750611b478261286e565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c21826121fb565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c48611b5c565b73ffffffffffffffffffffffffffffffffffffffff161480611ca45750611c6d611b5c565b73ffffffffffffffffffffffffffffffffffffffff16611c8c846108b7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cc05750611cbf8260000151611cba611b5c565b6117f3565b5b905080611d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf990613995565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6b90613935565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb90613895565b60405180910390fd5b611df185858560016128d8565b611e016000848460000151611b64565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e6f9190613cf0565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611f139190613bc9565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120199190613c0f565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561215f5761208f81611b4f565b1561215e576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c786868660016128de565b505050505050565b600081836121dd9190613c96565b905092915050565b600081836121f39190613c65565b905092915050565b612203612dd6565b61220c82611b4f565b61224b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224290613835565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106122af5760017f0000000000000000000000000000000000000000000000000000000000000064846122a29190613d24565b6122ac9190613c0f565b90505b60008390505b8181106123bd576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123a9578093505050506123f9565b5080806123b590613e4e565b9150506122b5565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613a95565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124de8282604051806020016040528060008152506128e4565b5050565b60006125038473ffffffffffffffffffffffffffffffffffffffff16612dc3565b1561266c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261252c611b5c565b8786866040518563ffffffff1660e01b815260040161254e9493929190613743565b602060405180830381600087803b15801561256857600080fd5b505af192505050801561259957506040513d601f19601f820116820180604052508101906125969190613187565b60015b61261c573d80600081146125c9576040519150601f19603f3d011682016040523d82523d6000602084013e6125ce565b606091505b50600081511415612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b906139d5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612671565b600190505b949350505050565b606060008214156126c1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127d5565b600082905060005b600082146126f35780806126dc90613edb565b915050600a826126ec9190613c65565b91506126c9565b60008167ffffffffffffffff81111561270f5761270e614011565b5b6040519080825280601f01601f1916602001820160405280156127415781602001600182028036833780820191505090505b5090505b600085146127ce5760018261275a9190613d24565b9150600a856127699190613f24565b60306127759190613c0f565b60f81b81838151811061278b5761278a613fe2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127c79190613c65565b9450612745565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190613a15565b60405180910390fd5b61296381611b4f565b156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906139f5565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000064831115612a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129fd90613af5565b60405180910390fd5b612a1360008583866128d8565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b109190613bc9565b6fffffffffffffffffffffffffffffffff168152602001858360200151612b379190613bc9565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612da657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d4660008884886124e2565b612d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7c906139d5565b60405180910390fd5b8180612d9090613edb565b9250508080612d9e90613edb565b915050612cd5565b5080600081905550612dbb60008785886128de565b505050505050565b600080823b905060008111915050919050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000612e23612e1e84613b55565b613b30565b905082815260208101848484011115612e3f57612e3e614045565b5b612e4a848285613e0c565b509392505050565b600081359050612e6181614761565b92915050565b600081359050612e7681614778565b92915050565b600081519050612e8b81614778565b92915050565b600081359050612ea08161478f565b92915050565b600081519050612eb58161478f565b92915050565b600082601f830112612ed057612ecf614040565b5b8135612ee0848260208601612e10565b91505092915050565b600081359050612ef8816147a6565b92915050565b600081519050612f0d816147bd565b92915050565b600081359050612f22816147d4565b92915050565b600081519050612f37816147d4565b92915050565b600060208284031215612f5357612f5261404f565b5b6000612f6184828501612e52565b91505092915050565b60008060408385031215612f8157612f8061404f565b5b6000612f8f85828601612e52565b9250506020612fa085828601612e52565b9150509250929050565b600080600060608486031215612fc357612fc261404f565b5b6000612fd186828701612e52565b9350506020612fe286828701612e52565b9250506040612ff386828701612f13565b9150509250925092565b600080600080608085870312156130175761301661404f565b5b600061302587828801612e52565b945050602061303687828801612e52565b935050604061304787828801612f13565b925050606085013567ffffffffffffffff8111156130685761306761404a565b5b61307487828801612ebb565b91505092959194509250565b600080604083850312156130975761309661404f565b5b60006130a585828601612e52565b92505060206130b685828601612e67565b9150509250929050565b600080604083850312156130d7576130d661404f565b5b60006130e585828601612e52565b92505060206130f685828601612f13565b9150509250929050565b6000602082840312156131165761311561404f565b5b600061312484828501612e67565b91505092915050565b6000602082840312156131435761314261404f565b5b600061315184828501612e7c565b91505092915050565b6000602082840312156131705761316f61404f565b5b600061317e84828501612e91565b91505092915050565b60006020828403121561319d5761319c61404f565b5b60006131ab84828501612ea6565b91505092915050565b6000602082840312156131ca576131c961404f565b5b60006131d884828501612ee9565b91505092915050565b6000602082840312156131f7576131f661404f565b5b600061320584828501612efe565b91505092915050565b6000602082840312156132245761322361404f565b5b600061323284828501612f13565b91505092915050565b6000602082840312156132515761325061404f565b5b600061325f84828501612f28565b91505092915050565b6000806040838503121561327f5761327e61404f565b5b600061328d85828601612f13565b925050602061329e85828601612f13565b9150509250929050565b6132b181613d58565b82525050565b6132c081613d6a565b82525050565b60006132d182613b86565b6132db8185613b9c565b93506132eb818560208601613e1b565b6132f481614054565b840191505092915050565b600061330a82613b91565b6133148185613bad565b9350613324818560208601613e1b565b61332d81614054565b840191505092915050565b600061334382613b91565b61334d8185613bbe565b935061335d818560208601613e1b565b80840191505092915050565b6000613376602283613bad565b915061338182614065565b604082019050919050565b6000613399602683613bad565b91506133a4826140b4565b604082019050919050565b60006133bc602a83613bad565b91506133c782614103565b604082019050919050565b60006133df602383613bad565b91506133ea82614152565b604082019050919050565b6000613402602283613bad565b915061340d826141a1565b604082019050919050565b6000613425602583613bad565b9150613430826141f0565b604082019050919050565b6000613448602283613bad565b91506134538261423f565b604082019050919050565b600061346b601183613bad565b91506134768261428e565b602082019050919050565b600061348e603983613bad565b9150613499826142b7565b604082019050919050565b60006134b1602b83613bad565b91506134bc82614306565b604082019050919050565b60006134d4602683613bad565b91506134df82614355565b604082019050919050565b60006134f7602083613bad565b9150613502826143a4565b602082019050919050565b600061351a601a83613bad565b9150613525826143cd565b602082019050919050565b600061353d603283613bad565b9150613548826143f6565b604082019050919050565b6000613560602283613bad565b915061356b82614445565b604082019050919050565b6000613583603383613bad565b915061358e82614494565b604082019050919050565b60006135a6601d83613bad565b91506135b1826144e3565b602082019050919050565b60006135c9602183613bad565b91506135d48261450c565b604082019050919050565b60006135ec601883613bad565b91506135f78261455b565b602082019050919050565b600061360f602e83613bad565b915061361a82614584565b604082019050919050565b6000613632601f83613bad565b915061363d826145d3565b602082019050919050565b6000613655602f83613bad565b9150613660826145fc565b604082019050919050565b6000613678601783613bad565b91506136838261464b565b602082019050919050565b600061369b602d83613bad565b91506136a682614674565b604082019050919050565b60006136be603683613bbe565b91506136c9826146c3565b603682019050919050565b60006136e1602283613bad565b91506136ec82614712565b604082019050919050565b61370081613e02565b82525050565b6000613711826136b1565b915061371d8284613338565b915081905092915050565b600060208201905061373d60008301846132a8565b92915050565b600060808201905061375860008301876132a8565b61376560208301866132a8565b61377260408301856136f7565b818103606083015261378481846132c6565b905095945050505050565b60006040820190506137a460008301856132a8565b6137b160208301846136f7565b9392505050565b60006020820190506137cd60008301846132b7565b92915050565b600060208201905081810360008301526137ed81846132ff565b905092915050565b6000602082019050818103600083015261380e81613369565b9050919050565b6000602082019050818103600083015261382e8161338c565b9050919050565b6000602082019050818103600083015261384e816133af565b9050919050565b6000602082019050818103600083015261386e816133d2565b9050919050565b6000602082019050818103600083015261388e816133f5565b9050919050565b600060208201905081810360008301526138ae81613418565b9050919050565b600060208201905081810360008301526138ce8161343b565b9050919050565b600060208201905081810360008301526138ee8161345e565b9050919050565b6000602082019050818103600083015261390e81613481565b9050919050565b6000602082019050818103600083015261392e816134a4565b9050919050565b6000602082019050818103600083015261394e816134c7565b9050919050565b6000602082019050818103600083015261396e816134ea565b9050919050565b6000602082019050818103600083015261398e8161350d565b9050919050565b600060208201905081810360008301526139ae81613530565b9050919050565b600060208201905081810360008301526139ce81613553565b9050919050565b600060208201905081810360008301526139ee81613576565b9050919050565b60006020820190508181036000830152613a0e81613599565b9050919050565b60006020820190508181036000830152613a2e816135bc565b9050919050565b60006020820190508181036000830152613a4e816135df565b9050919050565b60006020820190508181036000830152613a6e81613602565b9050919050565b60006020820190508181036000830152613a8e81613625565b9050919050565b60006020820190508181036000830152613aae81613648565b9050919050565b60006020820190508181036000830152613ace8161366b565b9050919050565b60006020820190508181036000830152613aee8161368e565b9050919050565b60006020820190508181036000830152613b0e816136d4565b9050919050565b6000602082019050613b2a60008301846136f7565b92915050565b6000613b3a613b4b565b9050613b468282613eaa565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7057613b6f614011565b5b613b7982614054565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bd482613dc6565b9150613bdf83613dc6565b9250826fffffffffffffffffffffffffffffffff03821115613c0457613c03613f55565b5b828201905092915050565b6000613c1a82613e02565b9150613c2583613e02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c5a57613c59613f55565b5b828201905092915050565b6000613c7082613e02565b9150613c7b83613e02565b925082613c8b57613c8a613f84565b5b828204905092915050565b6000613ca182613e02565b9150613cac83613e02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ce557613ce4613f55565b5b828202905092915050565b6000613cfb82613dc6565b9150613d0683613dc6565b925082821015613d1957613d18613f55565b5b828203905092915050565b6000613d2f82613e02565b9150613d3a83613e02565b925082821015613d4d57613d4c613f55565b5b828203905092915050565b6000613d6382613de2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dad82613d58565b9050919050565b6000613dbf82613d58565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e39578082015181840152602081019050613e1e565b83811115613e48576000848401525b50505050565b6000613e5982613e02565b91506000821415613e6d57613e6c613f55565b5b600182039050919050565b60006002820490506001821680613e9057607f821691505b60208210811415613ea457613ea3613fb3565b5b50919050565b613eb382614054565b810181811067ffffffffffffffff82111715613ed257613ed1614011565b5b80604052505050565b6000613ee682613e02565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1957613f18613f55565b5b600182019050919050565b6000613f2f82613e02565b9150613f3a83613e02565b925082613f4a57613f49613f84565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f697066733a2f2f516d544463436474337962366d5a69747a57426d517236354160008201527f573657736b613239354467396e62455970535544522f00000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b61476a81613d58565b811461477557600080fd5b50565b61478181613d6a565b811461478c57600080fd5b50565b61479881613d76565b81146147a357600080fd5b50565b6147af81613da2565b81146147ba57600080fd5b50565b6147c681613db4565b81146147d157600080fd5b50565b6147dd81613e02565b81146147e857600080fd5b5056fea26469706673582212202f0631f87a9cecd4e138bdf771bd856ba9ea92b2e8515d6761d4dcc8e010b2e864736f6c63430008070033

Deployed Bytecode Sourcemap

55121:5462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58737:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44340:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55554:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45865:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45428:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58005:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41175:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55658:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46715:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57837:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60262:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;41806:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58154:143;;;;;;;;;;;;;:::i;:::-;;46920:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58305:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41338:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44163:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43040:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19198:103;;;;;;;;;;;;;:::i;:::-;;18547:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44495:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55616:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56952:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46133:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47140:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55463:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59854:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55514:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51555:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57663:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59166:617;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19456:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58737:292;58885:4;58942:26;58927:41;;;:11;:41;;;;:94;;;;58985:36;59009:11;58985:23;:36::i;:::-;58927:94;58907:114;;58737:292;;;:::o;44340:94::-;44394:13;44423:5;44416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44340:94;:::o;55554:55::-;55598:11;55554:55;:::o;45865:204::-;45933:7;45957:16;45965:7;45957;:16::i;:::-;45949:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46039:15;:24;46055:7;46039:24;;;;;;;;;;;;;;;;;;;;;46032:31;;45865:204;;;:::o;45428:379::-;45497:13;45513:24;45529:7;45513:15;:24::i;:::-;45497:40;;45558:5;45552:11;;:2;:11;;;;45544:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45643:5;45627:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;45652:37;45669:5;45676:12;:10;:12::i;:::-;45652:16;:37::i;:::-;45627:62;45611:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;45773:28;45782:2;45786:7;45795:5;45773:8;:28::i;:::-;45490:317;45428:379;;:::o;58005:139::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58123:13:::1;58106:14;:30;;;;58005:139:::0;:::o;41175:94::-;41228:7;41251:12;;41244:19;;41175:94;:::o;55658:37::-;;;;;;;;;;;;;:::o;46715:142::-;46823:28;46833:4;46839:2;46843:7;46823:9;:28::i;:::-;46715:142;;;:::o;57837:158::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57968:19:::1;57947:18;;:40;;;;;;;;;;;;;;;;;;57837:158:::0;:::o;60262:318::-;60387:16;60405:21;60452:16;60460:7;60452;:16::i;:::-;60444:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60519:4;60526:45;60539:26;60552:9;60563:1;60539:12;:26::i;:::-;60567:3;60526:12;:45::i;:::-;60503:69;;;;60262:318;;;;;:::o;41806:744::-;41915:7;41950:16;41960:5;41950:9;:16::i;:::-;41942:5;:24;41934:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42012:22;42037:13;:11;:13::i;:::-;42012:38;;42057:19;42087:25;42137:9;42132:350;42156:14;42152:1;:18;42132:350;;;42186:31;42220:11;:14;42232:1;42220:14;;;;;;;;;;;42186:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42273:1;42247:28;;:9;:14;;;:28;;;42243:89;;42308:9;:14;;;42288:34;;42243:89;42365:5;42344:26;;:17;:26;;;42340:135;;;42402:5;42387:11;:20;42383:59;;;42429:1;42422:8;;;;;;;;;42383:59;42452:13;;;;;:::i;:::-;;;;42340:135;42177:305;42172:3;;;;;:::i;:::-;;;;42132:350;;;;42488:56;;;;;;;;;;:::i;:::-;;;;;;;;41806:744;;;;;:::o;58154:143::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58202:15:::1;58220:21;58202:39;;58260:10;58252:28;;:37;58281:7;58252:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58191:106;58154:143::o:0;46920:157::-;47032:39;47049:4;47055:2;47059:7;47032:39;;;;;;;;;;;;:16;:39::i;:::-;46920:157;;;:::o;58305:168::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58371:15:::1;58389:5;:15;;;58413:4;58389:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58371:48;;58430:5;:14;;;58445:10;58457:7;58430:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58360:113;58305:168:::0;:::o;41338:177::-;41405:7;41437:13;:11;:13::i;:::-;41429:5;:21;41421:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41504:5;41497:12;;41338:177;;;:::o;44163:118::-;44227:7;44250:20;44262:7;44250:11;:20::i;:::-;:25;;;44243:32;;44163:118;;;:::o;43040:211::-;43104:7;43145:1;43128:19;;:5;:19;;;;43120:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43217:12;:19;43230:5;43217:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43209:36;;43202:43;;43040:211;;;:::o;19198:103::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19263:30:::1;19290:1;19263:18;:30::i;:::-;19198:103::o:0;18547:87::-;18593:7;18620:6;;;;;;;;;;;18613:13;;18547:87;:::o;44495:98::-;44551:13;44580:7;44573:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44495:98;:::o;55616:35::-;;;;:::o;56952:321::-;10476:1;11074:7;;:19;;11066:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10476:1;11207:7;:18;;;;55598:11:::1;57092:14;56627;;56613:13;:11;:13::i;:::-;:28;56610:166;;;56703:9;56684:14;56676:5;:22;;;;:::i;:::-;56675:37;56653:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;56610:166;55825:18:::2;;;;;;;;;;;55817:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;57155:14:::3;56236:9;;56201:14;56185:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56163:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57194:14:::4;55506:1;55983:14;:34;;55961:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57228:37:::5;57238:10;57250:14;57228:9;:37::i;:::-;56318:1:::4;55882::::3;11238::::1;;10432::::0;11386:7;:22;;;;56952:321;:::o;46133:274::-;46236:12;:10;:12::i;:::-;46224:24;;:8;:24;;;;46216:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46333:8;46288:18;:32;46307:12;:10;:12::i;:::-;46288:32;;;;;;;;;;;;;;;:42;46321:8;46288:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46382:8;46353:48;;46368:12;:10;:12::i;:::-;46353:48;;;46392:8;46353:48;;;;;;:::i;:::-;;;;;;;;46133:274;;:::o;47140:311::-;47277:28;47287:4;47293:2;47297:7;47277:9;:28::i;:::-;47328:48;47351:4;47357:2;47361:7;47370:5;47328:22;:48::i;:::-;47312:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47140:311;;;;:::o;55463:44::-;55506:1;55463:44;:::o;59854:342::-;59972:13;60011:16;60019:7;60011;:16::i;:::-;60003:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;60164:22;60173:1;60165:7;:9;;;;:::i;:::-;60164:20;:22::i;:::-;60089:98;;;;;;;;:::i;:::-;;;;;;;;;;;;;60062:126;;59854:342;;;:::o;55514:31::-;;;;:::o;51555:43::-;;;;:::o;57663:166::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57800:21:::1;57777:20;;:44;;;;;;;;;;;;;;;;;;57663:166:::0;:::o;59166:617::-;59291:4;59456:27;59514;;;;;;;;;;;59456:96;;59581:20;;;;;;;;;;;:86;;;;;59659:8;59618:49;;59626:13;:21;;;59648:5;59626:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59618:49;;;59581:86;59563:154;;;59701:4;59694:11;;;;;59563:154;59736:39;59759:5;59766:8;59736:22;:39::i;:::-;59729:46;;;59166:617;;;;;:::o;19456:201::-;18778:12;:10;:12::i;:::-;18767:23;;:7;:5;:7::i;:::-;:23;;;18759:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19565:1:::1;19545:22;;:8;:22;;;;19537:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19621:28;19640:8;19621:18;:28::i;:::-;19456:201:::0;:::o;42614:370::-;42741:4;42786:25;42771:40;;;:11;:40;;;;:99;;;;42837:33;42822:48;;;:11;:48;;;;42771:99;:160;;;;42896:35;42881:50;;;:11;:50;;;;42771:160;:207;;;;42942:36;42966:11;42942:23;:36::i;:::-;42771:207;42757:221;;42614:370;;;:::o;47690:105::-;47747:4;47777:12;;47767:7;:22;47760:29;;47690:105;;;:::o;17271:98::-;17324:7;17351:10;17344:17;;17271:98;:::o;51377:172::-;51501:2;51474:15;:24;51490:7;51474:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51535:7;51531:2;51515:28;;51524:5;51515:28;;;;;;;;;;;;51377:172;;;:::o;49742:1529::-;49839:35;49877:20;49889:7;49877:11;:20::i;:::-;49839:58;;49906:22;49948:13;:18;;;49932:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50001:12;:10;:12::i;:::-;49977:36;;:20;49989:7;49977:11;:20::i;:::-;:36;;;49932:81;:142;;;;50024:50;50041:13;:18;;;50061:12;:10;:12::i;:::-;50024:16;:50::i;:::-;49932:142;49906:169;;50100:17;50084:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50232:4;50210:26;;:13;:18;;;:26;;;50194:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50321:1;50307:16;;:2;:16;;;;50299:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50374:43;50396:4;50402:2;50406:7;50415:1;50374:21;:43::i;:::-;50474:49;50491:1;50495:7;50504:13;:18;;;50474:8;:49::i;:::-;50562:1;50532:12;:18;50545:4;50532:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50598:1;50570:12;:16;50583:2;50570:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50629:43;;;;;;;;50644:2;50629:43;;;;;;50655:15;50629:43;;;;;50606:11;:20;50618:7;50606:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50900:19;50932:1;50922:7;:11;;;;:::i;:::-;50900:33;;50985:1;50944:43;;:11;:24;50956:11;50944:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50940:236;;;51002:20;51010:11;51002:7;:20::i;:::-;50998:171;;;51062:97;;;;;;;;51089:13;:18;;;51062:97;;;;;;51120:13;:28;;;51062:97;;;;;51035:11;:24;51047:11;51035:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50998:171;50940:236;51208:7;51204:2;51189:27;;51198:4;51189:27;;;;;;;;;;;;51223:42;51244:4;51250:2;51254:7;51263:1;51223:20;:42::i;:::-;49832:1439;;;49742:1529;;;:::o;3772:98::-;3830:7;3861:1;3857;:5;;;;:::i;:::-;3850:12;;3772:98;;;;:::o;4171:::-;4229:7;4260:1;4256;:5;;;;:::i;:::-;4249:12;;4171:98;;;;:::o;43503:606::-;43579:21;;:::i;:::-;43620:16;43628:7;43620;:16::i;:::-;43612:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43692:26;43740:12;43729:7;:23;43725:93;;43809:1;43794:12;43784:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;43763:47;;43725:93;43831:12;43846:7;43831:22;;43826:212;43863:18;43855:4;:26;43826:212;;43900:31;43934:11;:17;43946:4;43934:17;;;;;;;;;;;43900:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43990:1;43964:28;;:9;:14;;;:28;;;43960:71;;44012:9;44005:16;;;;;;;43960:71;43891:147;43883:6;;;;;:::i;:::-;;;;43826:212;;;;44046:57;;;;;;;;;;:::i;:::-;;;;;;;;43503:606;;;;:::o;19817:191::-;19891:16;19910:6;;;;;;;;;;;19891:25;;19936:8;19927:6;;:17;;;;;;;;;;;;;;;;;;19991:8;19960:40;;19981:8;19960:40;;;;;;;;;;;;19880:128;19817:191;:::o;47801:98::-;47866:27;47876:2;47880:8;47866:27;;;;;;;;;;;;:9;:27::i;:::-;47801:98;;:::o;53092:690::-;53229:4;53246:15;:2;:13;;;:15::i;:::-;53242:535;;;53301:2;53285:36;;;53322:12;:10;:12::i;:::-;53336:4;53342:7;53351:5;53285:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53272:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53533:1;53516:6;:13;:18;53512:215;;;53549:61;;;;;;;;;;:::i;:::-;;;;;;;;53512:215;53695:6;53689:13;53680:6;53676:2;53672:15;53665:38;53272:464;53417:45;;;53407:55;;;:6;:55;;;;53400:62;;;;;53242:535;53765:4;53758:11;;53092:690;;;;;;;:::o;14833:723::-;14889:13;15119:1;15110:5;:10;15106:53;;;15137:10;;;;;;;;;;;;;;;;;;;;;15106:53;15169:12;15184:5;15169:20;;15200:14;15225:78;15240:1;15232:4;:9;15225:78;;15258:8;;;;;:::i;:::-;;;;15289:2;15281:10;;;;;:::i;:::-;;;15225:78;;;15313:19;15345:6;15335:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15313:39;;15363:154;15379:1;15370:5;:10;15363:154;;15407:1;15397:11;;;;;:::i;:::-;;;15474:2;15466:5;:10;;;;:::i;:::-;15453:2;:24;;;;:::i;:::-;15440:39;;15423:6;15430;15423:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15503:2;15494:11;;;;;:::i;:::-;;;15363:154;;;15541:6;15527:21;;;;;14833:723;;;;:::o;46470:186::-;46592:4;46615:18;:25;46634:5;46615:25;;;;;;;;;;;;;;;:35;46641:8;46615:35;;;;;;;;;;;;;;;;;;;;;;;;;46608:42;;46470:186;;;;:::o;31947:157::-;32032:4;32071:25;32056:40;;;:11;:40;;;;32049:47;;31947:157;;;:::o;54244:141::-;;;;;:::o;54771:140::-;;;;;:::o;48238:1272::-;48343:20;48366:12;;48343:35;;48407:1;48393:16;;:2;:16;;;;48385:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48584:21;48592:12;48584:7;:21::i;:::-;48583:22;48575:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48666:12;48654:8;:24;;48646:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48726:61;48756:1;48760:2;48764:12;48778:8;48726:21;:61::i;:::-;48796:30;48829:12;:16;48842:2;48829:16;;;;;;;;;;;;;;;48796:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48871:119;;;;;;;;48921:8;48891:11;:19;;;:39;;;;:::i;:::-;48871:119;;;;;;48974:8;48939:11;:24;;;:44;;;;:::i;:::-;48871:119;;;;;48852:12;:16;48865:2;48852:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49025:43;;;;;;;;49040:2;49025:43;;;;;;49051:15;49025:43;;;;;48997:11;:25;49009:12;48997:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49077:20;49100:12;49077:35;;49126:9;49121:281;49145:8;49141:1;:12;49121:281;;;49199:12;49195:2;49174:38;;49191:1;49174:38;;;;;;;;;;;;49239:59;49270:1;49274:2;49278:12;49292:5;49239:22;:59::i;:::-;49221:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49380:14;;;;;:::i;:::-;;;;49155:3;;;;;:::i;:::-;;;;49121:281;;;;49425:12;49410;:27;;;;49444:60;49473:1;49477:2;49481:12;49495:8;49444:20;:60::i;:::-;48336:1174;;;48238:1272;;;:::o;20835:387::-;20895:4;21103:12;21170:7;21158:20;21150:28;;21213:1;21206:4;:8;21199:15;;;20835:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;761:5;792:6;786:13;777:22;;808:30;832:5;808:30;:::i;:::-;707:137;;;;:::o;850:::-;895:5;933:6;920:20;911:29;;949:32;975:5;949:32;:::i;:::-;850:137;;;;:::o;993:141::-;1049:5;1080:6;1074:13;1065:22;;1096:32;1122:5;1096:32;:::i;:::-;993:141;;;;:::o;1153:338::-;1208:5;1257:3;1250:4;1242:6;1238:17;1234:27;1224:122;;1265:79;;:::i;:::-;1224:122;1382:6;1369:20;1407:78;1481:3;1473:6;1466:4;1458:6;1454:17;1407:78;:::i;:::-;1398:87;;1214:277;1153:338;;;;:::o;1497:167::-;1557:5;1595:6;1582:20;1573:29;;1611:47;1652:5;1611:47;:::i;:::-;1497:167;;;;:::o;1670:201::-;1756:5;1787:6;1781:13;1772:22;;1803:62;1859:5;1803:62;:::i;:::-;1670:201;;;;:::o;1877:139::-;1923:5;1961:6;1948:20;1939:29;;1977:33;2004:5;1977:33;:::i;:::-;1877:139;;;;:::o;2022:143::-;2079:5;2110:6;2104:13;2095:22;;2126:33;2153:5;2126:33;:::i;:::-;2022:143;;;;:::o;2171:329::-;2230:6;2279:2;2267:9;2258:7;2254:23;2250:32;2247:119;;;2285:79;;:::i;:::-;2247:119;2405:1;2430:53;2475:7;2466:6;2455:9;2451:22;2430:53;:::i;:::-;2420:63;;2376:117;2171:329;;;;:::o;2506:474::-;2574:6;2582;2631:2;2619:9;2610:7;2606:23;2602:32;2599:119;;;2637:79;;:::i;:::-;2599:119;2757:1;2782:53;2827:7;2818:6;2807:9;2803:22;2782:53;:::i;:::-;2772:63;;2728:117;2884:2;2910:53;2955:7;2946:6;2935:9;2931:22;2910:53;:::i;:::-;2900:63;;2855:118;2506:474;;;;;:::o;2986:619::-;3063:6;3071;3079;3128:2;3116:9;3107:7;3103:23;3099:32;3096:119;;;3134:79;;:::i;:::-;3096:119;3254:1;3279:53;3324:7;3315:6;3304:9;3300:22;3279:53;:::i;:::-;3269:63;;3225:117;3381:2;3407:53;3452:7;3443:6;3432:9;3428:22;3407:53;:::i;:::-;3397:63;;3352:118;3509:2;3535:53;3580:7;3571:6;3560:9;3556:22;3535:53;:::i;:::-;3525:63;;3480:118;2986:619;;;;;:::o;3611:943::-;3706:6;3714;3722;3730;3779:3;3767:9;3758:7;3754:23;3750:33;3747:120;;;3786:79;;:::i;:::-;3747:120;3906:1;3931:53;3976:7;3967:6;3956:9;3952:22;3931:53;:::i;:::-;3921:63;;3877:117;4033:2;4059:53;4104:7;4095:6;4084:9;4080:22;4059:53;:::i;:::-;4049:63;;4004:118;4161:2;4187:53;4232:7;4223:6;4212:9;4208:22;4187:53;:::i;:::-;4177:63;;4132:118;4317:2;4306:9;4302:18;4289:32;4348:18;4340:6;4337:30;4334:117;;;4370:79;;:::i;:::-;4334:117;4475:62;4529:7;4520:6;4509:9;4505:22;4475:62;:::i;:::-;4465:72;;4260:287;3611:943;;;;;;;:::o;4560:468::-;4625:6;4633;4682:2;4670:9;4661:7;4657:23;4653:32;4650:119;;;4688:79;;:::i;:::-;4650:119;4808:1;4833:53;4878:7;4869:6;4858:9;4854:22;4833:53;:::i;:::-;4823:63;;4779:117;4935:2;4961:50;5003:7;4994:6;4983:9;4979:22;4961:50;:::i;:::-;4951:60;;4906:115;4560:468;;;;;:::o;5034:474::-;5102:6;5110;5159:2;5147:9;5138:7;5134:23;5130:32;5127:119;;;5165:79;;:::i;:::-;5127:119;5285:1;5310:53;5355:7;5346:6;5335:9;5331:22;5310:53;:::i;:::-;5300:63;;5256:117;5412:2;5438:53;5483:7;5474:6;5463:9;5459:22;5438:53;:::i;:::-;5428:63;;5383:118;5034:474;;;;;:::o;5514:323::-;5570:6;5619:2;5607:9;5598:7;5594:23;5590:32;5587:119;;;5625:79;;:::i;:::-;5587:119;5745:1;5770:50;5812:7;5803:6;5792:9;5788:22;5770:50;:::i;:::-;5760:60;;5716:114;5514:323;;;;:::o;5843:345::-;5910:6;5959:2;5947:9;5938:7;5934:23;5930:32;5927:119;;;5965:79;;:::i;:::-;5927:119;6085:1;6110:61;6163:7;6154:6;6143:9;6139:22;6110:61;:::i;:::-;6100:71;;6056:125;5843:345;;;;:::o;6194:327::-;6252:6;6301:2;6289:9;6280:7;6276:23;6272:32;6269:119;;;6307:79;;:::i;:::-;6269:119;6427:1;6452:52;6496:7;6487:6;6476:9;6472:22;6452:52;:::i;:::-;6442:62;;6398:116;6194:327;;;;:::o;6527:349::-;6596:6;6645:2;6633:9;6624:7;6620:23;6616:32;6613:119;;;6651:79;;:::i;:::-;6613:119;6771:1;6796:63;6851:7;6842:6;6831:9;6827:22;6796:63;:::i;:::-;6786:73;;6742:127;6527:349;;;;:::o;6882:357::-;6955:6;7004:2;6992:9;6983:7;6979:23;6975:32;6972:119;;;7010:79;;:::i;:::-;6972:119;7130:1;7155:67;7214:7;7205:6;7194:9;7190:22;7155:67;:::i;:::-;7145:77;;7101:131;6882:357;;;;:::o;7245:409::-;7344:6;7393:2;7381:9;7372:7;7368:23;7364:32;7361:119;;;7399:79;;:::i;:::-;7361:119;7519:1;7544:93;7629:7;7620:6;7609:9;7605:22;7544:93;:::i;:::-;7534:103;;7490:157;7245:409;;;;:::o;7660:329::-;7719:6;7768:2;7756:9;7747:7;7743:23;7739:32;7736:119;;;7774:79;;:::i;:::-;7736:119;7894:1;7919:53;7964:7;7955:6;7944:9;7940:22;7919:53;:::i;:::-;7909:63;;7865:117;7660:329;;;;:::o;7995:351::-;8065:6;8114:2;8102:9;8093:7;8089:23;8085:32;8082:119;;;8120:79;;:::i;:::-;8082:119;8240:1;8265:64;8321:7;8312:6;8301:9;8297:22;8265:64;:::i;:::-;8255:74;;8211:128;7995:351;;;;:::o;8352:474::-;8420:6;8428;8477:2;8465:9;8456:7;8452:23;8448:32;8445:119;;;8483:79;;:::i;:::-;8445:119;8603:1;8628:53;8673:7;8664:6;8653:9;8649:22;8628:53;:::i;:::-;8618:63;;8574:117;8730:2;8756:53;8801:7;8792:6;8781:9;8777:22;8756:53;:::i;:::-;8746:63;;8701:118;8352:474;;;;;:::o;8832:118::-;8919:24;8937:5;8919:24;:::i;:::-;8914:3;8907:37;8832:118;;:::o;8956:109::-;9037:21;9052:5;9037:21;:::i;:::-;9032:3;9025:34;8956:109;;:::o;9071:360::-;9157:3;9185:38;9217:5;9185:38;:::i;:::-;9239:70;9302:6;9297:3;9239:70;:::i;:::-;9232:77;;9318:52;9363:6;9358:3;9351:4;9344:5;9340:16;9318:52;:::i;:::-;9395:29;9417:6;9395:29;:::i;:::-;9390:3;9386:39;9379:46;;9161:270;9071:360;;;;:::o;9437:364::-;9525:3;9553:39;9586:5;9553:39;:::i;:::-;9608:71;9672:6;9667:3;9608:71;:::i;:::-;9601:78;;9688:52;9733:6;9728:3;9721:4;9714:5;9710:16;9688:52;:::i;:::-;9765:29;9787:6;9765:29;:::i;:::-;9760:3;9756:39;9749:46;;9529:272;9437:364;;;;:::o;9807:377::-;9913:3;9941:39;9974:5;9941:39;:::i;:::-;9996:89;10078:6;10073:3;9996:89;:::i;:::-;9989:96;;10094:52;10139:6;10134:3;10127:4;10120:5;10116:16;10094:52;:::i;:::-;10171:6;10166:3;10162:16;10155:23;;9917:267;9807:377;;;;:::o;10190:366::-;10332:3;10353:67;10417:2;10412:3;10353:67;:::i;:::-;10346:74;;10429:93;10518:3;10429:93;:::i;:::-;10547:2;10542:3;10538:12;10531:19;;10190:366;;;:::o;10562:::-;10704:3;10725:67;10789:2;10784:3;10725:67;:::i;:::-;10718:74;;10801:93;10890:3;10801:93;:::i;:::-;10919:2;10914:3;10910:12;10903:19;;10562:366;;;:::o;10934:::-;11076:3;11097:67;11161:2;11156:3;11097:67;:::i;:::-;11090:74;;11173:93;11262:3;11173:93;:::i;:::-;11291:2;11286:3;11282:12;11275:19;;10934:366;;;:::o;11306:::-;11448:3;11469:67;11533:2;11528:3;11469:67;:::i;:::-;11462:74;;11545:93;11634:3;11545:93;:::i;:::-;11663:2;11658:3;11654:12;11647:19;;11306:366;;;:::o;11678:::-;11820:3;11841:67;11905:2;11900:3;11841:67;:::i;:::-;11834:74;;11917:93;12006:3;11917:93;:::i;:::-;12035:2;12030:3;12026:12;12019:19;;11678:366;;;:::o;12050:::-;12192:3;12213:67;12277:2;12272:3;12213:67;:::i;:::-;12206:74;;12289:93;12378:3;12289:93;:::i;:::-;12407:2;12402:3;12398:12;12391:19;;12050:366;;;:::o;12422:::-;12564:3;12585:67;12649:2;12644:3;12585:67;:::i;:::-;12578:74;;12661:93;12750:3;12661:93;:::i;:::-;12779:2;12774:3;12770:12;12763:19;;12422:366;;;:::o;12794:::-;12936:3;12957:67;13021:2;13016:3;12957:67;:::i;:::-;12950:74;;13033:93;13122:3;13033:93;:::i;:::-;13151:2;13146:3;13142:12;13135:19;;12794:366;;;:::o;13166:::-;13308:3;13329:67;13393:2;13388:3;13329:67;:::i;:::-;13322:74;;13405:93;13494:3;13405:93;:::i;:::-;13523:2;13518:3;13514:12;13507:19;;13166:366;;;:::o;13538:::-;13680:3;13701:67;13765:2;13760:3;13701:67;:::i;:::-;13694:74;;13777:93;13866:3;13777:93;:::i;:::-;13895:2;13890:3;13886:12;13879:19;;13538:366;;;:::o;13910:::-;14052:3;14073:67;14137:2;14132:3;14073:67;:::i;:::-;14066:74;;14149:93;14238:3;14149:93;:::i;:::-;14267:2;14262:3;14258:12;14251:19;;13910:366;;;:::o;14282:::-;14424:3;14445:67;14509:2;14504:3;14445:67;:::i;:::-;14438:74;;14521:93;14610:3;14521:93;:::i;:::-;14639:2;14634:3;14630:12;14623:19;;14282:366;;;:::o;14654:::-;14796:3;14817:67;14881:2;14876:3;14817:67;:::i;:::-;14810:74;;14893:93;14982:3;14893:93;:::i;:::-;15011:2;15006:3;15002:12;14995:19;;14654:366;;;:::o;15026:::-;15168:3;15189:67;15253:2;15248:3;15189:67;:::i;:::-;15182:74;;15265:93;15354:3;15265:93;:::i;:::-;15383:2;15378:3;15374:12;15367:19;;15026:366;;;:::o;15398:::-;15540:3;15561:67;15625:2;15620:3;15561:67;:::i;:::-;15554:74;;15637:93;15726:3;15637:93;:::i;:::-;15755:2;15750:3;15746:12;15739:19;;15398:366;;;:::o;15770:::-;15912:3;15933:67;15997:2;15992:3;15933:67;:::i;:::-;15926:74;;16009:93;16098:3;16009:93;:::i;:::-;16127:2;16122:3;16118:12;16111:19;;15770:366;;;:::o;16142:::-;16284:3;16305:67;16369:2;16364:3;16305:67;:::i;:::-;16298:74;;16381:93;16470:3;16381:93;:::i;:::-;16499:2;16494:3;16490:12;16483:19;;16142:366;;;:::o;16514:::-;16656:3;16677:67;16741:2;16736:3;16677:67;:::i;:::-;16670:74;;16753:93;16842:3;16753:93;:::i;:::-;16871:2;16866:3;16862:12;16855:19;;16514:366;;;:::o;16886:::-;17028:3;17049:67;17113:2;17108:3;17049:67;:::i;:::-;17042:74;;17125:93;17214:3;17125:93;:::i;:::-;17243:2;17238:3;17234:12;17227:19;;16886:366;;;:::o;17258:::-;17400:3;17421:67;17485:2;17480:3;17421:67;:::i;:::-;17414:74;;17497:93;17586:3;17497:93;:::i;:::-;17615:2;17610:3;17606:12;17599:19;;17258:366;;;:::o;17630:::-;17772:3;17793:67;17857:2;17852:3;17793:67;:::i;:::-;17786:74;;17869:93;17958:3;17869:93;:::i;:::-;17987:2;17982:3;17978:12;17971:19;;17630:366;;;:::o;18002:::-;18144:3;18165:67;18229:2;18224:3;18165:67;:::i;:::-;18158:74;;18241:93;18330:3;18241:93;:::i;:::-;18359:2;18354:3;18350:12;18343:19;;18002:366;;;:::o;18374:::-;18516:3;18537:67;18601:2;18596:3;18537:67;:::i;:::-;18530:74;;18613:93;18702:3;18613:93;:::i;:::-;18731:2;18726:3;18722:12;18715:19;;18374:366;;;:::o;18746:::-;18888:3;18909:67;18973:2;18968:3;18909:67;:::i;:::-;18902:74;;18985:93;19074:3;18985:93;:::i;:::-;19103:2;19098:3;19094:12;19087:19;;18746:366;;;:::o;19118:402::-;19278:3;19299:85;19381:2;19376:3;19299:85;:::i;:::-;19292:92;;19393:93;19482:3;19393:93;:::i;:::-;19511:2;19506:3;19502:12;19495:19;;19118:402;;;:::o;19526:366::-;19668:3;19689:67;19753:2;19748:3;19689:67;:::i;:::-;19682:74;;19765:93;19854:3;19765:93;:::i;:::-;19883:2;19878:3;19874:12;19867:19;;19526:366;;;:::o;19898:118::-;19985:24;20003:5;19985:24;:::i;:::-;19980:3;19973:37;19898:118;;:::o;20022:541::-;20255:3;20277:148;20421:3;20277:148;:::i;:::-;20270:155;;20442:95;20533:3;20524:6;20442:95;:::i;:::-;20435:102;;20554:3;20547:10;;20022:541;;;;:::o;20569:222::-;20662:4;20700:2;20689:9;20685:18;20677:26;;20713:71;20781:1;20770:9;20766:17;20757:6;20713:71;:::i;:::-;20569:222;;;;:::o;20797:640::-;20992:4;21030:3;21019:9;21015:19;21007:27;;21044:71;21112:1;21101:9;21097:17;21088:6;21044:71;:::i;:::-;21125:72;21193:2;21182:9;21178:18;21169:6;21125:72;:::i;:::-;21207;21275:2;21264:9;21260:18;21251:6;21207:72;:::i;:::-;21326:9;21320:4;21316:20;21311:2;21300:9;21296:18;21289:48;21354:76;21425:4;21416:6;21354:76;:::i;:::-;21346:84;;20797:640;;;;;;;:::o;21443:332::-;21564:4;21602:2;21591:9;21587:18;21579:26;;21615:71;21683:1;21672:9;21668:17;21659:6;21615:71;:::i;:::-;21696:72;21764:2;21753:9;21749:18;21740:6;21696:72;:::i;:::-;21443:332;;;;;:::o;21781:210::-;21868:4;21906:2;21895:9;21891:18;21883:26;;21919:65;21981:1;21970:9;21966:17;21957:6;21919:65;:::i;:::-;21781:210;;;;:::o;21997:313::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22197:9;22191:4;22187:20;22183:1;22172:9;22168:17;22161:47;22225:78;22298:4;22289:6;22225:78;:::i;:::-;22217:86;;21997:313;;;;:::o;22316:419::-;22482:4;22520:2;22509:9;22505:18;22497:26;;22569:9;22563:4;22559:20;22555:1;22544:9;22540:17;22533:47;22597:131;22723:4;22597:131;:::i;:::-;22589:139;;22316:419;;;:::o;22741:::-;22907:4;22945:2;22934:9;22930:18;22922:26;;22994:9;22988:4;22984:20;22980:1;22969:9;22965:17;22958:47;23022:131;23148:4;23022:131;:::i;:::-;23014:139;;22741:419;;;:::o;23166:::-;23332:4;23370:2;23359:9;23355:18;23347:26;;23419:9;23413:4;23409:20;23405:1;23394:9;23390:17;23383:47;23447:131;23573:4;23447:131;:::i;:::-;23439:139;;23166:419;;;:::o;23591:::-;23757:4;23795:2;23784:9;23780:18;23772:26;;23844:9;23838:4;23834:20;23830:1;23819:9;23815:17;23808:47;23872:131;23998:4;23872:131;:::i;:::-;23864:139;;23591:419;;;:::o;24016:::-;24182:4;24220:2;24209:9;24205:18;24197:26;;24269:9;24263:4;24259:20;24255:1;24244:9;24240:17;24233:47;24297:131;24423:4;24297:131;:::i;:::-;24289:139;;24016:419;;;:::o;24441:::-;24607:4;24645:2;24634:9;24630:18;24622:26;;24694:9;24688:4;24684:20;24680:1;24669:9;24665:17;24658:47;24722:131;24848:4;24722:131;:::i;:::-;24714:139;;24441:419;;;:::o;24866:::-;25032:4;25070:2;25059:9;25055:18;25047:26;;25119:9;25113:4;25109:20;25105:1;25094:9;25090:17;25083:47;25147:131;25273:4;25147:131;:::i;:::-;25139:139;;24866:419;;;:::o;25291:::-;25457:4;25495:2;25484:9;25480:18;25472:26;;25544:9;25538:4;25534:20;25530:1;25519:9;25515:17;25508:47;25572:131;25698:4;25572:131;:::i;:::-;25564:139;;25291:419;;;:::o;25716:::-;25882:4;25920:2;25909:9;25905:18;25897:26;;25969:9;25963:4;25959:20;25955:1;25944:9;25940:17;25933:47;25997:131;26123:4;25997:131;:::i;:::-;25989:139;;25716:419;;;:::o;26141:::-;26307:4;26345:2;26334:9;26330:18;26322:26;;26394:9;26388:4;26384:20;26380:1;26369:9;26365:17;26358:47;26422:131;26548:4;26422:131;:::i;:::-;26414:139;;26141:419;;;:::o;26566:::-;26732:4;26770:2;26759:9;26755:18;26747:26;;26819:9;26813:4;26809:20;26805:1;26794:9;26790:17;26783:47;26847:131;26973:4;26847:131;:::i;:::-;26839:139;;26566:419;;;:::o;26991:::-;27157:4;27195:2;27184:9;27180:18;27172:26;;27244:9;27238:4;27234:20;27230:1;27219:9;27215:17;27208:47;27272:131;27398:4;27272:131;:::i;:::-;27264:139;;26991:419;;;:::o;27416:::-;27582:4;27620:2;27609:9;27605:18;27597:26;;27669:9;27663:4;27659:20;27655:1;27644:9;27640:17;27633:47;27697:131;27823:4;27697:131;:::i;:::-;27689:139;;27416:419;;;:::o;27841:::-;28007:4;28045:2;28034:9;28030:18;28022:26;;28094:9;28088:4;28084:20;28080:1;28069:9;28065:17;28058:47;28122:131;28248:4;28122:131;:::i;:::-;28114:139;;27841:419;;;:::o;28266:::-;28432:4;28470:2;28459:9;28455:18;28447:26;;28519:9;28513:4;28509:20;28505:1;28494:9;28490:17;28483:47;28547:131;28673:4;28547:131;:::i;:::-;28539:139;;28266:419;;;:::o;28691:::-;28857:4;28895:2;28884:9;28880:18;28872:26;;28944:9;28938:4;28934:20;28930:1;28919:9;28915:17;28908:47;28972:131;29098:4;28972:131;:::i;:::-;28964:139;;28691:419;;;:::o;29116:::-;29282:4;29320:2;29309:9;29305:18;29297:26;;29369:9;29363:4;29359:20;29355:1;29344:9;29340:17;29333:47;29397:131;29523:4;29397:131;:::i;:::-;29389:139;;29116:419;;;:::o;29541:::-;29707:4;29745:2;29734:9;29730:18;29722:26;;29794:9;29788:4;29784:20;29780:1;29769:9;29765:17;29758:47;29822:131;29948:4;29822:131;:::i;:::-;29814:139;;29541:419;;;:::o;29966:::-;30132:4;30170:2;30159:9;30155:18;30147:26;;30219:9;30213:4;30209:20;30205:1;30194:9;30190:17;30183:47;30247:131;30373:4;30247:131;:::i;:::-;30239:139;;29966:419;;;:::o;30391:::-;30557:4;30595:2;30584:9;30580:18;30572:26;;30644:9;30638:4;30634:20;30630:1;30619:9;30615:17;30608:47;30672:131;30798:4;30672:131;:::i;:::-;30664:139;;30391:419;;;:::o;30816:::-;30982:4;31020:2;31009:9;31005:18;30997:26;;31069:9;31063:4;31059:20;31055:1;31044:9;31040:17;31033:47;31097:131;31223:4;31097:131;:::i;:::-;31089:139;;30816:419;;;:::o;31241:::-;31407:4;31445:2;31434:9;31430:18;31422:26;;31494:9;31488:4;31484:20;31480:1;31469:9;31465:17;31458:47;31522:131;31648:4;31522:131;:::i;:::-;31514:139;;31241:419;;;:::o;31666:::-;31832:4;31870:2;31859:9;31855:18;31847:26;;31919:9;31913:4;31909:20;31905:1;31894:9;31890:17;31883:47;31947:131;32073:4;31947:131;:::i;:::-;31939:139;;31666:419;;;:::o;32091:::-;32257:4;32295:2;32284:9;32280:18;32272:26;;32344:9;32338:4;32334:20;32330:1;32319:9;32315:17;32308:47;32372:131;32498:4;32372:131;:::i;:::-;32364:139;;32091:419;;;:::o;32516:::-;32682:4;32720:2;32709:9;32705:18;32697:26;;32769:9;32763:4;32759:20;32755:1;32744:9;32740:17;32733:47;32797:131;32923:4;32797:131;:::i;:::-;32789:139;;32516:419;;;:::o;32941:222::-;33034:4;33072:2;33061:9;33057:18;33049:26;;33085:71;33153:1;33142:9;33138:17;33129:6;33085:71;:::i;:::-;32941:222;;;;:::o;33169:129::-;33203:6;33230:20;;:::i;:::-;33220:30;;33259:33;33287:4;33279:6;33259:33;:::i;:::-;33169:129;;;:::o;33304:75::-;33337:6;33370:2;33364:9;33354:19;;33304:75;:::o;33385:307::-;33446:4;33536:18;33528:6;33525:30;33522:56;;;33558:18;;:::i;:::-;33522:56;33596:29;33618:6;33596:29;:::i;:::-;33588:37;;33680:4;33674;33670:15;33662:23;;33385:307;;;:::o;33698:98::-;33749:6;33783:5;33777:12;33767:22;;33698:98;;;:::o;33802:99::-;33854:6;33888:5;33882:12;33872:22;;33802:99;;;:::o;33907:168::-;33990:11;34024:6;34019:3;34012:19;34064:4;34059:3;34055:14;34040:29;;33907:168;;;;:::o;34081:169::-;34165:11;34199:6;34194:3;34187:19;34239:4;34234:3;34230:14;34215:29;;34081:169;;;;:::o;34256:148::-;34358:11;34395:3;34380:18;;34256:148;;;;:::o;34410:273::-;34450:3;34469:20;34487:1;34469:20;:::i;:::-;34464:25;;34503:20;34521:1;34503:20;:::i;:::-;34498:25;;34625:1;34589:34;34585:42;34582:1;34579:49;34576:75;;;34631:18;;:::i;:::-;34576:75;34675:1;34672;34668:9;34661:16;;34410:273;;;;:::o;34689:305::-;34729:3;34748:20;34766:1;34748:20;:::i;:::-;34743:25;;34782:20;34800:1;34782:20;:::i;:::-;34777:25;;34936:1;34868:66;34864:74;34861:1;34858:81;34855:107;;;34942:18;;:::i;:::-;34855:107;34986:1;34983;34979:9;34972:16;;34689:305;;;;:::o;35000:185::-;35040:1;35057:20;35075:1;35057:20;:::i;:::-;35052:25;;35091:20;35109:1;35091:20;:::i;:::-;35086:25;;35130:1;35120:35;;35135:18;;:::i;:::-;35120:35;35177:1;35174;35170:9;35165:14;;35000:185;;;;:::o;35191:348::-;35231:7;35254:20;35272:1;35254:20;:::i;:::-;35249:25;;35288:20;35306:1;35288:20;:::i;:::-;35283:25;;35476:1;35408:66;35404:74;35401:1;35398:81;35393:1;35386:9;35379:17;35375:105;35372:131;;;35483:18;;:::i;:::-;35372:131;35531:1;35528;35524:9;35513:20;;35191:348;;;;:::o;35545:191::-;35585:4;35605:20;35623:1;35605:20;:::i;:::-;35600:25;;35639:20;35657:1;35639:20;:::i;:::-;35634:25;;35678:1;35675;35672:8;35669:34;;;35683:18;;:::i;:::-;35669:34;35728:1;35725;35721:9;35713:17;;35545:191;;;;:::o;35742:::-;35782:4;35802:20;35820:1;35802:20;:::i;:::-;35797:25;;35836:20;35854:1;35836:20;:::i;:::-;35831:25;;35875:1;35872;35869:8;35866:34;;;35880:18;;:::i;:::-;35866:34;35925:1;35922;35918:9;35910:17;;35742:191;;;;:::o;35939:96::-;35976:7;36005:24;36023:5;36005:24;:::i;:::-;35994:35;;35939:96;;;:::o;36041:90::-;36075:7;36118:5;36111:13;36104:21;36093:32;;36041:90;;;:::o;36137:149::-;36173:7;36213:66;36206:5;36202:78;36191:89;;36137:149;;;:::o;36292:110::-;36343:7;36372:24;36390:5;36372:24;:::i;:::-;36361:35;;36292:110;;;:::o;36408:125::-;36474:7;36503:24;36521:5;36503:24;:::i;:::-;36492:35;;36408:125;;;:::o;36539:118::-;36576:7;36616:34;36609:5;36605:46;36594:57;;36539:118;;;:::o;36663:126::-;36700:7;36740:42;36733:5;36729:54;36718:65;;36663:126;;;:::o;36795:77::-;36832:7;36861:5;36850:16;;36795:77;;;:::o;36878:154::-;36962:6;36957:3;36952;36939:30;37024:1;37015:6;37010:3;37006:16;36999:27;36878:154;;;:::o;37038:307::-;37106:1;37116:113;37130:6;37127:1;37124:13;37116:113;;;37215:1;37210:3;37206:11;37200:18;37196:1;37191:3;37187:11;37180:39;37152:2;37149:1;37145:10;37140:15;;37116:113;;;37247:6;37244:1;37241:13;37238:101;;;37327:1;37318:6;37313:3;37309:16;37302:27;37238:101;37087:258;37038:307;;;:::o;37351:171::-;37390:3;37413:24;37431:5;37413:24;:::i;:::-;37404:33;;37459:4;37452:5;37449:15;37446:41;;;37467:18;;:::i;:::-;37446:41;37514:1;37507:5;37503:13;37496:20;;37351:171;;;:::o;37528:320::-;37572:6;37609:1;37603:4;37599:12;37589:22;;37656:1;37650:4;37646:12;37677:18;37667:81;;37733:4;37725:6;37721:17;37711:27;;37667:81;37795:2;37787:6;37784:14;37764:18;37761:38;37758:84;;;37814:18;;:::i;:::-;37758:84;37579:269;37528:320;;;:::o;37854:281::-;37937:27;37959:4;37937:27;:::i;:::-;37929:6;37925:40;38067:6;38055:10;38052:22;38031:18;38019:10;38016:34;38013:62;38010:88;;;38078:18;;:::i;:::-;38010:88;38118:10;38114:2;38107:22;37897:238;37854:281;;:::o;38141:233::-;38180:3;38203:24;38221:5;38203:24;:::i;:::-;38194:33;;38249:66;38242:5;38239:77;38236:103;;;38319:18;;:::i;:::-;38236:103;38366:1;38359:5;38355:13;38348:20;;38141:233;;;:::o;38380:176::-;38412:1;38429:20;38447:1;38429:20;:::i;:::-;38424:25;;38463:20;38481:1;38463:20;:::i;:::-;38458:25;;38502:1;38492:35;;38507:18;;:::i;:::-;38492:35;38548:1;38545;38541:9;38536:14;;38380:176;;;;:::o;38562:180::-;38610:77;38607:1;38600:88;38707:4;38704:1;38697:15;38731:4;38728:1;38721:15;38748:180;38796:77;38793:1;38786:88;38893:4;38890:1;38883:15;38917:4;38914:1;38907:15;38934:180;38982:77;38979:1;38972:88;39079:4;39076:1;39069:15;39103:4;39100:1;39093:15;39120:180;39168:77;39165:1;39158:88;39265:4;39262:1;39255:15;39289:4;39286:1;39279:15;39306:180;39354:77;39351:1;39344:88;39451:4;39448:1;39441:15;39475:4;39472:1;39465:15;39492:117;39601:1;39598;39591:12;39615:117;39724:1;39721;39714:12;39738:117;39847:1;39844;39837:12;39861:117;39970:1;39967;39960:12;39984:102;40025:6;40076:2;40072:7;40067:2;40060:5;40056:14;40052:28;40042:38;;39984:102;;;:::o;40092:221::-;40232:34;40228:1;40220:6;40216:14;40209:58;40301:4;40296:2;40288:6;40284:15;40277:29;40092:221;:::o;40319:225::-;40459:34;40455:1;40447:6;40443:14;40436:58;40528:8;40523:2;40515:6;40511:15;40504:33;40319:225;:::o;40550:229::-;40690:34;40686:1;40678:6;40674:14;40667:58;40759:12;40754:2;40746:6;40742:15;40735:37;40550:229;:::o;40785:222::-;40925:34;40921:1;40913:6;40909:14;40902:58;40994:5;40989:2;40981:6;40977:15;40970:30;40785:222;:::o;41013:221::-;41153:34;41149:1;41141:6;41137:14;41130:58;41222:4;41217:2;41209:6;41205:15;41198:29;41013:221;:::o;41240:224::-;41380:34;41376:1;41368:6;41364:14;41357:58;41449:7;41444:2;41436:6;41432:15;41425:32;41240:224;:::o;41470:221::-;41610:34;41606:1;41598:6;41594:14;41587:58;41679:4;41674:2;41666:6;41662:15;41655:29;41470:221;:::o;41697:167::-;41837:19;41833:1;41825:6;41821:14;41814:43;41697:167;:::o;41870:244::-;42010:34;42006:1;41998:6;41994:14;41987:58;42079:27;42074:2;42066:6;42062:15;42055:52;41870:244;:::o;42120:230::-;42260:34;42256:1;42248:6;42244:14;42237:58;42329:13;42324:2;42316:6;42312:15;42305:38;42120:230;:::o;42356:225::-;42496:34;42492:1;42484:6;42480:14;42473:58;42565:8;42560:2;42552:6;42548:15;42541:33;42356:225;:::o;42587:182::-;42727:34;42723:1;42715:6;42711:14;42704:58;42587:182;:::o;42775:176::-;42915:28;42911:1;42903:6;42899:14;42892:52;42775:176;:::o;42957:237::-;43097:34;43093:1;43085:6;43081:14;43074:58;43166:20;43161:2;43153:6;43149:15;43142:45;42957:237;:::o;43200:221::-;43340:34;43336:1;43328:6;43324:14;43317:58;43409:4;43404:2;43396:6;43392:15;43385:29;43200:221;:::o;43427:238::-;43567:34;43563:1;43555:6;43551:14;43544:58;43636:21;43631:2;43623:6;43619:15;43612:46;43427:238;:::o;43671:179::-;43811:31;43807:1;43799:6;43795:14;43788:55;43671:179;:::o;43856:220::-;43996:34;43992:1;43984:6;43980:14;43973:58;44065:3;44060:2;44052:6;44048:15;44041:28;43856:220;:::o;44082:174::-;44222:26;44218:1;44210:6;44206:14;44199:50;44082:174;:::o;44262:233::-;44402:34;44398:1;44390:6;44386:14;44379:58;44471:16;44466:2;44458:6;44454:15;44447:41;44262:233;:::o;44501:181::-;44641:33;44637:1;44629:6;44625:14;44618:57;44501:181;:::o;44688:234::-;44828:34;44824:1;44816:6;44812:14;44805:58;44897:17;44892:2;44884:6;44880:15;44873:42;44688:234;:::o;44928:173::-;45068:25;45064:1;45056:6;45052:14;45045:49;44928:173;:::o;45107:232::-;45247:34;45243:1;45235:6;45231:14;45224:58;45316:15;45311:2;45303:6;45299:15;45292:40;45107:232;:::o;45345:249::-;45485:34;45481:1;45473:6;45469:14;45462:58;45558:24;45553:2;45545:6;45541:15;45534:49;45345:249;:::o;45604:233::-;45748:34;45744:1;45736:6;45732:14;45725:58;45821:4;45816:2;45808:6;45804:15;45797:29;45604:233;:::o;45847:130::-;45924:24;45942:5;45924:24;:::i;:::-;45917:5;45914:35;45904:63;;45963:1;45960;45953:12;45904:63;45847:130;:::o;45987:124::-;46061:21;46076:5;46061:21;:::i;:::-;46054:5;46051:32;46041:60;;46097:1;46094;46087:12;46041:60;45987:124;:::o;46121:128::-;46197:23;46214:5;46197:23;:::i;:::-;46190:5;46187:34;46177:62;;46235:1;46232;46225:12;46177:62;46121:128;:::o;46259:158::-;46350:38;46382:5;46350:38;:::i;:::-;46343:5;46340:49;46330:77;;46403:1;46400;46393:12;46330:77;46259:158;:::o;46427:188::-;46533:53;46580:5;46533:53;:::i;:::-;46526:5;46523:64;46513:92;;46601:1;46598;46591:12;46513:92;46427:188;:::o;46625:130::-;46702:24;46720:5;46702:24;:::i;:::-;46695:5;46692:35;46682:63;;46741:1;46738;46731:12;46682:63;46625:130;:::o

Swarm Source

ipfs://2f0631f87a9cecd4e138bdf771bd856ba9ea92b2e8515d6761d4dcc8e010b2e8
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.