ETH Price: $3,488.56 (+3.49%)
Gas: 4 Gwei

Token

AzukiGoblin (AZKGOBLIN)
 

Overview

Max Total Supply

1,670 AZKGOBLIN

Holders

538

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 AZKGOBLIN
0x3af474f46a9dd225d2983acffdb11aba1b5ca872
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
AzukiGoblin

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-27
*/

// SPDX-License-Identifier: MIT

/*
                                                  
                    )                    )  (             
    )        (   ( /( (    (  (       ( /(  )\ (          
 ( /(  (    ))\  )\()))\   )\))(  (   )\())((_))\   (     
 )(_)) )\  /((_)((_)\((_) ((_))\  )\ ((_)\  _ ((_)  )\ )  
((_)_ ((_)(_))( | |(_)(_)  (()(_)((_)| |(_)| | (_) _(_/(  
/ _` ||_ /| || || / / | | / _` |/ _ \| '_ \| | | || ' \)) 
\__,_|/__| \_,_||_\_\ |_| \__, |\___/|_.__/|_| |_||_||_|  
                          |___/                           

*/

// File 1: Address.sol

// OpenZeppelin Contracts v4.4.1 (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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// FILE 2: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File 3: Strings.sol

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


// File: @openzeppelin/contracts/utils/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 4: 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}





// File 5: 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 6: IERC721.sol

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
      * @dev Safely transfers `tokenId` token from `from` to `to`.
      *
      * Requirements:
      *
      * - `from` cannot be the zero address.
      * - `to` cannot be the zero address.
      * - `tokenId` token must exist and be owned by `from`.
      * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
      * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
      *
      * Emits a {Transfer} event.
      */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}



// File 7: 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 returns (string memory);
}




// File 8: 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 9: ERC721.sol

// OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

    /**
     * @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 10: IERC721Enumerable.sol

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

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






// File 11: 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 12: IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}



// File 13: ERC721A.sol

pragma solidity ^0.8.0;


contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

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

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

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

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

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

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

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

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

// FILE 14: azukigoblin.sol

pragma solidity ^0.8.0;

contract AzukiGoblin is ERC721A, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string private hiddenMetadataUri;

    constructor() ERC721A("AzukiGoblin", "AZKGOBLIN") {
        setHiddenMetadataUri("ipfs://__CID__/hidden.json");
    }

    uint256 public maxSupply = 2999;
    uint256 private mintCount = 0;
    uint256 public maxMintPerTx = 2;
    uint256 public maxMintPerWallet = 2;   
    uint256 public price = 0.003 ether;
     
  bool public paused = true;
  bool public revealed = true;
  bool public dynamicCost = true;

  mapping (address => uint256) public addressMintedBalance;
  event Minted(uint256 totalMinted);
     
    function totalSupply() public view override returns (uint256) {
        return mintCount;
    }

    function changePrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function needToUpdateCost(uint256 _supply) internal view returns (uint256 _cost){
        if(_supply < 999) {
            return 0 ether;
        }
        if(_supply <= maxSupply) {
            return 0.003 ether;
        }
    }

    // dynamic mint
    function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0, "Minimum 1 NFT has to be minted per transaction");
    require(supply + _mintAmount <= maxSupply, "Exceeds maximum supply");

    if (msg.sender != owner()) {
        require(_mintAmount <= maxMintPerTx, "max per tx exceeded!");

        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require (ownerMintedCount + _mintAmount <= maxMintPerWallet, "max per address exceeded!");

        if(dynamicCost == true) {
            require(msg.value >= needToUpdateCost(supply) * _mintAmount, "Not enough funds");
        }

        if(dynamicCost == false) {
            require(msg.value >= price * _mintAmount, "Not enough funds");
        }
    }
 
    mintCount += _mintAmount;
    addressMintedBalance[msg.sender]+= _mintAmount;      
    emit Minted(_mintAmount);
    _safeMint(msg.sender, _mintAmount);
  }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
        address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
        currentTokenId++;
        }
        return ownedTokenIds;
    }
  
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    if (revealed == false) {
      return hiddenMetadataUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }  

  function setMaxMintPerTx(uint256 _maxMintPerTx) public onlyOwner {
    maxMintPerTx = _maxMintPerTx;
  }

  function setMaxMintPerWallet(uint256 _maxMintPerWallet) public onlyOwner {
    maxMintPerWallet = _maxMintPerWallet;
  }  

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }  

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }  

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setdynamicCost(bool _state) public onlyOwner {
    dynamicCost = _state;
  }

  function setmaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"Minted","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":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dynamicCost","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setdynamicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000373565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000373565b50610bb7600b556000600c556002600d556002600e55660aa87bee538000600f556001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506001601060026101000a81548160ff021916908315150217905550348015620000f857600080fd5b506040518060400160405280600b81526020017f417a756b69476f626c696e0000000000000000000000000000000000000000008152506040518060400160405280600981526020017f415a4b474f424c494e000000000000000000000000000000000000000000000081525081600190805190602001906200017d92919062000373565b5080600290805190602001906200019692919062000373565b5050506000620001ab6200029660201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002906040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200029e60201b60201c565b6200050b565b600033905090565b620002ae6200029660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d46200034960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000324906200044a565b60405180910390fd5b80600a90805190602001906200034592919062000373565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000381906200047d565b90600052602060002090601f016020900481019282620003a55760008555620003f1565b82601f10620003c057805160ff1916838001178555620003f1565b82800160010185558215620003f1579182015b82811115620003f0578251825591602001919060010190620003d3565b5b50905062000400919062000404565b5090565b5b808211156200041f57600081600090555060010162000405565b5090565b6000620004326020836200046c565b91506200043f82620004e2565b602082019050919050565b60006020820190508181036000830152620004658162000423565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049657607f821691505b60208210811415620004ad57620004ac620004b3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614f19806200051b6000396000f3fe6080604052600436106102465760003560e01c8063616cdb1e11610139578063a2b40d19116100b6578063c87b56dd1161007a578063c87b56dd14610869578063d5abeb01146108a6578063de7fcb1d146108d1578063e0a80853146108fc578063e985e9c514610925578063f2fde38b1461096257610246565b8063a2b40d1914610798578063afdf6134146107c1578063b228d925146107ea578063b88d4fde14610815578063be745f771461083e57610246565b80638da5cb5b116100fd5780638da5cb5b146106d257806395d89b41146106fd578063a035b1fe14610728578063a0712d6814610753578063a22cb4651461076f57610246565b8063616cdb1e146105ef5780636352211e1461061857806370a0823114610655578063715018a6146106925780637ec4a659146106a957610246565b806323b872dd116101c75780634f6ccce71161018b5780634f6ccce7146105085780634fdd43cb14610545578063518302271461056e5780635503a0e8146105995780635c975abb146105c457610246565b806323b872dd146104255780632f745c591461044e5780633ccfd60b1461048b57806342842e0e146104a2578063438b6300146104cb57610246565b806316ba10e01161020e57806316ba10e01461034257806316c38b3c1461036b57806318160ddd1461039457806318cae269146103bf578063228025e8146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630c73542c14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613817565b61098b565b60405161027f9190613f3b565b60405180910390f35b34801561029457600080fd5b5061029d610ad5565b6040516102aa9190613f56565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906138ba565b610b67565b6040516102e79190613eb2565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906137aa565b610bec565b005b34801561032557600080fd5b50610340600480360381019061033b91906137ea565b610d05565b005b34801561034e57600080fd5b5061036960048036038101906103649190613871565b610d9e565b005b34801561037757600080fd5b50610392600480360381019061038d91906137ea565b610e34565b005b3480156103a057600080fd5b506103a9610ecd565b6040516103b691906142b8565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190613627565b610ed7565b6040516103f391906142b8565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e91906138ba565b610eef565b005b34801561043157600080fd5b5061044c60048036038101906104479190613694565b610f75565b005b34801561045a57600080fd5b50610475600480360381019061047091906137aa565b610f85565b60405161048291906142b8565b60405180910390f35b34801561049757600080fd5b506104a0611177565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613694565b6112a2565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190613627565b6112c2565b6040516104ff9190613f19565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906138ba565b6113cd565b60405161053c91906142b8565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613871565b611420565b005b34801561057a57600080fd5b506105836114b6565b6040516105909190613f3b565b60405180910390f35b3480156105a557600080fd5b506105ae6114c9565b6040516105bb9190613f56565b60405180910390f35b3480156105d057600080fd5b506105d9611557565b6040516105e69190613f3b565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906138ba565b61156a565b005b34801561062457600080fd5b5061063f600480360381019061063a91906138ba565b6115f0565b60405161064c9190613eb2565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613627565b611606565b60405161068991906142b8565b60405180910390f35b34801561069e57600080fd5b506106a76116ef565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190613871565b61182c565b005b3480156106de57600080fd5b506106e76118c2565b6040516106f49190613eb2565b60405180910390f35b34801561070957600080fd5b506107126118ec565b60405161071f9190613f56565b60405180910390f35b34801561073457600080fd5b5061073d61197e565b60405161074a91906142b8565b60405180910390f35b61076d600480360381019061076891906138ba565b611984565b005b34801561077b57600080fd5b506107966004803603810190610791919061376a565b611d1c565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906138ba565b611e9d565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906138ba565b611f23565b005b3480156107f657600080fd5b506107ff611fa9565b60405161080c91906142b8565b60405180910390f35b34801561082157600080fd5b5061083c600480360381019061083791906136e7565b611faf565b005b34801561084a57600080fd5b5061085361200b565b6040516108609190613f3b565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b91906138ba565b61201e565b60405161089d9190613f56565b60405180910390f35b3480156108b257600080fd5b506108bb612177565b6040516108c891906142b8565b60405180910390f35b3480156108dd57600080fd5b506108e661217d565b6040516108f391906142b8565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e91906137ea565b612183565b005b34801561093157600080fd5b5061094c60048036038101906109479190613654565b61221c565b6040516109599190613f3b565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190613627565b6122b0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ace5750610acd8261245c565b5b9050919050565b606060018054610ae4906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b10906145c1565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b5050505050905090565b6000610b72826124c6565b610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890614298565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf7826115f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906141b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c876124d3565b73ffffffffffffffffffffffffffffffffffffffff161480610cb65750610cb581610cb06124d3565b61221c565b5b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90614098565b60405180910390fd5b610d008383836124db565b505050565b610d0d6124d3565b73ffffffffffffffffffffffffffffffffffffffff16610d2b6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906140f8565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610da66124d3565b73ffffffffffffffffffffffffffffffffffffffff16610dc46118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e11906140f8565b60405180910390fd5b8060099080519060200190610e30929190613401565b5050565b610e3c6124d3565b73ffffffffffffffffffffffffffffffffffffffff16610e5a6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906140f8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600c54905090565b60116020528060005260406000206000915090505481565b610ef76124d3565b73ffffffffffffffffffffffffffffffffffffffff16610f156118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906140f8565b60405180910390fd5b80600b8190555050565b610f8083838361258d565b505050565b6000610f9083611606565b8210610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613f78565b60405180910390fd5b6000610fdb610ecd565b905060008060005b83811015611135576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110d557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611127578684141561111e578195505050505050611171565b83806001019450505b508080600101915050610fe3565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614258565b60405180910390fd5b92915050565b61117f6124d3565b73ffffffffffffffffffffffffffffffffffffffff1661119d6118c2565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906140f8565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161121990613e9d565b60006040518083038185875af1925050503d8060008114611256576040519150601f19603f3d011682016040523d82523d6000602084013e61125b565b606091505b505090508061129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906141d8565b60405180910390fd5b50565b6112bd83838360405180602001604052806000815250611faf565b505050565b606060006112cf83611606565b905060008167ffffffffffffffff8111156112ed576112ec61475a565b5b60405190808252806020026020018201604052801561131b5781602001602082028036833780820191505090505b50905060006001905060005b83811080156113385750600b548211155b156113c1576000611348836115f0565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113ad57828483815181106113925761139161472b565b5b60200260200101818152505081806113a990614624565b9250505b82806113b890614624565b93505050611327565b82945050505050919050565b60006113d7610ecd565b8210611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90614038565b60405180910390fd5b819050919050565b6114286124d3565b73ffffffffffffffffffffffffffffffffffffffff166114466118c2565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611493906140f8565b60405180910390fd5b80600a90805190602001906114b2929190613401565b5050565b601060019054906101000a900460ff1681565b600980546114d6906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611502906145c1565b801561154f5780601f106115245761010080835404028352916020019161154f565b820191906000526020600020905b81548152906001019060200180831161153257829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6115726124d3565b73ffffffffffffffffffffffffffffffffffffffff166115906118c2565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906140f8565b60405180910390fd5b80600d8190555050565b60006115fb82612acd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e906140b8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116f76124d3565b73ffffffffffffffffffffffffffffffffffffffff166117156118c2565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611762906140f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6118346124d3565b73ffffffffffffffffffffffffffffffffffffffff166118526118c2565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f906140f8565b60405180910390fd5b80600890805190602001906118be929190613401565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546118fb906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611927906145c1565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b5050505050905090565b600f5481565b600061198e610ecd565b9050601060009054906101000a900460ff16156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614118565b60405180910390fd5b60008211611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613f98565b60405180910390fd5b600b548282611a3291906143f6565b1115611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90614198565b60405180910390fd5b611a7b6118c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c6857600d54821115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990613ff8565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548382611b4591906143f6565b1115611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90614078565b60405180910390fd5b60011515601060029054906101000a900460ff1615151415611bf95782611bac83612c67565b611bb6919061447d565b341015611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90614018565b60405180910390fd5b5b60001515601060029054906101000a900460ff1615151415611c665782600f54611c23919061447d565b341015611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90614018565b60405180910390fd5b5b505b81600c6000828254611c7a91906143f6565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd091906143f6565b925050819055507f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611d0691906142b8565b60405180910390a1611d183383612c9a565b5050565b611d246124d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614158565b60405180910390fd5b8060066000611d9f6124d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e4c6124d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e919190613f3b565b60405180910390a35050565b611ea56124d3565b73ffffffffffffffffffffffffffffffffffffffff16611ec36118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f10906140f8565b60405180910390fd5b80600f8190555050565b611f2b6124d3565b73ffffffffffffffffffffffffffffffffffffffff16611f496118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f96906140f8565b60405180910390fd5b80600e8190555050565b600e5481565b611fba84848461258d565b611fc684848484612cb8565b612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc906141f8565b60405180910390fd5b50505050565b601060029054906101000a900460ff1681565b6060612029826124c6565b612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614138565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561211657600a8054612091906145c1565b80601f01602080910402602001604051908101604052809291908181526020018280546120bd906145c1565b801561210a5780601f106120df5761010080835404028352916020019161210a565b820191906000526020600020905b8154815290600101906020018083116120ed57829003601f168201915b50505050509050612172565b6000612120612e4f565b90506000815111612140576040518060200160405280600081525061216e565b8061214a84612ee1565b600960405160200161215e93929190613e6c565b6040516020818303038152906040525b9150505b919050565b600b5481565b600d5481565b61218b6124d3565b73ffffffffffffffffffffffffffffffffffffffff166121a96118c2565b73ffffffffffffffffffffffffffffffffffffffff16146121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f6906140f8565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122b86124d3565b73ffffffffffffffffffffffffffffffffffffffff166122d66118c2565b73ffffffffffffffffffffffffffffffffffffffff161461232c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612323906140f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239390613fb8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061259882612acd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125bf6124d3565b73ffffffffffffffffffffffffffffffffffffffff16148061261b57506125e46124d3565b73ffffffffffffffffffffffffffffffffffffffff1661260384610b67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612637575061263682600001516126316124d3565b61221c565b5b905080612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614178565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e2906140d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561275b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275290614058565b60405180910390fd5b6127688585856001613042565b61277860008484600001516124db565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a5d576129bc816124c6565b15612a5c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ac68585856001613048565b5050505050565b612ad5613487565b612ade826124c6565b612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1490613fd8565b60405180910390fd5b60008290505b60008110612c26576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c17578092505050612c62565b50808060019003915050612b23565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5990614278565b60405180910390fd5b919050565b60006103e7821015612c7c5760009050612c95565b600b548211612c9457660aa87bee5380009050612c95565b5b919050565b612cb482826040518060200160405280600081525061304e565b5050565b6000612cd98473ffffffffffffffffffffffffffffffffffffffff16613060565b15612e42578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d026124d3565b8786866040518563ffffffff1660e01b8152600401612d249493929190613ecd565b602060405180830381600087803b158015612d3e57600080fd5b505af1925050508015612d6f57506040513d601f19601f82011682018060405250810190612d6c9190613844565b60015b612df2573d8060008114612d9f576040519150601f19603f3d011682016040523d82523d6000602084013e612da4565b606091505b50600081511415612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de1906141f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e47565b600190505b949350505050565b606060088054612e5e906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8a906145c1565b8015612ed75780601f10612eac57610100808354040283529160200191612ed7565b820191906000526020600020905b815481529060010190602001808311612eba57829003601f168201915b5050505050905090565b60606000821415612f29576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061303d565b600082905060005b60008214612f5b578080612f4490614624565b915050600a82612f54919061444c565b9150612f31565b60008167ffffffffffffffff811115612f7757612f7661475a565b5b6040519080825280601f01601f191660200182016040528015612fa95781602001600182028036833780820191505090505b5090505b6000851461303657600182612fc291906144d7565b9150600a85612fd1919061466d565b6030612fdd91906143f6565b60f81b818381518110612ff357612ff261472b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561302f919061444c565b9450612fad565b8093505050505b919050565b50505050565b50505050565b61305b8383836001613083565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f090614218565b60405180910390fd5b600084141561313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313490614238565b60405180910390fd5b61314a6000868387613042565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133e457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133cf5761338f6000888488612cb8565b6133ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c5906141f8565b60405180910390fd5b5b81806001019250508080600101915050613318565b5080600081905550506133fa6000868387613048565b5050505050565b82805461340d906145c1565b90600052602060002090601f01602090048101928261342f5760008555613476565b82601f1061344857805160ff1916838001178555613476565b82800160010185558215613476579182015b8281111561347557825182559160200191906001019061345a565b5b50905061348391906134c1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134da5760008160009055506001016134c2565b5090565b60006134f16134ec846142f8565b6142d3565b90508281526020810184848401111561350d5761350c61478e565b5b61351884828561457f565b509392505050565b600061353361352e84614329565b6142d3565b90508281526020810184848401111561354f5761354e61478e565b5b61355a84828561457f565b509392505050565b60008135905061357181614e87565b92915050565b60008135905061358681614e9e565b92915050565b60008135905061359b81614eb5565b92915050565b6000815190506135b081614eb5565b92915050565b600082601f8301126135cb576135ca614789565b5b81356135db8482602086016134de565b91505092915050565b600082601f8301126135f9576135f8614789565b5b8135613609848260208601613520565b91505092915050565b60008135905061362181614ecc565b92915050565b60006020828403121561363d5761363c614798565b5b600061364b84828501613562565b91505092915050565b6000806040838503121561366b5761366a614798565b5b600061367985828601613562565b925050602061368a85828601613562565b9150509250929050565b6000806000606084860312156136ad576136ac614798565b5b60006136bb86828701613562565b93505060206136cc86828701613562565b92505060406136dd86828701613612565b9150509250925092565b6000806000806080858703121561370157613700614798565b5b600061370f87828801613562565b945050602061372087828801613562565b935050604061373187828801613612565b925050606085013567ffffffffffffffff81111561375257613751614793565b5b61375e878288016135b6565b91505092959194509250565b6000806040838503121561378157613780614798565b5b600061378f85828601613562565b92505060206137a085828601613577565b9150509250929050565b600080604083850312156137c1576137c0614798565b5b60006137cf85828601613562565b92505060206137e085828601613612565b9150509250929050565b600060208284031215613800576137ff614798565b5b600061380e84828501613577565b91505092915050565b60006020828403121561382d5761382c614798565b5b600061383b8482850161358c565b91505092915050565b60006020828403121561385a57613859614798565b5b6000613868848285016135a1565b91505092915050565b60006020828403121561388757613886614798565b5b600082013567ffffffffffffffff8111156138a5576138a4614793565b5b6138b1848285016135e4565b91505092915050565b6000602082840312156138d0576138cf614798565b5b60006138de84828501613612565b91505092915050565b60006138f38383613e4e565b60208301905092915050565b6139088161450b565b82525050565b60006139198261437f565b61392381856143ad565b935061392e8361435a565b8060005b8381101561395f57815161394688826138e7565b9750613951836143a0565b925050600181019050613932565b5085935050505092915050565b6139758161451d565b82525050565b60006139868261438a565b61399081856143be565b93506139a081856020860161458e565b6139a98161479d565b840191505092915050565b60006139bf82614395565b6139c981856143da565b93506139d981856020860161458e565b6139e28161479d565b840191505092915050565b60006139f882614395565b613a0281856143eb565b9350613a1281856020860161458e565b80840191505092915050565b60008154613a2b816145c1565b613a3581866143eb565b94506001821660008114613a505760018114613a6157613a94565b60ff19831686528186019350613a94565b613a6a8561436a565b60005b83811015613a8c57815481890152600182019150602081019050613a6d565b838801955050505b50505092915050565b6000613aaa6022836143da565b9150613ab5826147ae565b604082019050919050565b6000613acd602e836143da565b9150613ad8826147fd565b604082019050919050565b6000613af06026836143da565b9150613afb8261484c565b604082019050919050565b6000613b13602a836143da565b9150613b1e8261489b565b604082019050919050565b6000613b366014836143da565b9150613b41826148ea565b602082019050919050565b6000613b596010836143da565b9150613b6482614913565b602082019050919050565b6000613b7c6023836143da565b9150613b878261493c565b604082019050919050565b6000613b9f6025836143da565b9150613baa8261498b565b604082019050919050565b6000613bc26019836143da565b9150613bcd826149da565b602082019050919050565b6000613be56039836143da565b9150613bf082614a03565b604082019050919050565b6000613c08602b836143da565b9150613c1382614a52565b604082019050919050565b6000613c2b6026836143da565b9150613c3682614aa1565b604082019050919050565b6000613c4e6020836143da565b9150613c5982614af0565b602082019050919050565b6000613c716017836143da565b9150613c7c82614b19565b602082019050919050565b6000613c94602f836143da565b9150613c9f82614b42565b604082019050919050565b6000613cb7601a836143da565b9150613cc282614b91565b602082019050919050565b6000613cda6032836143da565b9150613ce582614bba565b604082019050919050565b6000613cfd6016836143da565b9150613d0882614c09565b602082019050919050565b6000613d206022836143da565b9150613d2b82614c32565b604082019050919050565b6000613d436000836143cf565b9150613d4e82614c81565b600082019050919050565b6000613d666010836143da565b9150613d7182614c84565b602082019050919050565b6000613d896033836143da565b9150613d9482614cad565b604082019050919050565b6000613dac6021836143da565b9150613db782614cfc565b604082019050919050565b6000613dcf6028836143da565b9150613dda82614d4b565b604082019050919050565b6000613df2602e836143da565b9150613dfd82614d9a565b604082019050919050565b6000613e15602f836143da565b9150613e2082614de9565b604082019050919050565b6000613e38602d836143da565b9150613e4382614e38565b604082019050919050565b613e5781614575565b82525050565b613e6681614575565b82525050565b6000613e7882866139ed565b9150613e8482856139ed565b9150613e908284613a1e565b9150819050949350505050565b6000613ea882613d36565b9150819050919050565b6000602082019050613ec760008301846138ff565b92915050565b6000608082019050613ee260008301876138ff565b613eef60208301866138ff565b613efc6040830185613e5d565b8181036060830152613f0e818461397b565b905095945050505050565b60006020820190508181036000830152613f33818461390e565b905092915050565b6000602082019050613f50600083018461396c565b92915050565b60006020820190508181036000830152613f7081846139b4565b905092915050565b60006020820190508181036000830152613f9181613a9d565b9050919050565b60006020820190508181036000830152613fb181613ac0565b9050919050565b60006020820190508181036000830152613fd181613ae3565b9050919050565b60006020820190508181036000830152613ff181613b06565b9050919050565b6000602082019050818103600083015261401181613b29565b9050919050565b6000602082019050818103600083015261403181613b4c565b9050919050565b6000602082019050818103600083015261405181613b6f565b9050919050565b6000602082019050818103600083015261407181613b92565b9050919050565b6000602082019050818103600083015261409181613bb5565b9050919050565b600060208201905081810360008301526140b181613bd8565b9050919050565b600060208201905081810360008301526140d181613bfb565b9050919050565b600060208201905081810360008301526140f181613c1e565b9050919050565b6000602082019050818103600083015261411181613c41565b9050919050565b6000602082019050818103600083015261413181613c64565b9050919050565b6000602082019050818103600083015261415181613c87565b9050919050565b6000602082019050818103600083015261417181613caa565b9050919050565b6000602082019050818103600083015261419181613ccd565b9050919050565b600060208201905081810360008301526141b181613cf0565b9050919050565b600060208201905081810360008301526141d181613d13565b9050919050565b600060208201905081810360008301526141f181613d59565b9050919050565b6000602082019050818103600083015261421181613d7c565b9050919050565b6000602082019050818103600083015261423181613d9f565b9050919050565b6000602082019050818103600083015261425181613dc2565b9050919050565b6000602082019050818103600083015261427181613de5565b9050919050565b6000602082019050818103600083015261429181613e08565b9050919050565b600060208201905081810360008301526142b181613e2b565b9050919050565b60006020820190506142cd6000830184613e5d565b92915050565b60006142dd6142ee565b90506142e982826145f3565b919050565b6000604051905090565b600067ffffffffffffffff8211156143135761431261475a565b5b61431c8261479d565b9050602081019050919050565b600067ffffffffffffffff8211156143445761434361475a565b5b61434d8261479d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061440182614575565b915061440c83614575565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144415761444061469e565b5b828201905092915050565b600061445782614575565b915061446283614575565b925082614472576144716146cd565b5b828204905092915050565b600061448882614575565b915061449383614575565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144cc576144cb61469e565b5b828202905092915050565b60006144e282614575565b91506144ed83614575565b925082821015614500576144ff61469e565b5b828203905092915050565b600061451682614555565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145ac578082015181840152602081019050614591565b838111156145bb576000848401525b50505050565b600060028204905060018216806145d957607f821691505b602082108114156145ed576145ec6146fc565b5b50919050565b6145fc8261479d565b810181811067ffffffffffffffff8211171561461b5761461a61475a565b5b80604052505050565b600061462f82614575565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146625761466161469e565b5b600182019050919050565b600061467882614575565b915061468383614575565b925082614693576146926146cd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d61782070657220747820657863656564656421000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782070657220616464726573732065786365656465642100000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614e908161450b565b8114614e9b57600080fd5b50565b614ea78161451d565b8114614eb257600080fd5b50565b614ebe81614529565b8114614ec957600080fd5b50565b614ed581614575565b8114614ee057600080fd5b5056fea2646970667358221220740afcbcb7440493e3979275fa13e2aed0c25dfd783d240fb0e013434035567f64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063616cdb1e11610139578063a2b40d19116100b6578063c87b56dd1161007a578063c87b56dd14610869578063d5abeb01146108a6578063de7fcb1d146108d1578063e0a80853146108fc578063e985e9c514610925578063f2fde38b1461096257610246565b8063a2b40d1914610798578063afdf6134146107c1578063b228d925146107ea578063b88d4fde14610815578063be745f771461083e57610246565b80638da5cb5b116100fd5780638da5cb5b146106d257806395d89b41146106fd578063a035b1fe14610728578063a0712d6814610753578063a22cb4651461076f57610246565b8063616cdb1e146105ef5780636352211e1461061857806370a0823114610655578063715018a6146106925780637ec4a659146106a957610246565b806323b872dd116101c75780634f6ccce71161018b5780634f6ccce7146105085780634fdd43cb14610545578063518302271461056e5780635503a0e8146105995780635c975abb146105c457610246565b806323b872dd146104255780632f745c591461044e5780633ccfd60b1461048b57806342842e0e146104a2578063438b6300146104cb57610246565b806316ba10e01161020e57806316ba10e01461034257806316c38b3c1461036b57806318160ddd1461039457806318cae269146103bf578063228025e8146103fc57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630c73542c14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613817565b61098b565b60405161027f9190613f3b565b60405180910390f35b34801561029457600080fd5b5061029d610ad5565b6040516102aa9190613f56565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906138ba565b610b67565b6040516102e79190613eb2565b60405180910390f35b3480156102fc57600080fd5b50610317600480360381019061031291906137aa565b610bec565b005b34801561032557600080fd5b50610340600480360381019061033b91906137ea565b610d05565b005b34801561034e57600080fd5b5061036960048036038101906103649190613871565b610d9e565b005b34801561037757600080fd5b50610392600480360381019061038d91906137ea565b610e34565b005b3480156103a057600080fd5b506103a9610ecd565b6040516103b691906142b8565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e19190613627565b610ed7565b6040516103f391906142b8565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e91906138ba565b610eef565b005b34801561043157600080fd5b5061044c60048036038101906104479190613694565b610f75565b005b34801561045a57600080fd5b50610475600480360381019061047091906137aa565b610f85565b60405161048291906142b8565b60405180910390f35b34801561049757600080fd5b506104a0611177565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190613694565b6112a2565b005b3480156104d757600080fd5b506104f260048036038101906104ed9190613627565b6112c2565b6040516104ff9190613f19565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a91906138ba565b6113cd565b60405161053c91906142b8565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613871565b611420565b005b34801561057a57600080fd5b506105836114b6565b6040516105909190613f3b565b60405180910390f35b3480156105a557600080fd5b506105ae6114c9565b6040516105bb9190613f56565b60405180910390f35b3480156105d057600080fd5b506105d9611557565b6040516105e69190613f3b565b60405180910390f35b3480156105fb57600080fd5b50610616600480360381019061061191906138ba565b61156a565b005b34801561062457600080fd5b5061063f600480360381019061063a91906138ba565b6115f0565b60405161064c9190613eb2565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613627565b611606565b60405161068991906142b8565b60405180910390f35b34801561069e57600080fd5b506106a76116ef565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190613871565b61182c565b005b3480156106de57600080fd5b506106e76118c2565b6040516106f49190613eb2565b60405180910390f35b34801561070957600080fd5b506107126118ec565b60405161071f9190613f56565b60405180910390f35b34801561073457600080fd5b5061073d61197e565b60405161074a91906142b8565b60405180910390f35b61076d600480360381019061076891906138ba565b611984565b005b34801561077b57600080fd5b506107966004803603810190610791919061376a565b611d1c565b005b3480156107a457600080fd5b506107bf60048036038101906107ba91906138ba565b611e9d565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906138ba565b611f23565b005b3480156107f657600080fd5b506107ff611fa9565b60405161080c91906142b8565b60405180910390f35b34801561082157600080fd5b5061083c600480360381019061083791906136e7565b611faf565b005b34801561084a57600080fd5b5061085361200b565b6040516108609190613f3b565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b91906138ba565b61201e565b60405161089d9190613f56565b60405180910390f35b3480156108b257600080fd5b506108bb612177565b6040516108c891906142b8565b60405180910390f35b3480156108dd57600080fd5b506108e661217d565b6040516108f391906142b8565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e91906137ea565b612183565b005b34801561093157600080fd5b5061094c60048036038101906109479190613654565b61221c565b6040516109599190613f3b565b60405180910390f35b34801561096e57600080fd5b5061098960048036038101906109849190613627565b6122b0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ace5750610acd8261245c565b5b9050919050565b606060018054610ae4906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b10906145c1565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b5050505050905090565b6000610b72826124c6565b610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890614298565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf7826115f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f906141b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c876124d3565b73ffffffffffffffffffffffffffffffffffffffff161480610cb65750610cb581610cb06124d3565b61221c565b5b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec90614098565b60405180910390fd5b610d008383836124db565b505050565b610d0d6124d3565b73ffffffffffffffffffffffffffffffffffffffff16610d2b6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d78906140f8565b60405180910390fd5b80601060026101000a81548160ff02191690831515021790555050565b610da66124d3565b73ffffffffffffffffffffffffffffffffffffffff16610dc46118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e11906140f8565b60405180910390fd5b8060099080519060200190610e30929190613401565b5050565b610e3c6124d3565b73ffffffffffffffffffffffffffffffffffffffff16610e5a6118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea7906140f8565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000600c54905090565b60116020528060005260406000206000915090505481565b610ef76124d3565b73ffffffffffffffffffffffffffffffffffffffff16610f156118c2565b73ffffffffffffffffffffffffffffffffffffffff1614610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f62906140f8565b60405180910390fd5b80600b8190555050565b610f8083838361258d565b505050565b6000610f9083611606565b8210610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc890613f78565b60405180910390fd5b6000610fdb610ecd565b905060008060005b83811015611135576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110d557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611127578684141561111e578195505050505050611171565b83806001019450505b508080600101915050610fe3565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614258565b60405180910390fd5b92915050565b61117f6124d3565b73ffffffffffffffffffffffffffffffffffffffff1661119d6118c2565b73ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906140f8565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161121990613e9d565b60006040518083038185875af1925050503d8060008114611256576040519150601f19603f3d011682016040523d82523d6000602084013e61125b565b606091505b505090508061129f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611296906141d8565b60405180910390fd5b50565b6112bd83838360405180602001604052806000815250611faf565b505050565b606060006112cf83611606565b905060008167ffffffffffffffff8111156112ed576112ec61475a565b5b60405190808252806020026020018201604052801561131b5781602001602082028036833780820191505090505b50905060006001905060005b83811080156113385750600b548211155b156113c1576000611348836115f0565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113ad57828483815181106113925761139161472b565b5b60200260200101818152505081806113a990614624565b9250505b82806113b890614624565b93505050611327565b82945050505050919050565b60006113d7610ecd565b8210611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90614038565b60405180910390fd5b819050919050565b6114286124d3565b73ffffffffffffffffffffffffffffffffffffffff166114466118c2565b73ffffffffffffffffffffffffffffffffffffffff161461149c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611493906140f8565b60405180910390fd5b80600a90805190602001906114b2929190613401565b5050565b601060019054906101000a900460ff1681565b600980546114d6906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611502906145c1565b801561154f5780601f106115245761010080835404028352916020019161154f565b820191906000526020600020905b81548152906001019060200180831161153257829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6115726124d3565b73ffffffffffffffffffffffffffffffffffffffff166115906118c2565b73ffffffffffffffffffffffffffffffffffffffff16146115e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dd906140f8565b60405180910390fd5b80600d8190555050565b60006115fb82612acd565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e906140b8565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116f76124d3565b73ffffffffffffffffffffffffffffffffffffffff166117156118c2565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611762906140f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6118346124d3565b73ffffffffffffffffffffffffffffffffffffffff166118526118c2565b73ffffffffffffffffffffffffffffffffffffffff16146118a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189f906140f8565b60405180910390fd5b80600890805190602001906118be929190613401565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546118fb906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054611927906145c1565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b5050505050905090565b600f5481565b600061198e610ecd565b9050601060009054906101000a900460ff16156119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614118565b60405180910390fd5b60008211611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613f98565b60405180910390fd5b600b548282611a3291906143f6565b1115611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a90614198565b60405180910390fd5b611a7b6118c2565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611c6857600d54821115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990613ff8565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e548382611b4591906143f6565b1115611b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7d90614078565b60405180910390fd5b60011515601060029054906101000a900460ff1615151415611bf95782611bac83612c67565b611bb6919061447d565b341015611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90614018565b60405180910390fd5b5b60001515601060029054906101000a900460ff1615151415611c665782600f54611c23919061447d565b341015611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90614018565b60405180910390fd5b5b505b81600c6000828254611c7a91906143f6565b9250508190555081601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd091906143f6565b925050819055507f176b02bb2d12439ff7a20b59f402cca16c76f50508b13ef3166a600eb719354a82604051611d0691906142b8565b60405180910390a1611d183383612c9a565b5050565b611d246124d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8990614158565b60405180910390fd5b8060066000611d9f6124d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e4c6124d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e919190613f3b565b60405180910390a35050565b611ea56124d3565b73ffffffffffffffffffffffffffffffffffffffff16611ec36118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611f19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f10906140f8565b60405180910390fd5b80600f8190555050565b611f2b6124d3565b73ffffffffffffffffffffffffffffffffffffffff16611f496118c2565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f96906140f8565b60405180910390fd5b80600e8190555050565b600e5481565b611fba84848461258d565b611fc684848484612cb8565b612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc906141f8565b60405180910390fd5b50505050565b601060029054906101000a900460ff1681565b6060612029826124c6565b612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f90614138565b60405180910390fd5b60001515601060019054906101000a900460ff161515141561211657600a8054612091906145c1565b80601f01602080910402602001604051908101604052809291908181526020018280546120bd906145c1565b801561210a5780601f106120df5761010080835404028352916020019161210a565b820191906000526020600020905b8154815290600101906020018083116120ed57829003601f168201915b50505050509050612172565b6000612120612e4f565b90506000815111612140576040518060200160405280600081525061216e565b8061214a84612ee1565b600960405160200161215e93929190613e6c565b6040516020818303038152906040525b9150505b919050565b600b5481565b600d5481565b61218b6124d3565b73ffffffffffffffffffffffffffffffffffffffff166121a96118c2565b73ffffffffffffffffffffffffffffffffffffffff16146121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f6906140f8565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122b86124d3565b73ffffffffffffffffffffffffffffffffffffffff166122d66118c2565b73ffffffffffffffffffffffffffffffffffffffff161461232c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612323906140f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561239c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239390613fb8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061259882612acd565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125bf6124d3565b73ffffffffffffffffffffffffffffffffffffffff16148061261b57506125e46124d3565b73ffffffffffffffffffffffffffffffffffffffff1661260384610b67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612637575061263682600001516126316124d3565b61221c565b5b905080612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614178565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e2906140d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561275b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275290614058565b60405180910390fd5b6127688585856001613042565b61277860008484600001516124db565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a5d576129bc816124c6565b15612a5c5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ac68585856001613048565b5050505050565b612ad5613487565b612ade826124c6565b612b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1490613fd8565b60405180910390fd5b60008290505b60008110612c26576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c17578092505050612c62565b50808060019003915050612b23565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5990614278565b60405180910390fd5b919050565b60006103e7821015612c7c5760009050612c95565b600b548211612c9457660aa87bee5380009050612c95565b5b919050565b612cb482826040518060200160405280600081525061304e565b5050565b6000612cd98473ffffffffffffffffffffffffffffffffffffffff16613060565b15612e42578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d026124d3565b8786866040518563ffffffff1660e01b8152600401612d249493929190613ecd565b602060405180830381600087803b158015612d3e57600080fd5b505af1925050508015612d6f57506040513d601f19601f82011682018060405250810190612d6c9190613844565b60015b612df2573d8060008114612d9f576040519150601f19603f3d011682016040523d82523d6000602084013e612da4565b606091505b50600081511415612dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de1906141f8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e47565b600190505b949350505050565b606060088054612e5e906145c1565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8a906145c1565b8015612ed75780601f10612eac57610100808354040283529160200191612ed7565b820191906000526020600020905b815481529060010190602001808311612eba57829003601f168201915b5050505050905090565b60606000821415612f29576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061303d565b600082905060005b60008214612f5b578080612f4490614624565b915050600a82612f54919061444c565b9150612f31565b60008167ffffffffffffffff811115612f7757612f7661475a565b5b6040519080825280601f01601f191660200182016040528015612fa95781602001600182028036833780820191505090505b5090505b6000851461303657600182612fc291906144d7565b9150600a85612fd1919061466d565b6030612fdd91906143f6565b60f81b818381518110612ff357612ff261472b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561302f919061444c565b9450612fad565b8093505050505b919050565b50505050565b50505050565b61305b8383836001613083565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156130f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f090614218565b60405180910390fd5b600084141561313d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161313490614238565b60405180910390fd5b61314a6000868387613042565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156133e457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156133cf5761338f6000888488612cb8565b6133ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c5906141f8565b60405180910390fd5b5b81806001019250508080600101915050613318565b5080600081905550506133fa6000868387613048565b5050505050565b82805461340d906145c1565b90600052602060002090601f01602090048101928261342f5760008555613476565b82601f1061344857805160ff1916838001178555613476565b82800160010185558215613476579182015b8281111561347557825182559160200191906001019061345a565b5b50905061348391906134c1565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156134da5760008160009055506001016134c2565b5090565b60006134f16134ec846142f8565b6142d3565b90508281526020810184848401111561350d5761350c61478e565b5b61351884828561457f565b509392505050565b600061353361352e84614329565b6142d3565b90508281526020810184848401111561354f5761354e61478e565b5b61355a84828561457f565b509392505050565b60008135905061357181614e87565b92915050565b60008135905061358681614e9e565b92915050565b60008135905061359b81614eb5565b92915050565b6000815190506135b081614eb5565b92915050565b600082601f8301126135cb576135ca614789565b5b81356135db8482602086016134de565b91505092915050565b600082601f8301126135f9576135f8614789565b5b8135613609848260208601613520565b91505092915050565b60008135905061362181614ecc565b92915050565b60006020828403121561363d5761363c614798565b5b600061364b84828501613562565b91505092915050565b6000806040838503121561366b5761366a614798565b5b600061367985828601613562565b925050602061368a85828601613562565b9150509250929050565b6000806000606084860312156136ad576136ac614798565b5b60006136bb86828701613562565b93505060206136cc86828701613562565b92505060406136dd86828701613612565b9150509250925092565b6000806000806080858703121561370157613700614798565b5b600061370f87828801613562565b945050602061372087828801613562565b935050604061373187828801613612565b925050606085013567ffffffffffffffff81111561375257613751614793565b5b61375e878288016135b6565b91505092959194509250565b6000806040838503121561378157613780614798565b5b600061378f85828601613562565b92505060206137a085828601613577565b9150509250929050565b600080604083850312156137c1576137c0614798565b5b60006137cf85828601613562565b92505060206137e085828601613612565b9150509250929050565b600060208284031215613800576137ff614798565b5b600061380e84828501613577565b91505092915050565b60006020828403121561382d5761382c614798565b5b600061383b8482850161358c565b91505092915050565b60006020828403121561385a57613859614798565b5b6000613868848285016135a1565b91505092915050565b60006020828403121561388757613886614798565b5b600082013567ffffffffffffffff8111156138a5576138a4614793565b5b6138b1848285016135e4565b91505092915050565b6000602082840312156138d0576138cf614798565b5b60006138de84828501613612565b91505092915050565b60006138f38383613e4e565b60208301905092915050565b6139088161450b565b82525050565b60006139198261437f565b61392381856143ad565b935061392e8361435a565b8060005b8381101561395f57815161394688826138e7565b9750613951836143a0565b925050600181019050613932565b5085935050505092915050565b6139758161451d565b82525050565b60006139868261438a565b61399081856143be565b93506139a081856020860161458e565b6139a98161479d565b840191505092915050565b60006139bf82614395565b6139c981856143da565b93506139d981856020860161458e565b6139e28161479d565b840191505092915050565b60006139f882614395565b613a0281856143eb565b9350613a1281856020860161458e565b80840191505092915050565b60008154613a2b816145c1565b613a3581866143eb565b94506001821660008114613a505760018114613a6157613a94565b60ff19831686528186019350613a94565b613a6a8561436a565b60005b83811015613a8c57815481890152600182019150602081019050613a6d565b838801955050505b50505092915050565b6000613aaa6022836143da565b9150613ab5826147ae565b604082019050919050565b6000613acd602e836143da565b9150613ad8826147fd565b604082019050919050565b6000613af06026836143da565b9150613afb8261484c565b604082019050919050565b6000613b13602a836143da565b9150613b1e8261489b565b604082019050919050565b6000613b366014836143da565b9150613b41826148ea565b602082019050919050565b6000613b596010836143da565b9150613b6482614913565b602082019050919050565b6000613b7c6023836143da565b9150613b878261493c565b604082019050919050565b6000613b9f6025836143da565b9150613baa8261498b565b604082019050919050565b6000613bc26019836143da565b9150613bcd826149da565b602082019050919050565b6000613be56039836143da565b9150613bf082614a03565b604082019050919050565b6000613c08602b836143da565b9150613c1382614a52565b604082019050919050565b6000613c2b6026836143da565b9150613c3682614aa1565b604082019050919050565b6000613c4e6020836143da565b9150613c5982614af0565b602082019050919050565b6000613c716017836143da565b9150613c7c82614b19565b602082019050919050565b6000613c94602f836143da565b9150613c9f82614b42565b604082019050919050565b6000613cb7601a836143da565b9150613cc282614b91565b602082019050919050565b6000613cda6032836143da565b9150613ce582614bba565b604082019050919050565b6000613cfd6016836143da565b9150613d0882614c09565b602082019050919050565b6000613d206022836143da565b9150613d2b82614c32565b604082019050919050565b6000613d436000836143cf565b9150613d4e82614c81565b600082019050919050565b6000613d666010836143da565b9150613d7182614c84565b602082019050919050565b6000613d896033836143da565b9150613d9482614cad565b604082019050919050565b6000613dac6021836143da565b9150613db782614cfc565b604082019050919050565b6000613dcf6028836143da565b9150613dda82614d4b565b604082019050919050565b6000613df2602e836143da565b9150613dfd82614d9a565b604082019050919050565b6000613e15602f836143da565b9150613e2082614de9565b604082019050919050565b6000613e38602d836143da565b9150613e4382614e38565b604082019050919050565b613e5781614575565b82525050565b613e6681614575565b82525050565b6000613e7882866139ed565b9150613e8482856139ed565b9150613e908284613a1e565b9150819050949350505050565b6000613ea882613d36565b9150819050919050565b6000602082019050613ec760008301846138ff565b92915050565b6000608082019050613ee260008301876138ff565b613eef60208301866138ff565b613efc6040830185613e5d565b8181036060830152613f0e818461397b565b905095945050505050565b60006020820190508181036000830152613f33818461390e565b905092915050565b6000602082019050613f50600083018461396c565b92915050565b60006020820190508181036000830152613f7081846139b4565b905092915050565b60006020820190508181036000830152613f9181613a9d565b9050919050565b60006020820190508181036000830152613fb181613ac0565b9050919050565b60006020820190508181036000830152613fd181613ae3565b9050919050565b60006020820190508181036000830152613ff181613b06565b9050919050565b6000602082019050818103600083015261401181613b29565b9050919050565b6000602082019050818103600083015261403181613b4c565b9050919050565b6000602082019050818103600083015261405181613b6f565b9050919050565b6000602082019050818103600083015261407181613b92565b9050919050565b6000602082019050818103600083015261409181613bb5565b9050919050565b600060208201905081810360008301526140b181613bd8565b9050919050565b600060208201905081810360008301526140d181613bfb565b9050919050565b600060208201905081810360008301526140f181613c1e565b9050919050565b6000602082019050818103600083015261411181613c41565b9050919050565b6000602082019050818103600083015261413181613c64565b9050919050565b6000602082019050818103600083015261415181613c87565b9050919050565b6000602082019050818103600083015261417181613caa565b9050919050565b6000602082019050818103600083015261419181613ccd565b9050919050565b600060208201905081810360008301526141b181613cf0565b9050919050565b600060208201905081810360008301526141d181613d13565b9050919050565b600060208201905081810360008301526141f181613d59565b9050919050565b6000602082019050818103600083015261421181613d7c565b9050919050565b6000602082019050818103600083015261423181613d9f565b9050919050565b6000602082019050818103600083015261425181613dc2565b9050919050565b6000602082019050818103600083015261427181613de5565b9050919050565b6000602082019050818103600083015261429181613e08565b9050919050565b600060208201905081810360008301526142b181613e2b565b9050919050565b60006020820190506142cd6000830184613e5d565b92915050565b60006142dd6142ee565b90506142e982826145f3565b919050565b6000604051905090565b600067ffffffffffffffff8211156143135761431261475a565b5b61431c8261479d565b9050602081019050919050565b600067ffffffffffffffff8211156143445761434361475a565b5b61434d8261479d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061440182614575565b915061440c83614575565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144415761444061469e565b5b828201905092915050565b600061445782614575565b915061446283614575565b925082614472576144716146cd565b5b828204905092915050565b600061448882614575565b915061449383614575565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144cc576144cb61469e565b5b828202905092915050565b60006144e282614575565b91506144ed83614575565b925082821015614500576144ff61469e565b5b828203905092915050565b600061451682614555565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145ac578082015181840152602081019050614591565b838111156145bb576000848401525b50505050565b600060028204905060018216806145d957607f821691505b602082108114156145ed576145ec6146fc565b5b50919050565b6145fc8261479d565b810181811067ffffffffffffffff8211171561461b5761461a61475a565b5b80604052505050565b600061462f82614575565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146625761466161469e565b5b600182019050919050565b600061467882614575565b915061468383614575565b925082614693576146926146cd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e696d756d2031204e46542068617320746f206265206d696e746564207060008201527f6572207472616e73616374696f6e000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f6d61782070657220747820657863656564656421000000000000000000000000600082015250565b7f4e6f7420656e6f7567682066756e647300000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782070657220616464726573732065786365656465642100000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f45786365656473206d6178696d756d20737570706c7900000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b614e908161450b565b8114614e9b57600080fd5b50565b614ea78161451d565b8114614eb257600080fd5b50565b614ebe81614529565b8114614ec957600080fd5b50565b614ed581614575565b8114614ee057600080fd5b5056fea2646970667358221220740afcbcb7440493e3979275fa13e2aed0c25dfd783d240fb0e013434035567f64736f6c63430008070033

Deployed Bytecode Sourcemap

62906:4733:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49715:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51601:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53172:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52693:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67339:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67150:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67256:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63674:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63566:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67432:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54048:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48636:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63882:182;;;;;;;;;;;;;:::i;:::-;;54281:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65364:703;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48149:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66902:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63497:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63058:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63467:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66660:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51410:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50151:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15254:148;;;;;;;;;;;;;:::i;:::-;;67042:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14603:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51770:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63421:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64338:1018;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53458:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63779:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66772:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63376:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54529:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63529:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66075:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63264:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63338;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66571:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53817:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15557:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49715:372;49817:4;49869:25;49854:40;;;:11;:40;;;;:105;;;;49926:33;49911:48;;;:11;:48;;;;49854:105;:172;;;;49991:35;49976:50;;;:11;:50;;;;49854:172;:225;;;;50043:36;50067:11;50043:23;:36::i;:::-;49854:225;49834:245;;49715:372;;;:::o;51601:100::-;51655:13;51688:5;51681:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51601:100;:::o;53172:214::-;53240:7;53268:16;53276:7;53268;:16::i;:::-;53260:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;53354:15;:24;53370:7;53354:24;;;;;;;;;;;;;;;;;;;;;53347:31;;53172:214;;;:::o;52693:413::-;52766:13;52782:24;52798:7;52782:15;:24::i;:::-;52766:40;;52831:5;52825:11;;:2;:11;;;;52817:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52926:5;52910:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;52935:37;52952:5;52959:12;:10;:12::i;:::-;52935:16;:37::i;:::-;52910:62;52888:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;53070:28;53079:2;53083:7;53092:5;53070:8;:28::i;:::-;52755:351;52693:413;;:::o;67339:87::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67414:6:::1;67400:11;;:20;;;;;;;;;;;;;;;;;;67339:87:::0;:::o;67150:100::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67234:10:::1;67222:9;:22;;;;;;;;;;;;:::i;:::-;;67150:100:::0;:::o;67256:77::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67321:6:::1;67312;;:15;;;;;;;;;;;;;;;;;;67256:77:::0;:::o;63674:97::-;63727:7;63754:9;;63747:16;;63674:97;:::o;63566:56::-;;;;;;;;;;;;;;;;;:::o;67432:94::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67510:10:::1;67498:9;:22;;;;67432:94:::0;:::o;54048:162::-;54174:28;54184:4;54190:2;54194:7;54174:9;:28::i;:::-;54048:162;;;:::o;48636:1007::-;48725:7;48761:16;48771:5;48761:9;:16::i;:::-;48753:5;:24;48745:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48827:22;48852:13;:11;:13::i;:::-;48827:38;;48876:19;48906:25;49095:9;49090:466;49110:14;49106:1;:18;49090:466;;;49150:31;49184:11;:14;49196:1;49184:14;;;;;;;;;;;49150:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49247:1;49221:28;;:9;:14;;;:28;;;49217:111;;49294:9;:14;;;49274:34;;49217:111;49371:5;49350:26;;:17;:26;;;49346:195;;;49420:5;49405:11;:20;49401:85;;;49461:1;49454:8;;;;;;;;;49401:85;49508:13;;;;;;;49346:195;49131:425;49126:3;;;;;;;49090:466;;;;49579:56;;;;;;;;;;:::i;:::-;;;;;;;;48636:1007;;;;;:::o;63882:182::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63933:12:::1;63959:10;63951:24;;63983:21;63951:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63932:77;;;64028:7;64020:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;63921:143;63882:182::o:0;54281:177::-;54411:39;54428:4;54434:2;54438:7;54411:39;;;;;;;;;;;;:16;:39::i;:::-;54281:177;;;:::o;65364:703::-;65451:16;65485:23;65511:17;65521:6;65511:9;:17::i;:::-;65485:43;;65539:30;65586:15;65572:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65539:63;;65613:22;65638:1;65613:26;;65650:23;65690:339;65715:15;65697;:33;:64;;;;;65752:9;;65734:14;:27;;65697:64;65690:339;;;65774:25;65802:23;65810:14;65802:7;:23::i;:::-;65774:51;;65865:6;65844:27;;:17;:27;;;65840:151;;;65925:14;65892:13;65906:15;65892:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;65958:17;;;;;:::i;:::-;;;;65840:151;66001:16;;;;;:::i;:::-;;;;65763:266;65690:339;;;66046:13;66039:20;;;;;;65364:703;;;:::o;48149:187::-;48216:7;48252:13;:11;:13::i;:::-;48244:5;:21;48236:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48323:5;48316:12;;48149:187;;;:::o;66902:132::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67010:18:::1;66990:17;:38;;;;;;;;;;;;:::i;:::-;;66902:132:::0;:::o;63497:27::-;;;;;;;;;;;;;:::o;63058:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63467:25::-;;;;;;;;;;;;;:::o;66660:106::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66747:13:::1;66732:12;:28;;;;66660:106:::0;:::o;51410:124::-;51474:7;51501:20;51513:7;51501:11;:20::i;:::-;:25;;;51494:32;;51410:124;;;:::o;50151:221::-;50215:7;50260:1;50243:19;;:5;:19;;;;50235:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;50336:12;:19;50349:5;50336:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;50328:36;;50321:43;;50151:221;;;:::o;15254:148::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15361:1:::1;15324:40;;15345:6;;;;;;;;;;;15324:40;;;;;;;;;;;;15392:1;15375:6;;:19;;;;;;;;;;;;;;;;;;15254:148::o:0;67042:100::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67126:10:::1;67114:9;:22;;;;;;;;;;;;:::i;:::-;;67042:100:::0;:::o;14603:87::-;14649:7;14676:6;;;;;;;;;;;14669:13;;14603:87;:::o;51770:104::-;51826:13;51859:7;51852:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51770:104;:::o;63421:34::-;;;;:::o;64338:1018::-;64395:14;64412:13;:11;:13::i;:::-;64395:30;;64441:6;;;;;;;;;;;64440:7;64432:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;64504:1;64490:11;:15;64482:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;64595:9;;64580:11;64571:6;:20;;;;:::i;:::-;:33;;64563:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64658:7;:5;:7::i;:::-;64644:21;;:10;:21;;;64640:546;;64701:12;;64686:11;:27;;64678:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;64751:24;64778:20;:32;64799:10;64778:32;;;;;;;;;;;;;;;;64751:59;;64864:16;;64849:11;64830:16;:30;;;;:::i;:::-;:50;;64821:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;64941:4;64926:19;;:11;;;;;;;;;;;:19;;;64923:131;;;65010:11;64983:24;65000:6;64983:16;:24::i;:::-;:38;;;;:::i;:::-;64970:9;:51;;64962:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;64923:131;65084:5;65069:20;;:11;;;;;;;;;;;:20;;;65066:113;;;65135:11;65127:5;;:19;;;;:::i;:::-;65114:9;:32;;65106:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;65066:113;64667:519;64640:546;65208:11;65195:9;;:24;;;;;;;:::i;:::-;;;;;;;;65261:11;65226:20;:32;65247:10;65226:32;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;65290:19;65297:11;65290:19;;;;;;:::i;:::-;;;;;;;;65316:34;65326:10;65338:11;65316:9;:34::i;:::-;64388:968;64338:1018;:::o;53458:288::-;53565:12;:10;:12::i;:::-;53553:24;;:8;:24;;;;53545:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53666:8;53621:18;:32;53640:12;:10;:12::i;:::-;53621:32;;;;;;;;;;;;;;;:42;53654:8;53621:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;53719:8;53690:48;;53705:12;:10;:12::i;:::-;53690:48;;;53729:8;53690:48;;;;;;:::i;:::-;;;;;;;;53458:288;;:::o;63779:95::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63857:9:::1;63849:5;:17;;;;63779:95:::0;:::o;66772:122::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66871:17:::1;66852:16;:36;;;;66772:122:::0;:::o;63376:35::-;;;;:::o;54529:355::-;54688:28;54698:4;54704:2;54708:7;54688:9;:28::i;:::-;54749:48;54772:4;54778:2;54782:7;54791:5;54749:22;:48::i;:::-;54727:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;54529:355;;;;:::o;63529:30::-;;;;;;;;;;;;;:::o;66075:490::-;66174:13;66215:17;66223:8;66215:7;:17::i;:::-;66199:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66320:5;66308:17;;:8;;;;;;;;;;;:17;;;66304:64;;;66343:17;66336:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66304:64;66374:28;66405:10;:8;:10::i;:::-;66374:41;;66460:1;66435:14;66429:28;:32;:130;;;;;;;;;;;;;;;;;66497:14;66513:19;:8;:17;:19::i;:::-;66534:9;66480:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66429:130;66422:137;;;66075:490;;;;:::o;63264:31::-;;;;:::o;63338:::-;;;;:::o;66571:81::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66640:6:::1;66629:8;;:17;;;;;;;;;;;;;;;;;;66571:81:::0;:::o;53817:164::-;53914:4;53938:18;:25;53957:5;53938:25;;;;;;;;;;;;;;;:35;53964:8;53938:35;;;;;;;;;;;;;;;;;;;;;;;;;53931:42;;53817:164;;;;:::o;15557:244::-;14834:12;:10;:12::i;:::-;14823:23;;:7;:5;:7::i;:::-;:23;;;14815:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15666:1:::1;15646:22;;:8;:22;;;;15638:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;15756:8;15727:38;;15748:6;;;;;;;;;;;15727:38;;;;;;;;;;;;15785:8;15776:6;;:17;;;;;;;;;;;;;;;;;;15557:244:::0;:::o;22877:157::-;22962:4;23001:25;22986:40;;;:11;:40;;;;22979:47;;22877:157;;;:::o;55139:111::-;55196:4;55230:12;;55220:7;:22;55213:29;;55139:111;;;:::o;9629:98::-;9682:7;9709:10;9702:17;;9629:98;:::o;60059:196::-;60201:2;60174:15;:24;60190:7;60174:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60239:7;60235:2;60219:28;;60228:5;60219:28;;;;;;;;;;;;60059:196;;;:::o;57939:2002::-;58054:35;58092:20;58104:7;58092:11;:20::i;:::-;58054:58;;58125:22;58167:13;:18;;;58151:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;58226:12;:10;:12::i;:::-;58202:36;;:20;58214:7;58202:11;:20::i;:::-;:36;;;58151:87;:154;;;;58255:50;58272:13;:18;;;58292:12;:10;:12::i;:::-;58255:16;:50::i;:::-;58151:154;58125:181;;58327:17;58319:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58442:4;58420:26;;:13;:18;;;:26;;;58412:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58522:1;58508:16;;:2;:16;;;;58500:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;58579:43;58601:4;58607:2;58611:7;58620:1;58579:21;:43::i;:::-;58687:49;58704:1;58708:7;58717:13;:18;;;58687:8;:49::i;:::-;59062:1;59032:12;:18;59045:4;59032:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59106:1;59078:12;:16;59091:2;59078:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59152:2;59124:11;:20;59136:7;59124:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;59214:15;59169:11;:20;59181:7;59169:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;59482:19;59514:1;59504:7;:11;59482:33;;59575:1;59534:43;;:11;:24;59546:11;59534:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;59530:295;;;59602:20;59610:11;59602:7;:20::i;:::-;59598:212;;;59679:13;:18;;;59647:11;:24;59659:11;59647:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;59762:13;:28;;;59720:11;:24;59732:11;59720:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;59598:212;59530:295;59007:829;59872:7;59868:2;59853:27;;59862:4;59853:27;;;;;;;;;;;;59891:42;59912:4;59918:2;59922:7;59931:1;59891:20;:42::i;:::-;58043:1898;;57939:2002;;;:::o;50811:537::-;50872:21;;:::i;:::-;50914:16;50922:7;50914;:16::i;:::-;50906:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51020:12;51035:7;51020:22;;51015:245;51052:1;51044:4;:9;51015:245;;51082:31;51116:11;:17;51128:4;51116:17;;;;;;;;;;;51082:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51182:1;51156:28;;:9;:14;;;:28;;;51152:93;;51216:9;51209:16;;;;;;51152:93;51063:197;51055:6;;;;;;;;51015:245;;;;51283:57;;;;;;;;;;:::i;:::-;;;;;;;;50811:537;;;;:::o;64072:237::-;64138:13;64176:3;64166:7;:13;64163:59;;;64203:7;64196:14;;;;64163:59;64246:9;;64235:7;:20;64232:70;;64279:11;64272:18;;;;64232:70;64072:237;;;;:::o;55258:104::-;55327:27;55337:2;55341:8;55327:27;;;;;;;;;;;;:9;:27::i;:::-;55258:104;;:::o;60820:804::-;60975:4;60996:15;:2;:13;;;:15::i;:::-;60992:625;;;61048:2;61032:36;;;61069:12;:10;:12::i;:::-;61083:4;61089:7;61098:5;61032:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61028:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61295:1;61278:6;:13;:18;61274:273;;;61321:61;;;;;;;;;;:::i;:::-;;;;;;;;61274:273;61497:6;61491:13;61482:6;61478:2;61474:15;61467:38;61028:534;61165:45;;;61155:55;;;:6;:55;;;;61148:62;;;;;60992:625;61601:4;61594:11;;60820:804;;;;;;;:::o;67532:104::-;67592:13;67621:9;67614:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67532:104;:::o;10312:723::-;10368:13;10598:1;10589:5;:10;10585:53;;;10616:10;;;;;;;;;;;;;;;;;;;;;10585:53;10648:12;10663:5;10648:20;;10679:14;10704:78;10719:1;10711:4;:9;10704:78;;10737:8;;;;;:::i;:::-;;;;10768:2;10760:10;;;;;:::i;:::-;;;10704:78;;;10792:19;10824:6;10814:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10792:39;;10842:154;10858:1;10849:5;:10;10842:154;;10886:1;10876:11;;;;;:::i;:::-;;;10953:2;10945:5;:10;;;;:::i;:::-;10932:2;:24;;;;:::i;:::-;10919:39;;10902:6;10909;10902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10982:2;10973:11;;;;;:::i;:::-;;;10842:154;;;11020:6;11006:21;;;;;10312:723;;;;:::o;62112:159::-;;;;;:::o;62683:158::-;;;;;:::o;55725:163::-;55848:32;55854:2;55858:8;55868:5;55875:4;55848:5;:32::i;:::-;55725:163;;;:::o;1767:326::-;1827:4;2084:1;2062:7;:19;;;:23;2055:30;;1767:326;;;:::o;56147:1538::-;56286:20;56309:12;;56286:35;;56354:1;56340:16;;:2;:16;;;;56332:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;56425:1;56413:8;:13;;56405:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56484:61;56514:1;56518:2;56522:12;56536:8;56484:21;:61::i;:::-;56859:8;56823:12;:16;56836:2;56823:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56924:8;56883:12;:16;56896:2;56883:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56983:2;56950:11;:25;56962:12;56950:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;57050:15;57000:11;:25;57012:12;57000:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;57083:20;57106:12;57083:35;;57140:9;57135:415;57155:8;57151:1;:12;57135:415;;;57219:12;57215:2;57194:38;;57211:1;57194:38;;;;;;;;;;;;57255:4;57251:249;;;57318:59;57349:1;57353:2;57357:12;57371:5;57318:22;:59::i;:::-;57284:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;57251:249;57520:14;;;;;;;57165:3;;;;;;;57135:415;;;;57581:12;57566;:27;;;;56798:807;57617:60;57646:1;57650:2;57654:12;57668:8;57617:20;:60::i;:::-;56275:1410;56147:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:398::-;17900:3;17921:83;18002:1;17997:3;17921:83;:::i;:::-;17914:90;;18013:93;18102:3;18013:93;:::i;:::-;18131:1;18126:3;18122:11;18115:18;;17741:398;;;:::o;18145:366::-;18287:3;18308:67;18372:2;18367:3;18308:67;:::i;:::-;18301:74;;18384:93;18473:3;18384:93;:::i;:::-;18502:2;18497:3;18493:12;18486:19;;18145:366;;;:::o;18517:::-;18659:3;18680:67;18744:2;18739:3;18680:67;:::i;:::-;18673:74;;18756:93;18845:3;18756:93;:::i;:::-;18874:2;18869:3;18865:12;18858:19;;18517:366;;;:::o;18889:::-;19031:3;19052:67;19116:2;19111:3;19052:67;:::i;:::-;19045:74;;19128:93;19217:3;19128:93;:::i;:::-;19246:2;19241:3;19237:12;19230:19;;18889:366;;;:::o;19261:::-;19403:3;19424:67;19488:2;19483:3;19424:67;:::i;:::-;19417:74;;19500:93;19589:3;19500:93;:::i;:::-;19618:2;19613:3;19609:12;19602:19;;19261:366;;;:::o;19633:::-;19775:3;19796:67;19860:2;19855:3;19796:67;:::i;:::-;19789:74;;19872:93;19961:3;19872:93;:::i;:::-;19990:2;19985:3;19981:12;19974:19;;19633:366;;;:::o;20005:::-;20147:3;20168:67;20232:2;20227:3;20168:67;:::i;:::-;20161:74;;20244:93;20333:3;20244:93;:::i;:::-;20362:2;20357:3;20353:12;20346:19;;20005:366;;;:::o;20377:::-;20519:3;20540:67;20604:2;20599:3;20540:67;:::i;:::-;20533:74;;20616:93;20705:3;20616:93;:::i;:::-;20734:2;20729:3;20725:12;20718:19;;20377:366;;;:::o;20749:108::-;20826:24;20844:5;20826:24;:::i;:::-;20821:3;20814:37;20749:108;;:::o;20863:118::-;20950:24;20968:5;20950:24;:::i;:::-;20945:3;20938:37;20863:118;;:::o;20987:589::-;21212:3;21234:95;21325:3;21316:6;21234:95;:::i;:::-;21227:102;;21346:95;21437:3;21428:6;21346:95;:::i;:::-;21339:102;;21458:92;21546:3;21537:6;21458:92;:::i;:::-;21451:99;;21567:3;21560:10;;20987:589;;;;;;:::o;21582:379::-;21766:3;21788:147;21931:3;21788:147;:::i;:::-;21781:154;;21952:3;21945:10;;21582:379;;;:::o;21967:222::-;22060:4;22098:2;22087:9;22083:18;22075:26;;22111:71;22179:1;22168:9;22164:17;22155:6;22111:71;:::i;:::-;21967:222;;;;:::o;22195:640::-;22390:4;22428:3;22417:9;22413:19;22405:27;;22442:71;22510:1;22499:9;22495:17;22486:6;22442:71;:::i;:::-;22523:72;22591:2;22580:9;22576:18;22567:6;22523:72;:::i;:::-;22605;22673:2;22662:9;22658:18;22649:6;22605:72;:::i;:::-;22724:9;22718:4;22714:20;22709:2;22698:9;22694:18;22687:48;22752:76;22823:4;22814:6;22752:76;:::i;:::-;22744:84;;22195:640;;;;;;;:::o;22841:373::-;22984:4;23022:2;23011:9;23007:18;22999:26;;23071:9;23065:4;23061:20;23057:1;23046:9;23042:17;23035:47;23099:108;23202:4;23193:6;23099:108;:::i;:::-;23091:116;;22841:373;;;;:::o;23220:210::-;23307:4;23345:2;23334:9;23330:18;23322:26;;23358:65;23420:1;23409:9;23405:17;23396:6;23358:65;:::i;:::-;23220:210;;;;:::o;23436:313::-;23549:4;23587:2;23576:9;23572:18;23564:26;;23636:9;23630:4;23626:20;23622:1;23611:9;23607:17;23600:47;23664:78;23737:4;23728:6;23664:78;:::i;:::-;23656:86;;23436:313;;;;:::o;23755:419::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23755:419;;;:::o;24180:::-;24346:4;24384:2;24373:9;24369:18;24361:26;;24433:9;24427:4;24423:20;24419:1;24408:9;24404:17;24397:47;24461:131;24587:4;24461:131;:::i;:::-;24453:139;;24180:419;;;:::o;24605:::-;24771:4;24809:2;24798:9;24794:18;24786:26;;24858:9;24852:4;24848:20;24844:1;24833:9;24829:17;24822:47;24886:131;25012:4;24886:131;:::i;:::-;24878:139;;24605:419;;;:::o;25030:::-;25196:4;25234:2;25223:9;25219:18;25211:26;;25283:9;25277:4;25273:20;25269:1;25258:9;25254:17;25247:47;25311:131;25437:4;25311:131;:::i;:::-;25303:139;;25030:419;;;:::o;25455:::-;25621:4;25659:2;25648:9;25644:18;25636:26;;25708:9;25702:4;25698:20;25694:1;25683:9;25679:17;25672:47;25736:131;25862:4;25736:131;:::i;:::-;25728:139;;25455:419;;;:::o;25880:::-;26046:4;26084:2;26073:9;26069:18;26061:26;;26133:9;26127:4;26123:20;26119:1;26108:9;26104:17;26097:47;26161:131;26287:4;26161:131;:::i;:::-;26153:139;;25880:419;;;:::o;26305:::-;26471:4;26509:2;26498:9;26494:18;26486:26;;26558:9;26552:4;26548:20;26544:1;26533:9;26529:17;26522:47;26586:131;26712:4;26586:131;:::i;:::-;26578:139;;26305:419;;;:::o;26730:::-;26896:4;26934:2;26923:9;26919:18;26911:26;;26983:9;26977:4;26973:20;26969:1;26958:9;26954:17;26947:47;27011:131;27137:4;27011:131;:::i;:::-;27003:139;;26730:419;;;:::o;27155:::-;27321:4;27359:2;27348:9;27344:18;27336:26;;27408:9;27402:4;27398:20;27394:1;27383:9;27379:17;27372:47;27436:131;27562:4;27436:131;:::i;:::-;27428:139;;27155:419;;;:::o;27580:::-;27746:4;27784:2;27773:9;27769:18;27761:26;;27833:9;27827:4;27823:20;27819:1;27808:9;27804:17;27797:47;27861:131;27987:4;27861:131;:::i;:::-;27853:139;;27580:419;;;:::o;28005:::-;28171:4;28209:2;28198:9;28194:18;28186:26;;28258:9;28252:4;28248:20;28244:1;28233:9;28229:17;28222:47;28286:131;28412:4;28286:131;:::i;:::-;28278:139;;28005:419;;;:::o;28430:::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:::-;29021:4;29059:2;29048:9;29044:18;29036:26;;29108:9;29102:4;29098:20;29094:1;29083:9;29079:17;29072:47;29136:131;29262:4;29136:131;:::i;:::-;29128:139;;28855:419;;;:::o;29280:::-;29446:4;29484:2;29473:9;29469:18;29461:26;;29533:9;29527:4;29523:20;29519:1;29508:9;29504:17;29497:47;29561:131;29687:4;29561:131;:::i;:::-;29553:139;;29280:419;;;:::o;29705:::-;29871:4;29909:2;29898:9;29894:18;29886:26;;29958:9;29952:4;29948:20;29944:1;29933:9;29929:17;29922:47;29986:131;30112:4;29986:131;:::i;:::-;29978:139;;29705:419;;;:::o;30130:::-;30296:4;30334:2;30323:9;30319:18;30311:26;;30383:9;30377:4;30373:20;30369:1;30358:9;30354:17;30347:47;30411:131;30537:4;30411:131;:::i;:::-;30403:139;;30130:419;;;:::o;30555:::-;30721:4;30759:2;30748:9;30744:18;30736:26;;30808:9;30802:4;30798:20;30794:1;30783:9;30779:17;30772:47;30836:131;30962:4;30836:131;:::i;:::-;30828:139;;30555:419;;;:::o;30980:::-;31146:4;31184:2;31173:9;31169:18;31161:26;;31233:9;31227:4;31223:20;31219:1;31208:9;31204:17;31197:47;31261:131;31387:4;31261:131;:::i;:::-;31253:139;;30980:419;;;:::o;31405:::-;31571:4;31609:2;31598:9;31594:18;31586:26;;31658:9;31652:4;31648:20;31644:1;31633:9;31629:17;31622:47;31686:131;31812:4;31686:131;:::i;:::-;31678:139;;31405:419;;;:::o;31830:::-;31996:4;32034:2;32023:9;32019:18;32011:26;;32083:9;32077:4;32073:20;32069:1;32058:9;32054:17;32047:47;32111:131;32237:4;32111:131;:::i;:::-;32103:139;;31830:419;;;:::o;32255:::-;32421:4;32459:2;32448:9;32444:18;32436:26;;32508:9;32502:4;32498:20;32494:1;32483:9;32479:17;32472:47;32536:131;32662:4;32536:131;:::i;:::-;32528:139;;32255:419;;;:::o;32680:::-;32846:4;32884:2;32873:9;32869:18;32861:26;;32933:9;32927:4;32923:20;32919:1;32908:9;32904:17;32897:47;32961:131;33087:4;32961:131;:::i;:::-;32953:139;;32680:419;;;:::o;33105:::-;33271:4;33309:2;33298:9;33294:18;33286:26;;33358:9;33352:4;33348:20;33344:1;33333:9;33329:17;33322:47;33386:131;33512:4;33386:131;:::i;:::-;33378:139;;33105:419;;;:::o;33530:::-;33696:4;33734:2;33723:9;33719:18;33711:26;;33783:9;33777:4;33773:20;33769:1;33758:9;33754:17;33747:47;33811:131;33937:4;33811:131;:::i;:::-;33803:139;;33530:419;;;:::o;33955:::-;34121:4;34159:2;34148:9;34144:18;34136:26;;34208:9;34202:4;34198:20;34194:1;34183:9;34179:17;34172:47;34236:131;34362:4;34236:131;:::i;:::-;34228:139;;33955:419;;;:::o;34380:::-;34546:4;34584:2;34573:9;34569:18;34561:26;;34633:9;34627:4;34623:20;34619:1;34608:9;34604:17;34597:47;34661:131;34787:4;34661:131;:::i;:::-;34653:139;;34380:419;;;:::o;34805:222::-;34898:4;34936:2;34925:9;34921:18;34913:26;;34949:71;35017:1;35006:9;35002:17;34993:6;34949:71;:::i;:::-;34805:222;;;;:::o;35033:129::-;35067:6;35094:20;;:::i;:::-;35084:30;;35123:33;35151:4;35143:6;35123:33;:::i;:::-;35033:129;;;:::o;35168:75::-;35201:6;35234:2;35228:9;35218:19;;35168:75;:::o;35249:307::-;35310:4;35400:18;35392:6;35389:30;35386:56;;;35422:18;;:::i;:::-;35386:56;35460:29;35482:6;35460:29;:::i;:::-;35452:37;;35544:4;35538;35534:15;35526:23;;35249:307;;;:::o;35562:308::-;35624:4;35714:18;35706:6;35703:30;35700:56;;;35736:18;;:::i;:::-;35700:56;35774:29;35796:6;35774:29;:::i;:::-;35766:37;;35858:4;35852;35848:15;35840:23;;35562:308;;;:::o;35876:132::-;35943:4;35966:3;35958:11;;35996:4;35991:3;35987:14;35979:22;;35876:132;;;:::o;36014:141::-;36063:4;36086:3;36078:11;;36109:3;36106:1;36099:14;36143:4;36140:1;36130:18;36122:26;;36014:141;;;:::o;36161:114::-;36228:6;36262:5;36256:12;36246:22;;36161:114;;;:::o;36281:98::-;36332:6;36366:5;36360:12;36350:22;;36281:98;;;:::o;36385:99::-;36437:6;36471:5;36465:12;36455:22;;36385:99;;;:::o;36490:113::-;36560:4;36592;36587:3;36583:14;36575:22;;36490:113;;;:::o;36609:184::-;36708:11;36742:6;36737:3;36730:19;36782:4;36777:3;36773:14;36758:29;;36609:184;;;;:::o;36799:168::-;36882:11;36916:6;36911:3;36904:19;36956:4;36951:3;36947:14;36932:29;;36799:168;;;;:::o;36973:147::-;37074:11;37111:3;37096:18;;36973:147;;;;:::o;37126:169::-;37210:11;37244:6;37239:3;37232:19;37284:4;37279:3;37275:14;37260:29;;37126:169;;;;:::o;37301:148::-;37403:11;37440:3;37425:18;;37301:148;;;;:::o;37455:305::-;37495:3;37514:20;37532:1;37514:20;:::i;:::-;37509:25;;37548:20;37566:1;37548:20;:::i;:::-;37543:25;;37702:1;37634:66;37630:74;37627:1;37624:81;37621:107;;;37708:18;;:::i;:::-;37621:107;37752:1;37749;37745:9;37738:16;;37455:305;;;;:::o;37766:185::-;37806:1;37823:20;37841:1;37823:20;:::i;:::-;37818:25;;37857:20;37875:1;37857:20;:::i;:::-;37852:25;;37896:1;37886:35;;37901:18;;:::i;:::-;37886:35;37943:1;37940;37936:9;37931:14;;37766:185;;;;:::o;37957:348::-;37997:7;38020:20;38038:1;38020:20;:::i;:::-;38015:25;;38054:20;38072:1;38054:20;:::i;:::-;38049:25;;38242:1;38174:66;38170:74;38167:1;38164:81;38159:1;38152:9;38145:17;38141:105;38138:131;;;38249:18;;:::i;:::-;38138:131;38297:1;38294;38290:9;38279:20;;37957:348;;;;:::o;38311:191::-;38351:4;38371:20;38389:1;38371:20;:::i;:::-;38366:25;;38405:20;38423:1;38405:20;:::i;:::-;38400:25;;38444:1;38441;38438:8;38435:34;;;38449:18;;:::i;:::-;38435:34;38494:1;38491;38487:9;38479:17;;38311:191;;;;:::o;38508:96::-;38545:7;38574:24;38592:5;38574:24;:::i;:::-;38563:35;;38508:96;;;:::o;38610:90::-;38644:7;38687:5;38680:13;38673:21;38662:32;;38610:90;;;:::o;38706:149::-;38742:7;38782:66;38775:5;38771:78;38760:89;;38706:149;;;:::o;38861:126::-;38898:7;38938:42;38931:5;38927:54;38916:65;;38861:126;;;:::o;38993:77::-;39030:7;39059:5;39048:16;;38993:77;;;:::o;39076:154::-;39160:6;39155:3;39150;39137:30;39222:1;39213:6;39208:3;39204:16;39197:27;39076:154;;;:::o;39236:307::-;39304:1;39314:113;39328:6;39325:1;39322:13;39314:113;;;39413:1;39408:3;39404:11;39398:18;39394:1;39389:3;39385:11;39378:39;39350:2;39347:1;39343:10;39338:15;;39314:113;;;39445:6;39442:1;39439:13;39436:101;;;39525:1;39516:6;39511:3;39507:16;39500:27;39436:101;39285:258;39236:307;;;:::o;39549:320::-;39593:6;39630:1;39624:4;39620:12;39610:22;;39677:1;39671:4;39667:12;39698:18;39688:81;;39754:4;39746:6;39742:17;39732:27;;39688:81;39816:2;39808:6;39805:14;39785:18;39782:38;39779:84;;;39835:18;;:::i;:::-;39779:84;39600:269;39549:320;;;:::o;39875:281::-;39958:27;39980:4;39958:27;:::i;:::-;39950:6;39946:40;40088:6;40076:10;40073:22;40052:18;40040:10;40037:34;40034:62;40031:88;;;40099:18;;:::i;:::-;40031:88;40139:10;40135:2;40128:22;39918:238;39875:281;;:::o;40162:233::-;40201:3;40224:24;40242:5;40224:24;:::i;:::-;40215:33;;40270:66;40263:5;40260:77;40257:103;;;40340:18;;:::i;:::-;40257:103;40387:1;40380:5;40376:13;40369:20;;40162:233;;;:::o;40401:176::-;40433:1;40450:20;40468:1;40450:20;:::i;:::-;40445:25;;40484:20;40502:1;40484:20;:::i;:::-;40479:25;;40523:1;40513:35;;40528:18;;:::i;:::-;40513:35;40569:1;40566;40562:9;40557:14;;40401:176;;;;:::o;40583:180::-;40631:77;40628:1;40621:88;40728:4;40725:1;40718:15;40752:4;40749:1;40742:15;40769:180;40817:77;40814:1;40807:88;40914:4;40911:1;40904:15;40938:4;40935:1;40928:15;40955:180;41003:77;41000:1;40993:88;41100:4;41097:1;41090:15;41124:4;41121:1;41114:15;41141:180;41189:77;41186:1;41179:88;41286:4;41283:1;41276:15;41310:4;41307:1;41300:15;41327:180;41375:77;41372:1;41365:88;41472:4;41469:1;41462:15;41496:4;41493:1;41486:15;41513:117;41622:1;41619;41612:12;41636:117;41745:1;41742;41735:12;41759:117;41868:1;41865;41858:12;41882:117;41991:1;41988;41981:12;42005:102;42046:6;42097:2;42093:7;42088:2;42081:5;42077:14;42073:28;42063:38;;42005:102;;;:::o;42113:221::-;42253:34;42249:1;42241:6;42237:14;42230:58;42322:4;42317:2;42309:6;42305:15;42298:29;42113:221;:::o;42340:233::-;42480:34;42476:1;42468:6;42464:14;42457:58;42549:16;42544:2;42536:6;42532:15;42525:41;42340:233;:::o;42579:225::-;42719:34;42715:1;42707:6;42703:14;42696:58;42788:8;42783:2;42775:6;42771:15;42764:33;42579:225;:::o;42810:229::-;42950:34;42946:1;42938:6;42934:14;42927:58;43019:12;43014:2;43006:6;43002:15;42995:37;42810:229;:::o;43045:170::-;43185:22;43181:1;43173:6;43169:14;43162:46;43045:170;:::o;43221:166::-;43361:18;43357:1;43349:6;43345:14;43338:42;43221:166;:::o;43393:222::-;43533:34;43529:1;43521:6;43517:14;43510:58;43602:5;43597:2;43589:6;43585:15;43578:30;43393:222;:::o;43621:224::-;43761:34;43757:1;43749:6;43745:14;43738:58;43830:7;43825:2;43817:6;43813:15;43806:32;43621:224;:::o;43851:175::-;43991:27;43987:1;43979:6;43975:14;43968:51;43851:175;:::o;44032:244::-;44172:34;44168:1;44160:6;44156:14;44149:58;44241:27;44236:2;44228:6;44224:15;44217:52;44032:244;:::o;44282:230::-;44422:34;44418:1;44410:6;44406:14;44399:58;44491:13;44486:2;44478:6;44474:15;44467:38;44282:230;:::o;44518:225::-;44658:34;44654:1;44646:6;44642:14;44635:58;44727:8;44722:2;44714:6;44710:15;44703:33;44518:225;:::o;44749:182::-;44889:34;44885:1;44877:6;44873:14;44866:58;44749:182;:::o;44937:173::-;45077:25;45073:1;45065:6;45061:14;45054:49;44937:173;:::o;45116:234::-;45256:34;45252:1;45244:6;45240:14;45233:58;45325:17;45320:2;45312:6;45308:15;45301:42;45116:234;:::o;45356:176::-;45496:28;45492:1;45484:6;45480:14;45473:52;45356:176;:::o;45538:237::-;45678:34;45674:1;45666:6;45662:14;45655:58;45747:20;45742:2;45734:6;45730:15;45723:45;45538:237;:::o;45781:172::-;45921:24;45917:1;45909:6;45905:14;45898:48;45781:172;:::o;45959:221::-;46099:34;46095:1;46087:6;46083:14;46076:58;46168:4;46163:2;46155:6;46151:15;46144:29;45959:221;:::o;46186:114::-;;:::o;46306:166::-;46446:18;46442:1;46434:6;46430:14;46423:42;46306:166;:::o;46478:238::-;46618:34;46614:1;46606:6;46602:14;46595:58;46687:21;46682:2;46674:6;46670:15;46663:46;46478:238;:::o;46722:220::-;46862:34;46858:1;46850:6;46846:14;46839:58;46931:3;46926:2;46918:6;46914:15;46907:28;46722:220;:::o;46948:227::-;47088:34;47084:1;47076:6;47072:14;47065:58;47157:10;47152:2;47144:6;47140:15;47133:35;46948:227;:::o;47181:233::-;47321:34;47317:1;47309:6;47305:14;47298:58;47390:16;47385:2;47377:6;47373:15;47366:41;47181:233;:::o;47420:234::-;47560:34;47556:1;47548:6;47544:14;47537:58;47629:17;47624:2;47616:6;47612:15;47605:42;47420:234;:::o;47660:232::-;47800:34;47796:1;47788:6;47784:14;47777:58;47869:15;47864:2;47856:6;47852:15;47845:40;47660:232;:::o;47898:122::-;47971:24;47989:5;47971:24;:::i;:::-;47964:5;47961:35;47951:63;;48010:1;48007;48000:12;47951:63;47898:122;:::o;48026:116::-;48096:21;48111:5;48096:21;:::i;:::-;48089:5;48086:32;48076:60;;48132:1;48129;48122:12;48076:60;48026:116;:::o;48148:120::-;48220:23;48237:5;48220:23;:::i;:::-;48213:5;48210:34;48200:62;;48258:1;48255;48248:12;48200:62;48148:120;:::o;48274:122::-;48347:24;48365:5;48347:24;:::i;:::-;48340:5;48337:35;48327:63;;48386:1;48383;48376:12;48327:63;48274:122;:::o

Swarm Source

ipfs://740afcbcb7440493e3979275fa13e2aed0c25dfd783d240fb0e013434035567f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.