ETH Price: $2,692.53 (-2.00%)
Gas: 0.75 Gwei

Contract

0x23F0512c871C1435F7B3a32dF5E1616Adc3eEB0A
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...203114142024-07-15 10:48:3542 days ago1721040515IN
WCAPES Mundial: MUN Token
0 ETH0.000259335.5587746
Set Approval For...202292002024-07-03 23:14:3554 days ago1720048475IN
WCAPES Mundial: MUN Token
0 ETH0.000204894.39188024
Set Approval For...200087952024-06-03 4:05:3584 days ago1717387535IN
WCAPES Mundial: MUN Token
0 ETH0.000372777.99026222
Set Approval For...198587832024-05-13 4:43:35105 days ago1715575415IN
WCAPES Mundial: MUN Token
0 ETH0.000142243.04902731
Set Approval For...198587472024-05-13 4:36:23105 days ago1715574983IN
WCAPES Mundial: MUN Token
0 ETH0.000151893.25
Set Approval For...198587132024-05-13 4:29:11105 days ago1715574551IN
WCAPES Mundial: MUN Token
0 ETH0.000145683.12099565
Set Approval For...191606632024-02-05 7:42:47203 days ago1707118967IN
WCAPES Mundial: MUN Token
0 ETH0.0006251513.39982689
Set Approval For...189719392024-01-09 20:59:47230 days ago1704833987IN
WCAPES Mundial: MUN Token
0 ETH0.000394715.89884881
Set Approval For...189719382024-01-09 20:59:35230 days ago1704833975IN
WCAPES Mundial: MUN Token
0 ETH0.0003805615.32922721
Set Approval For...184115682023-10-23 7:43:47308 days ago1698047027IN
WCAPES Mundial: MUN Token
0 ETH0.000382868.20645372
Set Approval For...183838552023-10-19 10:43:11312 days ago1697712191IN
WCAPES Mundial: MUN Token
0 ETH0.000324026.94533158
Set Approval For...183181492023-10-10 6:05:11321 days ago1696917911IN
WCAPES Mundial: MUN Token
0 ETH0.000233995.0155394
Transfer From181371322023-09-14 21:19:23347 days ago1694726363IN
WCAPES Mundial: MUN Token
0 ETH0.0033520539.59246537
Claim NF Ts181170242023-09-12 1:36:47349 days ago1694482607IN
WCAPES Mundial: MUN Token
0 ETH0.001495449.43309502
Set Approval For...181169162023-09-12 1:14:59349 days ago1694481299IN
WCAPES Mundial: MUN Token
0 ETH0.00045159.6603306
Set Approval For...180573002023-09-03 16:57:23358 days ago1693760243IN
WCAPES Mundial: MUN Token
0 ETH0.0007110115.21277747
Set Approval For...180534702023-09-03 4:05:23358 days ago1693713923IN
WCAPES Mundial: MUN Token
0 ETH0.0005752112.3072922
Set Approval For...176637962023-07-10 14:16:35413 days ago1688998595IN
WCAPES Mundial: MUN Token
0 ETH0.0013065728.00554416
Claim NF Ts176637772023-07-10 14:12:47413 days ago1688998367IN
WCAPES Mundial: MUN Token
0 ETH0.0007746629.7856456
Claim NF Ts176637762023-07-10 14:12:35413 days ago1688998355IN
WCAPES Mundial: MUN Token
0 ETH0.0091426227.88951294
Set Approval For...176474042023-07-08 6:56:23415 days ago1688799383IN
WCAPES Mundial: MUN Token
0 ETH0.0003232513.02097526
Set Approval For...175581672023-06-25 18:06:23428 days ago1687716383IN
WCAPES Mundial: MUN Token
0 ETH0.0006690614.34099265
Set Approval For...175503942023-06-24 15:53:23429 days ago1687622003IN
WCAPES Mundial: MUN Token
0 ETH0.0023727950.85935835
Set Approval For...175303362023-06-21 20:12:11432 days ago1687378331IN
WCAPES Mundial: MUN Token
0 ETH0.0010383722.21687923
Set Approval For...175203962023-06-20 10:44:59433 days ago1687257899IN
WCAPES Mundial: MUN Token
0 ETH0.0006979214.93281291
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
164033402023-01-14 6:46:11590 days ago1673678771
WCAPES Mundial: MUN Token
38.75 ETH
160382332022-11-24 7:05:23641 days ago1669273523
WCAPES Mundial: MUN Token
59.5 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
WCAMundial

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/WCAMundial.sol

//SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;






contract WCAMundial is ERC721Enumerable, ERC721Holder, Ownable {
  using Counters for Counters.Counter;

  struct Recipient {
    address wallet;
    uint256 amount;
  }

  address public manager;
  Counters.Counter private NFTId;
  string public baseTokenURI;

  mapping(address => uint256) public recipientsToQuanitity;
  mapping(address => uint256[]) public stakerToNFTs;
  mapping(uint256 => address) public NFTToStaker;

  uint256 public constant maxSupply = 3000;
  uint256 public price = 0.25 ether;
  uint256 public maxPerMint = 5;
  uint256 public startClaimTimestamp = 1671490800;
  bool public saleLive = false;

  modifier onlyOwnerOrManagerOrSelf() {
    require(owner() == msg.sender || address(this) == msg.sender || manager == msg.sender, "Unauthorized");
    _;
  }

  modifier onlyOwnerOrManager() {
    require(owner() == msg.sender || manager == msg.sender, "Unauthorized");
    _;
  }

  modifier canClaim() {
    require(block.timestamp >= startClaimTimestamp, "You can't already claim your NFTs");
    _;
  }

  modifier saleIsLive() {
    require(saleLive, "Sale isn't live");
    _;
  }

  constructor(string memory _baseURI, address _manager) ERC721("WCAPES Mundial", "MUN") {
    baseTokenURI = _baseURI;
    manager = _manager;
  }

  // SETTER
  function setBaseTokenURI(string calldata _baseURI) external onlyOwner {
    baseTokenURI = _baseURI;
  }

  function setPrice(uint256 _price) external onlyOwner {
    price = _price;
  }

  function setMaxPerMint(uint256 _maxPerMint) external onlyOwner {
    maxPerMint = _maxPerMint;
  }

  function setStartClaimTimestamp(uint256 _timestamp) external onlyOwner {
    startClaimTimestamp = _timestamp;
  }

  function toggleSaleLive() external onlyOwner {
    saleLive = !saleLive;
  }

  function setManager(address _manager) external onlyOwner {
    manager = _manager;
  }

  // GETTER
  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
    require(_tokenId > 0 && _tokenId <= NFTId.current(), "Invalid token id");
    return string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId), ".json"));
  }

  function getMintedCount() external view returns (uint256) {
    return NFTId.current();
  }

  function getStaked(address staker) public view returns (uint256[] memory) {
    return stakerToNFTs[staker];
  }

  function getStakedCount(address staker) public view returns (uint256) {
    return stakerToNFTs[staker].length;
  }

  function getStakedMintCount(address staker) public view returns (uint256) {
    return recipientsToQuanitity[staker];
  }

  function tokensOfOwner(address _owner) external view returns (uint256[] memory) {
    uint256 tokenCount = balanceOf(_owner);
    uint256[] memory tokensIds = new uint256[](tokenCount);
    for (uint256 i = 0; i < tokenCount; i++) {
      tokensIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensIds;
  }

  // MINT
  function mint(address recipient, uint256 quantity) external payable saleIsLive {
    require(quantity > 0 && quantity <= maxPerMint, "Cannot mint specified number of NFTs");
    require((NFTId.current() + quantity) <= maxSupply, "Not enough NFTs left");
    require(msg.value >= (quantity * price), "Not enough ETH to buy specified amount of NFTs");

    for (uint256 i = 0; i < quantity; i++) {
      _mintSingleNFT(recipient);
    }
  }

  function mintTo(address recipient, uint256 quantity) external onlyOwnerOrManager {
    require(quantity > 0, "Cannot mint specified number of NFTs");
    require((NFTId.current() + quantity) <= maxSupply, "Not enough NFTs left");

    for (uint256 i = 0; i < quantity; i++) {
      _mintSingleNFT(recipient);
    }
  }

  // STAKED MINT
  function addToStakedMint(address recipient, uint256 quantity) external onlyOwnerOrManagerOrSelf {
    recipientsToQuanitity[recipient] += quantity;
  }

  function bulkAddToStakedMint(Recipient[] calldata recipients) external onlyOwnerOrManager {
    uint256 recipientsLength = recipients.length;
    for (uint256 i = 0; i < recipientsLength; i++) {
      this.addToStakedMint(recipients[i].wallet, recipients[i].amount);
    }
  }

  function removeFromStakedMint(address recipient, uint256 quantity) external onlyOwnerOrManager {
    if (quantity > recipientsToQuanitity[recipient]) {
      recipientsToQuanitity[recipient] -= recipientsToQuanitity[recipient];
    } else {
      recipientsToQuanitity[recipient] -= quantity;
    }
  }

  function stakedMint(address recipient, uint256 quantity) external saleIsLive {
    require(quantity > 0 && quantity <= recipientsToQuanitity[recipient], "Cannot mint specified number of NFTs");
    require((NFTId.current() + quantity) <= maxSupply, "Not enough NFTs left");

    for (uint256 i = 0; i < quantity; i++) {
      _mintSingleNFT(address(this));
      stakerToNFTs[recipient].push(NFTId.current());
      NFTToStaker[NFTId.current()] = recipient;
      recipientsToQuanitity[recipient] -= 1;
    }
  }

  // STAKE MINT TO
  function stakedMintTo(address recipient, uint256 quantity) external onlyOwnerOrManager {
    require(quantity > 0, "Cannot mint specified number of NFTs");
    require((NFTId.current() + quantity) <= maxSupply, "Not enough NFTs left");

    for (uint256 i = 0; i < quantity; i++) {
      _mintSingleNFT(address(this));
      stakerToNFTs[recipient].push(NFTId.current());
      NFTToStaker[NFTId.current()] = recipient;
    }
  }

  // STAKE TO AFTER MINT
  function stakeToByIds(uint256[] calldata tokenIds, address recipient) external onlyOwnerOrManager {
    require(this.isApprovedForAll(msg.sender, address(this)), "You first need to approve");

    uint256 tokenIdsLength = tokenIds.length;
    for (uint256 i = 0; i < tokenIdsLength; i++) {
      uint256 id = tokenIds[i];
      require(this.ownerOf(id) == msg.sender && NFTToStaker[id] == address(0), "NFT is not yours");
      this.transferFrom(msg.sender, address(this), id);

      stakerToNFTs[recipient].push(id);
      NFTToStaker[id] = recipient;
    }
  }

  function _mintSingleNFT(address _to) private {
    NFTId.increment();
    _safeMint(_to, NFTId.current());
  }

  // CLAIM
  function claimNFTs() external canClaim {
    uint256 stakedNFTsCount = getStakedCount(msg.sender);
    require(stakedNFTsCount > 0, "No NFTs in stake");

    for (uint256 i = stakedNFTsCount; i > 0; i--) {
      uint256 tokenId = stakerToNFTs[msg.sender][i - 1];

      stakerToNFTs[msg.sender].pop();
      NFTToStaker[tokenId] = address(0);

      this.transferFrom(address(this), msg.sender, tokenId);
    }
  }

  // WITHDRAW
  function withdraw(uint256 _value) external payable onlyOwner {
    uint256 balance = address(this).balance;
    require(balance > 0, "No ether left to withdraw");
    uint256 toWithdraw = _value;
    if (balance < _value || _value == 0) {
      toWithdraw = balance;
    }

    (bool success, ) = (owner()).call{ value: toWithdraw }("");
    require(success, "Transfer failed.");
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_manager","type":"address"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NFTToStaker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"addToStakedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct WCAMundial.Recipient[]","name":"recipients","type":"tuple[]"}],"name":"bulkAddToStakedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getStakedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getStakedMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"recipientsToQuanitity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"removeFromStakedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timestamp","type":"uint256"}],"name":"setStartClaimTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"stakeToByIds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"stakedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"stakedMintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakerToNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startClaimTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleLive","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526703782dace9d9000060115560056012556363a0ecf06013556000601460006101000a81548160ff0219169083151502179055503480156200004557600080fd5b50604051620066bd380380620066bd83398181016040528101906200006b91906200043e565b6040518060400160405280600e81526020017f574341504553204d756e6469616c0000000000000000000000000000000000008152506040518060400160405280600381526020017f4d554e00000000000000000000000000000000000000000000000000000000008152508160009081620000e89190620006ef565b508060019081620000fa9190620006ef565b5050506200011d620001116200017860201b60201c565b6200018060201b60201c565b81600d90816200012e9190620006ef565b5080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620007d6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002af8262000264565b810181811067ffffffffffffffff82111715620002d157620002d062000275565b5b80604052505050565b6000620002e662000246565b9050620002f48282620002a4565b919050565b600067ffffffffffffffff82111562000317576200031662000275565b5b620003228262000264565b9050602081019050919050565b60005b838110156200034f57808201518184015260208101905062000332565b60008484015250505050565b6000620003726200036c84620002f9565b620002da565b9050828152602081018484840111156200039157620003906200025f565b5b6200039e8482856200032f565b509392505050565b600082601f830112620003be57620003bd6200025a565b5b8151620003d08482602086016200035b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040682620003d9565b9050919050565b6200041881620003f9565b81146200042457600080fd5b50565b60008151905062000438816200040d565b92915050565b6000806040838503121562000458576200045762000250565b5b600083015167ffffffffffffffff81111562000479576200047862000255565b5b6200048785828601620003a6565b92505060206200049a8582860162000427565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f757607f821691505b6020821081036200050d576200050c620004af565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000538565b62000583868362000538565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005d0620005ca620005c4846200059b565b620005a5565b6200059b565b9050919050565b6000819050919050565b620005ec83620005af565b62000604620005fb82620005d7565b84845462000545565b825550505050565b600090565b6200061b6200060c565b62000628818484620005e1565b505050565b5b8181101562000650576200064460008262000611565b6001810190506200062e565b5050565b601f8211156200069f57620006698162000513565b620006748462000528565b8101602085101562000684578190505b6200069c620006938562000528565b8301826200062d565b50505b505050565b600082821c905092915050565b6000620006c460001984600802620006a4565b1980831691505092915050565b6000620006df8383620006b1565b9150826002028217905092915050565b620006fa82620004a4565b67ffffffffffffffff81111562000716576200071562000275565b5b620007228254620004de565b6200072f82828562000654565b600060209050601f83116001811462000767576000841562000752578287015190505b6200075e8582620006d1565b865550620007ce565b601f198416620007778662000513565b60005b82811015620007a1578489015182556001820191506020850194506020810190506200077a565b86831015620007c15784890151620007bd601f891682620006b1565b8355505b6001600288020188555050505b505050505050565b615ed780620007e66000396000f3fe6080604052600436106102e45760003560e01c8063715018a611610190578063d0ebdbe7116100dc578063db6242c311610095578063e985e9c51161006f578063e985e9c514610b62578063ebc9bd3b14610b9f578063f2fde38b14610bca578063f664c57214610bf3576102e4565b8063db6242c314610ae5578063e081b78114610b0e578063e2795c3714610b39576102e4565b8063d0ebdbe7146109fb578063d1e5587e14610a24578063d547cfb714610a4f578063d5abeb0114610a7a578063d9915d9b14610aa5578063da2e5bb214610abc576102e4565b806395d89b4111610149578063a58c8ed611610123578063a58c8ed61461091b578063b49b608714610958578063b88d4fde14610995578063c87b56dd146109be576102e4565b806395d89b411461089c578063a035b1fe146108c7578063a22cb465146108f2576102e4565b8063715018a61461078e5780637b4241ae146107a557806383c13db2146107ce5780638462151c1461080b5780638da5cb5b1461084857806391b7f5ed14610873576102e4565b80634062b55b1161024f5780634f6ccce71161020857806358ed943b116101e257806358ed943b1461069a5780636352211e146106d757806367e43d241461071457806370a0823114610751576102e4565b80634f6ccce71461061b578063507e094f1461065857806355a3130914610683576102e4565b80634062b55b1461053057806340c10f191461055957806342842e0e14610575578063449a52f81461059e5780634661c404146105c7578063481c6a75146105f0576102e4565b806318160ddd116102a157806318160ddd1461041d57806323b872dd146104485780632e1a7d4d146104715780632f745c591461048d57806330176e13146104ca578063399080ec146104f3576102e4565b806301ffc9a7146102e9578063040adcd61461032657806306fdde031461034f578063081812fc1461037a578063095ea7b3146103b7578063150b7a02146103e0575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190614061565b610c1c565b60405161031d91906140a9565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190614129565b610c96565b005b34801561035b57600080fd5b50610364610e42565b6040516103719190614206565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061425e565b610ed4565b6040516103ae91906142cc565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614313565b610f1a565b005b3480156103ec57600080fd5b5061040760048036038101906104029190614483565b611031565b6040516104149190614515565b60405180910390f35b34801561042957600080fd5b50610432611045565b60405161043f919061453f565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a919061455a565b611052565b005b61048b6004803603810190610486919061425e565b6110b2565b005b34801561049957600080fd5b506104b460048036038101906104af9190614313565b6111d7565b6040516104c1919061453f565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190614603565b61127c565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190614650565b61129a565b604051610527919061473b565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190614313565b611331565b005b610573600480360381019061056e9190614313565b61148e565b005b34801561058157600080fd5b5061059c6004803603810190610597919061455a565b611603565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190614313565b611623565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061425e565b6117b8565b005b3480156105fc57600080fd5b506106056117ca565b60405161061291906142cc565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d919061425e565b6117f0565b60405161064f919061453f565b60405180910390f35b34801561066457600080fd5b5061066d611861565b60405161067a919061453f565b60405180910390f35b34801561068f57600080fd5b50610698611867565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190614313565b611ab6565b6040516106ce919061453f565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061425e565b611ae7565b60405161070b91906142cc565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190614650565b611b98565b604051610748919061453f565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190614650565b611bb0565b604051610785919061453f565b60405180910390f35b34801561079a57600080fd5b506107a3611c67565b005b3480156107b157600080fd5b506107cc60048036038101906107c791906147b3565b611c7b565b005b3480156107da57600080fd5b506107f560048036038101906107f09190614650565b6120c8565b604051610802919061453f565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190614650565b612114565b60405161083f919061473b565b60405180910390f35b34801561085457600080fd5b5061085d6121c2565b60405161086a91906142cc565b60405180910390f35b34801561087f57600080fd5b5061089a6004803603810190610895919061425e565b6121ec565b005b3480156108a857600080fd5b506108b16121fe565b6040516108be9190614206565b60405180910390f35b3480156108d357600080fd5b506108dc612290565b6040516108e9919061453f565b60405180910390f35b3480156108fe57600080fd5b506109196004803603810190610914919061483f565b612296565b005b34801561092757600080fd5b50610942600480360381019061093d9190614650565b6122ac565b60405161094f919061453f565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a919061425e565b6122f5565b60405161098c91906142cc565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190614483565b612328565b005b3480156109ca57600080fd5b506109e560048036038101906109e0919061425e565b61238a565b6040516109f29190614206565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190614650565b612416565b005b348015610a3057600080fd5b50610a39612462565b604051610a46919061453f565b60405180910390f35b348015610a5b57600080fd5b50610a64612468565b604051610a719190614206565b60405180910390f35b348015610a8657600080fd5b50610a8f6124f6565b604051610a9c919061453f565b60405180910390f35b348015610ab157600080fd5b50610aba6124fc565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614313565b612530565b005b348015610af157600080fd5b50610b0c6004803603810190610b07919061425e565b61278f565b005b348015610b1a57600080fd5b50610b236127a1565b604051610b3091906140a9565b60405180910390f35b348015610b4557600080fd5b50610b606004803603810190610b5b9190614313565b6127b4565b005b348015610b6e57600080fd5b50610b896004803603810190610b84919061487f565b6129bd565b604051610b9691906140a9565b60405180910390f35b348015610bab57600080fd5b50610bb4612a51565b604051610bc1919061453f565b60405180910390f35b348015610bd657600080fd5b50610bf16004803603810190610bec9190614650565b612a62565b005b348015610bff57600080fd5b50610c1a6004803603810190610c159190614313565b612ae5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8f5750610c8e82612d68565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610cb56121c2565b73ffffffffffffffffffffffffffffffffffffffff161480610d2457503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061490b565b60405180910390fd5b600082829050905060005b81811015610e3c573073ffffffffffffffffffffffffffffffffffffffff16634062b55b858584818110610da557610da461492b565b5b9050604002016000016020810190610dbd9190614650565b868685818110610dd057610dcf61492b565b5b905060400201602001356040518363ffffffff1660e01b8152600401610df792919061495a565b600060405180830381600087803b158015610e1157600080fd5b505af1158015610e25573d6000803e3d6000fd5b505050508080610e34906149b2565b915050610d6e565b50505050565b606060008054610e5190614a29565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7d90614a29565b8015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b5050505050905090565b6000610edf82612e4a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2582611ae7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90614acc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fb4612e95565b73ffffffffffffffffffffffffffffffffffffffff161480610fe35750610fe281610fdd612e95565b6129bd565b5b611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990614b5e565b60405180910390fd5b61102c8383612e9d565b505050565b600063150b7a0260e01b9050949350505050565b6000600880549050905090565b61106361105d612e95565b82612f56565b6110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990614bf0565b60405180910390fd5b6110ad838383612feb565b505050565b6110ba613251565b600047905060008111611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614c5c565b60405180910390fd5b6000829050828210806111155750600083145b1561111e578190505b60006111286121c2565b73ffffffffffffffffffffffffffffffffffffffff168260405161114b90614cad565b60006040518083038185875af1925050503d8060008114611188576040519150601f19603f3d011682016040523d82523d6000602084013e61118d565b606091505b50509050806111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614d0e565b60405180910390fd5b50505050565b60006111e283611bb0565b8210611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90614da0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611284613251565b8181600d9182611295929190614f77565b505050565b6060600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561132557602002820191906000526020600020905b815481526020019060010190808311611311575b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff166113506121c2565b73ffffffffffffffffffffffffffffffffffffffff16148061139d57503373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16145b806113f557503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061490b565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114839190615047565b925050819055505050565b601460009054906101000a900460ff166114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d4906150c7565b60405180910390fd5b6000811180156114ef57506012548111155b61152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590615159565b60405180910390fd5b610bb88161153c600c6132cf565b6115469190615047565b1115611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e906151c5565b60405180910390fd5b6011548161159591906151e5565b3410156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90615299565b60405180910390fd5b60005b818110156115fe576115eb836132dd565b80806115f6906149b2565b9150506115da565b505050565b61161e83838360405180602001604052806000815250612328565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166116426121c2565b73ffffffffffffffffffffffffffffffffffffffff1614806116b157503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e79061490b565b60405180910390fd5b60008111611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90615159565b60405180910390fd5b610bb881611741600c6132cf565b61174b9190615047565b111561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906151c5565b60405180910390fd5b60005b818110156117b3576117a0836132dd565b80806117ab906149b2565b91505061178f565b505050565b6117c0613251565b8060138190555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006117fa611045565b821061183b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118329061532b565b60405180910390fd5b6008828154811061184f5761184e61492b565b5b90600052602060002001549050919050565b60125481565b6013544210156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a3906153bd565b60405180910390fd5b60006118b7336120c8565b9050600081116118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390615429565b60405180910390fd5b60008190505b6000811115611ab2576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001836119599190615449565b8154811061196a5761196961492b565b5b90600052602060002001549050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806119c6576119c561547d565b5b6001900381819060005260206000200160009055905560006010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503073ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b8152600401611a6c939291906154ac565b600060405180830381600087803b158015611a8657600080fd5b505af1158015611a9a573d6000803e3d6000fd5b50505050508080611aaa906154e3565b915050611902565b5050565b600f6020528160005260406000208181548110611ad257600080fd5b90600052602060002001600091509150505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690615558565b60405180910390fd5b80915050919050565b600e6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c17906155ea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c6f613251565b611c7960006132fd565b565b3373ffffffffffffffffffffffffffffffffffffffff16611c9a6121c2565b73ffffffffffffffffffffffffffffffffffffffff161480611d0957503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f9061490b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663e985e9c533306040518363ffffffff1660e01b8152600401611d8392919061560a565b602060405180830381865afa158015611da0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc49190615648565b611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906156c1565b60405180910390fd5b600083839050905060005b818110156120c1576000858583818110611e2b57611e2a61492b565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611e84919061453f565b602060405180830381865afa158015611ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec591906156f6565b73ffffffffffffffffffffffffffffffffffffffff16148015611f475750600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d9061576f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611fc3939291906154ac565b600060405180830381600087803b158015611fdd57600080fd5b505af1158015611ff1573d6000803e3d6000fd5b50505050600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055836010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080806120b9906149b2565b915050611e0e565b5050505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b6060600061212183611bb0565b905060008167ffffffffffffffff81111561213f5761213e614358565b5b60405190808252806020026020018201604052801561216d5781602001602082028036833780820191505090505b50905060005b828110156121b75761218585826111d7565b8282815181106121985761219761492b565b5b60200260200101818152505080806121af906149b2565b915050612173565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121f4613251565b8060118190555050565b60606001805461220d90614a29565b80601f016020809104026020016040519081016040528092919081815260200182805461223990614a29565b80156122865780601f1061225b57610100808354040283529160200191612286565b820191906000526020600020905b81548152906001019060200180831161226957829003601f168201915b5050505050905090565b60115481565b6122a86122a1612e95565b83836133c3565b5050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612339612333612e95565b83612f56565b612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236f90614bf0565b60405180910390fd5b6123848484848461352f565b50505050565b60606000821180156123a557506123a1600c6132cf565b8211155b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db906157db565b60405180910390fd5b600d6123ef8361358b565b604051602001612400929190615906565b6040516020818303038152906040529050919050565b61241e613251565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b600d805461247590614a29565b80601f01602080910402602001604051908101604052809291908181526020018280546124a190614a29565b80156124ee5780601f106124c3576101008083540402835291602001916124ee565b820191906000526020600020905b8154815290600101906020018083116124d157829003601f168201915b505050505081565b610bb881565b612504613251565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff1661254f6121c2565b73ffffffffffffffffffffffffffffffffffffffff1614806125be57503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f49061490b565b60405180910390fd5b60008111612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263790615159565b60405180910390fd5b610bb88161264e600c6132cf565b6126589190615047565b1115612699576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612690906151c5565b60405180910390fd5b60005b8181101561278a576126ad306132dd565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126f6600c6132cf565b9080600181540180825580915050600190039060005260206000200160009091909190915055826010600061272b600c6132cf565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080612782906149b2565b91505061269c565b505050565b612797613251565b8060128190555050565b601460009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff166127d36121c2565b73ffffffffffffffffffffffffffffffffffffffff16148061284257503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128789061490b565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561296257600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129569190615449565b925050819055506129b9565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129b19190615449565b925050819055505b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612a5d600c6132cf565b905090565b612a6a613251565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad0906159a7565b60405180910390fd5b612ae2816132fd565b50565b601460009054906101000a900460ff16612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b906150c7565b60405180910390fd5b600081118015612b835750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111155b612bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb990615159565b60405180910390fd5b610bb881612bd0600c6132cf565b612bda9190615047565b1115612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c12906151c5565b60405180910390fd5b60005b81811015612d6357612c2f306132dd565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c78600c6132cf565b90806001815401808255809150506001900390600052602060002001600090919091909150558260106000612cad600c6132cf565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d499190615449565b925050819055508080612d5b906149b2565b915050612c1e565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e435750612e42826136eb565b5b9050919050565b612e5381613755565b612e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8990615558565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f1083611ae7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612f6283611ae7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fa45750612fa381856129bd565b5b80612fe257508373ffffffffffffffffffffffffffffffffffffffff16612fca84610ed4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300b82611ae7565b73ffffffffffffffffffffffffffffffffffffffff1614613061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305890615a39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c790615acb565b60405180910390fd5b6130db8383836137c1565b6130e6600082612e9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131369190615449565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461318d9190615047565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461324c8383836138d3565b505050565b613259612e95565b73ffffffffffffffffffffffffffffffffffffffff166132776121c2565b73ffffffffffffffffffffffffffffffffffffffff16146132cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c490615b37565b60405180910390fd5b565b600081600001549050919050565b6132e7600c6138d8565b6132fa816132f5600c6132cf565b6138ee565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342890615ba3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161352291906140a9565b60405180910390a3505050565b61353a848484612feb565b6135468484848461390c565b613585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357c90615c35565b60405180910390fd5b50505050565b6060600082036135d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136e6565b600082905060005b600082146136045780806135ed906149b2565b915050600a826135fd9190615c84565b91506135da565b60008167ffffffffffffffff8111156136205761361f614358565b5b6040519080825280601f01601f1916602001820160405280156136525781602001600182028036833780820191505090505b5090505b600085146136df5760018261366b9190615449565b9150600a8561367a9190615cb5565b60306136869190615047565b60f81b81838151811061369c5761369b61492b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d89190615c84565b9450613656565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6137cc838383613a93565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361380e5761380981613a98565b61384d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461384c5761384b8382613ae1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361388f5761388a81613c4e565b6138ce565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138cd576138cc8282613d1f565b5b5b505050565b505050565b6001816000016000828254019250508190555050565b613908828260405180602001604052806000815250613d9e565b5050565b600061392d8473ffffffffffffffffffffffffffffffffffffffff16613df9565b15613a86578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613956612e95565b8786866040518563ffffffff1660e01b81526004016139789493929190615d3b565b6020604051808303816000875af19250505080156139b457506040513d601f19601f820116820180604052508101906139b19190615d9c565b60015b613a36573d80600081146139e4576040519150601f19603f3d011682016040523d82523d6000602084013e6139e9565b606091505b506000815103613a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2590615c35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a8b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613aee84611bb0565b613af89190615449565b9050600060076000848152602001908152602001600020549050818114613bdd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c629190615449565b9050600060096000848152602001908152602001600020549050600060088381548110613c9257613c9161492b565b5b906000526020600020015490508060088381548110613cb457613cb361492b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d0357613d0261547d565b5b6001900381819060005260206000200160009055905550505050565b6000613d2a83611bb0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613da88383613e1c565b613db5600084848461390c565b613df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613deb90615c35565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e8290615e15565b60405180910390fd5b613e9481613755565b15613ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ecb90615e81565b60405180910390fd5b613ee0600083836137c1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f309190615047565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ff1600083836138d3565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61403e81614009565b811461404957600080fd5b50565b60008135905061405b81614035565b92915050565b60006020828403121561407757614076613fff565b5b60006140858482850161404c565b91505092915050565b60008115159050919050565b6140a38161408e565b82525050565b60006020820190506140be600083018461409a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126140e9576140e86140c4565b5b8235905067ffffffffffffffff811115614106576141056140c9565b5b602083019150836040820283011115614122576141216140ce565b5b9250929050565b600080602083850312156141405761413f613fff565b5b600083013567ffffffffffffffff81111561415e5761415d614004565b5b61416a858286016140d3565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141b0578082015181840152602081019050614195565b60008484015250505050565b6000601f19601f8301169050919050565b60006141d882614176565b6141e28185614181565b93506141f2818560208601614192565b6141fb816141bc565b840191505092915050565b6000602082019050818103600083015261422081846141cd565b905092915050565b6000819050919050565b61423b81614228565b811461424657600080fd5b50565b60008135905061425881614232565b92915050565b60006020828403121561427457614273613fff565b5b600061428284828501614249565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142b68261428b565b9050919050565b6142c6816142ab565b82525050565b60006020820190506142e160008301846142bd565b92915050565b6142f0816142ab565b81146142fb57600080fd5b50565b60008135905061430d816142e7565b92915050565b6000806040838503121561432a57614329613fff565b5b6000614338858286016142fe565b925050602061434985828601614249565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614390826141bc565b810181811067ffffffffffffffff821117156143af576143ae614358565b5b80604052505050565b60006143c2613ff5565b90506143ce8282614387565b919050565b600067ffffffffffffffff8211156143ee576143ed614358565b5b6143f7826141bc565b9050602081019050919050565b82818337600083830152505050565b6000614426614421846143d3565b6143b8565b90508281526020810184848401111561444257614441614353565b5b61444d848285614404565b509392505050565b600082601f83011261446a576144696140c4565b5b813561447a848260208601614413565b91505092915050565b6000806000806080858703121561449d5761449c613fff565b5b60006144ab878288016142fe565b94505060206144bc878288016142fe565b93505060406144cd87828801614249565b925050606085013567ffffffffffffffff8111156144ee576144ed614004565b5b6144fa87828801614455565b91505092959194509250565b61450f81614009565b82525050565b600060208201905061452a6000830184614506565b92915050565b61453981614228565b82525050565b60006020820190506145546000830184614530565b92915050565b60008060006060848603121561457357614572613fff565b5b6000614581868287016142fe565b9350506020614592868287016142fe565b92505060406145a386828701614249565b9150509250925092565b60008083601f8401126145c3576145c26140c4565b5b8235905067ffffffffffffffff8111156145e0576145df6140c9565b5b6020830191508360018202830111156145fc576145fb6140ce565b5b9250929050565b6000806020838503121561461a57614619613fff565b5b600083013567ffffffffffffffff81111561463857614637614004565b5b614644858286016145ad565b92509250509250929050565b60006020828403121561466657614665613fff565b5b6000614674848285016142fe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146b281614228565b82525050565b60006146c483836146a9565b60208301905092915050565b6000602082019050919050565b60006146e88261467d565b6146f28185614688565b93506146fd83614699565b8060005b8381101561472e57815161471588826146b8565b9750614720836146d0565b925050600181019050614701565b5085935050505092915050565b6000602082019050818103600083015261475581846146dd565b905092915050565b60008083601f840112614773576147726140c4565b5b8235905067ffffffffffffffff8111156147905761478f6140c9565b5b6020830191508360208202830111156147ac576147ab6140ce565b5b9250929050565b6000806000604084860312156147cc576147cb613fff565b5b600084013567ffffffffffffffff8111156147ea576147e9614004565b5b6147f68682870161475d565b93509350506020614809868287016142fe565b9150509250925092565b61481c8161408e565b811461482757600080fd5b50565b60008135905061483981614813565b92915050565b6000806040838503121561485657614855613fff565b5b6000614864858286016142fe565b92505060206148758582860161482a565b9150509250929050565b6000806040838503121561489657614895613fff565b5b60006148a4858286016142fe565b92505060206148b5858286016142fe565b9150509250929050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b60006148f5600c83614181565b9150614900826148bf565b602082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905061496f60008301856142bd565b61497c6020830184614530565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149bd82614228565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149ef576149ee614983565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a4157607f821691505b602082108103614a5457614a536149fa565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ab6602183614181565b9150614ac182614a5a565b604082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000614b48603e83614181565b9150614b5382614aec565b604082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000614bda602e83614181565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b6000614c46601983614181565b9150614c5182614c10565b602082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b600081905092915050565b50565b6000614c97600083614c7c565b9150614ca282614c87565b600082019050919050565b6000614cb882614c8a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614cf8601083614181565b9150614d0382614cc2565b602082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614d8a602b83614181565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e2d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614df0565b614e378683614df0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614e74614e6f614e6a84614228565b614e4f565b614228565b9050919050565b6000819050919050565b614e8e83614e59565b614ea2614e9a82614e7b565b848454614dfd565b825550505050565b600090565b614eb7614eaa565b614ec2818484614e85565b505050565b5b81811015614ee657614edb600082614eaf565b600181019050614ec8565b5050565b601f821115614f2b57614efc81614dcb565b614f0584614de0565b81016020851015614f14578190505b614f28614f2085614de0565b830182614ec7565b50505b505050565b600082821c905092915050565b6000614f4e60001984600802614f30565b1980831691505092915050565b6000614f678383614f3d565b9150826002028217905092915050565b614f818383614dc0565b67ffffffffffffffff811115614f9a57614f99614358565b5b614fa48254614a29565b614faf828285614eea565b6000601f831160018114614fde5760008415614fcc578287013590505b614fd68582614f5b565b86555061503e565b601f198416614fec86614dcb565b60005b8281101561501457848901358255600182019150602085019450602081019050614fef565b86831015615031578489013561502d601f891682614f3d565b8355505b6001600288020188555050505b50505050505050565b600061505282614228565b915061505d83614228565b925082820190508082111561507557615074614983565b5b92915050565b7f53616c652069736e2774206c6976650000000000000000000000000000000000600082015250565b60006150b1600f83614181565b91506150bc8261507b565b602082019050919050565b600060208201905081810360008301526150e0816150a4565b9050919050565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f4e46547300000000000000000000000000000000000000000000000000000000602082015250565b6000615143602483614181565b915061514e826150e7565b604082019050919050565b6000602082019050818103600083015261517281615136565b9050919050565b7f4e6f7420656e6f756768204e465473206c656674000000000000000000000000600082015250565b60006151af601483614181565b91506151ba82615179565b602082019050919050565b600060208201905081810360008301526151de816151a2565b9050919050565b60006151f082614228565b91506151fb83614228565b925082820261520981614228565b915082820484148315176152205761521f614983565b5b5092915050565b7f4e6f7420656e6f7567682045544820746f20627579207370656369666965642060008201527f616d6f756e74206f66204e465473000000000000000000000000000000000000602082015250565b6000615283602e83614181565b915061528e82615227565b604082019050919050565b600060208201905081810360008301526152b281615276565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615315602c83614181565b9150615320826152b9565b604082019050919050565b6000602082019050818103600083015261534481615308565b9050919050565b7f596f752063616e277420616c726561647920636c61696d20796f7572204e465460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006153a7602183614181565b91506153b28261534b565b604082019050919050565b600060208201905081810360008301526153d68161539a565b9050919050565b7f4e6f204e46547320696e207374616b6500000000000000000000000000000000600082015250565b6000615413601083614181565b915061541e826153dd565b602082019050919050565b6000602082019050818103600083015261544281615406565b9050919050565b600061545482614228565b915061545f83614228565b925082820390508181111561547757615476614983565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006060820190506154c160008301866142bd565b6154ce60208301856142bd565b6154db6040830184614530565b949350505050565b60006154ee82614228565b91506000820361550157615500614983565b5b600182039050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000615542601883614181565b915061554d8261550c565b602082019050919050565b6000602082019050818103600083015261557181615535565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006155d4602983614181565b91506155df82615578565b604082019050919050565b60006020820190508181036000830152615603816155c7565b9050919050565b600060408201905061561f60008301856142bd565b61562c60208301846142bd565b9392505050565b60008151905061564281614813565b92915050565b60006020828403121561565e5761565d613fff565b5b600061566c84828501615633565b91505092915050565b7f596f75206669727374206e65656420746f20617070726f766500000000000000600082015250565b60006156ab601983614181565b91506156b682615675565b602082019050919050565b600060208201905081810360008301526156da8161569e565b9050919050565b6000815190506156f0816142e7565b92915050565b60006020828403121561570c5761570b613fff565b5b600061571a848285016156e1565b91505092915050565b7f4e4654206973206e6f7420796f75727300000000000000000000000000000000600082015250565b6000615759601083614181565b915061576482615723565b602082019050919050565b600060208201905081810360008301526157888161574c565b9050919050565b7f496e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b60006157c5601083614181565b91506157d08261578f565b602082019050919050565b600060208201905081810360008301526157f4816157b8565b9050919050565b600081905092915050565b6000815461581381614a29565b61581d81866157fb565b94506001821660008114615838576001811461584d57615880565b60ff1983168652811515820286019350615880565b61585685614dcb565b60005b8381101561587857815481890152600182019150602081019050615859565b838801955050505b50505092915050565b600061589482614176565b61589e81856157fb565b93506158ae818560208601614192565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006158f06005836157fb565b91506158fb826158ba565b600582019050919050565b60006159128285615806565b915061591e8284615889565b9150615929826158e3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615991602683614181565b915061599c82615935565b604082019050919050565b600060208201905081810360008301526159c081615984565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615a23602583614181565b9150615a2e826159c7565b604082019050919050565b60006020820190508181036000830152615a5281615a16565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615ab5602483614181565b9150615ac082615a59565b604082019050919050565b60006020820190508181036000830152615ae481615aa8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615b21602083614181565b9150615b2c82615aeb565b602082019050919050565b60006020820190508181036000830152615b5081615b14565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615b8d601983614181565b9150615b9882615b57565b602082019050919050565b60006020820190508181036000830152615bbc81615b80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c1f603283614181565b9150615c2a82615bc3565b604082019050919050565b60006020820190508181036000830152615c4e81615c12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c8f82614228565b9150615c9a83614228565b925082615caa57615ca9615c55565b5b828204905092915050565b6000615cc082614228565b9150615ccb83614228565b925082615cdb57615cda615c55565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d0d82615ce6565b615d178185615cf1565b9350615d27818560208601614192565b615d30816141bc565b840191505092915050565b6000608082019050615d5060008301876142bd565b615d5d60208301866142bd565b615d6a6040830185614530565b8181036060830152615d7c8184615d02565b905095945050505050565b600081519050615d9681614035565b92915050565b600060208284031215615db257615db1613fff565b5b6000615dc084828501615d87565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615dff602083614181565b9150615e0a82615dc9565b602082019050919050565b60006020820190508181036000830152615e2e81615df2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e6b601c83614181565b9150615e7682615e35565b602082019050919050565b60006020820190508181036000830152615e9a81615e5e565b905091905056fea264697066735822122090793207ebc5be64befbf80ed9bad544802e0be08bdbab0a409572fdef3abff964736f6c634300081100330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000504265124456a8c28eefe64fa07bc5cde4445e270000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696872366e766a3436636372766d7268673363636c346e6f6370337735646878337175613637786535647263636d346f7476686d712f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c8063715018a611610190578063d0ebdbe7116100dc578063db6242c311610095578063e985e9c51161006f578063e985e9c514610b62578063ebc9bd3b14610b9f578063f2fde38b14610bca578063f664c57214610bf3576102e4565b8063db6242c314610ae5578063e081b78114610b0e578063e2795c3714610b39576102e4565b8063d0ebdbe7146109fb578063d1e5587e14610a24578063d547cfb714610a4f578063d5abeb0114610a7a578063d9915d9b14610aa5578063da2e5bb214610abc576102e4565b806395d89b4111610149578063a58c8ed611610123578063a58c8ed61461091b578063b49b608714610958578063b88d4fde14610995578063c87b56dd146109be576102e4565b806395d89b411461089c578063a035b1fe146108c7578063a22cb465146108f2576102e4565b8063715018a61461078e5780637b4241ae146107a557806383c13db2146107ce5780638462151c1461080b5780638da5cb5b1461084857806391b7f5ed14610873576102e4565b80634062b55b1161024f5780634f6ccce71161020857806358ed943b116101e257806358ed943b1461069a5780636352211e146106d757806367e43d241461071457806370a0823114610751576102e4565b80634f6ccce71461061b578063507e094f1461065857806355a3130914610683576102e4565b80634062b55b1461053057806340c10f191461055957806342842e0e14610575578063449a52f81461059e5780634661c404146105c7578063481c6a75146105f0576102e4565b806318160ddd116102a157806318160ddd1461041d57806323b872dd146104485780632e1a7d4d146104715780632f745c591461048d57806330176e13146104ca578063399080ec146104f3576102e4565b806301ffc9a7146102e9578063040adcd61461032657806306fdde031461034f578063081812fc1461037a578063095ea7b3146103b7578063150b7a02146103e0575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190614061565b610c1c565b60405161031d91906140a9565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190614129565b610c96565b005b34801561035b57600080fd5b50610364610e42565b6040516103719190614206565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c919061425e565b610ed4565b6040516103ae91906142cc565b60405180910390f35b3480156103c357600080fd5b506103de60048036038101906103d99190614313565b610f1a565b005b3480156103ec57600080fd5b5061040760048036038101906104029190614483565b611031565b6040516104149190614515565b60405180910390f35b34801561042957600080fd5b50610432611045565b60405161043f919061453f565b60405180910390f35b34801561045457600080fd5b5061046f600480360381019061046a919061455a565b611052565b005b61048b6004803603810190610486919061425e565b6110b2565b005b34801561049957600080fd5b506104b460048036038101906104af9190614313565b6111d7565b6040516104c1919061453f565b60405180910390f35b3480156104d657600080fd5b506104f160048036038101906104ec9190614603565b61127c565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190614650565b61129a565b604051610527919061473b565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190614313565b611331565b005b610573600480360381019061056e9190614313565b61148e565b005b34801561058157600080fd5b5061059c6004803603810190610597919061455a565b611603565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190614313565b611623565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061425e565b6117b8565b005b3480156105fc57600080fd5b506106056117ca565b60405161061291906142cc565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d919061425e565b6117f0565b60405161064f919061453f565b60405180910390f35b34801561066457600080fd5b5061066d611861565b60405161067a919061453f565b60405180910390f35b34801561068f57600080fd5b50610698611867565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190614313565b611ab6565b6040516106ce919061453f565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f9919061425e565b611ae7565b60405161070b91906142cc565b60405180910390f35b34801561072057600080fd5b5061073b60048036038101906107369190614650565b611b98565b604051610748919061453f565b60405180910390f35b34801561075d57600080fd5b5061077860048036038101906107739190614650565b611bb0565b604051610785919061453f565b60405180910390f35b34801561079a57600080fd5b506107a3611c67565b005b3480156107b157600080fd5b506107cc60048036038101906107c791906147b3565b611c7b565b005b3480156107da57600080fd5b506107f560048036038101906107f09190614650565b6120c8565b604051610802919061453f565b60405180910390f35b34801561081757600080fd5b50610832600480360381019061082d9190614650565b612114565b60405161083f919061473b565b60405180910390f35b34801561085457600080fd5b5061085d6121c2565b60405161086a91906142cc565b60405180910390f35b34801561087f57600080fd5b5061089a6004803603810190610895919061425e565b6121ec565b005b3480156108a857600080fd5b506108b16121fe565b6040516108be9190614206565b60405180910390f35b3480156108d357600080fd5b506108dc612290565b6040516108e9919061453f565b60405180910390f35b3480156108fe57600080fd5b506109196004803603810190610914919061483f565b612296565b005b34801561092757600080fd5b50610942600480360381019061093d9190614650565b6122ac565b60405161094f919061453f565b60405180910390f35b34801561096457600080fd5b5061097f600480360381019061097a919061425e565b6122f5565b60405161098c91906142cc565b60405180910390f35b3480156109a157600080fd5b506109bc60048036038101906109b79190614483565b612328565b005b3480156109ca57600080fd5b506109e560048036038101906109e0919061425e565b61238a565b6040516109f29190614206565b60405180910390f35b348015610a0757600080fd5b50610a226004803603810190610a1d9190614650565b612416565b005b348015610a3057600080fd5b50610a39612462565b604051610a46919061453f565b60405180910390f35b348015610a5b57600080fd5b50610a64612468565b604051610a719190614206565b60405180910390f35b348015610a8657600080fd5b50610a8f6124f6565b604051610a9c919061453f565b60405180910390f35b348015610ab157600080fd5b50610aba6124fc565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614313565b612530565b005b348015610af157600080fd5b50610b0c6004803603810190610b07919061425e565b61278f565b005b348015610b1a57600080fd5b50610b236127a1565b604051610b3091906140a9565b60405180910390f35b348015610b4557600080fd5b50610b606004803603810190610b5b9190614313565b6127b4565b005b348015610b6e57600080fd5b50610b896004803603810190610b84919061487f565b6129bd565b604051610b9691906140a9565b60405180910390f35b348015610bab57600080fd5b50610bb4612a51565b604051610bc1919061453f565b60405180910390f35b348015610bd657600080fd5b50610bf16004803603810190610bec9190614650565b612a62565b005b348015610bff57600080fd5b50610c1a6004803603810190610c159190614313565b612ae5565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8f5750610c8e82612d68565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610cb56121c2565b73ffffffffffffffffffffffffffffffffffffffff161480610d2457503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061490b565b60405180910390fd5b600082829050905060005b81811015610e3c573073ffffffffffffffffffffffffffffffffffffffff16634062b55b858584818110610da557610da461492b565b5b9050604002016000016020810190610dbd9190614650565b868685818110610dd057610dcf61492b565b5b905060400201602001356040518363ffffffff1660e01b8152600401610df792919061495a565b600060405180830381600087803b158015610e1157600080fd5b505af1158015610e25573d6000803e3d6000fd5b505050508080610e34906149b2565b915050610d6e565b50505050565b606060008054610e5190614a29565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7d90614a29565b8015610eca5780601f10610e9f57610100808354040283529160200191610eca565b820191906000526020600020905b815481529060010190602001808311610ead57829003601f168201915b5050505050905090565b6000610edf82612e4a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f2582611ae7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90614acc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610fb4612e95565b73ffffffffffffffffffffffffffffffffffffffff161480610fe35750610fe281610fdd612e95565b6129bd565b5b611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990614b5e565b60405180910390fd5b61102c8383612e9d565b505050565b600063150b7a0260e01b9050949350505050565b6000600880549050905090565b61106361105d612e95565b82612f56565b6110a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109990614bf0565b60405180910390fd5b6110ad838383612feb565b505050565b6110ba613251565b600047905060008111611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614c5c565b60405180910390fd5b6000829050828210806111155750600083145b1561111e578190505b60006111286121c2565b73ffffffffffffffffffffffffffffffffffffffff168260405161114b90614cad565b60006040518083038185875af1925050503d8060008114611188576040519150601f19603f3d011682016040523d82523d6000602084013e61118d565b606091505b50509050806111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890614d0e565b60405180910390fd5b50505050565b60006111e283611bb0565b8210611223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121a90614da0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b611284613251565b8181600d9182611295929190614f77565b505050565b6060600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561132557602002820191906000526020600020905b815481526020019060010190808311611311575b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff166113506121c2565b73ffffffffffffffffffffffffffffffffffffffff16148061139d57503373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16145b806113f557503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061490b565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114839190615047565b925050819055505050565b601460009054906101000a900460ff166114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d4906150c7565b60405180910390fd5b6000811180156114ef57506012548111155b61152e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152590615159565b60405180910390fd5b610bb88161153c600c6132cf565b6115469190615047565b1115611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e906151c5565b60405180910390fd5b6011548161159591906151e5565b3410156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90615299565b60405180910390fd5b60005b818110156115fe576115eb836132dd565b80806115f6906149b2565b9150506115da565b505050565b61161e83838360405180602001604052806000815250612328565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166116426121c2565b73ffffffffffffffffffffffffffffffffffffffff1614806116b157503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e79061490b565b60405180910390fd5b60008111611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90615159565b60405180910390fd5b610bb881611741600c6132cf565b61174b9190615047565b111561178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906151c5565b60405180910390fd5b60005b818110156117b3576117a0836132dd565b80806117ab906149b2565b91505061178f565b505050565b6117c0613251565b8060138190555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006117fa611045565b821061183b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118329061532b565b60405180910390fd5b6008828154811061184f5761184e61492b565b5b90600052602060002001549050919050565b60125481565b6013544210156118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a3906153bd565b60405180910390fd5b60006118b7336120c8565b9050600081116118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390615429565b60405180910390fd5b60008190505b6000811115611ab2576000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001836119599190615449565b8154811061196a5761196961492b565b5b90600052602060002001549050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054806119c6576119c561547d565b5b6001900381819060005260206000200160009055905560006010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503073ffffffffffffffffffffffffffffffffffffffff166323b872dd3033846040518463ffffffff1660e01b8152600401611a6c939291906154ac565b600060405180830381600087803b158015611a8657600080fd5b505af1158015611a9a573d6000803e3d6000fd5b50505050508080611aaa906154e3565b915050611902565b5050565b600f6020528160005260406000208181548110611ad257600080fd5b90600052602060002001600091509150505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8690615558565b60405180910390fd5b80915050919050565b600e6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c17906155ea565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c6f613251565b611c7960006132fd565b565b3373ffffffffffffffffffffffffffffffffffffffff16611c9a6121c2565b73ffffffffffffffffffffffffffffffffffffffff161480611d0957503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f9061490b565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff1663e985e9c533306040518363ffffffff1660e01b8152600401611d8392919061560a565b602060405180830381865afa158015611da0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc49190615648565b611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906156c1565b60405180910390fd5b600083839050905060005b818110156120c1576000858583818110611e2b57611e2a61492b565b5b9050602002013590503373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401611e84919061453f565b602060405180830381865afa158015611ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ec591906156f6565b73ffffffffffffffffffffffffffffffffffffffff16148015611f475750600073ffffffffffffffffffffffffffffffffffffffff166010600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d9061576f565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401611fc3939291906154ac565b600060405180830381600087803b158015611fdd57600080fd5b505af1158015611ff1573d6000803e3d6000fd5b50505050600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819080600181540180825580915050600190039060005260206000200160009091909190915055836010600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080806120b9906149b2565b915050611e0e565b5050505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050919050565b6060600061212183611bb0565b905060008167ffffffffffffffff81111561213f5761213e614358565b5b60405190808252806020026020018201604052801561216d5781602001602082028036833780820191505090505b50905060005b828110156121b75761218585826111d7565b8282815181106121985761219761492b565b5b60200260200101818152505080806121af906149b2565b915050612173565b508092505050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121f4613251565b8060118190555050565b60606001805461220d90614a29565b80601f016020809104026020016040519081016040528092919081815260200182805461223990614a29565b80156122865780601f1061225b57610100808354040283529160200191612286565b820191906000526020600020905b81548152906001019060200180831161226957829003601f168201915b5050505050905090565b60115481565b6122a86122a1612e95565b83836133c3565b5050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60106020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612339612333612e95565b83612f56565b612378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236f90614bf0565b60405180910390fd5b6123848484848461352f565b50505050565b60606000821180156123a557506123a1600c6132cf565b8211155b6123e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123db906157db565b60405180910390fd5b600d6123ef8361358b565b604051602001612400929190615906565b6040516020818303038152906040529050919050565b61241e613251565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b600d805461247590614a29565b80601f01602080910402602001604051908101604052809291908181526020018280546124a190614a29565b80156124ee5780601f106124c3576101008083540402835291602001916124ee565b820191906000526020600020905b8154815290600101906020018083116124d157829003601f168201915b505050505081565b610bb881565b612504613251565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff1661254f6121c2565b73ffffffffffffffffffffffffffffffffffffffff1614806125be57503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f49061490b565b60405180910390fd5b60008111612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263790615159565b60405180910390fd5b610bb88161264e600c6132cf565b6126589190615047565b1115612699576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612690906151c5565b60405180910390fd5b60005b8181101561278a576126ad306132dd565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206126f6600c6132cf565b9080600181540180825580915050600190039060005260206000200160009091909190915055826010600061272b600c6132cf565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080612782906149b2565b91505061269c565b505050565b612797613251565b8060128190555050565b601460009054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff166127d36121c2565b73ffffffffffffffffffffffffffffffffffffffff16148061284257503373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612881576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128789061490b565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111561296257600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129569190615449565b925050819055506129b9565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129b19190615449565b925050819055505b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612a5d600c6132cf565b905090565b612a6a613251565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad0906159a7565b60405180910390fd5b612ae2816132fd565b50565b601460009054906101000a900460ff16612b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2b906150c7565b60405180910390fd5b600081118015612b835750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111155b612bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb990615159565b60405180910390fd5b610bb881612bd0600c6132cf565b612bda9190615047565b1115612c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c12906151c5565b60405180910390fd5b60005b81811015612d6357612c2f306132dd565b600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612c78600c6132cf565b90806001815401808255809150506001900390600052602060002001600090919091909150558260106000612cad600c6132cf565b815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d499190615449565b925050819055508080612d5b906149b2565b915050612c1e565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e3357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e435750612e42826136eb565b5b9050919050565b612e5381613755565b612e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8990615558565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f1083611ae7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080612f6283611ae7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612fa45750612fa381856129bd565b5b80612fe257508373ffffffffffffffffffffffffffffffffffffffff16612fca84610ed4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661300b82611ae7565b73ffffffffffffffffffffffffffffffffffffffff1614613061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305890615a39565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c790615acb565b60405180910390fd5b6130db8383836137c1565b6130e6600082612e9d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131369190615449565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461318d9190615047565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461324c8383836138d3565b505050565b613259612e95565b73ffffffffffffffffffffffffffffffffffffffff166132776121c2565b73ffffffffffffffffffffffffffffffffffffffff16146132cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c490615b37565b60405180910390fd5b565b600081600001549050919050565b6132e7600c6138d8565b6132fa816132f5600c6132cf565b6138ee565b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342890615ba3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161352291906140a9565b60405180910390a3505050565b61353a848484612feb565b6135468484848461390c565b613585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357c90615c35565b60405180910390fd5b50505050565b6060600082036135d2576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506136e6565b600082905060005b600082146136045780806135ed906149b2565b915050600a826135fd9190615c84565b91506135da565b60008167ffffffffffffffff8111156136205761361f614358565b5b6040519080825280601f01601f1916602001820160405280156136525781602001600182028036833780820191505090505b5090505b600085146136df5760018261366b9190615449565b9150600a8561367a9190615cb5565b60306136869190615047565b60f81b81838151811061369c5761369b61492b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136d89190615c84565b9450613656565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6137cc838383613a93565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361380e5761380981613a98565b61384d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461384c5761384b8382613ae1565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361388f5761388a81613c4e565b6138ce565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146138cd576138cc8282613d1f565b5b5b505050565b505050565b6001816000016000828254019250508190555050565b613908828260405180602001604052806000815250613d9e565b5050565b600061392d8473ffffffffffffffffffffffffffffffffffffffff16613df9565b15613a86578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613956612e95565b8786866040518563ffffffff1660e01b81526004016139789493929190615d3b565b6020604051808303816000875af19250505080156139b457506040513d601f19601f820116820180604052508101906139b19190615d9c565b60015b613a36573d80600081146139e4576040519150601f19603f3d011682016040523d82523d6000602084013e6139e9565b606091505b506000815103613a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2590615c35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a8b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613aee84611bb0565b613af89190615449565b9050600060076000848152602001908152602001600020549050818114613bdd576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c629190615449565b9050600060096000848152602001908152602001600020549050600060088381548110613c9257613c9161492b565b5b906000526020600020015490508060088381548110613cb457613cb361492b565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d0357613d0261547d565b5b6001900381819060005260206000200160009055905550505050565b6000613d2a83611bb0565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b613da88383613e1c565b613db5600084848461390c565b613df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613deb90615c35565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e8290615e15565b60405180910390fd5b613e9481613755565b15613ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ecb90615e81565b60405180910390fd5b613ee0600083836137c1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f309190615047565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ff1600083836138d3565b5050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61403e81614009565b811461404957600080fd5b50565b60008135905061405b81614035565b92915050565b60006020828403121561407757614076613fff565b5b60006140858482850161404c565b91505092915050565b60008115159050919050565b6140a38161408e565b82525050565b60006020820190506140be600083018461409a565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126140e9576140e86140c4565b5b8235905067ffffffffffffffff811115614106576141056140c9565b5b602083019150836040820283011115614122576141216140ce565b5b9250929050565b600080602083850312156141405761413f613fff565b5b600083013567ffffffffffffffff81111561415e5761415d614004565b5b61416a858286016140d3565b92509250509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156141b0578082015181840152602081019050614195565b60008484015250505050565b6000601f19601f8301169050919050565b60006141d882614176565b6141e28185614181565b93506141f2818560208601614192565b6141fb816141bc565b840191505092915050565b6000602082019050818103600083015261422081846141cd565b905092915050565b6000819050919050565b61423b81614228565b811461424657600080fd5b50565b60008135905061425881614232565b92915050565b60006020828403121561427457614273613fff565b5b600061428284828501614249565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006142b68261428b565b9050919050565b6142c6816142ab565b82525050565b60006020820190506142e160008301846142bd565b92915050565b6142f0816142ab565b81146142fb57600080fd5b50565b60008135905061430d816142e7565b92915050565b6000806040838503121561432a57614329613fff565b5b6000614338858286016142fe565b925050602061434985828601614249565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614390826141bc565b810181811067ffffffffffffffff821117156143af576143ae614358565b5b80604052505050565b60006143c2613ff5565b90506143ce8282614387565b919050565b600067ffffffffffffffff8211156143ee576143ed614358565b5b6143f7826141bc565b9050602081019050919050565b82818337600083830152505050565b6000614426614421846143d3565b6143b8565b90508281526020810184848401111561444257614441614353565b5b61444d848285614404565b509392505050565b600082601f83011261446a576144696140c4565b5b813561447a848260208601614413565b91505092915050565b6000806000806080858703121561449d5761449c613fff565b5b60006144ab878288016142fe565b94505060206144bc878288016142fe565b93505060406144cd87828801614249565b925050606085013567ffffffffffffffff8111156144ee576144ed614004565b5b6144fa87828801614455565b91505092959194509250565b61450f81614009565b82525050565b600060208201905061452a6000830184614506565b92915050565b61453981614228565b82525050565b60006020820190506145546000830184614530565b92915050565b60008060006060848603121561457357614572613fff565b5b6000614581868287016142fe565b9350506020614592868287016142fe565b92505060406145a386828701614249565b9150509250925092565b60008083601f8401126145c3576145c26140c4565b5b8235905067ffffffffffffffff8111156145e0576145df6140c9565b5b6020830191508360018202830111156145fc576145fb6140ce565b5b9250929050565b6000806020838503121561461a57614619613fff565b5b600083013567ffffffffffffffff81111561463857614637614004565b5b614644858286016145ad565b92509250509250929050565b60006020828403121561466657614665613fff565b5b6000614674848285016142fe565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6146b281614228565b82525050565b60006146c483836146a9565b60208301905092915050565b6000602082019050919050565b60006146e88261467d565b6146f28185614688565b93506146fd83614699565b8060005b8381101561472e57815161471588826146b8565b9750614720836146d0565b925050600181019050614701565b5085935050505092915050565b6000602082019050818103600083015261475581846146dd565b905092915050565b60008083601f840112614773576147726140c4565b5b8235905067ffffffffffffffff8111156147905761478f6140c9565b5b6020830191508360208202830111156147ac576147ab6140ce565b5b9250929050565b6000806000604084860312156147cc576147cb613fff565b5b600084013567ffffffffffffffff8111156147ea576147e9614004565b5b6147f68682870161475d565b93509350506020614809868287016142fe565b9150509250925092565b61481c8161408e565b811461482757600080fd5b50565b60008135905061483981614813565b92915050565b6000806040838503121561485657614855613fff565b5b6000614864858286016142fe565b92505060206148758582860161482a565b9150509250929050565b6000806040838503121561489657614895613fff565b5b60006148a4858286016142fe565b92505060206148b5858286016142fe565b9150509250929050565b7f556e617574686f72697a65640000000000000000000000000000000000000000600082015250565b60006148f5600c83614181565b9150614900826148bf565b602082019050919050565b60006020820190508181036000830152614924816148e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060408201905061496f60008301856142bd565b61497c6020830184614530565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149bd82614228565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036149ef576149ee614983565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614a4157607f821691505b602082108103614a5457614a536149fa565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614ab6602183614181565b9150614ac182614a5a565b604082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000614b48603e83614181565b9150614b5382614aec565b604082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000614bda602e83614181565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b6000614c46601983614181565b9150614c5182614c10565b602082019050919050565b60006020820190508181036000830152614c7581614c39565b9050919050565b600081905092915050565b50565b6000614c97600083614c7c565b9150614ca282614c87565b600082019050919050565b6000614cb882614c8a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000614cf8601083614181565b9150614d0382614cc2565b602082019050919050565b60006020820190508181036000830152614d2781614ceb565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614d8a602b83614181565b9150614d9582614d2e565b604082019050919050565b60006020820190508181036000830152614db981614d7d565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e2d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614df0565b614e378683614df0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000614e74614e6f614e6a84614228565b614e4f565b614228565b9050919050565b6000819050919050565b614e8e83614e59565b614ea2614e9a82614e7b565b848454614dfd565b825550505050565b600090565b614eb7614eaa565b614ec2818484614e85565b505050565b5b81811015614ee657614edb600082614eaf565b600181019050614ec8565b5050565b601f821115614f2b57614efc81614dcb565b614f0584614de0565b81016020851015614f14578190505b614f28614f2085614de0565b830182614ec7565b50505b505050565b600082821c905092915050565b6000614f4e60001984600802614f30565b1980831691505092915050565b6000614f678383614f3d565b9150826002028217905092915050565b614f818383614dc0565b67ffffffffffffffff811115614f9a57614f99614358565b5b614fa48254614a29565b614faf828285614eea565b6000601f831160018114614fde5760008415614fcc578287013590505b614fd68582614f5b565b86555061503e565b601f198416614fec86614dcb565b60005b8281101561501457848901358255600182019150602085019450602081019050614fef565b86831015615031578489013561502d601f891682614f3d565b8355505b6001600288020188555050505b50505050505050565b600061505282614228565b915061505d83614228565b925082820190508082111561507557615074614983565b5b92915050565b7f53616c652069736e2774206c6976650000000000000000000000000000000000600082015250565b60006150b1600f83614181565b91506150bc8261507b565b602082019050919050565b600060208201905081810360008301526150e0816150a4565b9050919050565b7f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060008201527f4e46547300000000000000000000000000000000000000000000000000000000602082015250565b6000615143602483614181565b915061514e826150e7565b604082019050919050565b6000602082019050818103600083015261517281615136565b9050919050565b7f4e6f7420656e6f756768204e465473206c656674000000000000000000000000600082015250565b60006151af601483614181565b91506151ba82615179565b602082019050919050565b600060208201905081810360008301526151de816151a2565b9050919050565b60006151f082614228565b91506151fb83614228565b925082820261520981614228565b915082820484148315176152205761521f614983565b5b5092915050565b7f4e6f7420656e6f7567682045544820746f20627579207370656369666965642060008201527f616d6f756e74206f66204e465473000000000000000000000000000000000000602082015250565b6000615283602e83614181565b915061528e82615227565b604082019050919050565b600060208201905081810360008301526152b281615276565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000615315602c83614181565b9150615320826152b9565b604082019050919050565b6000602082019050818103600083015261534481615308565b9050919050565b7f596f752063616e277420616c726561647920636c61696d20796f7572204e465460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006153a7602183614181565b91506153b28261534b565b604082019050919050565b600060208201905081810360008301526153d68161539a565b9050919050565b7f4e6f204e46547320696e207374616b6500000000000000000000000000000000600082015250565b6000615413601083614181565b915061541e826153dd565b602082019050919050565b6000602082019050818103600083015261544281615406565b9050919050565b600061545482614228565b915061545f83614228565b925082820390508181111561547757615476614983565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b60006060820190506154c160008301866142bd565b6154ce60208301856142bd565b6154db6040830184614530565b949350505050565b60006154ee82614228565b91506000820361550157615500614983565b5b600182039050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000615542601883614181565b915061554d8261550c565b602082019050919050565b6000602082019050818103600083015261557181615535565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006155d4602983614181565b91506155df82615578565b604082019050919050565b60006020820190508181036000830152615603816155c7565b9050919050565b600060408201905061561f60008301856142bd565b61562c60208301846142bd565b9392505050565b60008151905061564281614813565b92915050565b60006020828403121561565e5761565d613fff565b5b600061566c84828501615633565b91505092915050565b7f596f75206669727374206e65656420746f20617070726f766500000000000000600082015250565b60006156ab601983614181565b91506156b682615675565b602082019050919050565b600060208201905081810360008301526156da8161569e565b9050919050565b6000815190506156f0816142e7565b92915050565b60006020828403121561570c5761570b613fff565b5b600061571a848285016156e1565b91505092915050565b7f4e4654206973206e6f7420796f75727300000000000000000000000000000000600082015250565b6000615759601083614181565b915061576482615723565b602082019050919050565b600060208201905081810360008301526157888161574c565b9050919050565b7f496e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b60006157c5601083614181565b91506157d08261578f565b602082019050919050565b600060208201905081810360008301526157f4816157b8565b9050919050565b600081905092915050565b6000815461581381614a29565b61581d81866157fb565b94506001821660008114615838576001811461584d57615880565b60ff1983168652811515820286019350615880565b61585685614dcb565b60005b8381101561587857815481890152600182019150602081019050615859565b838801955050505b50505092915050565b600061589482614176565b61589e81856157fb565b93506158ae818560208601614192565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006158f06005836157fb565b91506158fb826158ba565b600582019050919050565b60006159128285615806565b915061591e8284615889565b9150615929826158e3565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615991602683614181565b915061599c82615935565b604082019050919050565b600060208201905081810360008301526159c081615984565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000615a23602583614181565b9150615a2e826159c7565b604082019050919050565b60006020820190508181036000830152615a5281615a16565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615ab5602483614181565b9150615ac082615a59565b604082019050919050565b60006020820190508181036000830152615ae481615aa8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615b21602083614181565b9150615b2c82615aeb565b602082019050919050565b60006020820190508181036000830152615b5081615b14565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615b8d601983614181565b9150615b9882615b57565b602082019050919050565b60006020820190508181036000830152615bbc81615b80565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615c1f603283614181565b9150615c2a82615bc3565b604082019050919050565b60006020820190508181036000830152615c4e81615c12565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000615c8f82614228565b9150615c9a83614228565b925082615caa57615ca9615c55565b5b828204905092915050565b6000615cc082614228565b9150615ccb83614228565b925082615cdb57615cda615c55565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000615d0d82615ce6565b615d178185615cf1565b9350615d27818560208601614192565b615d30816141bc565b840191505092915050565b6000608082019050615d5060008301876142bd565b615d5d60208301866142bd565b615d6a6040830185614530565b8181036060830152615d7c8184615d02565b905095945050505050565b600081519050615d9681614035565b92915050565b600060208284031215615db257615db1613fff565b5b6000615dc084828501615d87565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615dff602083614181565b9150615e0a82615dc9565b602082019050919050565b60006020820190508181036000830152615e2e81615df2565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615e6b601c83614181565b9150615e7682615e35565b602082019050919050565b60006020820190508181036000830152615e9a81615e5e565b905091905056fea264697066735822122090793207ebc5be64befbf80ed9bad544802e0be08bdbab0a409572fdef3abff964736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000504265124456a8c28eefe64fa07bc5cde4445e270000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696872366e766a3436636372766d7268673363636c346e6f6370337735646878337175613637786535647263636d346f7476686d712f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://bafybeihr6nvj46ccrvmrhg3ccl4nocp3w5dhx3qua67xe5drccm4otvhmq/
Arg [1] : _manager (address): 0x504265124456A8C28eEFE64fA07BC5cde4445E27

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000504265124456a8c28eefe64fa07bc5cde4445e27
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f626166796265696872366e766a3436636372766d7268673363
Arg [4] : 636c346e6f6370337735646878337175613637786535647263636d346f747668
Arg [5] : 6d712f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48558:7147:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42303:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52531:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29037:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30550:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30067:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17776:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42943:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31250:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55309:393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42611:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49881:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50858:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52372:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51571:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31657:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52023:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50185:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48739:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43133:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49085:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54862:426;;;;;;;;;;;;;:::i;:::-;;48895:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28748:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48834:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28479:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6738:103;;;;;;;;;;;;;:::i;:::-;;54150:575;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50978:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51230:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6090:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49993:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29206:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49047:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30793:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51101:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48949:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31913:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50498:255;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50391:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49119:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48801:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49002:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50307:78;;;;;;;;;;;;;:::i;:::-;;53680:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50079:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49171:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52818:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31019:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50759:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6996:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53132:522;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42303:224;42405:4;42444:35;42429:50;;;:11;:50;;;;:90;;;;42483:36;42507:11;42483:23;:36::i;:::-;42429:90;42422:97;;42303:224;;;:::o;52531:281::-;49427:10;49416:21;;:7;:5;:7::i;:::-;:21;;;:46;;;;49452:10;49441:21;;:7;;;;;;;;;;;:21;;;49416:46;49408:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52628:24:::1;52655:10;;:17;;52628:44;;52684:9;52679:128;52703:16;52699:1;:20;52679:128;;;52735:4;:20;;;52756:10;;52767:1;52756:13;;;;;;;:::i;:::-;;;;;;;:20;;;;;;;;;;:::i;:::-;52778:10;;52789:1;52778:13;;;;;;;:::i;:::-;;;;;;;:20;;;52735:64;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52721:3;;;;;:::i;:::-;;;;52679:128;;;;52621:191;52531:281:::0;;:::o;29037:100::-;29091:13;29124:5;29117:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29037:100;:::o;30550:171::-;30626:7;30646:23;30661:7;30646:14;:23::i;:::-;30689:15;:24;30705:7;30689:24;;;;;;;;;;;;;;;;;;;;;30682:31;;30550:171;;;:::o;30067:417::-;30148:13;30164:23;30179:7;30164:14;:23::i;:::-;30148:39;;30212:5;30206:11;;:2;:11;;;30198:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30306:5;30290:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30315:37;30332:5;30339:12;:10;:12::i;:::-;30315:16;:37::i;:::-;30290:62;30268:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;30455:21;30464:2;30468:7;30455:8;:21::i;:::-;30137:347;30067:417;;:::o;17776:207::-;17919:6;17945:30;;;17938:37;;17776:207;;;;;;:::o;42943:113::-;43004:7;43031:10;:17;;;;43024:24;;42943:113;:::o;31250:336::-;31445:41;31464:12;:10;:12::i;:::-;31478:7;31445:18;:41::i;:::-;31437:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31550:28;31560:4;31566:2;31570:7;31550:9;:28::i;:::-;31250:336;;;:::o;55309:393::-;5976:13;:11;:13::i;:::-;55377:15:::1;55395:21;55377:39;;55441:1;55431:7;:11;55423:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;55479:18;55500:6;55479:27;;55527:6;55517:7;:16;:31;;;;55547:1;55537:6;:11;55517:31;55513:74;;;55572:7;55559:20;;55513:74;55596:12;55615:7;:5;:7::i;:::-;55614:14;;55637:10;55614:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55595:58;;;55668:7;55660:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;55370:332;;;55309:393:::0;:::o;42611:256::-;42708:7;42744:23;42761:5;42744:16;:23::i;:::-;42736:5;:31;42728:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;42833:12;:19;42846:5;42833:19;;;;;;;;;;;;;;;:26;42853:5;42833:26;;;;;;;;;;;;42826:33;;42611:256;;;;:::o;49881:106::-;5976:13;:11;:13::i;:::-;49973:8:::1;;49958:12;:23;;;;;;;:::i;:::-;;49881:106:::0;;:::o;50858:114::-;50914:16;50946:12;:20;50959:6;50946:20;;;;;;;;;;;;;;;50939:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50858:114;;;:::o;52372:153::-;49268:10;49257:21;;:7;:5;:7::i;:::-;:21;;;:52;;;;49299:10;49282:27;;49290:4;49282:27;;;49257:52;:77;;;;49324:10;49313:21;;:7;;;;;;;;;;;:21;;;49257:77;49249:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;52511:8:::1;52475:21;:32;52497:9;52475:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;52372:153:::0;;:::o;51571:446::-;49667:8;;;;;;;;;;;49659:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51676:1:::1;51665:8;:12;:38;;;;;51693:10;;51681:8;:22;;51665:38;51657:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:4;51778:8;51760:15;:5;:13;:15::i;:::-;:26;;;;:::i;:::-;51759:41;;51751:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;51865:5;;51854:8;:16;;;;:::i;:::-;51840:9;:31;;51832:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;51936:9;51931:81;51955:8;51951:1;:12;51931:81;;;51979:25;51994:9;51979:14;:25::i;:::-;51965:3;;;;;:::i;:::-;;;;51931:81;;;;51571:446:::0;;:::o;31657:185::-;31795:39;31812:4;31818:2;31822:7;31795:39;;;;;;;;;;;;:16;:39::i;:::-;31657:185;;;:::o;52023:325::-;49427:10;49416:21;;:7;:5;:7::i;:::-;:21;;;:46;;;;49452:10;49441:21;;:7;;;;;;;;;;;:21;;;49416:46;49408:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52130:1:::1;52119:8;:12;52111:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:4;52206:8;52188:15;:5;:13;:15::i;:::-;:26;;;;:::i;:::-;52187:41;;52179:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;52267:9;52262:81;52286:8;52282:1;:12;52262:81;;;52310:25;52325:9;52310:14;:25::i;:::-;52296:3;;;;;:::i;:::-;;;;52262:81;;;;52023:325:::0;;:::o;50185:116::-;5976:13;:11;:13::i;:::-;50285:10:::1;50263:19;:32;;;;50185:116:::0;:::o;48739:22::-;;;;;;;;;;;;;:::o;43133:233::-;43208:7;43244:30;:28;:30::i;:::-;43236:5;:38;43228:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;43341:10;43352:5;43341:17;;;;;;;;:::i;:::-;;;;;;;;;;43334:24;;43133:233;;;:::o;49085:29::-;;;;:::o;54862:426::-;49553:19;;49534:15;:38;;49526:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;54908:23:::1;54934:26;54949:10;54934:14;:26::i;:::-;54908:52;;54993:1;54975:15;:19;54967:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;55029:9;55041:15;55029:27;;55024:259;55062:1;55058;:5;55024:259;;;55079:15;55097:12;:24;55110:10;55097:24;;;;;;;;;;;;;;;55126:1;55122;:5;;;;:::i;:::-;55097:31;;;;;;;;:::i;:::-;;;;;;;;;;55079:49;;55139:12;:24;55152:10;55139:24;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55209:1;55178:11;:20;55190:7;55178:20;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;55222:4;:17;;;55248:4;55255:10;55267:7;55222:53;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;55070:213;55065:3;;;;;:::i;:::-;;;;55024:259;;;;54901:387;54862:426::o:0;48895:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28748:222::-;28820:7;28840:13;28856:7;:16;28864:7;28856:16;;;;;;;;;;;;;;;;;;;;;28840:32;;28908:1;28891:19;;:5;:19;;;28883:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28957:5;28950:12;;;28748:222;;;:::o;48834:56::-;;;;;;;;;;;;;;;;;:::o;28479:207::-;28551:7;28596:1;28579:19;;:5;:19;;;28571:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28662:9;:16;28672:5;28662:16;;;;;;;;;;;;;;;;28655:23;;28479:207;;;:::o;6738:103::-;5976:13;:11;:13::i;:::-;6803:30:::1;6830:1;6803:18;:30::i;:::-;6738:103::o:0;54150:575::-;49427:10;49416:21;;:7;:5;:7::i;:::-;:21;;;:46;;;;49452:10;49441:21;;:7;;;;;;;;;;;:21;;;49416:46;49408:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54263:4:::1;:21;;;54285:10;54305:4;54263:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54255:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;54350:22;54375:8;;:15;;54350:40;;54402:9;54397:323;54421:14;54417:1;:18;54397:323;;;54451:10;54464:8;;54473:1;54464:11;;;;;;;:::i;:::-;;;;;;;;54451:24;;54512:10;54492:30;;:4;:12;;;54505:2;54492:16;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:30;;;:63;;;;;54553:1;54526:29;;:11;:15;54538:2;54526:15;;;;;;;;;;;;;;;;;;;;;:29;;;54492:63;54484:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;54585:4;:17;;;54603:10;54623:4;54630:2;54585:48;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54644:12;:23;54657:9;54644:23;;;;;;;;;;;;;;;54673:2;54644:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54703:9;54685:11;:15;54697:2;54685:15;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;54442:278;54437:3;;;;;:::i;:::-;;;;54397:323;;;;54248:477;54150:575:::0;;;:::o;50978:117::-;51039:7;51062:12;:20;51075:6;51062:20;;;;;;;;;;;;;;;:27;;;;51055:34;;50978:117;;;:::o;51230:324::-;51292:16;51317:18;51338:17;51348:6;51338:9;:17::i;:::-;51317:38;;51362:26;51405:10;51391:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51362:54;;51428:9;51423:103;51447:10;51443:1;:14;51423:103;;;51488:30;51508:6;51516:1;51488:19;:30::i;:::-;51473:9;51483:1;51473:12;;;;;;;;:::i;:::-;;;;;;;:45;;;;;51459:3;;;;;:::i;:::-;;;;51423:103;;;;51539:9;51532:16;;;;51230:324;;;:::o;6090:87::-;6136:7;6163:6;;;;;;;;;;;6156:13;;6090:87;:::o;49993:80::-;5976:13;:11;:13::i;:::-;50061:6:::1;50053:5;:14;;;;49993:80:::0;:::o;29206:104::-;29262:13;29295:7;29288:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29206:104;:::o;49047:33::-;;;;:::o;30793:155::-;30888:52;30907:12;:10;:12::i;:::-;30921:8;30931;30888:18;:52::i;:::-;30793:155;;:::o;51101:123::-;51166:7;51189:21;:29;51211:6;51189:29;;;;;;;;;;;;;;;;51182:36;;51101:123;;;:::o;48949:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;31913:323::-;32087:41;32106:12;:10;:12::i;:::-;32120:7;32087:18;:41::i;:::-;32079:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;32190:38;32204:4;32210:2;32214:7;32223:4;32190:13;:38::i;:::-;31913:323;;;;:::o;50498:255::-;50564:13;50605:1;50594:8;:12;:43;;;;;50622:15;:5;:13;:15::i;:::-;50610:8;:27;;50594:43;50586:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;50696:12;50710:26;50727:8;50710:16;:26::i;:::-;50679:67;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50665:82;;50498:255;;;:::o;50391:88::-;5976:13;:11;:13::i;:::-;50465:8:::1;50455:7;;:18;;;;;;;;;;;;;;;;;;50391:88:::0;:::o;49119:47::-;;;;:::o;48801:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49002:40::-;49038:4;49002:40;:::o;50307:78::-;5976:13;:11;:13::i;:::-;50371:8:::1;;;;;;;;;;;50370:9;50359:8;;:20;;;;;;;;;;;;;;;;;;50307:78::o:0;53680:438::-;49427:10;49416:21;;:7;:5;:7::i;:::-;:21;;;:46;;;;49452:10;49441:21;;:7;;;;;;;;;;;:21;;;49416:46;49408:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;53793:1:::1;53782:8;:12;53774:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:4;53869:8;53851:15;:5;:13;:15::i;:::-;:26;;;;:::i;:::-;53850:41;;53842:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53930:9;53925:188;53949:8;53945:1;:12;53925:188;;;53973:29;53996:4;53973:14;:29::i;:::-;54011:12;:23;54024:9;54011:23;;;;;;;;;;;;;;;54040:15;:5;:13;:15::i;:::-;54011:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54096:9;54065:11;:28;54077:15;:5;:13;:15::i;:::-;54065:28;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;53959:3;;;;;:::i;:::-;;;;53925:188;;;;53680:438:::0;;:::o;50079:100::-;5976:13;:11;:13::i;:::-;50162:11:::1;50149:10;:24;;;;50079:100:::0;:::o;49171:28::-;;;;;;;;;;;;;:::o;52818:308::-;49427:10;49416:21;;:7;:5;:7::i;:::-;:21;;;:46;;;;49452:10;49441:21;;:7;;;;;;;;;;;:21;;;49416:46;49408:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;52935:21:::1;:32;52957:9;52935:32;;;;;;;;;;;;;;;;52924:8;:43;52920:201;;;53014:21;:32;53036:9;53014:32;;;;;;;;;;;;;;;;52978:21;:32;53000:9;52978:32;;;;;;;;;;;;;;;;:68;;;;;;;:::i;:::-;;;;;;;;52920:201;;;53105:8;53069:21;:32;53091:9;53069:32;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;52920:201;52818:308:::0;;:::o;31019:164::-;31116:4;31140:18;:25;31159:5;31140:25;;;;;;;;;;;;;;;:35;31166:8;31140:35;;;;;;;;;;;;;;;;;;;;;;;;;31133:42;;31019:164;;;;:::o;50759:93::-;50808:7;50831:15;:5;:13;:15::i;:::-;50824:22;;50759:93;:::o;6996:201::-;5976:13;:11;:13::i;:::-;7105:1:::1;7085:22;;:8;:22;;::::0;7077:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7161:28;7180:8;7161:18;:28::i;:::-;6996:201:::0;:::o;53132:522::-;49667:8;;;;;;;;;;;49659:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;53235:1:::1;53224:8;:12;:60;;;;;53252:21;:32;53274:9;53252:32;;;;;;;;;;;;;;;;53240:8;:44;;53224:60;53216:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:4;53359:8;53341:15;:5;:13;:15::i;:::-;:26;;;;:::i;:::-;53340:41;;53332:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53420:9;53415:234;53439:8;53435:1;:12;53415:234;;;53463:29;53486:4;53463:14;:29::i;:::-;53501:12;:23;53514:9;53501:23;;;;;;;;;;;;;;;53530:15;:5;:13;:15::i;:::-;53501:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53586:9;53555:11;:28;53567:15;:5;:13;:15::i;:::-;53555:28;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;53640:1;53604:21;:32;53626:9;53604:32;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;53449:3;;;;;:::i;:::-;;;;53415:234;;;;53132:522:::0;;:::o;28110:305::-;28212:4;28264:25;28249:40;;;:11;:40;;;;:105;;;;28321:33;28306:48;;;:11;:48;;;;28249:105;:158;;;;28371:36;28395:11;28371:23;:36::i;:::-;28249:158;28229:178;;28110:305;;;:::o;38525:135::-;38607:16;38615:7;38607;:16::i;:::-;38599:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;38525:135;:::o;4641:98::-;4694:7;4721:10;4714:17;;4641:98;:::o;37804:174::-;37906:2;37879:15;:24;37895:7;37879:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37962:7;37958:2;37924:46;;37933:23;37948:7;37933:14;:23::i;:::-;37924:46;;;;;;;;;;;;37804:174;;:::o;34037:264::-;34130:4;34147:13;34163:23;34178:7;34163:14;:23::i;:::-;34147:39;;34216:5;34205:16;;:7;:16;;;:52;;;;34225:32;34242:5;34249:7;34225:16;:32::i;:::-;34205:52;:87;;;;34285:7;34261:31;;:20;34273:7;34261:11;:20::i;:::-;:31;;;34205:87;34197:96;;;34037:264;;;;:::o;37060:625::-;37219:4;37192:31;;:23;37207:7;37192:14;:23::i;:::-;:31;;;37184:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37298:1;37284:16;;:2;:16;;;37276:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37354:39;37375:4;37381:2;37385:7;37354:20;:39::i;:::-;37458:29;37475:1;37479:7;37458:8;:29::i;:::-;37519:1;37500:9;:15;37510:4;37500:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37548:1;37531:9;:13;37541:2;37531:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37579:2;37560:7;:16;37568:7;37560:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37618:7;37614:2;37599:27;;37608:4;37599:27;;;;;;;;;;;;37639:38;37659:4;37665:2;37669:7;37639:19;:38::i;:::-;37060:625;;;:::o;6255:132::-;6330:12;:10;:12::i;:::-;6319:23;;:7;:5;:7::i;:::-;:23;;;6311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6255:132::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;54731:113::-;54783:17;:5;:15;:17::i;:::-;54807:31;54817:3;54822:15;:5;:13;:15::i;:::-;54807:9;:31::i;:::-;54731:113;:::o;7357:191::-;7431:16;7450:6;;;;;;;;;;;7431:25;;7476:8;7467:6;;:17;;;;;;;;;;;;;;;;;;7531:8;7500:40;;7521:8;7500:40;;;;;;;;;;;;7420:128;7357:191;:::o;38121:315::-;38276:8;38267:17;;:5;:17;;;38259:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38363:8;38325:18;:25;38344:5;38325:25;;;;;;;;;;;;;;;:35;38351:8;38325:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38409:8;38387:41;;38402:5;38387:41;;;38419:8;38387:41;;;;;;:::i;:::-;;;;;;;;38121:315;;;:::o;33117:313::-;33273:28;33283:4;33289:2;33293:7;33273:9;:28::i;:::-;33320:47;33343:4;33349:2;33353:7;33362:4;33320:22;:47::i;:::-;33312:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:313;;;;:::o;1895:723::-;1951:13;2181:1;2172:5;:10;2168:53;;2199:10;;;;;;;;;;;;;;;;;;;;;2168:53;2231:12;2246:5;2231:20;;2262:14;2287:78;2302:1;2294:4;:9;2287:78;;2320:8;;;;;:::i;:::-;;;;2351:2;2343:10;;;;;:::i;:::-;;;2287:78;;;2375:19;2407:6;2397:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2375:39;;2425:154;2441:1;2432:5;:10;2425:154;;2469:1;2459:11;;;;;:::i;:::-;;;2536:2;2528:5;:10;;;;:::i;:::-;2515:2;:24;;;;:::i;:::-;2502:39;;2485:6;2492;2485:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2565:2;2556:11;;;;;:::i;:::-;;;2425:154;;;2603:6;2589:21;;;;;1895:723;;;;:::o;19772:157::-;19857:4;19896:25;19881:40;;;:11;:40;;;;19874:47;;19772:157;;;:::o;33743:127::-;33808:4;33860:1;33832:30;;:7;:16;33840:7;33832:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33825:37;;33743:127;;;:::o;43979:589::-;44123:45;44150:4;44156:2;44160:7;44123:26;:45::i;:::-;44201:1;44185:18;;:4;:18;;;44181:187;;44220:40;44252:7;44220:31;:40::i;:::-;44181:187;;;44290:2;44282:10;;:4;:10;;;44278:90;;44309:47;44342:4;44348:7;44309:32;:47::i;:::-;44278:90;44181:187;44396:1;44382:16;;:2;:16;;;44378:183;;44415:45;44452:7;44415:36;:45::i;:::-;44378:183;;;44488:4;44482:10;;:2;:10;;;44478:83;;44509:40;44537:2;44541:7;44509:27;:40::i;:::-;44478:83;44378:183;43979:589;;;:::o;41160:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;34643:110::-;34719:26;34729:2;34733:7;34719:26;;;;;;;;;;;;:9;:26::i;:::-;34643:110;;:::o;39224:853::-;39378:4;39399:15;:2;:13;;;:15::i;:::-;39395:675;;;39451:2;39435:36;;;39472:12;:10;:12::i;:::-;39486:4;39492:7;39501:4;39435:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39431:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39693:1;39676:6;:13;:18;39672:328;;39719:60;;;;;;;;;;:::i;:::-;;;;;;;;39672:328;39950:6;39944:13;39935:6;39931:2;39927:15;39920:38;39431:584;39567:41;;;39557:51;;;:6;:51;;;;39550:58;;;;;39395:675;40054:4;40047:11;;39224:853;;;;;;;:::o;40649:126::-;;;;:::o;45291:164::-;45395:10;:17;;;;45368:15;:24;45384:7;45368:24;;;;;;;;;;;:44;;;;45423:10;45439:7;45423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45291:164;:::o;46082:988::-;46348:22;46398:1;46373:22;46390:4;46373:16;:22::i;:::-;:26;;;;:::i;:::-;46348:51;;46410:18;46431:17;:26;46449:7;46431:26;;;;;;;;;;;;46410:47;;46578:14;46564:10;:28;46560:328;;46609:19;46631:12;:18;46644:4;46631:18;;;;;;;;;;;;;;;:34;46650:14;46631:34;;;;;;;;;;;;46609:56;;46715:11;46682:12;:18;46695:4;46682:18;;;;;;;;;;;;;;;:30;46701:10;46682:30;;;;;;;;;;;:44;;;;46832:10;46799:17;:30;46817:11;46799:30;;;;;;;;;;;:43;;;;46594:294;46560:328;46984:17;:26;47002:7;46984:26;;;;;;;;;;;46977:33;;;47028:12;:18;47041:4;47028:18;;;;;;;;;;;;;;;:34;47047:14;47028:34;;;;;;;;;;;47021:41;;;46163:907;;46082:988;;:::o;47365:1079::-;47618:22;47663:1;47643:10;:17;;;;:21;;;;:::i;:::-;47618:46;;47675:18;47696:15;:24;47712:7;47696:24;;;;;;;;;;;;47675:45;;48047:19;48069:10;48080:14;48069:26;;;;;;;;:::i;:::-;;;;;;;;;;48047:48;;48133:11;48108:10;48119;48108:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;48244:10;48213:15;:28;48229:11;48213:28;;;;;;;;;;;:41;;;;48385:15;:24;48401:7;48385:24;;;;;;;;;;;48378:31;;;48420:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47436:1008;;;47365:1079;:::o;44869:221::-;44954:14;44971:20;44988:2;44971:16;:20::i;:::-;44954:37;;45029:7;45002:12;:16;45015:2;45002:16;;;;;;;;;;;;;;;:24;45019:6;45002:24;;;;;;;;;;;:34;;;;45076:6;45047:17;:26;45065:7;45047:26;;;;;;;;;;;:35;;;;44943:147;44869:221;;:::o;34980:319::-;35109:18;35115:2;35119:7;35109:5;:18::i;:::-;35160:53;35191:1;35195:2;35199:7;35208:4;35160:22;:53::i;:::-;35138:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;34980:319;;;:::o;8788:326::-;8848:4;9105:1;9083:7;:19;;;:23;9076:30;;8788:326;;;:::o;35635:439::-;35729:1;35715:16;;:2;:16;;;35707:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35788:16;35796:7;35788;:16::i;:::-;35787:17;35779:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35850:45;35879:1;35883:2;35887:7;35850:20;:45::i;:::-;35925:1;35908:9;:13;35918:2;35908:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35956:2;35937:7;:16;35945:7;35937:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36001:7;35997:2;35976:33;;35993:1;35976:33;;;;;;;;;;;;36022:44;36050:1;36054:2;36058:7;36022:19;:44::i;:::-;35635:439;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:117;1873:1;1870;1863:12;1924:597;2026:8;2036:6;2086:3;2079:4;2071:6;2067:17;2063:27;2053:122;;2094:79;;:::i;:::-;2053:122;2207:6;2194:20;2184:30;;2237:18;2229:6;2226:30;2223:117;;;2259:79;;:::i;:::-;2223:117;2373:4;2365:6;2361:17;2349:29;;2427:3;2419:4;2411:6;2407:17;2397:8;2393:32;2390:41;2387:128;;;2434:79;;:::i;:::-;2387:128;1924:597;;;;;:::o;2527:617::-;2642:6;2650;2699:2;2687:9;2678:7;2674:23;2670:32;2667:119;;;2705:79;;:::i;:::-;2667:119;2853:1;2842:9;2838:17;2825:31;2883:18;2875:6;2872:30;2869:117;;;2905:79;;:::i;:::-;2869:117;3018:109;3119:7;3110:6;3099:9;3095:22;3018:109;:::i;:::-;3000:127;;;;2796:341;2527:617;;;;;:::o;3150:99::-;3202:6;3236:5;3230:12;3220:22;;3150:99;;;:::o;3255:169::-;3339:11;3373:6;3368:3;3361:19;3413:4;3408:3;3404:14;3389:29;;3255:169;;;;:::o;3430:246::-;3511:1;3521:113;3535:6;3532:1;3529:13;3521:113;;;3620:1;3615:3;3611:11;3605:18;3601:1;3596:3;3592:11;3585:39;3557:2;3554:1;3550:10;3545:15;;3521:113;;;3668:1;3659:6;3654:3;3650:16;3643:27;3492:184;3430:246;;;:::o;3682:102::-;3723:6;3774:2;3770:7;3765:2;3758:5;3754:14;3750:28;3740:38;;3682:102;;;:::o;3790:377::-;3878:3;3906:39;3939:5;3906:39;:::i;:::-;3961:71;4025:6;4020:3;3961:71;:::i;:::-;3954:78;;4041:65;4099:6;4094:3;4087:4;4080:5;4076:16;4041:65;:::i;:::-;4131:29;4153:6;4131:29;:::i;:::-;4126:3;4122:39;4115:46;;3882:285;3790:377;;;;:::o;4173:313::-;4286:4;4324:2;4313:9;4309:18;4301:26;;4373:9;4367:4;4363:20;4359:1;4348:9;4344:17;4337:47;4401:78;4474:4;4465:6;4401:78;:::i;:::-;4393:86;;4173:313;;;;:::o;4492:77::-;4529:7;4558:5;4547:16;;4492:77;;;:::o;4575:122::-;4648:24;4666:5;4648:24;:::i;:::-;4641:5;4638:35;4628:63;;4687:1;4684;4677:12;4628:63;4575:122;:::o;4703:139::-;4749:5;4787:6;4774:20;4765:29;;4803:33;4830:5;4803:33;:::i;:::-;4703:139;;;;:::o;4848:329::-;4907:6;4956:2;4944:9;4935:7;4931:23;4927:32;4924:119;;;4962:79;;:::i;:::-;4924:119;5082:1;5107:53;5152:7;5143:6;5132:9;5128:22;5107:53;:::i;:::-;5097:63;;5053:117;4848:329;;;;:::o;5183:126::-;5220:7;5260:42;5253:5;5249:54;5238:65;;5183:126;;;:::o;5315:96::-;5352:7;5381:24;5399:5;5381:24;:::i;:::-;5370:35;;5315:96;;;:::o;5417:118::-;5504:24;5522:5;5504:24;:::i;:::-;5499:3;5492:37;5417:118;;:::o;5541:222::-;5634:4;5672:2;5661:9;5657:18;5649:26;;5685:71;5753:1;5742:9;5738:17;5729:6;5685:71;:::i;:::-;5541:222;;;;:::o;5769:122::-;5842:24;5860:5;5842:24;:::i;:::-;5835:5;5832:35;5822:63;;5881:1;5878;5871:12;5822:63;5769:122;:::o;5897:139::-;5943:5;5981:6;5968:20;5959:29;;5997:33;6024:5;5997:33;:::i;:::-;5897:139;;;;:::o;6042:474::-;6110:6;6118;6167:2;6155:9;6146:7;6142:23;6138:32;6135:119;;;6173:79;;:::i;:::-;6135:119;6293:1;6318:53;6363:7;6354:6;6343:9;6339:22;6318:53;:::i;:::-;6308:63;;6264:117;6420:2;6446:53;6491:7;6482:6;6471:9;6467:22;6446:53;:::i;:::-;6436:63;;6391:118;6042:474;;;;;:::o;6522:117::-;6631:1;6628;6621:12;6645:180;6693:77;6690:1;6683:88;6790:4;6787:1;6780:15;6814:4;6811:1;6804:15;6831:281;6914:27;6936:4;6914:27;:::i;:::-;6906:6;6902:40;7044:6;7032:10;7029:22;7008:18;6996:10;6993:34;6990:62;6987:88;;;7055:18;;:::i;:::-;6987:88;7095:10;7091:2;7084:22;6874:238;6831:281;;:::o;7118:129::-;7152:6;7179:20;;:::i;:::-;7169:30;;7208:33;7236:4;7228:6;7208:33;:::i;:::-;7118:129;;;:::o;7253:307::-;7314:4;7404:18;7396:6;7393:30;7390:56;;;7426:18;;:::i;:::-;7390:56;7464:29;7486:6;7464:29;:::i;:::-;7456:37;;7548:4;7542;7538:15;7530:23;;7253:307;;;:::o;7566:146::-;7663:6;7658:3;7653;7640:30;7704:1;7695:6;7690:3;7686:16;7679:27;7566:146;;;:::o;7718:423::-;7795:5;7820:65;7836:48;7877:6;7836:48;:::i;:::-;7820:65;:::i;:::-;7811:74;;7908:6;7901:5;7894:21;7946:4;7939:5;7935:16;7984:3;7975:6;7970:3;7966:16;7963:25;7960:112;;;7991:79;;:::i;:::-;7960:112;8081:54;8128:6;8123:3;8118;8081:54;:::i;:::-;7801:340;7718:423;;;;;:::o;8160:338::-;8215:5;8264:3;8257:4;8249:6;8245:17;8241:27;8231:122;;8272:79;;:::i;:::-;8231:122;8389:6;8376:20;8414:78;8488:3;8480:6;8473:4;8465:6;8461:17;8414:78;:::i;:::-;8405:87;;8221:277;8160:338;;;;:::o;8504:943::-;8599:6;8607;8615;8623;8672:3;8660:9;8651:7;8647:23;8643:33;8640:120;;;8679:79;;:::i;:::-;8640:120;8799:1;8824:53;8869:7;8860:6;8849:9;8845:22;8824:53;:::i;:::-;8814:63;;8770:117;8926:2;8952:53;8997:7;8988:6;8977:9;8973:22;8952:53;:::i;:::-;8942:63;;8897:118;9054:2;9080:53;9125:7;9116:6;9105:9;9101:22;9080:53;:::i;:::-;9070:63;;9025:118;9210:2;9199:9;9195:18;9182:32;9241:18;9233:6;9230:30;9227:117;;;9263:79;;:::i;:::-;9227:117;9368:62;9422:7;9413:6;9402:9;9398:22;9368:62;:::i;:::-;9358:72;;9153:287;8504:943;;;;;;;:::o;9453:115::-;9538:23;9555:5;9538:23;:::i;:::-;9533:3;9526:36;9453:115;;:::o;9574:218::-;9665:4;9703:2;9692:9;9688:18;9680:26;;9716:69;9782:1;9771:9;9767:17;9758:6;9716:69;:::i;:::-;9574:218;;;;:::o;9798:118::-;9885:24;9903:5;9885:24;:::i;:::-;9880:3;9873:37;9798:118;;:::o;9922:222::-;10015:4;10053:2;10042:9;10038:18;10030:26;;10066:71;10134:1;10123:9;10119:17;10110:6;10066:71;:::i;:::-;9922:222;;;;:::o;10150:619::-;10227:6;10235;10243;10292:2;10280:9;10271:7;10267:23;10263:32;10260:119;;;10298:79;;:::i;:::-;10260:119;10418:1;10443:53;10488:7;10479:6;10468:9;10464:22;10443:53;:::i;:::-;10433:63;;10389:117;10545:2;10571:53;10616:7;10607:6;10596:9;10592:22;10571:53;:::i;:::-;10561:63;;10516:118;10673:2;10699:53;10744:7;10735:6;10724:9;10720:22;10699:53;:::i;:::-;10689:63;;10644:118;10150:619;;;;;:::o;10789:553::-;10847:8;10857:6;10907:3;10900:4;10892:6;10888:17;10884:27;10874:122;;10915:79;;:::i;:::-;10874:122;11028:6;11015:20;11005:30;;11058:18;11050:6;11047:30;11044:117;;;11080:79;;:::i;:::-;11044:117;11194:4;11186:6;11182:17;11170:29;;11248:3;11240:4;11232:6;11228:17;11218:8;11214:32;11211:41;11208:128;;;11255:79;;:::i;:::-;11208:128;10789:553;;;;;:::o;11348:529::-;11419:6;11427;11476:2;11464:9;11455:7;11451:23;11447:32;11444:119;;;11482:79;;:::i;:::-;11444:119;11630:1;11619:9;11615:17;11602:31;11660:18;11652:6;11649:30;11646:117;;;11682:79;;:::i;:::-;11646:117;11795:65;11852:7;11843:6;11832:9;11828:22;11795:65;:::i;:::-;11777:83;;;;11573:297;11348:529;;;;;:::o;11883:329::-;11942:6;11991:2;11979:9;11970:7;11966:23;11962:32;11959:119;;;11997:79;;:::i;:::-;11959:119;12117:1;12142:53;12187:7;12178:6;12167:9;12163:22;12142:53;:::i;:::-;12132:63;;12088:117;11883:329;;;;:::o;12218:114::-;12285:6;12319:5;12313:12;12303:22;;12218:114;;;:::o;12338:184::-;12437:11;12471:6;12466:3;12459:19;12511:4;12506:3;12502:14;12487:29;;12338:184;;;;:::o;12528:132::-;12595:4;12618:3;12610:11;;12648:4;12643:3;12639:14;12631:22;;12528:132;;;:::o;12666:108::-;12743:24;12761:5;12743:24;:::i;:::-;12738:3;12731:37;12666:108;;:::o;12780:179::-;12849:10;12870:46;12912:3;12904:6;12870:46;:::i;:::-;12948:4;12943:3;12939:14;12925:28;;12780:179;;;;:::o;12965:113::-;13035:4;13067;13062:3;13058:14;13050:22;;12965:113;;;:::o;13114:732::-;13233:3;13262:54;13310:5;13262:54;:::i;:::-;13332:86;13411:6;13406:3;13332:86;:::i;:::-;13325:93;;13442:56;13492:5;13442:56;:::i;:::-;13521:7;13552:1;13537:284;13562:6;13559:1;13556:13;13537:284;;;13638:6;13632:13;13665:63;13724:3;13709:13;13665:63;:::i;:::-;13658:70;;13751:60;13804:6;13751:60;:::i;:::-;13741:70;;13597:224;13584:1;13581;13577:9;13572:14;;13537:284;;;13541:14;13837:3;13830:10;;13238:608;;;13114:732;;;;:::o;13852:373::-;13995:4;14033:2;14022:9;14018:18;14010:26;;14082:9;14076:4;14072:20;14068:1;14057:9;14053:17;14046:47;14110:108;14213:4;14204:6;14110:108;:::i;:::-;14102:116;;13852:373;;;;:::o;14248:568::-;14321:8;14331:6;14381:3;14374:4;14366:6;14362:17;14358:27;14348:122;;14389:79;;:::i;:::-;14348:122;14502:6;14489:20;14479:30;;14532:18;14524:6;14521:30;14518:117;;;14554:79;;:::i;:::-;14518:117;14668:4;14660:6;14656:17;14644:29;;14722:3;14714:4;14706:6;14702:17;14692:8;14688:32;14685:41;14682:128;;;14729:79;;:::i;:::-;14682:128;14248:568;;;;;:::o;14822:704::-;14917:6;14925;14933;14982:2;14970:9;14961:7;14957:23;14953:32;14950:119;;;14988:79;;:::i;:::-;14950:119;15136:1;15125:9;15121:17;15108:31;15166:18;15158:6;15155:30;15152:117;;;15188:79;;:::i;:::-;15152:117;15301:80;15373:7;15364:6;15353:9;15349:22;15301:80;:::i;:::-;15283:98;;;;15079:312;15430:2;15456:53;15501:7;15492:6;15481:9;15477:22;15456:53;:::i;:::-;15446:63;;15401:118;14822:704;;;;;:::o;15532:116::-;15602:21;15617:5;15602:21;:::i;:::-;15595:5;15592:32;15582:60;;15638:1;15635;15628:12;15582:60;15532:116;:::o;15654:133::-;15697:5;15735:6;15722:20;15713:29;;15751:30;15775:5;15751:30;:::i;:::-;15654:133;;;;:::o;15793:468::-;15858:6;15866;15915:2;15903:9;15894:7;15890:23;15886:32;15883:119;;;15921:79;;:::i;:::-;15883:119;16041:1;16066:53;16111:7;16102:6;16091:9;16087:22;16066:53;:::i;:::-;16056:63;;16012:117;16168:2;16194:50;16236:7;16227:6;16216:9;16212:22;16194:50;:::i;:::-;16184:60;;16139:115;15793:468;;;;;:::o;16267:474::-;16335:6;16343;16392:2;16380:9;16371:7;16367:23;16363:32;16360:119;;;16398:79;;:::i;:::-;16360:119;16518:1;16543:53;16588:7;16579:6;16568:9;16564:22;16543:53;:::i;:::-;16533:63;;16489:117;16645:2;16671:53;16716:7;16707:6;16696:9;16692:22;16671:53;:::i;:::-;16661:63;;16616:118;16267:474;;;;;:::o;16747:162::-;16887:14;16883:1;16875:6;16871:14;16864:38;16747:162;:::o;16915:366::-;17057:3;17078:67;17142:2;17137:3;17078:67;:::i;:::-;17071:74;;17154:93;17243:3;17154:93;:::i;:::-;17272:2;17267:3;17263:12;17256:19;;16915:366;;;:::o;17287:419::-;17453:4;17491:2;17480:9;17476:18;17468:26;;17540:9;17534:4;17530:20;17526:1;17515:9;17511:17;17504:47;17568:131;17694:4;17568:131;:::i;:::-;17560:139;;17287:419;;;:::o;17712:180::-;17760:77;17757:1;17750:88;17857:4;17854:1;17847:15;17881:4;17878:1;17871:15;17898:332;18019:4;18057:2;18046:9;18042:18;18034:26;;18070:71;18138:1;18127:9;18123:17;18114:6;18070:71;:::i;:::-;18151:72;18219:2;18208:9;18204:18;18195:6;18151:72;:::i;:::-;17898:332;;;;;:::o;18236:180::-;18284:77;18281:1;18274:88;18381:4;18378:1;18371:15;18405:4;18402:1;18395:15;18422:233;18461:3;18484:24;18502:5;18484:24;:::i;:::-;18475:33;;18530:66;18523:5;18520:77;18517:103;;18600:18;;:::i;:::-;18517:103;18647:1;18640:5;18636:13;18629:20;;18422:233;;;:::o;18661:180::-;18709:77;18706:1;18699:88;18806:4;18803:1;18796:15;18830:4;18827:1;18820:15;18847:320;18891:6;18928:1;18922:4;18918:12;18908:22;;18975:1;18969:4;18965:12;18996:18;18986:81;;19052:4;19044:6;19040:17;19030:27;;18986:81;19114:2;19106:6;19103:14;19083:18;19080:38;19077:84;;19133:18;;:::i;:::-;19077:84;18898:269;18847:320;;;:::o;19173:220::-;19313:34;19309:1;19301:6;19297:14;19290:58;19382:3;19377:2;19369:6;19365:15;19358:28;19173:220;:::o;19399:366::-;19541:3;19562:67;19626:2;19621:3;19562:67;:::i;:::-;19555:74;;19638:93;19727:3;19638:93;:::i;:::-;19756:2;19751:3;19747:12;19740:19;;19399:366;;;:::o;19771:419::-;19937:4;19975:2;19964:9;19960:18;19952:26;;20024:9;20018:4;20014:20;20010:1;19999:9;19995:17;19988:47;20052:131;20178:4;20052:131;:::i;:::-;20044:139;;19771:419;;;:::o;20196:249::-;20336:34;20332:1;20324:6;20320:14;20313:58;20405:32;20400:2;20392:6;20388:15;20381:57;20196:249;:::o;20451:366::-;20593:3;20614:67;20678:2;20673:3;20614:67;:::i;:::-;20607:74;;20690:93;20779:3;20690:93;:::i;:::-;20808:2;20803:3;20799:12;20792:19;;20451:366;;;:::o;20823:419::-;20989:4;21027:2;21016:9;21012:18;21004:26;;21076:9;21070:4;21066:20;21062:1;21051:9;21047:17;21040:47;21104:131;21230:4;21104:131;:::i;:::-;21096:139;;20823:419;;;:::o;21248:233::-;21388:34;21384:1;21376:6;21372:14;21365:58;21457:16;21452:2;21444:6;21440:15;21433:41;21248:233;:::o;21487:366::-;21629:3;21650:67;21714:2;21709:3;21650:67;:::i;:::-;21643:74;;21726:93;21815:3;21726:93;:::i;:::-;21844:2;21839:3;21835:12;21828:19;;21487:366;;;:::o;21859:419::-;22025:4;22063:2;22052:9;22048:18;22040:26;;22112:9;22106:4;22102:20;22098:1;22087:9;22083:17;22076:47;22140:131;22266:4;22140:131;:::i;:::-;22132:139;;21859:419;;;:::o;22284:175::-;22424:27;22420:1;22412:6;22408:14;22401:51;22284:175;:::o;22465:366::-;22607:3;22628:67;22692:2;22687:3;22628:67;:::i;:::-;22621:74;;22704:93;22793:3;22704:93;:::i;:::-;22822:2;22817:3;22813:12;22806:19;;22465:366;;;:::o;22837:419::-;23003:4;23041:2;23030:9;23026:18;23018:26;;23090:9;23084:4;23080:20;23076:1;23065:9;23061:17;23054:47;23118:131;23244:4;23118:131;:::i;:::-;23110:139;;22837:419;;;:::o;23262:147::-;23363:11;23400:3;23385:18;;23262:147;;;;:::o;23415:114::-;;:::o;23535:398::-;23694:3;23715:83;23796:1;23791:3;23715:83;:::i;:::-;23708:90;;23807:93;23896:3;23807:93;:::i;:::-;23925:1;23920:3;23916:11;23909:18;;23535:398;;;:::o;23939:379::-;24123:3;24145:147;24288:3;24145:147;:::i;:::-;24138:154;;24309:3;24302:10;;23939:379;;;:::o;24324:166::-;24464:18;24460:1;24452:6;24448:14;24441:42;24324:166;:::o;24496:366::-;24638:3;24659:67;24723:2;24718:3;24659:67;:::i;:::-;24652:74;;24735:93;24824:3;24735:93;:::i;:::-;24853:2;24848:3;24844:12;24837:19;;24496:366;;;:::o;24868:419::-;25034:4;25072:2;25061:9;25057:18;25049:26;;25121:9;25115:4;25111:20;25107:1;25096:9;25092:17;25085:47;25149:131;25275:4;25149:131;:::i;:::-;25141:139;;24868:419;;;:::o;25293:230::-;25433:34;25429:1;25421:6;25417:14;25410:58;25502:13;25497:2;25489:6;25485:15;25478:38;25293:230;:::o;25529:366::-;25671:3;25692:67;25756:2;25751:3;25692:67;:::i;:::-;25685:74;;25768:93;25857:3;25768:93;:::i;:::-;25886:2;25881:3;25877:12;25870:19;;25529:366;;;:::o;25901:419::-;26067:4;26105:2;26094:9;26090:18;26082:26;;26154:9;26148:4;26144:20;26140:1;26129:9;26125:17;26118:47;26182:131;26308:4;26182:131;:::i;:::-;26174:139;;25901:419;;;:::o;26326:97::-;26385:6;26413:3;26403:13;;26326:97;;;;:::o;26429:141::-;26478:4;26501:3;26493:11;;26524:3;26521:1;26514:14;26558:4;26555:1;26545:18;26537:26;;26429:141;;;:::o;26576:93::-;26613:6;26660:2;26655;26648:5;26644:14;26640:23;26630:33;;26576:93;;;:::o;26675:107::-;26719:8;26769:5;26763:4;26759:16;26738:37;;26675:107;;;;:::o;26788:393::-;26857:6;26907:1;26895:10;26891:18;26930:97;26960:66;26949:9;26930:97;:::i;:::-;27048:39;27078:8;27067:9;27048:39;:::i;:::-;27036:51;;27120:4;27116:9;27109:5;27105:21;27096:30;;27169:4;27159:8;27155:19;27148:5;27145:30;27135:40;;26864:317;;26788:393;;;;;:::o;27187:60::-;27215:3;27236:5;27229:12;;27187:60;;;:::o;27253:142::-;27303:9;27336:53;27354:34;27363:24;27381:5;27363:24;:::i;:::-;27354:34;:::i;:::-;27336:53;:::i;:::-;27323:66;;27253:142;;;:::o;27401:75::-;27444:3;27465:5;27458:12;;27401:75;;;:::o;27482:269::-;27592:39;27623:7;27592:39;:::i;:::-;27653:91;27702:41;27726:16;27702:41;:::i;:::-;27694:6;27687:4;27681:11;27653:91;:::i;:::-;27647:4;27640:105;27558:193;27482:269;;;:::o;27757:73::-;27802:3;27757:73;:::o;27836:189::-;27913:32;;:::i;:::-;27954:65;28012:6;28004;27998:4;27954:65;:::i;:::-;27889:136;27836:189;;:::o;28031:186::-;28091:120;28108:3;28101:5;28098:14;28091:120;;;28162:39;28199:1;28192:5;28162:39;:::i;:::-;28135:1;28128:5;28124:13;28115:22;;28091:120;;;28031:186;;:::o;28223:543::-;28324:2;28319:3;28316:11;28313:446;;;28358:38;28390:5;28358:38;:::i;:::-;28442:29;28460:10;28442:29;:::i;:::-;28432:8;28428:44;28625:2;28613:10;28610:18;28607:49;;;28646:8;28631:23;;28607:49;28669:80;28725:22;28743:3;28725:22;:::i;:::-;28715:8;28711:37;28698:11;28669:80;:::i;:::-;28328:431;;28313:446;28223:543;;;:::o;28772:117::-;28826:8;28876:5;28870:4;28866:16;28845:37;;28772:117;;;;:::o;28895:169::-;28939:6;28972:51;29020:1;29016:6;29008:5;29005:1;29001:13;28972:51;:::i;:::-;28968:56;29053:4;29047;29043:15;29033:25;;28946:118;28895:169;;;;:::o;29069:295::-;29145:4;29291:29;29316:3;29310:4;29291:29;:::i;:::-;29283:37;;29353:3;29350:1;29346:11;29340:4;29337:21;29329:29;;29069:295;;;;:::o;29369:1403::-;29493:44;29533:3;29528;29493:44;:::i;:::-;29602:18;29594:6;29591:30;29588:56;;;29624:18;;:::i;:::-;29588:56;29668:38;29700:4;29694:11;29668:38;:::i;:::-;29753:67;29813:6;29805;29799:4;29753:67;:::i;:::-;29847:1;29876:2;29868:6;29865:14;29893:1;29888:632;;;;30564:1;30581:6;30578:84;;;30637:9;30632:3;30628:19;30615:33;30606:42;;30578:84;30688:67;30748:6;30741:5;30688:67;:::i;:::-;30682:4;30675:81;30537:229;29858:908;;29888:632;29940:4;29936:9;29928:6;29924:22;29974:37;30006:4;29974:37;:::i;:::-;30033:1;30047:215;30061:7;30058:1;30055:14;30047:215;;;30147:9;30142:3;30138:19;30125:33;30117:6;30110:49;30198:1;30190:6;30186:14;30176:24;;30245:2;30234:9;30230:18;30217:31;;30084:4;30081:1;30077:12;30072:17;;30047:215;;;30290:6;30281:7;30278:19;30275:186;;;30355:9;30350:3;30346:19;30333:33;30398:48;30440:4;30432:6;30428:17;30417:9;30398:48;:::i;:::-;30390:6;30383:64;30298:163;30275:186;30507:1;30503;30495:6;30491:14;30487:22;30481:4;30474:36;29895:625;;;29858:908;;29468:1304;;;29369:1403;;;:::o;30778:191::-;30818:3;30837:20;30855:1;30837:20;:::i;:::-;30832:25;;30871:20;30889:1;30871:20;:::i;:::-;30866:25;;30914:1;30911;30907:9;30900:16;;30935:3;30932:1;30929:10;30926:36;;;30942:18;;:::i;:::-;30926:36;30778:191;;;;:::o;30975:165::-;31115:17;31111:1;31103:6;31099:14;31092:41;30975:165;:::o;31146:366::-;31288:3;31309:67;31373:2;31368:3;31309:67;:::i;:::-;31302:74;;31385:93;31474:3;31385:93;:::i;:::-;31503:2;31498:3;31494:12;31487:19;;31146:366;;;:::o;31518:419::-;31684:4;31722:2;31711:9;31707:18;31699:26;;31771:9;31765:4;31761:20;31757:1;31746:9;31742:17;31735:47;31799:131;31925:4;31799:131;:::i;:::-;31791:139;;31518:419;;;:::o;31943:223::-;32083:34;32079:1;32071:6;32067:14;32060:58;32152:6;32147:2;32139:6;32135:15;32128:31;31943:223;:::o;32172:366::-;32314:3;32335:67;32399:2;32394:3;32335:67;:::i;:::-;32328:74;;32411:93;32500:3;32411:93;:::i;:::-;32529:2;32524:3;32520:12;32513:19;;32172:366;;;:::o;32544:419::-;32710:4;32748:2;32737:9;32733:18;32725:26;;32797:9;32791:4;32787:20;32783:1;32772:9;32768:17;32761:47;32825:131;32951:4;32825:131;:::i;:::-;32817:139;;32544:419;;;:::o;32969:170::-;33109:22;33105:1;33097:6;33093:14;33086:46;32969:170;:::o;33145:366::-;33287:3;33308:67;33372:2;33367:3;33308:67;:::i;:::-;33301:74;;33384:93;33473:3;33384:93;:::i;:::-;33502:2;33497:3;33493:12;33486:19;;33145:366;;;:::o;33517:419::-;33683:4;33721:2;33710:9;33706:18;33698:26;;33770:9;33764:4;33760:20;33756:1;33745:9;33741:17;33734:47;33798:131;33924:4;33798:131;:::i;:::-;33790:139;;33517:419;;;:::o;33942:410::-;33982:7;34005:20;34023:1;34005:20;:::i;:::-;34000:25;;34039:20;34057:1;34039:20;:::i;:::-;34034:25;;34094:1;34091;34087:9;34116:30;34134:11;34116:30;:::i;:::-;34105:41;;34295:1;34286:7;34282:15;34279:1;34276:22;34256:1;34249:9;34229:83;34206:139;;34325:18;;:::i;:::-;34206:139;33990:362;33942:410;;;;:::o;34358:233::-;34498:34;34494:1;34486:6;34482:14;34475:58;34567:16;34562:2;34554:6;34550:15;34543:41;34358:233;:::o;34597:366::-;34739:3;34760:67;34824:2;34819:3;34760:67;:::i;:::-;34753:74;;34836:93;34925:3;34836:93;:::i;:::-;34954:2;34949:3;34945:12;34938:19;;34597:366;;;:::o;34969:419::-;35135:4;35173:2;35162:9;35158:18;35150:26;;35222:9;35216:4;35212:20;35208:1;35197:9;35193:17;35186:47;35250:131;35376:4;35250:131;:::i;:::-;35242:139;;34969:419;;;:::o;35394:231::-;35534:34;35530:1;35522:6;35518:14;35511:58;35603:14;35598:2;35590:6;35586:15;35579:39;35394:231;:::o;35631:366::-;35773:3;35794:67;35858:2;35853:3;35794:67;:::i;:::-;35787:74;;35870:93;35959:3;35870:93;:::i;:::-;35988:2;35983:3;35979:12;35972:19;;35631:366;;;:::o;36003:419::-;36169:4;36207:2;36196:9;36192:18;36184:26;;36256:9;36250:4;36246:20;36242:1;36231:9;36227:17;36220:47;36284:131;36410:4;36284:131;:::i;:::-;36276:139;;36003:419;;;:::o;36428:220::-;36568:34;36564:1;36556:6;36552:14;36545:58;36637:3;36632:2;36624:6;36620:15;36613:28;36428:220;:::o;36654:366::-;36796:3;36817:67;36881:2;36876:3;36817:67;:::i;:::-;36810:74;;36893:93;36982:3;36893:93;:::i;:::-;37011:2;37006:3;37002:12;36995:19;;36654:366;;;:::o;37026:419::-;37192:4;37230:2;37219:9;37215:18;37207:26;;37279:9;37273:4;37269:20;37265:1;37254:9;37250:17;37243:47;37307:131;37433:4;37307:131;:::i;:::-;37299:139;;37026:419;;;:::o;37451:166::-;37591:18;37587:1;37579:6;37575:14;37568:42;37451:166;:::o;37623:366::-;37765:3;37786:67;37850:2;37845:3;37786:67;:::i;:::-;37779:74;;37862:93;37951:3;37862:93;:::i;:::-;37980:2;37975:3;37971:12;37964:19;;37623:366;;;:::o;37995:419::-;38161:4;38199:2;38188:9;38184:18;38176:26;;38248:9;38242:4;38238:20;38234:1;38223:9;38219:17;38212:47;38276:131;38402:4;38276:131;:::i;:::-;38268:139;;37995:419;;;:::o;38420:194::-;38460:4;38480:20;38498:1;38480:20;:::i;:::-;38475:25;;38514:20;38532:1;38514:20;:::i;:::-;38509:25;;38558:1;38555;38551:9;38543:17;;38582:1;38576:4;38573:11;38570:37;;;38587:18;;:::i;:::-;38570:37;38420:194;;;;:::o;38620:180::-;38668:77;38665:1;38658:88;38765:4;38762:1;38755:15;38789:4;38786:1;38779:15;38806:442;38955:4;38993:2;38982:9;38978:18;38970:26;;39006:71;39074:1;39063:9;39059:17;39050:6;39006:71;:::i;:::-;39087:72;39155:2;39144:9;39140:18;39131:6;39087:72;:::i;:::-;39169;39237:2;39226:9;39222:18;39213:6;39169:72;:::i;:::-;38806:442;;;;;;:::o;39254:171::-;39293:3;39316:24;39334:5;39316:24;:::i;:::-;39307:33;;39362:4;39355:5;39352:15;39349:41;;39370:18;;:::i;:::-;39349:41;39417:1;39410:5;39406:13;39399:20;;39254:171;;;:::o;39431:174::-;39571:26;39567:1;39559:6;39555:14;39548:50;39431:174;:::o;39611:366::-;39753:3;39774:67;39838:2;39833:3;39774:67;:::i;:::-;39767:74;;39850:93;39939:3;39850:93;:::i;:::-;39968:2;39963:3;39959:12;39952:19;;39611:366;;;:::o;39983:419::-;40149:4;40187:2;40176:9;40172:18;40164:26;;40236:9;40230:4;40226:20;40222:1;40211:9;40207:17;40200:47;40264:131;40390:4;40264:131;:::i;:::-;40256:139;;39983:419;;;:::o;40408:228::-;40548:34;40544:1;40536:6;40532:14;40525:58;40617:11;40612:2;40604:6;40600:15;40593:36;40408:228;:::o;40642:366::-;40784:3;40805:67;40869:2;40864:3;40805:67;:::i;:::-;40798:74;;40881:93;40970:3;40881:93;:::i;:::-;40999:2;40994:3;40990:12;40983:19;;40642:366;;;:::o;41014:419::-;41180:4;41218:2;41207:9;41203:18;41195:26;;41267:9;41261:4;41257:20;41253:1;41242:9;41238:17;41231:47;41295:131;41421:4;41295:131;:::i;:::-;41287:139;;41014:419;;;:::o;41439:332::-;41560:4;41598:2;41587:9;41583:18;41575:26;;41611:71;41679:1;41668:9;41664:17;41655:6;41611:71;:::i;:::-;41692:72;41760:2;41749:9;41745:18;41736:6;41692:72;:::i;:::-;41439:332;;;;;:::o;41777:137::-;41831:5;41862:6;41856:13;41847:22;;41878:30;41902:5;41878:30;:::i;:::-;41777:137;;;;:::o;41920:345::-;41987:6;42036:2;42024:9;42015:7;42011:23;42007:32;42004:119;;;42042:79;;:::i;:::-;42004:119;42162:1;42187:61;42240:7;42231:6;42220:9;42216:22;42187:61;:::i;:::-;42177:71;;42133:125;41920:345;;;;:::o;42271:175::-;42411:27;42407:1;42399:6;42395:14;42388:51;42271:175;:::o;42452:366::-;42594:3;42615:67;42679:2;42674:3;42615:67;:::i;:::-;42608:74;;42691:93;42780:3;42691:93;:::i;:::-;42809:2;42804:3;42800:12;42793:19;;42452:366;;;:::o;42824:419::-;42990:4;43028:2;43017:9;43013:18;43005:26;;43077:9;43071:4;43067:20;43063:1;43052:9;43048:17;43041:47;43105:131;43231:4;43105:131;:::i;:::-;43097:139;;42824:419;;;:::o;43249:143::-;43306:5;43337:6;43331:13;43322:22;;43353:33;43380:5;43353:33;:::i;:::-;43249:143;;;;:::o;43398:351::-;43468:6;43517:2;43505:9;43496:7;43492:23;43488:32;43485:119;;;43523:79;;:::i;:::-;43485:119;43643:1;43668:64;43724:7;43715:6;43704:9;43700:22;43668:64;:::i;:::-;43658:74;;43614:128;43398:351;;;;:::o;43755:166::-;43895:18;43891:1;43883:6;43879:14;43872:42;43755:166;:::o;43927:366::-;44069:3;44090:67;44154:2;44149:3;44090:67;:::i;:::-;44083:74;;44166:93;44255:3;44166:93;:::i;:::-;44284:2;44279:3;44275:12;44268:19;;43927:366;;;:::o;44299:419::-;44465:4;44503:2;44492:9;44488:18;44480:26;;44552:9;44546:4;44542:20;44538:1;44527:9;44523:17;44516:47;44580:131;44706:4;44580:131;:::i;:::-;44572:139;;44299:419;;;:::o;44724:166::-;44864:18;44860:1;44852:6;44848:14;44841:42;44724:166;:::o;44896:366::-;45038:3;45059:67;45123:2;45118:3;45059:67;:::i;:::-;45052:74;;45135:93;45224:3;45135:93;:::i;:::-;45253:2;45248:3;45244:12;45237:19;;44896:366;;;:::o;45268:419::-;45434:4;45472:2;45461:9;45457:18;45449:26;;45521:9;45515:4;45511:20;45507:1;45496:9;45492:17;45485:47;45549:131;45675:4;45549:131;:::i;:::-;45541:139;;45268:419;;;:::o;45693:148::-;45795:11;45832:3;45817:18;;45693:148;;;;:::o;45871:874::-;45974:3;46011:5;46005:12;46040:36;46066:9;46040:36;:::i;:::-;46092:89;46174:6;46169:3;46092:89;:::i;:::-;46085:96;;46212:1;46201:9;46197:17;46228:1;46223:166;;;;46403:1;46398:341;;;;46190:549;;46223:166;46307:4;46303:9;46292;46288:25;46283:3;46276:38;46369:6;46362:14;46355:22;46347:6;46343:35;46338:3;46334:45;46327:52;;46223:166;;46398:341;46465:38;46497:5;46465:38;:::i;:::-;46525:1;46539:154;46553:6;46550:1;46547:13;46539:154;;;46627:7;46621:14;46617:1;46612:3;46608:11;46601:35;46677:1;46668:7;46664:15;46653:26;;46575:4;46572:1;46568:12;46563:17;;46539:154;;;46722:6;46717:3;46713:16;46706:23;;46405:334;;46190:549;;45978:767;;45871:874;;;;:::o;46751:390::-;46857:3;46885:39;46918:5;46885:39;:::i;:::-;46940:89;47022:6;47017:3;46940:89;:::i;:::-;46933:96;;47038:65;47096:6;47091:3;47084:4;47077:5;47073:16;47038:65;:::i;:::-;47128:6;47123:3;47119:16;47112:23;;46861:280;46751:390;;;;:::o;47147:155::-;47287:7;47283:1;47275:6;47271:14;47264:31;47147:155;:::o;47308:400::-;47468:3;47489:84;47571:1;47566:3;47489:84;:::i;:::-;47482:91;;47582:93;47671:3;47582:93;:::i;:::-;47700:1;47695:3;47691:11;47684:18;;47308:400;;;:::o;47714:695::-;47992:3;48014:92;48102:3;48093:6;48014:92;:::i;:::-;48007:99;;48123:95;48214:3;48205:6;48123:95;:::i;:::-;48116:102;;48235:148;48379:3;48235:148;:::i;:::-;48228:155;;48400:3;48393:10;;47714:695;;;;;:::o;48415:225::-;48555:34;48551:1;48543:6;48539:14;48532:58;48624:8;48619:2;48611:6;48607:15;48600:33;48415:225;:::o;48646:366::-;48788:3;48809:67;48873:2;48868:3;48809:67;:::i;:::-;48802:74;;48885:93;48974:3;48885:93;:::i;:::-;49003:2;48998:3;48994:12;48987:19;;48646:366;;;:::o;49018:419::-;49184:4;49222:2;49211:9;49207:18;49199:26;;49271:9;49265:4;49261:20;49257:1;49246:9;49242:17;49235:47;49299:131;49425:4;49299:131;:::i;:::-;49291:139;;49018:419;;;:::o;49443:224::-;49583:34;49579:1;49571:6;49567:14;49560:58;49652:7;49647:2;49639:6;49635:15;49628:32;49443:224;:::o;49673:366::-;49815:3;49836:67;49900:2;49895:3;49836:67;:::i;:::-;49829:74;;49912:93;50001:3;49912:93;:::i;:::-;50030:2;50025:3;50021:12;50014:19;;49673:366;;;:::o;50045:419::-;50211:4;50249:2;50238:9;50234:18;50226:26;;50298:9;50292:4;50288:20;50284:1;50273:9;50269:17;50262:47;50326:131;50452:4;50326:131;:::i;:::-;50318:139;;50045:419;;;:::o;50470:223::-;50610:34;50606:1;50598:6;50594:14;50587:58;50679:6;50674:2;50666:6;50662:15;50655:31;50470:223;:::o;50699:366::-;50841:3;50862:67;50926:2;50921:3;50862:67;:::i;:::-;50855:74;;50938:93;51027:3;50938:93;:::i;:::-;51056:2;51051:3;51047:12;51040:19;;50699:366;;;:::o;51071:419::-;51237:4;51275:2;51264:9;51260:18;51252:26;;51324:9;51318:4;51314:20;51310:1;51299:9;51295:17;51288:47;51352:131;51478:4;51352:131;:::i;:::-;51344:139;;51071:419;;;:::o;51496:182::-;51636:34;51632:1;51624:6;51620:14;51613:58;51496:182;:::o;51684:366::-;51826:3;51847:67;51911:2;51906:3;51847:67;:::i;:::-;51840:74;;51923:93;52012:3;51923:93;:::i;:::-;52041:2;52036:3;52032:12;52025:19;;51684:366;;;:::o;52056:419::-;52222:4;52260:2;52249:9;52245:18;52237:26;;52309:9;52303:4;52299:20;52295:1;52284:9;52280:17;52273:47;52337:131;52463:4;52337:131;:::i;:::-;52329:139;;52056:419;;;:::o;52481:175::-;52621:27;52617:1;52609:6;52605:14;52598:51;52481:175;:::o;52662:366::-;52804:3;52825:67;52889:2;52884:3;52825:67;:::i;:::-;52818:74;;52901:93;52990:3;52901:93;:::i;:::-;53019:2;53014:3;53010:12;53003:19;;52662:366;;;:::o;53034:419::-;53200:4;53238:2;53227:9;53223:18;53215:26;;53287:9;53281:4;53277:20;53273:1;53262:9;53258:17;53251:47;53315:131;53441:4;53315:131;:::i;:::-;53307:139;;53034:419;;;:::o;53459:237::-;53599:34;53595:1;53587:6;53583:14;53576:58;53668:20;53663:2;53655:6;53651:15;53644:45;53459:237;:::o;53702:366::-;53844:3;53865:67;53929:2;53924:3;53865:67;:::i;:::-;53858:74;;53941:93;54030:3;53941:93;:::i;:::-;54059:2;54054:3;54050:12;54043:19;;53702:366;;;:::o;54074:419::-;54240:4;54278:2;54267:9;54263:18;54255:26;;54327:9;54321:4;54317:20;54313:1;54302:9;54298:17;54291:47;54355:131;54481:4;54355:131;:::i;:::-;54347:139;;54074:419;;;:::o;54499:180::-;54547:77;54544:1;54537:88;54644:4;54641:1;54634:15;54668:4;54665:1;54658:15;54685:185;54725:1;54742:20;54760:1;54742:20;:::i;:::-;54737:25;;54776:20;54794:1;54776:20;:::i;:::-;54771:25;;54815:1;54805:35;;54820:18;;:::i;:::-;54805:35;54862:1;54859;54855:9;54850:14;;54685:185;;;;:::o;54876:176::-;54908:1;54925:20;54943:1;54925:20;:::i;:::-;54920:25;;54959:20;54977:1;54959:20;:::i;:::-;54954:25;;54998:1;54988:35;;55003:18;;:::i;:::-;54988:35;55044:1;55041;55037:9;55032:14;;54876:176;;;;:::o;55058:98::-;55109:6;55143:5;55137:12;55127:22;;55058:98;;;:::o;55162:168::-;55245:11;55279:6;55274:3;55267:19;55319:4;55314:3;55310:14;55295:29;;55162:168;;;;:::o;55336:373::-;55422:3;55450:38;55482:5;55450:38;:::i;:::-;55504:70;55567:6;55562:3;55504:70;:::i;:::-;55497:77;;55583:65;55641:6;55636:3;55629:4;55622:5;55618:16;55583:65;:::i;:::-;55673:29;55695:6;55673:29;:::i;:::-;55668:3;55664:39;55657:46;;55426:283;55336:373;;;;:::o;55715:640::-;55910:4;55948:3;55937:9;55933:19;55925:27;;55962:71;56030:1;56019:9;56015:17;56006:6;55962:71;:::i;:::-;56043:72;56111:2;56100:9;56096:18;56087:6;56043:72;:::i;:::-;56125;56193:2;56182:9;56178:18;56169:6;56125:72;:::i;:::-;56244:9;56238:4;56234:20;56229:2;56218:9;56214:18;56207:48;56272:76;56343:4;56334:6;56272:76;:::i;:::-;56264:84;;55715:640;;;;;;;:::o;56361:141::-;56417:5;56448:6;56442:13;56433:22;;56464:32;56490:5;56464:32;:::i;:::-;56361:141;;;;:::o;56508:349::-;56577:6;56626:2;56614:9;56605:7;56601:23;56597:32;56594:119;;;56632:79;;:::i;:::-;56594:119;56752:1;56777:63;56832:7;56823:6;56812:9;56808:22;56777:63;:::i;:::-;56767:73;;56723:127;56508:349;;;;:::o;56863:182::-;57003:34;56999:1;56991:6;56987:14;56980:58;56863:182;:::o;57051:366::-;57193:3;57214:67;57278:2;57273:3;57214:67;:::i;:::-;57207:74;;57290:93;57379:3;57290:93;:::i;:::-;57408:2;57403:3;57399:12;57392:19;;57051:366;;;:::o;57423:419::-;57589:4;57627:2;57616:9;57612:18;57604:26;;57676:9;57670:4;57666:20;57662:1;57651:9;57647:17;57640:47;57704:131;57830:4;57704:131;:::i;:::-;57696:139;;57423:419;;;:::o;57848:178::-;57988:30;57984:1;57976:6;57972:14;57965:54;57848:178;:::o;58032:366::-;58174:3;58195:67;58259:2;58254:3;58195:67;:::i;:::-;58188:74;;58271:93;58360:3;58271:93;:::i;:::-;58389:2;58384:3;58380:12;58373:19;;58032:366;;;:::o;58404:419::-;58570:4;58608:2;58597:9;58593:18;58585:26;;58657:9;58651:4;58647:20;58643:1;58632:9;58628:17;58621:47;58685:131;58811:4;58685:131;:::i;:::-;58677:139;;58404:419;;;:::o

Swarm Source

ipfs://90793207ebc5be64befbf80ed9bad544802e0be08bdbab0a409572fdef3abff9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

WCAPES Mundial of 3000 apes. The first 2000 assigned and locked as airdrop of past collection! Mint now on our site the last 1000 apes at 0.25 ETH.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.