ETH Price: $3,300.64 (-3.88%)
Gas: 21 Gwei

Token

Aki Story (AS)
 

Overview

Max Total Supply

5,555 AS

Holders

2,592

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
bfeeders.eth
Balance
2 AS
0x979bec5ccf8614a5f1e7c1384afe4299460eca7f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Aki Story is a collection of 5,555 avatars that encompasses lo-fi aesthetics to represent a community of creatives to pursue their interests and turn them into sustainable ventures.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AkiStory

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
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 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())) : '';
    }

    /**
     * @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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/3_Ballot.sol



pragma solidity ^0.8.0;






contract AkiStory is ERC721A, Ownable {

  using SafeMath for uint256;
  using Strings for uint256;
  string private _baseUri;
  string private _notRevealURI; 
  bool public RevealedActive = false;
  uint256 public Price = 0.07 ether;
  uint256 public MaxToken = 5555;
  uint256 public TokenIndex = 0;
  event TokenMinted(uint256 supply);
  enum Steps {Launch, WLMints, Allowlist, Sale, SoldOut}
  Steps public sellingStep;
  mapping (address => uint256) public MaxOgMint;
  mapping (address => uint256) public MaxWlMint;
  mapping (address => uint256) public MaxAllowListMint;
  mapping (address => uint256) public MaxPublicMint;
  bytes32 public merkleRootOG;
  bytes32 public merkleRootNormalWL;
  bytes32 public merkleRootAllowList;

  constructor() ERC721A("Aki Story", "AS") {sellingStep = Steps.Launch;}

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory a) {
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    if (totalSupply() >= MaxToken || RevealedActive == true) {
      if (tokenId < MaxToken) {
        uint256 offsetId = tokenId.add(MaxToken.sub(TokenIndex)).mod(MaxToken);
        return string(abi.encodePacked(_baseURI(), "akistory-", offsetId.toString(), ".json"));
      }
    } else { return _notRevealURI; }
  }

  function mintOG(uint8 mintAmount, address _account, bytes32[] calldata _proof) public payable {
    require(sellingStep == Steps.WLMints, "WLMints has not started");
    require(totalSupply().add(mintAmount) <= MaxToken, "Sold Out");
    require(isOGWhitelisted(_account, _proof), "Not Whitelisted");
    require(MaxOgMint[msg.sender] + mintAmount <= 3, "Max NFTs Reached");
    require(mintAmount > 0, "At least one should be minted");
    MaxOgMint[msg.sender] += mintAmount;
    require(Price * mintAmount <= msg.value, "Not enough funds");
    if(totalSupply() + mintAmount == MaxToken) { sellingStep = Steps.SoldOut; }
    _mint(msg.sender, mintAmount);
    emit TokenMinted(totalSupply());
  }

  function mintWL(uint8 mintAmount, address _account, bytes32[] calldata _proof) public payable {
    require(sellingStep == Steps.WLMints, "WLMints has not started");
    require(totalSupply().add(mintAmount) <= MaxToken, "Sold Out");
    require(isWalletWhiteListed(_account, _proof), "Not Whitelisted");
    require(mintAmount > 0, "At least one should be minted");
    require(MaxWlMint[msg.sender] + mintAmount <= 2, "Max NFTs Reached");
    MaxWlMint[msg.sender] += mintAmount;
    require(Price * mintAmount <= msg.value, "Not enough funds");
    if(totalSupply() + mintAmount == MaxToken) { sellingStep = Steps.SoldOut; }
    _mint(msg.sender, mintAmount);
    emit TokenMinted(totalSupply());
  }

  function mintAllowList(uint8 mintAmount, address _account, bytes32[] calldata _proof) public payable {
    require(sellingStep == Steps.Allowlist, "Allow List has not started");
    require(totalSupply().add(mintAmount) <= MaxToken, "Sold Out");
    require(isAllowList(_account, _proof), "Not Whitelisted");
    require(mintAmount > 0, "At least one should be minted");
    require(MaxAllowListMint[msg.sender] + mintAmount <= 2, "Max NFTs Reached");
    MaxAllowListMint[msg.sender] += mintAmount;
    require(Price * mintAmount <= msg.value, "Not enough funds");
    if(totalSupply() + mintAmount == MaxToken) { sellingStep = Steps.SoldOut; }
    _mint(msg.sender, mintAmount);
    emit TokenMinted(totalSupply());
  }

  function mint(uint8 mintAmount) public payable {
    require(sellingStep != Steps.SoldOut, "Sold Out");
    require(sellingStep == Steps.Sale, "Public Sale has not started");
    require(totalSupply().add(mintAmount) <= MaxToken, "Sold Out");    
    require(mintAmount > 0, "At least one should be minted");                                                          
    require(MaxPublicMint[msg.sender] + mintAmount <= 5, "Max NFTs Reached");
    MaxPublicMint[msg.sender] += mintAmount;
    require(Price * mintAmount <= msg.value, "Not enough funds"); 
    if(totalSupply() + mintAmount == MaxToken) { sellingStep = Steps.SoldOut; }
    _mint(msg.sender, mintAmount);
    emit TokenMinted(totalSupply());
  }

  function _mint(address recipient, uint256 quantity) internal {
    _safeMint(recipient, quantity);
  }

  function OwnerMint(uint256 num) public onlyOwner {
    require(totalSupply().add(num) <= MaxToken, "Sold Out");
    if(totalSupply().add(num) == MaxToken) { sellingStep = Steps.SoldOut; }    
    _mint(msg.sender, num);
    emit TokenMinted(totalSupply());
  }

  function Airdrop(uint256 num, address recipient) public onlyOwner {
    require(totalSupply().add(num) <= MaxToken, "Sold Out");
    if(totalSupply().add(num) == MaxToken) { sellingStep = Steps.SoldOut; }    
    _mint(recipient, num);
    emit TokenMinted(totalSupply());
  }

  function AirdropGroup(address[] memory receivers) external onlyOwner {
    require(totalSupply().add(receivers.length) <= MaxToken, "Sold Out");
    if(totalSupply().add(receivers.length) == MaxToken) { sellingStep = Steps.SoldOut; }    
    for (uint256 i = 0; i < receivers.length; i++) {
      Airdrop(1, receivers[i]);
    }
  }

  function setWL() external onlyOwner {
    sellingStep = Steps.WLMints;
  }

  function setAllowList() external onlyOwner {
    require(sellingStep == Steps.WLMints, "Active WLMints Selling Step at first");
    sellingStep = Steps.Allowlist;
  }

  function setSale() external onlyOwner {
    require(sellingStep == Steps.Allowlist, "Active Allowlist Selling Step at first");
    sellingStep = Steps.Sale;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseUri = baseURI;
  }

  function setNotRevealURI(string memory preRevealURI) external onlyOwner {
    _notRevealURI = preRevealURI;
  }

  function setPrice(uint256 _newPrice) public onlyOwner {
    Price = _newPrice;
  }

  
  function _leaf(address account) internal pure returns(bytes32) {
    return keccak256(abi.encodePacked(account));
  }

  //// OG WHITELIST WALLETS
  function isOGWhitelisted(address account, bytes32[] calldata proof) internal view returns(bool) {
    return _verify(_leaf(account), proof);
  }

  function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
    return MerkleProof.verify(proof, merkleRootOG, leaf);
  }

  function changeMerkleRootOG(bytes32 _newMerkleRootOG) external onlyOwner {
    merkleRootOG = _newMerkleRootOG;
  }

  //NORMAL WHITELIST WALLETS
  function isWalletWhiteListed(address account, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyWL(_leaf(account), proof);
  }

  function _verifyWL(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
        return MerkleProof.verify(proof, merkleRootNormalWL, leaf);
  }

  function changeMerkleRootNormalWL(bytes32 _newmerkleRootNormalWL) external onlyOwner {
      merkleRootNormalWL = _newmerkleRootNormalWL;
  }

  //ALLOWLIST WALLETS
  function isAllowList(address account, bytes32[] calldata proof) internal view returns(bool) {
    return _verifyAllowList(_leaf(account), proof);
  }

  function _verifyAllowList(bytes32 leaf, bytes32[] memory proof) internal view returns(bool) {
    return MerkleProof.verify(proof, merkleRootAllowList, leaf);
  }

  function changeMerkleRootAllowList(bytes32 _newmerkleRootAllowList) external onlyOwner {
    merkleRootAllowList = _newmerkleRootAllowList;
  }
  ////////////////////

  function getTokenByOwner(address _owner) public view returns (uint256[] memory) {
    uint256 tokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](tokenCount);
    for (uint256 i; i < tokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
    return ownershipOf(tokenId);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function TurnRevealMode() public onlyOwner {
    RevealedActive = true;
  }

  function withdraw() public payable onlyOwner {
    (bool mod, ) = payable(owner()).call{value: address(this).balance}("");
    require(mod);
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"supply","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"AirdropGroup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MaxAllowListMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MaxOgMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MaxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MaxWlMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"OwnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RevealedActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TokenIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TurnRevealMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newmerkleRootAllowList","type":"bytes32"}],"name":"changeMerkleRootAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newmerkleRootNormalWL","type":"bytes32"}],"name":"changeMerkleRootNormalWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRootOG","type":"bytes32"}],"name":"changeMerkleRootOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootAllowList","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootNormalWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootOG","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintAmount","type":"uint8"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintAmount","type":"uint8"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"mintAmount","type":"uint8"},{"internalType":"address","name":"_account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum AkiStory.Steps","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"preRevealURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWL","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":"a","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a805460ff1916905566f8b0a10e470000600b556115b3600c556000600d553480156200003157600080fd5b506040805180820182526009815268416b692053746f727960b81b602080830191825283518085019094526002845261415360f01b9084015281519192916200007d9160019162000116565b5080516200009390600290602084019062000116565b505050620000b0620000aa620000c060201b60201c565b620000c4565b600e805460ff19169055620001f9565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b61343980620002096000396000f3fe6080604052600436106102fe5760003560e01c8063659deed811610190578063a22cb465116100dc578063cbccefb211610095578063dc33e6811161006f578063dc33e681146108da578063e196c5d4146108fa578063e985e9c51461091a578063f2fde38b1461096357600080fd5b8063cbccefb214610883578063d4c76e8b146108aa578063dad8d8ca146108c057600080fd5b8063a22cb465146107cb578063ad6cb319146107eb578063b2efedab14610801578063b88d4fde1461082e578063bc0ac7461461084e578063c87b56dd1461086357600080fd5b80638da5cb5b1161014957806394bbc4ac1161012357806394bbc4ac1461075357806395d89b41146107735780639c4662a3146107885780639dfde201146107b557600080fd5b80638da5cb5b146106c857806391b7f5ed146106e65780639231ab2a1461070657600080fd5b8063659deed8146106205780636ecd23061461063357806370a0823114610646578063715018a61461066657806374812c7b1461067b5780637871e154146106a857600080fd5b80632f745c591161024f578063486835031161020857806351743bdc116101e257806351743bdc146105ab57806355f804b3146105c05780635accac99146105e05780636352211e1461060057600080fd5b8063486835031461053e5780634cec5d9d1461055e5780634f6ccce71461058b57600080fd5b80632f745c59146104b057806333983bef146104d057806338c5426f146104f05780633ccfd60b1461050357806342842e0e1461050b57806344f7a48b1461052b57600080fd5b8063095ea7b3116102bc5780631d9cfd6d116102965780631d9cfd6d1461043857806323b872dd1461044d5780632bc79b161461046d5780632bf79c941461048357600080fd5b8063095ea7b3146103e35780631618c8df1461040357806318160ddd1461042357600080fd5b8062ce7f541461030357806301ffc9a71461031a578063030e93451461034f5780630353025f1461037357806306fdde0314610389578063081812fc146103ab575b600080fd5b34801561030f57600080fd5b50610318610983565b005b34801561032657600080fd5b5061033a610335366004612b8b565b610a3f565b60405190151581526020015b60405180910390f35b34801561035b57600080fd5b5061036560155481565b604051908152602001610346565b34801561037f57600080fd5b50610365600d5481565b34801561039557600080fd5b5061039e610aac565b6040516103469190612c00565b3480156103b757600080fd5b506103cb6103c6366004612c13565b610b3e565b6040516001600160a01b039091168152602001610346565b3480156103ef57600080fd5b506103186103fe366004612c43565b610bc9565b34801561040f57600080fd5b5061031861041e366004612c13565b610ce1565b34801561042f57600080fd5b50600054610365565b34801561044457600080fd5b50610318610dab565b34801561045957600080fd5b50610318610468366004612c6d565b610e5e565b34801561047957600080fd5b5061036560145481565b34801561048f57600080fd5b506104a361049e366004612ca9565b610e69565b6040516103469190612cc4565b3480156104bc57600080fd5b506103656104cb366004612c43565b610f0a565b3480156104dc57600080fd5b506103186104eb366004612c13565b611066565b6103186104fe366004612d19565b611095565b6103186112a6565b34801561051757600080fd5b50610318610526366004612c6d565b611344565b610318610539366004612d19565b61135f565b34801561054a57600080fd5b50610318610559366004612def565b6114a1565b34801561056a57600080fd5b50610365610579366004612ca9565b600f6020526000908152604090205481565b34801561059757600080fd5b506103656105a6366004612c13565b611565565b3480156105b757600080fd5b506103186115c7565b3480156105cc57600080fd5b506103186105db366004612e9b565b611604565b3480156105ec57600080fd5b506103186105fb366004612f63565b61163a565b34801561060c57600080fd5b506103cb61061b366004612c13565b611677565b61031861062e366004612d19565b611689565b610318610641366004612fab565b6117c5565b34801561065257600080fd5b50610365610661366004612ca9565b6119ab565b34801561067257600080fd5b50610318611a3c565b34801561068757600080fd5b50610365610696366004612ca9565b60106020526000908152604090205481565b3480156106b457600080fd5b506103186106c3366004612fc6565b611a72565b3480156106d457600080fd5b506007546001600160a01b03166103cb565b3480156106f257600080fd5b50610318610701366004612c13565b611b37565b34801561071257600080fd5b50610726610721366004612c13565b611b66565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610346565b34801561075f57600080fd5b5061031861076e366004612c13565b611b83565b34801561077f57600080fd5b5061039e611bb2565b34801561079457600080fd5b506103656107a3366004612ca9565b60116020526000908152604090205481565b3480156107c157600080fd5b50610365600b5481565b3480156107d757600080fd5b506103186107e6366004612ff2565b611bc1565b3480156107f757600080fd5b5061036560135481565b34801561080d57600080fd5b5061036561081c366004612ca9565b60126020526000908152604090205481565b34801561083a57600080fd5b5061031861084936600461302e565b611c86565b34801561085a57600080fd5b50610318611cbf565b34801561086f57600080fd5b5061039e61087e366004612c13565b611cf8565b34801561088f57600080fd5b50600e5461089d9060ff1681565b60405161034691906130bf565b3480156108b657600080fd5b50610365600c5481565b3480156108cc57600080fd5b50600a5461033a9060ff1681565b3480156108e657600080fd5b506103656108f5366004612ca9565b611e93565b34801561090657600080fd5b50610318610915366004612c13565b611e9e565b34801561092657600080fd5b5061033a6109353660046130e7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561096f57600080fd5b5061031861097e366004612ca9565b611ecd565b6007546001600160a01b031633146109b65760405162461bcd60e51b81526004016109ad90613111565b60405180910390fd5b6001600e5460ff1660048111156109cf576109cf6130a9565b14610a285760405162461bcd60e51b8152602060048201526024808201527f41637469766520574c4d696e74732053656c6c696e67205374657020617420666044820152631a5c9cdd60e21b60648201526084016109ad565b600e80546002919060ff19166001835b0217905550565b60006001600160e01b031982166380ac58cd60e01b1480610a7057506001600160e01b03198216635b5e139f60e01b145b80610a8b57506001600160e01b0319821663780e9d6360e01b145b80610aa657506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610abb90613146565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790613146565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4b826000541190565b610bad5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016109ad565b506000908152600560205260409020546001600160a01b031690565b6000610bd482611677565b9050806001600160a01b0316836001600160a01b03161415610c435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109ad565b336001600160a01b0382161480610c5f5750610c5f8133610935565b610cd15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109ad565b610cdc838383611f65565b505050565b6007546001600160a01b03163314610d0b5760405162461bcd60e51b81526004016109ad90613111565b600c54610d2182610d1b60005490565b90611fc1565b1115610d3f5760405162461bcd60e51b81526004016109ad90613181565b600c54610d4f82610d1b60005490565b1415610d6357600e805460ff191660041790555b610d6d3382611fd4565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e610d9760005490565b60405190815260200160405180910390a150565b6007546001600160a01b03163314610dd55760405162461bcd60e51b81526004016109ad90613111565b6002600e5460ff166004811115610dee57610dee6130a9565b14610e4a5760405162461bcd60e51b815260206004820152602660248201527f41637469766520416c6c6f776c6973742053656c6c696e67205374657020617460448201526508199a5c9cdd60d21b60648201526084016109ad565b600e80546003919060ff1916600183610a38565b610cdc838383611fde565b60606000610e76836119ab565b90506000816001600160401b03811115610e9257610e92612da9565b604051908082528060200260200182016040528015610ebb578160200160208202803683370190505b50905060005b82811015610f0257610ed38582610f0a565b828281518110610ee557610ee56131a3565b602090810291909101015280610efa816131cf565b915050610ec1565b509392505050565b6000610f15836119ab565b8210610f6e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109ad565b600080549080805b83811015611006576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fc857805192505b876001600160a01b0316836001600160a01b03161415610ffd5786841415610ff657509350610aa692505050565b6001909301925b50600101610f76565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109ad565b6007546001600160a01b031633146110905760405162461bcd60e51b81526004016109ad90613111565b601555565b6001600e5460ff1660048111156110ae576110ae6130a9565b146110f55760405162461bcd60e51b815260206004820152601760248201527615d3135a5b9d1cc81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064016109ad565b600c546111088560ff16610d1b60005490565b11156111265760405162461bcd60e51b81526004016109ad90613181565b6111318383836122c1565b61114d5760405162461bcd60e51b81526004016109ad906131ea565b60008460ff16116111705760405162461bcd60e51b81526004016109ad90613213565b336000908152601060205260409020546002906111919060ff87169061324a565b11156111af5760405162461bcd60e51b81526004016109ad90613262565b336000908152601060205260408120805460ff871692906111d190849061324a565b9091555050600b5434906111e99060ff87169061328c565b111561122a5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b60448201526064016109ad565b600c548460ff1661123a60005490565b611244919061324a565b141561125857600e805460ff191660041790555b611265338560ff16611fd4565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e61128f60005490565b60405190815260200160405180910390a150505050565b6007546001600160a01b031633146112d05760405162461bcd60e51b81526004016109ad90613111565b60006112e46007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461132e576040519150601f19603f3d011682016040523d82523d6000602084013e611333565b606091505b505090508061134157600080fd5b50565b610cdc83838360405180602001604052806000815250611c86565b6002600e5460ff166004811115611378576113786130a9565b146113c55760405162461bcd60e51b815260206004820152601a60248201527f416c6c6f77204c69737420686173206e6f74207374617274656400000000000060448201526064016109ad565b600c546113d88560ff16610d1b60005490565b11156113f65760405162461bcd60e51b81526004016109ad90613181565b611401838383612310565b61141d5760405162461bcd60e51b81526004016109ad906131ea565b60008460ff16116114405760405162461bcd60e51b81526004016109ad90613213565b336000908152601160205260409020546002906114619060ff87169061324a565b111561147f5760405162461bcd60e51b81526004016109ad90613262565b336000908152601160205260408120805460ff871692906111d190849061324a565b6007546001600160a01b031633146114cb5760405162461bcd60e51b81526004016109ad90613111565b600c546114dc8251610d1b60005490565b11156114fa5760405162461bcd60e51b81526004016109ad90613181565b600c5461150b8251610d1b60005490565b141561151f57600e805460ff191660041790555b60005b81518110156115615761154f6001838381518110611542576115426131a3565b6020026020010151611a72565b80611559816131cf565b915050611522565b5050565b6000805482106115c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109ad565b5090565b6007546001600160a01b031633146115f15760405162461bcd60e51b81526004016109ad90613111565b600e80546001919060ff19168280610a38565b6007546001600160a01b0316331461162e5760405162461bcd60e51b81526004016109ad90613111565b610cdc60088383612a6c565b6007546001600160a01b031633146116645760405162461bcd60e51b81526004016109ad90613111565b8051611561906009906020840190612aec565b600061168282612357565b5192915050565b6001600e5460ff1660048111156116a2576116a26130a9565b146116e95760405162461bcd60e51b815260206004820152601760248201527615d3135a5b9d1cc81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064016109ad565b600c546116fc8560ff16610d1b60005490565b111561171a5760405162461bcd60e51b81526004016109ad90613181565b61172583838361242d565b6117415760405162461bcd60e51b81526004016109ad906131ea565b336000908152600f60205260409020546003906117629060ff87169061324a565b11156117805760405162461bcd60e51b81526004016109ad90613262565b60008460ff16116117a35760405162461bcd60e51b81526004016109ad90613213565b336000908152600f60205260408120805460ff871692906111d190849061324a565b6004600e5460ff1660048111156117de576117de6130a9565b14156117fc5760405162461bcd60e51b81526004016109ad90613181565b6003600e5460ff166004811115611815576118156130a9565b146118625760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c6520686173206e6f742073746172746564000000000060448201526064016109ad565b600c546118758260ff16610d1b60005490565b11156118935760405162461bcd60e51b81526004016109ad90613181565b60008160ff16116118b65760405162461bcd60e51b81526004016109ad90613213565b336000908152601260205260409020546005906118d79060ff84169061324a565b11156118f55760405162461bcd60e51b81526004016109ad90613262565b336000908152601260205260408120805460ff8416929061191790849061324a565b9091555050600b54349061192f9060ff84169061328c565b11156119705760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b60448201526064016109ad565b600c548160ff1661198060005490565b61198a919061324a565b141561199e57600e805460ff191660041790555b610d6d338260ff16611fd4565b60006001600160a01b038216611a175760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109ad565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314611a665760405162461bcd60e51b81526004016109ad90613111565b611a706000612474565b565b6007546001600160a01b03163314611a9c5760405162461bcd60e51b81526004016109ad90613111565b600c54611aac83610d1b60005490565b1115611aca5760405162461bcd60e51b81526004016109ad90613181565b600c54611ada83610d1b60005490565b1415611aee57600e805460ff191660041790555b611af88183611fd4565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e611b2260005490565b60405190815260200160405180910390a15050565b6007546001600160a01b03163314611b615760405162461bcd60e51b81526004016109ad90613111565b600b55565b6040805180820190915260008082526020820152610aa682612357565b6007546001600160a01b03163314611bad5760405162461bcd60e51b81526004016109ad90613111565b601455565b606060028054610abb90613146565b6001600160a01b038216331415611c1a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109ad565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c91848484611fde565b611c9d848484846124c6565b611cb95760405162461bcd60e51b81526004016109ad906132ab565b50505050565b6007546001600160a01b03163314611ce95760405162461bcd60e51b81526004016109ad90613111565b600a805460ff19166001179055565b6060611d05826000541190565b611d695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ad565b600c54600054101580611d835750600a5460ff1615156001145b15611e0157600c54821015611dfc576000611dc1600c54611dbb611db4600d54600c546125d390919063ffffffff16565b8690611fc1565b906125df565b9050611dcb6125eb565b611dd4826125fa565b604051602001611de59291906132fe565b604051602081830303815290604052915050919050565b919050565b60098054611e0e90613146565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3a90613146565b8015611e875780601f10611e5c57610100808354040283529160200191611e87565b820191906000526020600020905b815481529060010190602001808311611e6a57829003601f168201915b50505050509050919050565b6000610aa6826126f7565b6007546001600160a01b03163314611ec85760405162461bcd60e51b81526004016109ad90613111565b601355565b6007546001600160a01b03163314611ef75760405162461bcd60e51b81526004016109ad90613111565b6001600160a01b038116611f5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ad565b61134181612474565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611fcd828461324a565b9392505050565b6115618282612795565b6000611fe982612357565b80519091506000906001600160a01b0316336001600160a01b0316148061202057503361201584610b3e565b6001600160a01b0316145b80612032575081516120329033610935565b90508061209c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109ad565b846001600160a01b031682600001516001600160a01b0316146121105760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109ad565b6001600160a01b0384166121745760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109ad565b6121846000848460000151611f65565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166122775761222b816000541190565b1561227757825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006123086122cf856127af565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127ee92505050565b949350505050565b600061230861231e856127af565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127fd92505050565b6040805180820190915260008082526020820152612376826000541190565b6123d55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109ad565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612423579392505050565b50600019016123d7565b600061230861243b856127af565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061280c92505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156125c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061250a903390899088908890600401613354565b602060405180830381600087803b15801561252457600080fd5b505af1925050508015612554575060408051601f3d908101601f1916820190925261255191810190613391565b60015b6125ae573d808015612582576040519150601f19603f3d011682016040523d82523d6000602084013e612587565b606091505b5080516125a65760405162461bcd60e51b81526004016109ad906132ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612308565b506001949350505050565b6000611fcd82846133ae565b6000611fcd82846133db565b606060088054610abb90613146565b60608161261e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126485780612632816131cf565b91506126419050600a836133ef565b9150612622565b6000816001600160401b0381111561266257612662612da9565b6040519080825280601f01601f19166020018201604052801561268c576020820181803683370190505b5090505b8415612308576126a16001836133ae565b91506126ae600a866133db565b6126b990603061324a565b60f81b8183815181106126ce576126ce6131a3565b60200101906001600160f81b031916908160001a9053506126f0600a866133ef565b9450612690565b60006001600160a01b0382166127695760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109ad565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61156182826040518060200160405280600081525061281b565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611fcd8260145485612828565b6000611fcd8260155485612828565b6000611fcd8260135485612828565b610cdc838383600161283e565b6000826128358584612a00565b14949350505050565b6000546001600160a01b0385166128a15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ad565b836128ff5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016109ad565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156129f75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156129eb576129cf60008884886124c6565b6129eb5760405162461bcd60e51b81526004016109ad906132ab565b6001918201910161297c565b506000556122ba565b600081815b8451811015610f02576000858281518110612a2257612a226131a3565b60200260200101519050808311612a485760008381526020829052604090209250612a59565b600081815260208490526040902092505b5080612a64816131cf565b915050612a05565b828054612a7890613146565b90600052602060002090601f016020900481019282612a9a5760008555612ae0565b82601f10612ab35782800160ff19823516178555612ae0565b82800160010185558215612ae0579182015b82811115612ae0578235825591602001919060010190612ac5565b506115c3929150612b60565b828054612af890613146565b90600052602060002090601f016020900481019282612b1a5760008555612ae0565b82601f10612b3357805160ff1916838001178555612ae0565b82800160010185558215612ae0579182015b82811115612ae0578251825591602001919060010190612b45565b5b808211156115c35760008155600101612b61565b6001600160e01b03198116811461134157600080fd5b600060208284031215612b9d57600080fd5b8135611fcd81612b75565b60005b83811015612bc3578181015183820152602001612bab565b83811115611cb95750506000910152565b60008151808452612bec816020860160208601612ba8565b601f01601f19169290920160200192915050565b602081526000611fcd6020830184612bd4565b600060208284031215612c2557600080fd5b5035919050565b80356001600160a01b0381168114611dfc57600080fd5b60008060408385031215612c5657600080fd5b612c5f83612c2c565b946020939093013593505050565b600080600060608486031215612c8257600080fd5b612c8b84612c2c565b9250612c9960208501612c2c565b9150604084013590509250925092565b600060208284031215612cbb57600080fd5b611fcd82612c2c565b6020808252825182820181905260009190848201906040850190845b81811015612cfc57835183529284019291840191600101612ce0565b50909695505050505050565b803560ff81168114611dfc57600080fd5b60008060008060608587031215612d2f57600080fd5b612d3885612d08565b9350612d4660208601612c2c565b925060408501356001600160401b0380821115612d6257600080fd5b818701915087601f830112612d7657600080fd5b813581811115612d8557600080fd5b8860208260051b8501011115612d9a57600080fd5b95989497505060200194505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612de757612de7612da9565b604052919050565b60006020808385031215612e0257600080fd5b82356001600160401b0380821115612e1957600080fd5b818501915085601f830112612e2d57600080fd5b813581811115612e3f57612e3f612da9565b8060051b9150612e50848301612dbf565b8181529183018401918481019088841115612e6a57600080fd5b938501935b83851015612e8f57612e8085612c2c565b82529385019390850190612e6f565b98975050505050505050565b60008060208385031215612eae57600080fd5b82356001600160401b0380821115612ec557600080fd5b818501915085601f830112612ed957600080fd5b813581811115612ee857600080fd5b866020828501011115612efa57600080fd5b60209290920196919550909350505050565b60006001600160401b03831115612f2557612f25612da9565b612f38601f8401601f1916602001612dbf565b9050828152838383011115612f4c57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612f7557600080fd5b81356001600160401b03811115612f8b57600080fd5b8201601f81018413612f9c57600080fd5b61230884823560208401612f0c565b600060208284031215612fbd57600080fd5b611fcd82612d08565b60008060408385031215612fd957600080fd5b82359150612fe960208401612c2c565b90509250929050565b6000806040838503121561300557600080fd5b61300e83612c2c565b91506020830135801515811461302357600080fd5b809150509250929050565b6000806000806080858703121561304457600080fd5b61304d85612c2c565b935061305b60208601612c2c565b92506040850135915060608501356001600160401b0381111561307d57600080fd5b8501601f8101871361308e57600080fd5b61309d87823560208401612f0c565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b60208101600583106130e157634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156130fa57600080fd5b61310383612c2c565b9150612fe960208401612c2c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061315a57607f821691505b6020821081141561317b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156131e3576131e36131b9565b5060010190565b6020808252600f908201526e139bdd0815da1a5d195b1a5cdd1959608a1b604082015260600190565b6020808252601d908201527f4174206c65617374206f6e652073686f756c64206265206d696e746564000000604082015260600190565b6000821982111561325d5761325d6131b9565b500190565b60208082526010908201526f13585e081391951cc814995858da195960821b604082015260600190565b60008160001904831182151516156132a6576132a66131b9565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613310818460208801612ba8565b68616b6973746f72792d60b81b9083019081528351613336816009840160208801612ba8565b64173539b7b760d91b60099290910191820152600e01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061338790830184612bd4565b9695505050505050565b6000602082840312156133a357600080fd5b8151611fcd81612b75565b6000828210156133c0576133c06131b9565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826133ea576133ea6133c5565b500690565b6000826133fe576133fe6133c5565b50049056fea26469706673582212208b4a62cfae1e1c4c1495d18ef38578736a288f5277ba6c116b9378aa0a7d707364736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102fe5760003560e01c8063659deed811610190578063a22cb465116100dc578063cbccefb211610095578063dc33e6811161006f578063dc33e681146108da578063e196c5d4146108fa578063e985e9c51461091a578063f2fde38b1461096357600080fd5b8063cbccefb214610883578063d4c76e8b146108aa578063dad8d8ca146108c057600080fd5b8063a22cb465146107cb578063ad6cb319146107eb578063b2efedab14610801578063b88d4fde1461082e578063bc0ac7461461084e578063c87b56dd1461086357600080fd5b80638da5cb5b1161014957806394bbc4ac1161012357806394bbc4ac1461075357806395d89b41146107735780639c4662a3146107885780639dfde201146107b557600080fd5b80638da5cb5b146106c857806391b7f5ed146106e65780639231ab2a1461070657600080fd5b8063659deed8146106205780636ecd23061461063357806370a0823114610646578063715018a61461066657806374812c7b1461067b5780637871e154146106a857600080fd5b80632f745c591161024f578063486835031161020857806351743bdc116101e257806351743bdc146105ab57806355f804b3146105c05780635accac99146105e05780636352211e1461060057600080fd5b8063486835031461053e5780634cec5d9d1461055e5780634f6ccce71461058b57600080fd5b80632f745c59146104b057806333983bef146104d057806338c5426f146104f05780633ccfd60b1461050357806342842e0e1461050b57806344f7a48b1461052b57600080fd5b8063095ea7b3116102bc5780631d9cfd6d116102965780631d9cfd6d1461043857806323b872dd1461044d5780632bc79b161461046d5780632bf79c941461048357600080fd5b8063095ea7b3146103e35780631618c8df1461040357806318160ddd1461042357600080fd5b8062ce7f541461030357806301ffc9a71461031a578063030e93451461034f5780630353025f1461037357806306fdde0314610389578063081812fc146103ab575b600080fd5b34801561030f57600080fd5b50610318610983565b005b34801561032657600080fd5b5061033a610335366004612b8b565b610a3f565b60405190151581526020015b60405180910390f35b34801561035b57600080fd5b5061036560155481565b604051908152602001610346565b34801561037f57600080fd5b50610365600d5481565b34801561039557600080fd5b5061039e610aac565b6040516103469190612c00565b3480156103b757600080fd5b506103cb6103c6366004612c13565b610b3e565b6040516001600160a01b039091168152602001610346565b3480156103ef57600080fd5b506103186103fe366004612c43565b610bc9565b34801561040f57600080fd5b5061031861041e366004612c13565b610ce1565b34801561042f57600080fd5b50600054610365565b34801561044457600080fd5b50610318610dab565b34801561045957600080fd5b50610318610468366004612c6d565b610e5e565b34801561047957600080fd5b5061036560145481565b34801561048f57600080fd5b506104a361049e366004612ca9565b610e69565b6040516103469190612cc4565b3480156104bc57600080fd5b506103656104cb366004612c43565b610f0a565b3480156104dc57600080fd5b506103186104eb366004612c13565b611066565b6103186104fe366004612d19565b611095565b6103186112a6565b34801561051757600080fd5b50610318610526366004612c6d565b611344565b610318610539366004612d19565b61135f565b34801561054a57600080fd5b50610318610559366004612def565b6114a1565b34801561056a57600080fd5b50610365610579366004612ca9565b600f6020526000908152604090205481565b34801561059757600080fd5b506103656105a6366004612c13565b611565565b3480156105b757600080fd5b506103186115c7565b3480156105cc57600080fd5b506103186105db366004612e9b565b611604565b3480156105ec57600080fd5b506103186105fb366004612f63565b61163a565b34801561060c57600080fd5b506103cb61061b366004612c13565b611677565b61031861062e366004612d19565b611689565b610318610641366004612fab565b6117c5565b34801561065257600080fd5b50610365610661366004612ca9565b6119ab565b34801561067257600080fd5b50610318611a3c565b34801561068757600080fd5b50610365610696366004612ca9565b60106020526000908152604090205481565b3480156106b457600080fd5b506103186106c3366004612fc6565b611a72565b3480156106d457600080fd5b506007546001600160a01b03166103cb565b3480156106f257600080fd5b50610318610701366004612c13565b611b37565b34801561071257600080fd5b50610726610721366004612c13565b611b66565b6040805182516001600160a01b031681526020928301516001600160401b03169281019290925201610346565b34801561075f57600080fd5b5061031861076e366004612c13565b611b83565b34801561077f57600080fd5b5061039e611bb2565b34801561079457600080fd5b506103656107a3366004612ca9565b60116020526000908152604090205481565b3480156107c157600080fd5b50610365600b5481565b3480156107d757600080fd5b506103186107e6366004612ff2565b611bc1565b3480156107f757600080fd5b5061036560135481565b34801561080d57600080fd5b5061036561081c366004612ca9565b60126020526000908152604090205481565b34801561083a57600080fd5b5061031861084936600461302e565b611c86565b34801561085a57600080fd5b50610318611cbf565b34801561086f57600080fd5b5061039e61087e366004612c13565b611cf8565b34801561088f57600080fd5b50600e5461089d9060ff1681565b60405161034691906130bf565b3480156108b657600080fd5b50610365600c5481565b3480156108cc57600080fd5b50600a5461033a9060ff1681565b3480156108e657600080fd5b506103656108f5366004612ca9565b611e93565b34801561090657600080fd5b50610318610915366004612c13565b611e9e565b34801561092657600080fd5b5061033a6109353660046130e7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561096f57600080fd5b5061031861097e366004612ca9565b611ecd565b6007546001600160a01b031633146109b65760405162461bcd60e51b81526004016109ad90613111565b60405180910390fd5b6001600e5460ff1660048111156109cf576109cf6130a9565b14610a285760405162461bcd60e51b8152602060048201526024808201527f41637469766520574c4d696e74732053656c6c696e67205374657020617420666044820152631a5c9cdd60e21b60648201526084016109ad565b600e80546002919060ff19166001835b0217905550565b60006001600160e01b031982166380ac58cd60e01b1480610a7057506001600160e01b03198216635b5e139f60e01b145b80610a8b57506001600160e01b0319821663780e9d6360e01b145b80610aa657506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610abb90613146565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae790613146565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4b826000541190565b610bad5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016109ad565b506000908152600560205260409020546001600160a01b031690565b6000610bd482611677565b9050806001600160a01b0316836001600160a01b03161415610c435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109ad565b336001600160a01b0382161480610c5f5750610c5f8133610935565b610cd15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109ad565b610cdc838383611f65565b505050565b6007546001600160a01b03163314610d0b5760405162461bcd60e51b81526004016109ad90613111565b600c54610d2182610d1b60005490565b90611fc1565b1115610d3f5760405162461bcd60e51b81526004016109ad90613181565b600c54610d4f82610d1b60005490565b1415610d6357600e805460ff191660041790555b610d6d3382611fd4565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e610d9760005490565b60405190815260200160405180910390a150565b6007546001600160a01b03163314610dd55760405162461bcd60e51b81526004016109ad90613111565b6002600e5460ff166004811115610dee57610dee6130a9565b14610e4a5760405162461bcd60e51b815260206004820152602660248201527f41637469766520416c6c6f776c6973742053656c6c696e67205374657020617460448201526508199a5c9cdd60d21b60648201526084016109ad565b600e80546003919060ff1916600183610a38565b610cdc838383611fde565b60606000610e76836119ab565b90506000816001600160401b03811115610e9257610e92612da9565b604051908082528060200260200182016040528015610ebb578160200160208202803683370190505b50905060005b82811015610f0257610ed38582610f0a565b828281518110610ee557610ee56131a3565b602090810291909101015280610efa816131cf565b915050610ec1565b509392505050565b6000610f15836119ab565b8210610f6e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109ad565b600080549080805b83811015611006576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610fc857805192505b876001600160a01b0316836001600160a01b03161415610ffd5786841415610ff657509350610aa692505050565b6001909301925b50600101610f76565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016109ad565b6007546001600160a01b031633146110905760405162461bcd60e51b81526004016109ad90613111565b601555565b6001600e5460ff1660048111156110ae576110ae6130a9565b146110f55760405162461bcd60e51b815260206004820152601760248201527615d3135a5b9d1cc81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064016109ad565b600c546111088560ff16610d1b60005490565b11156111265760405162461bcd60e51b81526004016109ad90613181565b6111318383836122c1565b61114d5760405162461bcd60e51b81526004016109ad906131ea565b60008460ff16116111705760405162461bcd60e51b81526004016109ad90613213565b336000908152601060205260409020546002906111919060ff87169061324a565b11156111af5760405162461bcd60e51b81526004016109ad90613262565b336000908152601060205260408120805460ff871692906111d190849061324a565b9091555050600b5434906111e99060ff87169061328c565b111561122a5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b60448201526064016109ad565b600c548460ff1661123a60005490565b611244919061324a565b141561125857600e805460ff191660041790555b611265338560ff16611fd4565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e61128f60005490565b60405190815260200160405180910390a150505050565b6007546001600160a01b031633146112d05760405162461bcd60e51b81526004016109ad90613111565b60006112e46007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d806000811461132e576040519150601f19603f3d011682016040523d82523d6000602084013e611333565b606091505b505090508061134157600080fd5b50565b610cdc83838360405180602001604052806000815250611c86565b6002600e5460ff166004811115611378576113786130a9565b146113c55760405162461bcd60e51b815260206004820152601a60248201527f416c6c6f77204c69737420686173206e6f74207374617274656400000000000060448201526064016109ad565b600c546113d88560ff16610d1b60005490565b11156113f65760405162461bcd60e51b81526004016109ad90613181565b611401838383612310565b61141d5760405162461bcd60e51b81526004016109ad906131ea565b60008460ff16116114405760405162461bcd60e51b81526004016109ad90613213565b336000908152601160205260409020546002906114619060ff87169061324a565b111561147f5760405162461bcd60e51b81526004016109ad90613262565b336000908152601160205260408120805460ff871692906111d190849061324a565b6007546001600160a01b031633146114cb5760405162461bcd60e51b81526004016109ad90613111565b600c546114dc8251610d1b60005490565b11156114fa5760405162461bcd60e51b81526004016109ad90613181565b600c5461150b8251610d1b60005490565b141561151f57600e805460ff191660041790555b60005b81518110156115615761154f6001838381518110611542576115426131a3565b6020026020010151611a72565b80611559816131cf565b915050611522565b5050565b6000805482106115c35760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109ad565b5090565b6007546001600160a01b031633146115f15760405162461bcd60e51b81526004016109ad90613111565b600e80546001919060ff19168280610a38565b6007546001600160a01b0316331461162e5760405162461bcd60e51b81526004016109ad90613111565b610cdc60088383612a6c565b6007546001600160a01b031633146116645760405162461bcd60e51b81526004016109ad90613111565b8051611561906009906020840190612aec565b600061168282612357565b5192915050565b6001600e5460ff1660048111156116a2576116a26130a9565b146116e95760405162461bcd60e51b815260206004820152601760248201527615d3135a5b9d1cc81a185cc81b9bdd081cdd185c9d1959604a1b60448201526064016109ad565b600c546116fc8560ff16610d1b60005490565b111561171a5760405162461bcd60e51b81526004016109ad90613181565b61172583838361242d565b6117415760405162461bcd60e51b81526004016109ad906131ea565b336000908152600f60205260409020546003906117629060ff87169061324a565b11156117805760405162461bcd60e51b81526004016109ad90613262565b60008460ff16116117a35760405162461bcd60e51b81526004016109ad90613213565b336000908152600f60205260408120805460ff871692906111d190849061324a565b6004600e5460ff1660048111156117de576117de6130a9565b14156117fc5760405162461bcd60e51b81526004016109ad90613181565b6003600e5460ff166004811115611815576118156130a9565b146118625760405162461bcd60e51b815260206004820152601b60248201527f5075626c69632053616c6520686173206e6f742073746172746564000000000060448201526064016109ad565b600c546118758260ff16610d1b60005490565b11156118935760405162461bcd60e51b81526004016109ad90613181565b60008160ff16116118b65760405162461bcd60e51b81526004016109ad90613213565b336000908152601260205260409020546005906118d79060ff84169061324a565b11156118f55760405162461bcd60e51b81526004016109ad90613262565b336000908152601260205260408120805460ff8416929061191790849061324a565b9091555050600b54349061192f9060ff84169061328c565b11156119705760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f7567682066756e647360801b60448201526064016109ad565b600c548160ff1661198060005490565b61198a919061324a565b141561199e57600e805460ff191660041790555b610d6d338260ff16611fd4565b60006001600160a01b038216611a175760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109ad565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314611a665760405162461bcd60e51b81526004016109ad90613111565b611a706000612474565b565b6007546001600160a01b03163314611a9c5760405162461bcd60e51b81526004016109ad90613111565b600c54611aac83610d1b60005490565b1115611aca5760405162461bcd60e51b81526004016109ad90613181565b600c54611ada83610d1b60005490565b1415611aee57600e805460ff191660041790555b611af88183611fd4565b7ff00d28232b285f24f2e38415deb2ceb31069e70d4505838b3911b4f02058502e611b2260005490565b60405190815260200160405180910390a15050565b6007546001600160a01b03163314611b615760405162461bcd60e51b81526004016109ad90613111565b600b55565b6040805180820190915260008082526020820152610aa682612357565b6007546001600160a01b03163314611bad5760405162461bcd60e51b81526004016109ad90613111565b601455565b606060028054610abb90613146565b6001600160a01b038216331415611c1a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109ad565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611c91848484611fde565b611c9d848484846124c6565b611cb95760405162461bcd60e51b81526004016109ad906132ab565b50505050565b6007546001600160a01b03163314611ce95760405162461bcd60e51b81526004016109ad90613111565b600a805460ff19166001179055565b6060611d05826000541190565b611d695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109ad565b600c54600054101580611d835750600a5460ff1615156001145b15611e0157600c54821015611dfc576000611dc1600c54611dbb611db4600d54600c546125d390919063ffffffff16565b8690611fc1565b906125df565b9050611dcb6125eb565b611dd4826125fa565b604051602001611de59291906132fe565b604051602081830303815290604052915050919050565b919050565b60098054611e0e90613146565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3a90613146565b8015611e875780601f10611e5c57610100808354040283529160200191611e87565b820191906000526020600020905b815481529060010190602001808311611e6a57829003601f168201915b50505050509050919050565b6000610aa6826126f7565b6007546001600160a01b03163314611ec85760405162461bcd60e51b81526004016109ad90613111565b601355565b6007546001600160a01b03163314611ef75760405162461bcd60e51b81526004016109ad90613111565b6001600160a01b038116611f5c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ad565b61134181612474565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611fcd828461324a565b9392505050565b6115618282612795565b6000611fe982612357565b80519091506000906001600160a01b0316336001600160a01b0316148061202057503361201584610b3e565b6001600160a01b0316145b80612032575081516120329033610935565b90508061209c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016109ad565b846001600160a01b031682600001516001600160a01b0316146121105760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109ad565b6001600160a01b0384166121745760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109ad565b6121846000848460000151611f65565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b426001600160401b0316021790559086018083529120549091166122775761222b816000541190565b1561227757825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006123086122cf856127af565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127ee92505050565b949350505050565b600061230861231e856127af565b8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152506127fd92505050565b6040805180820190915260008082526020820152612376826000541190565b6123d55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109ad565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612423579392505050565b50600019016123d7565b600061230861243b856127af565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061280c92505050565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156125c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061250a903390899088908890600401613354565b602060405180830381600087803b15801561252457600080fd5b505af1925050508015612554575060408051601f3d908101601f1916820190925261255191810190613391565b60015b6125ae573d808015612582576040519150601f19603f3d011682016040523d82523d6000602084013e612587565b606091505b5080516125a65760405162461bcd60e51b81526004016109ad906132ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612308565b506001949350505050565b6000611fcd82846133ae565b6000611fcd82846133db565b606060088054610abb90613146565b60608161261e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126485780612632816131cf565b91506126419050600a836133ef565b9150612622565b6000816001600160401b0381111561266257612662612da9565b6040519080825280601f01601f19166020018201604052801561268c576020820181803683370190505b5090505b8415612308576126a16001836133ae565b91506126ae600a866133db565b6126b990603061324a565b60f81b8183815181106126ce576126ce6131a3565b60200101906001600160f81b031916908160001a9053506126f0600a866133ef565b9450612690565b60006001600160a01b0382166127695760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016109ad565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61156182826040518060200160405280600081525061281b565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611fcd8260145485612828565b6000611fcd8260155485612828565b6000611fcd8260135485612828565b610cdc838383600161283e565b6000826128358584612a00565b14949350505050565b6000546001600160a01b0385166128a15760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109ad565b836128ff5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016109ad565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156129f75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a483156129eb576129cf60008884886124c6565b6129eb5760405162461bcd60e51b81526004016109ad906132ab565b6001918201910161297c565b506000556122ba565b600081815b8451811015610f02576000858281518110612a2257612a226131a3565b60200260200101519050808311612a485760008381526020829052604090209250612a59565b600081815260208490526040902092505b5080612a64816131cf565b915050612a05565b828054612a7890613146565b90600052602060002090601f016020900481019282612a9a5760008555612ae0565b82601f10612ab35782800160ff19823516178555612ae0565b82800160010185558215612ae0579182015b82811115612ae0578235825591602001919060010190612ac5565b506115c3929150612b60565b828054612af890613146565b90600052602060002090601f016020900481019282612b1a5760008555612ae0565b82601f10612b3357805160ff1916838001178555612ae0565b82800160010185558215612ae0579182015b82811115612ae0578251825591602001919060010190612b45565b5b808211156115c35760008155600101612b61565b6001600160e01b03198116811461134157600080fd5b600060208284031215612b9d57600080fd5b8135611fcd81612b75565b60005b83811015612bc3578181015183820152602001612bab565b83811115611cb95750506000910152565b60008151808452612bec816020860160208601612ba8565b601f01601f19169290920160200192915050565b602081526000611fcd6020830184612bd4565b600060208284031215612c2557600080fd5b5035919050565b80356001600160a01b0381168114611dfc57600080fd5b60008060408385031215612c5657600080fd5b612c5f83612c2c565b946020939093013593505050565b600080600060608486031215612c8257600080fd5b612c8b84612c2c565b9250612c9960208501612c2c565b9150604084013590509250925092565b600060208284031215612cbb57600080fd5b611fcd82612c2c565b6020808252825182820181905260009190848201906040850190845b81811015612cfc57835183529284019291840191600101612ce0565b50909695505050505050565b803560ff81168114611dfc57600080fd5b60008060008060608587031215612d2f57600080fd5b612d3885612d08565b9350612d4660208601612c2c565b925060408501356001600160401b0380821115612d6257600080fd5b818701915087601f830112612d7657600080fd5b813581811115612d8557600080fd5b8860208260051b8501011115612d9a57600080fd5b95989497505060200194505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612de757612de7612da9565b604052919050565b60006020808385031215612e0257600080fd5b82356001600160401b0380821115612e1957600080fd5b818501915085601f830112612e2d57600080fd5b813581811115612e3f57612e3f612da9565b8060051b9150612e50848301612dbf565b8181529183018401918481019088841115612e6a57600080fd5b938501935b83851015612e8f57612e8085612c2c565b82529385019390850190612e6f565b98975050505050505050565b60008060208385031215612eae57600080fd5b82356001600160401b0380821115612ec557600080fd5b818501915085601f830112612ed957600080fd5b813581811115612ee857600080fd5b866020828501011115612efa57600080fd5b60209290920196919550909350505050565b60006001600160401b03831115612f2557612f25612da9565b612f38601f8401601f1916602001612dbf565b9050828152838383011115612f4c57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612f7557600080fd5b81356001600160401b03811115612f8b57600080fd5b8201601f81018413612f9c57600080fd5b61230884823560208401612f0c565b600060208284031215612fbd57600080fd5b611fcd82612d08565b60008060408385031215612fd957600080fd5b82359150612fe960208401612c2c565b90509250929050565b6000806040838503121561300557600080fd5b61300e83612c2c565b91506020830135801515811461302357600080fd5b809150509250929050565b6000806000806080858703121561304457600080fd5b61304d85612c2c565b935061305b60208601612c2c565b92506040850135915060608501356001600160401b0381111561307d57600080fd5b8501601f8101871361308e57600080fd5b61309d87823560208401612f0c565b91505092959194509250565b634e487b7160e01b600052602160045260246000fd5b60208101600583106130e157634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156130fa57600080fd5b61310383612c2c565b9150612fe960208401612c2c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061315a57607f821691505b6020821081141561317b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526008908201526714dbdb190813dd5d60c21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156131e3576131e36131b9565b5060010190565b6020808252600f908201526e139bdd0815da1a5d195b1a5cdd1959608a1b604082015260600190565b6020808252601d908201527f4174206c65617374206f6e652073686f756c64206265206d696e746564000000604082015260600190565b6000821982111561325d5761325d6131b9565b500190565b60208082526010908201526f13585e081391951cc814995858da195960821b604082015260600190565b60008160001904831182151516156132a6576132a66131b9565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613310818460208801612ba8565b68616b6973746f72792d60b81b9083019081528351613336816009840160208801612ba8565b64173539b7b760d91b60099290910191820152600e01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061338790830184612bd4565b9695505050505050565b6000602082840312156133a357600080fd5b8151611fcd81612b75565b6000828210156133c0576133c06131b9565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826133ea576133ea6133c5565b500690565b6000826133fe576133fe6133c5565b50049056fea26469706673582212208b4a62cfae1e1c4c1495d18ef38578736a288f5277ba6c116b9378aa0a7d707364736f6c63430008090033

Deployed Bytecode Sourcemap

49969:8519:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55411:169;;;;;;;;;;;;;:::i;:::-;;34241:372;;;;;;;;;;-1:-1:-1;34241:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34241:372:0;;;;;;;;50689:34;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;50689:34:0;592:177:1;50249:29:0;;;;;;;;;;;;;;;;36127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37689:214::-;;;;;;;;;;-1:-1:-1;37689:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2056:32:1;;;2038:51;;2026:2;2011:18;37689:214:0;1892:203:1;37210:413:0;;;;;;;;;;-1:-1:-1;37210:413:0;;;;;:::i;:::-;;:::i;54427:265::-;;;;;;;;;;-1:-1:-1;54427:265:0;;;;;:::i;:::-;;:::i;32498:100::-;;;;;;;;;;-1:-1:-1;32551:7:0;32578:12;32498:100;;55586:163;;;;;;;;;;;;;:::i;38565:162::-;;;;;;;;;;-1:-1:-1;38565:162:0;;;;;:::i;:::-;;:::i;50651:33::-;;;;;;;;;;;;;;;;57680:317;;;;;;;;;;-1:-1:-1;57680:317:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33162:1007::-;;;;;;;;;;-1:-1:-1;33162:1007:0;;;;;:::i;:::-;;:::i;57505:145::-;;;;;;;;;;-1:-1:-1;57505:145:0;;;;;:::i;:::-;;:::i;52130:714::-;;;;;;:::i;:::-;;:::i;58334:147::-;;;:::i;38798:177::-;;;;;;;;;;-1:-1:-1;38798:177:0;;;;;:::i;:::-;;:::i;52850:732::-;;;;;;:::i;:::-;;:::i;54985:338::-;;;;;;;;;;-1:-1:-1;54985:338:0;;;;;:::i;:::-;;:::i;50408:45::-;;;;;;;;;;-1:-1:-1;50408:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;32675:187;;;;;;;;;;-1:-1:-1;32675:187:0;;;;;:::i;:::-;;:::i;55329:76::-;;;;;;;;;;;;;:::i;55755:95::-;;;;;;;;;;-1:-1:-1;55755:95:0;;;;;:::i;:::-;;:::i;55856:113::-;;;;;;;;;;-1:-1:-1;55856:113:0;;;;;:::i;:::-;;:::i;35936:124::-;;;;;;;;;;-1:-1:-1;35936:124:0;;;;;:::i;:::-;;:::i;51414:710::-;;;;;;:::i;:::-;;:::i;53588:723::-;;;;;;:::i;:::-;;:::i;34677:221::-;;;;;;;;;;-1:-1:-1;34677:221:0;;;;;:::i;:::-;;:::i;49076:103::-;;;;;;;;;;;;;:::i;50458:45::-;;;;;;;;;;-1:-1:-1;50458:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;54698:281;;;;;;;;;;-1:-1:-1;54698:281:0;;;;;:::i;:::-;;:::i;48425:87::-;;;;;;;;;;-1:-1:-1;48498:6:0;;-1:-1:-1;;;;;48498:6:0;48425:87;;55975:84;;;;;;;;;;-1:-1:-1;55975:84:0;;;;;:::i;:::-;;:::i;58003:129::-;;;;;;;;;;-1:-1:-1;58003:129:0;;;;;:::i;:::-;;:::i;:::-;;;;8320:13:1;;-1:-1:-1;;;;;8316:39:1;8298:58;;8416:4;8404:17;;;8398:24;-1:-1:-1;;;;;8394:49:1;8372:20;;;8365:79;;;;8271:18;58003:129:0;8088:362:1;57006:143:0;;;;;;;;;;-1:-1:-1;57006:143:0;;;;;:::i;:::-;;:::i;36296:104::-;;;;;;;;;;;;;:::i;50508:52::-;;;;;;;;;;-1:-1:-1;50508:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;50176:33;;;;;;;;;;;;;;;;37975:288;;;;;;;;;;-1:-1:-1;37975:288:0;;;;;:::i;:::-;;:::i;50619:27::-;;;;;;;;;;;;;;;;50565:49;;;;;;;;;;-1:-1:-1;50565:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;39046:355;;;;;;;;;;-1:-1:-1;39046:355:0;;;;;:::i;:::-;;:::i;58251:77::-;;;;;;;;;;;;;:::i;50907:501::-;;;;;;;;;;-1:-1:-1;50907:501:0;;;;;:::i;:::-;;:::i;50379:24::-;;;;;;;;;;-1:-1:-1;50379:24:0;;;;;;;;;;;;;;;:::i;50214:30::-;;;;;;;;;;;;;;;;50137:34;;;;;;;;;;-1:-1:-1;50137:34:0;;;;;;;;58138:107;;;;;;;;;;-1:-1:-1;58138:107:0;;;;;:::i;:::-;;:::i;56529:117::-;;;;;;;;;;-1:-1:-1;56529:117:0;;;;;:::i;:::-;;:::i;38334:164::-;;;;;;;;;;-1:-1:-1;38334:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38455:25:0;;;38431:4;38455:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38334:164;49334:201;;;;;;;;;;-1:-1:-1;49334:201:0;;;;;:::i;:::-;;:::i;55411:169::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;;;;;;;;;55484:13:::1;55469:11;::::0;::::1;;:28;::::0;::::1;;;;;;:::i;:::-;;55461:77;;;::::0;-1:-1:-1;;;55461:77:0;;10782:2:1;55461:77:0::1;::::0;::::1;10764:21:1::0;10821:2;10801:18;;;10794:30;10860:34;10840:18;;;10833:62;-1:-1:-1;;;10911:18:1;;;10904:34;10955:19;;55461:77:0::1;10580:400:1::0;55461:77:0::1;55545:11;:29:::0;;55559:15:::1;::::0;55545:11;-1:-1:-1;;55545:29:0::1;::::0;55559:15;55545:29:::1;;;;;;55411:169::o:0;34241:372::-;34343:4;-1:-1:-1;;;;;;34380:40:0;;-1:-1:-1;;;34380:40:0;;:105;;-1:-1:-1;;;;;;;34437:48:0;;-1:-1:-1;;;34437:48:0;34380:105;:172;;;-1:-1:-1;;;;;;;34502:50:0;;-1:-1:-1;;;34502:50:0;34380:172;:225;;;-1:-1:-1;;;;;;;;;;23006:40:0;;;34569:36;34360:245;34241:372;-1:-1:-1;;34241:372:0:o;36127:100::-;36181:13;36214:5;36207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36127:100;:::o;37689:214::-;37757:7;37785:16;37793:7;39713:4;39747:12;-1:-1:-1;39737:22:0;39656:111;37785:16;37777:74;;;;-1:-1:-1;;;37777:74:0;;11572:2:1;37777:74:0;;;11554:21:1;11611:2;11591:18;;;11584:30;11650:34;11630:18;;;11623:62;-1:-1:-1;;;11701:18:1;;;11694:43;11754:19;;37777:74:0;11370:409:1;37777:74:0;-1:-1:-1;37871:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37871:24:0;;37689:214::o;37210:413::-;37283:13;37299:24;37315:7;37299:15;:24::i;:::-;37283:40;;37348:5;-1:-1:-1;;;;;37342:11:0;:2;-1:-1:-1;;;;;37342:11:0;;;37334:58;;;;-1:-1:-1;;;37334:58:0;;11986:2:1;37334:58:0;;;11968:21:1;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;-1:-1:-1;;;12115:18:1;;;12108:32;12157:19;;37334:58:0;11784:398:1;37334:58:0;30575:10;-1:-1:-1;;;;;37427:21:0;;;;:62;;-1:-1:-1;37452:37:0;37469:5;30575:10;38334:164;:::i;37452:37::-;37405:169;;;;-1:-1:-1;;;37405:169:0;;12389:2:1;37405:169:0;;;12371:21:1;12428:2;12408:18;;;12401:30;12467:34;12447:18;;;12440:62;12538:27;12518:18;;;12511:55;12583:19;;37405:169:0;12187:421:1;37405:169:0;37587:28;37596:2;37600:7;37609:5;37587:8;:28::i;:::-;37272:351;37210:413;;:::o;54427:265::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;54517:8:::1;;54491:22;54509:3;54491:13;32551:7:::0;32578:12;;32498:100;54491:13:::1;:17:::0;::::1;:22::i;:::-;:34;;54483:55;;;;-1:-1:-1::0;;;54483:55:0::1;;;;;;;:::i;:::-;54574:8;;54548:22;54566:3;54548:13;32551:7:::0;32578:12;;32498:100;54548:22:::1;:34;54545:71;;;54586:11;:27:::0;;-1:-1:-1;;54586:27:0::1;54600:13;54586:27;::::0;;54545:71:::1;54626:22;54632:10;54644:3;54626:5;:22::i;:::-;54660:26;54672:13;32551:7:::0;32578:12;;32498:100;54672:13:::1;54660:26;::::0;738:25:1;;;726:2;711:18;54660:26:0::1;;;;;;;54427:265:::0;:::o;55586:163::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;55654:15:::1;55639:11;::::0;::::1;;:30;::::0;::::1;;;;;;:::i;:::-;;55631:81;;;::::0;-1:-1:-1;;;55631:81:0;;13151:2:1;55631:81:0::1;::::0;::::1;13133:21:1::0;13190:2;13170:18;;;13163:30;13229:34;13209:18;;;13202:62;-1:-1:-1;;;13280:18:1;;;13273:36;13326:19;;55631:81:0::1;12949:402:1::0;55631:81:0::1;55719:11;:24:::0;;55733:10:::1;::::0;55719:11;-1:-1:-1;;55719:24:0::1;::::0;55733:10;55719:24:::1;::::0;38565:162;38691:28;38701:4;38707:2;38711:7;38691:9;:28::i;57680:317::-;57742:16;57767:18;57788:17;57798:6;57788:9;:17::i;:::-;57767:38;;57812:25;57854:10;-1:-1:-1;;;;;57840:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57840:25:0;;57812:53;;57877:9;57872:98;57892:10;57888:1;:14;57872:98;;;57932:30;57952:6;57960:1;57932:19;:30::i;:::-;57918:8;57927:1;57918:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;57904:3;;;;:::i;:::-;;;;57872:98;;;-1:-1:-1;57983:8:0;57680:317;-1:-1:-1;;;57680:317:0:o;33162:1007::-;33251:7;33287:16;33297:5;33287:9;:16::i;:::-;33279:5;:24;33271:71;;;;-1:-1:-1;;;33271:71:0;;13962:2:1;33271:71:0;;;13944:21:1;14001:2;13981:18;;;13974:30;14040:34;14020:18;;;14013:62;-1:-1:-1;;;14091:18:1;;;14084:32;14133:19;;33271:71:0;13760:398:1;33271:71:0;33353:22;32578:12;;;33353:22;;33616:466;33636:14;33632:1;:18;33616:466;;;33676:31;33710:14;;;:11;:14;;;;;;;;;33676:48;;;;;;;;;-1:-1:-1;;;;;33676:48:0;;;;;-1:-1:-1;;;33676:48:0;;;-1:-1:-1;;;;;33676:48:0;;;;;;;;33747:28;33743:111;;33820:14;;;-1:-1:-1;33743:111:0;33897:5;-1:-1:-1;;;;;33876:26:0;:17;-1:-1:-1;;;;;33876:26:0;;33872:195;;;33946:5;33931:11;:20;33927:85;;;-1:-1:-1;33987:1:0;-1:-1:-1;33980:8:0;;-1:-1:-1;;;33980:8:0;33927:85;34034:13;;;;;33872:195;-1:-1:-1;33652:3:0;;33616:466;;;-1:-1:-1;34105:56:0;;-1:-1:-1;;;34105:56:0;;14365:2:1;34105:56:0;;;14347:21:1;14404:2;14384:18;;;14377:30;14443:34;14423:18;;;14416:62;-1:-1:-1;;;14494:18:1;;;14487:44;14548:19;;34105:56:0;14163:410:1;57505:145:0;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;57599:19:::1;:45:::0;57505:145::o;52130:714::-;52254:13;52239:11;;;;:28;;;;;;;;:::i;:::-;;52231:64;;;;-1:-1:-1;;;52231:64:0;;14780:2:1;52231:64:0;;;14762:21:1;14819:2;14799:18;;;14792:30;-1:-1:-1;;;14838:18:1;;;14831:53;14901:18;;52231:64:0;14578:347:1;52231:64:0;52343:8;;52310:29;52328:10;52310:29;;:13;32551:7;32578:12;;32498:100;52310:29;:41;;52302:62;;;;-1:-1:-1;;;52302:62:0;;;;;;;:::i;:::-;52379:37;52399:8;52409:6;;52379:19;:37::i;:::-;52371:65;;;;-1:-1:-1;;;52371:65:0;;;;;;;:::i;:::-;52464:1;52451:10;:14;;;52443:56;;;;-1:-1:-1;;;52443:56:0;;;;;;;:::i;:::-;52524:10;52514:21;;;;:9;:21;;;;;;52552:1;;52514:34;;;;;;;:::i;:::-;:39;;52506:68;;;;-1:-1:-1;;;52506:68:0;;;;;;;:::i;:::-;52591:10;52581:21;;;;:9;:21;;;;;:35;;;;;;:21;:35;;;;;:::i;:::-;;;;-1:-1:-1;;52631:5:0;;52653:9;;52631:18;;;;;;;:::i;:::-;:31;;52623:60;;;;-1:-1:-1;;;52623:60:0;;16485:2:1;52623:60:0;;;16467:21:1;16524:2;16504:18;;;16497:30;-1:-1:-1;;;16543:18:1;;;16536:46;16599:18;;52623:60:0;16283:340:1;52623:60:0;52723:8;;52709:10;52693:26;;:13;32551:7;32578:12;;32498:100;52693:13;:26;;;;:::i;:::-;:38;52690:75;;;52735:11;:27;;-1:-1:-1;;52735:27:0;52749:13;52735:27;;;52690:75;52771:29;52777:10;52789;52771:29;;:5;:29::i;:::-;52812:26;52824:13;32551:7;32578:12;;32498:100;52824:13;52812:26;;738:25:1;;;726:2;711:18;52812:26:0;;;;;;;52130:714;;;;:::o;58334:147::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;58387:8:::1;58409:7;48498:6:::0;;-1:-1:-1;;;;;48498:6:0;;48425:87;58409:7:::1;-1:-1:-1::0;;;;;58401:21:0::1;58430;58401:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58386:70;;;58471:3;58463:12;;;::::0;::::1;;58379:102;58334:147::o:0;38798:177::-;38928:39;38945:4;38951:2;38955:7;38928:39;;;;;;;;;;;;:16;:39::i;52850:732::-;52981:15;52966:11;;;;:30;;;;;;;;:::i;:::-;;52958:69;;;;-1:-1:-1;;;52958:69:0;;17040:2:1;52958:69:0;;;17022:21:1;17079:2;17059:18;;;17052:30;17118:28;17098:18;;;17091:56;17164:18;;52958:69:0;16838:350:1;52958:69:0;53075:8;;53042:29;53060:10;53042:29;;:13;32551:7;32578:12;;32498:100;53042:29;:41;;53034:62;;;;-1:-1:-1;;;53034:62:0;;;;;;;:::i;:::-;53111:29;53123:8;53133:6;;53111:11;:29::i;:::-;53103:57;;;;-1:-1:-1;;;53103:57:0;;;;;;;:::i;:::-;53188:1;53175:10;:14;;;53167:56;;;;-1:-1:-1;;;53167:56:0;;;;;;;:::i;:::-;53255:10;53238:28;;;;:16;:28;;;;;;53283:1;;53238:41;;;;;;;:::i;:::-;:46;;53230:75;;;;-1:-1:-1;;;53230:75:0;;;;;;;:::i;:::-;53329:10;53312:28;;;;:16;:28;;;;;:42;;;;;;:28;:42;;;;;:::i;54985:338::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;55108:8:::1;;55069:35;55087:9;:16;55069:13;32551:7:::0;32578:12;;32498:100;55069:35:::1;:47;;55061:68;;;;-1:-1:-1::0;;;55061:68:0::1;;;;;;;:::i;:::-;55178:8;;55139:35;55157:9;:16;55139:13;32551:7:::0;32578:12;;32498:100;55139:35:::1;:47;55136:84;;;55190:11;:27:::0;;-1:-1:-1;;55190:27:0::1;55204:13;55190:27;::::0;;55136:84:::1;55235:9;55230:88;55254:9;:16;55250:1;:20;55230:88;;;55286:24;55294:1;55297:9;55307:1;55297:12;;;;;;;;:::i;:::-;;;;;;;55286:7;:24::i;:::-;55272:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55230:88;;;;54985:338:::0;:::o;32675:187::-;32742:7;32578:12;;32770:5;:21;32762:69;;;;-1:-1:-1;;;32762:69:0;;17395:2:1;32762:69:0;;;17377:21:1;17434:2;17414:18;;;17407:30;17473:34;17453:18;;;17446:62;-1:-1:-1;;;17524:18:1;;;17517:33;17567:19;;32762:69:0;17193:399:1;32762:69:0;-1:-1:-1;32849:5:0;32675:187::o;55329:76::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;55372:11:::1;:27:::0;;55386:13:::1;::::0;55372:11;-1:-1:-1;;55372:27:0::1;55386:13:::0;;55372:27:::1;::::0;55755:95;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;55826:18:::1;:8;55837:7:::0;;55826:18:::1;:::i;55856:113::-:0;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;55935:28;;::::1;::::0;:13:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;35936:124::-:0;36000:7;36027:20;36039:7;36027:11;:20::i;:::-;:25;;35936:124;-1:-1:-1;;35936:124:0:o;51414:710::-;51538:13;51523:11;;;;:28;;;;;;;;:::i;:::-;;51515:64;;;;-1:-1:-1;;;51515:64:0;;14780:2:1;51515:64:0;;;14762:21:1;14819:2;14799:18;;;14792:30;-1:-1:-1;;;14838:18:1;;;14831:53;14901:18;;51515:64:0;14578:347:1;51515:64:0;51627:8;;51594:29;51612:10;51594:29;;:13;32551:7;32578:12;;32498:100;51594:29;:41;;51586:62;;;;-1:-1:-1;;;51586:62:0;;;;;;;:::i;:::-;51663:33;51679:8;51689:6;;51663:15;:33::i;:::-;51655:61;;;;-1:-1:-1;;;51655:61:0;;;;;;;:::i;:::-;51741:10;51731:21;;;;:9;:21;;;;;;51769:1;;51731:34;;;;;;;:::i;:::-;:39;;51723:68;;;;-1:-1:-1;;;51723:68:0;;;;;;;:::i;:::-;51819:1;51806:10;:14;;;51798:56;;;;-1:-1:-1;;;51798:56:0;;;;;;;:::i;:::-;51871:10;51861:21;;;;:9;:21;;;;;:35;;;;;;:21;:35;;;;;:::i;53588:723::-;53665:13;53650:11;;;;:28;;;;;;;;:::i;:::-;;;53642:49;;;;-1:-1:-1;;;53642:49:0;;;;;;;:::i;:::-;53721:10;53706:11;;;;:25;;;;;;;;:::i;:::-;;53698:65;;;;-1:-1:-1;;;53698:65:0;;17799:2:1;53698:65:0;;;17781:21:1;17838:2;17818:18;;;17811:30;17877:29;17857:18;;;17850:57;17924:18;;53698:65:0;17597:351:1;53698:65:0;53811:8;;53778:29;53796:10;53778:29;;:13;32551:7;32578:12;;32498:100;53778:29;:41;;53770:62;;;;-1:-1:-1;;;53770:62:0;;;;;;;:::i;:::-;53864:1;53851:10;:14;;;53843:56;;;;-1:-1:-1;;;53843:56:0;;;;;;;:::i;:::-;53986:10;53972:25;;;;:13;:25;;;;;;54014:1;;53972:38;;;;;;;:::i;:::-;:43;;53964:72;;;;-1:-1:-1;;;53964:72:0;;;;;;;:::i;:::-;54057:10;54043:25;;;;:13;:25;;;;;:39;;;;;;:25;:39;;;;;:::i;:::-;;;;-1:-1:-1;;54097:5:0;;54119:9;;54097:18;;;;;;;:::i;:::-;:31;;54089:60;;;;-1:-1:-1;;;54089:60:0;;16485:2:1;54089:60:0;;;16467:21:1;16524:2;16504:18;;;16497:30;-1:-1:-1;;;16543:18:1;;;16536:46;16599:18;;54089:60:0;16283:340:1;54089:60:0;54190:8;;54176:10;54160:26;;:13;32551:7;32578:12;;32498:100;54160:13;:26;;;;:::i;:::-;:38;54157:75;;;54202:11;:27;;-1:-1:-1;;54202:27:0;54216:13;54202:27;;;54157:75;54238:29;54244:10;54256;54238:29;;:5;:29::i;34677:221::-;34741:7;-1:-1:-1;;;;;34769:19:0;;34761:75;;;;-1:-1:-1;;;34761:75:0;;18155:2:1;34761:75:0;;;18137:21:1;18194:2;18174:18;;;18167:30;18233:34;18213:18;;;18206:62;-1:-1:-1;;;18284:18:1;;;18277:41;18335:19;;34761:75:0;17953:407:1;34761:75:0;-1:-1:-1;;;;;;34862:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34862:27:0;;34677:221::o;49076:103::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;49141:30:::1;49168:1;49141:18;:30::i;:::-;49076:103::o:0;54698:281::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;54805:8:::1;;54779:22;54797:3;54779:13;32551:7:::0;32578:12;;32498:100;54779:22:::1;:34;;54771:55;;;;-1:-1:-1::0;;;54771:55:0::1;;;;;;;:::i;:::-;54862:8;;54836:22;54854:3;54836:13;32551:7:::0;32578:12;;32498:100;54836:22:::1;:34;54833:71;;;54874:11;:27:::0;;-1:-1:-1;;54874:27:0::1;54888:13;54874:27;::::0;;54833:71:::1;54914:21;54920:9;54931:3;54914:5;:21::i;:::-;54947:26;54959:13;32551:7:::0;32578:12;;32498:100;54959:13:::1;54947:26;::::0;738:25:1;;;726:2;711:18;54947:26:0::1;;;;;;;54698:281:::0;;:::o;55975:84::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;56036:5:::1;:17:::0;55975:84::o;58003:129::-;-1:-1:-1;;;;;;;;;;;;;;;;;58106:20:0;58118:7;58106:11;:20::i;57006:143::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;57100:18:::1;:43:::0;57006:143::o;36296:104::-;36352:13;36385:7;36378:14;;;;;:::i;37975:288::-;-1:-1:-1;;;;;38070:24:0;;30575:10;38070:24;;38062:63;;;;-1:-1:-1;;;38062:63:0;;18567:2:1;38062:63:0;;;18549:21:1;18606:2;18586:18;;;18579:30;18645:28;18625:18;;;18618:56;18691:18;;38062:63:0;18365:350:1;38062:63:0;30575:10;38138:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38138:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;38138:53:0;;;;;;;;;;38207:48;;540:41:1;;;38138:42:0;;30575:10;38207:48;;513:18:1;38207:48:0;;;;;;;37975:288;;:::o;39046:355::-;39205:28;39215:4;39221:2;39225:7;39205:9;:28::i;:::-;39266:48;39289:4;39295:2;39299:7;39308:5;39266:22;:48::i;:::-;39244:149;;;;-1:-1:-1;;;39244:149:0;;;;;;;:::i;:::-;39046:355;;;;:::o;58251:77::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;58301:14:::1;:21:::0;;-1:-1:-1;;58301:21:0::1;58318:4;58301:21;::::0;;58251:77::o;50907:501::-;50980:15;51012:16;51020:7;39713:4;39747:12;-1:-1:-1;39737:22:0;39656:111;51012:16;51004:76;;;;-1:-1:-1;;;51004:76:0;;19342:2:1;51004:76:0;;;19324:21:1;19381:2;19361:18;;;19354:30;19420:34;19400:18;;;19393:62;-1:-1:-1;;;19471:18:1;;;19464:45;19526:19;;51004:76:0;19140:411:1;51004:76:0;51108:8;;32551:7;32578:12;51091:25;;:51;;;-1:-1:-1;51120:14:0;;;;:22;;:14;:22;51091:51;51087:316;;;51167:8;;51157:7;:18;51153:212;;;51188:16;51207:51;51249:8;;51207:37;51219:24;51232:10;;51219:8;;:12;;:24;;;;:::i;:::-;51207:7;;:11;:37::i;:::-;:41;;:51::i;:::-;51188:70;;51300:10;:8;:10::i;:::-;51325:19;:8;:17;:19::i;:::-;51283:71;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51269:86;;;50907:501;;;:::o;51153:212::-;50907:501;;;:::o;51087:316::-;51387:13;51380:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50907:501;;;:::o;58138:107::-;58196:7;58219:20;58233:5;58219:13;:20::i;56529:117::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;56609:12:::1;:31:::0;56529:117::o;49334:201::-;48498:6;;-1:-1:-1;;;;;48498:6:0;30575:10;48645:23;48637:68;;;;-1:-1:-1;;;48637:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49423:22:0;::::1;49415:73;;;::::0;-1:-1:-1;;;49415:73:0;;20544:2:1;49415:73:0::1;::::0;::::1;20526:21:1::0;20583:2;20563:18;;;20556:30;20622:34;20602:18;;;20595:62;-1:-1:-1;;;20673:18:1;;;20666:36;20719:19;;49415:73:0::1;20342:402:1::0;49415:73:0::1;49499:28;49518:8;49499:18;:28::i;44576:196::-:0;44691:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44691:29:0;-1:-1:-1;;;;;44691:29:0;;;;;;;;;44736:28;;44691:24;;44736:28;;;;;;;44576:196;;;:::o;2903:98::-;2961:7;2988:5;2992:1;2988;:5;:::i;:::-;2981:12;2903:98;-1:-1:-1;;;2903:98:0:o;54317:104::-;54385:30;54395:9;54406:8;54385:9;:30::i;42456:2002::-;42571:35;42609:20;42621:7;42609:11;:20::i;:::-;42684:18;;42571:58;;-1:-1:-1;42642:22:0;;-1:-1:-1;;;;;42668:34:0;30575:10;-1:-1:-1;;;;;42668:34:0;;:87;;;-1:-1:-1;30575:10:0;42719:20;42731:7;42719:11;:20::i;:::-;-1:-1:-1;;;;;42719:36:0;;42668:87;:154;;;-1:-1:-1;42789:18:0;;42772:50;;30575:10;38334:164;:::i;42772:50::-;42642:181;;42844:17;42836:80;;;;-1:-1:-1;;;42836:80:0;;20951:2:1;42836:80:0;;;20933:21:1;20990:2;20970:18;;;20963:30;21029:34;21009:18;;;21002:62;-1:-1:-1;;;21080:18:1;;;21073:48;21138:19;;42836:80:0;20749:414:1;42836:80:0;42959:4;-1:-1:-1;;;;;42937:26:0;:13;:18;;;-1:-1:-1;;;;;42937:26:0;;42929:77;;;;-1:-1:-1;;;42929:77:0;;21370:2:1;42929:77:0;;;21352:21:1;21409:2;21389:18;;;21382:30;21448:34;21428:18;;;21421:62;-1:-1:-1;;;21499:18:1;;;21492:36;21545:19;;42929:77:0;21168:402:1;42929:77:0;-1:-1:-1;;;;;43025:16:0;;43017:66;;;;-1:-1:-1;;;43017:66:0;;21777:2:1;43017:66:0;;;21759:21:1;21816:2;21796:18;;;21789:30;21855:34;21835:18;;;21828:62;-1:-1:-1;;;21906:18:1;;;21899:35;21951:19;;43017:66:0;21575:401:1;43017:66:0;43204:49;43221:1;43225:7;43234:13;:18;;;43204:8;:49::i;:::-;-1:-1:-1;;;;;43549:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;43549:31:0;;;-1:-1:-1;;;;;43549:31:0;;;-1:-1:-1;;43549:31:0;;;;;;;43595:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43595:29:0;;;;;;;;;;;;;43641:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43686:61:0;;;;-1:-1:-1;;;43731:15:0;-1:-1:-1;;;;;43686:61:0;;;;;44021:11;;;44051:24;;;;;:29;44021:11;;44051:29;44047:295;;44119:20;44127:11;39713:4;39747:12;-1:-1:-1;39737:22:0;39656:111;44119:20;44115:212;;;44196:18;;;44164:24;;;:11;:24;;;;;;;;:50;;44279:28;;;;-1:-1:-1;;;;;44237:70:0;-1:-1:-1;;;44237:70:0;-1:-1:-1;;;;;;44237:70:0;;;-1:-1:-1;;;;;44164:50:0;;;44237:70;;;;;;;44115:212;43524:829;44389:7;44385:2;-1:-1:-1;;;;;44370:27:0;44379:4;-1:-1:-1;;;;;44370:27:0;;;;;;;;;;;44408:42;42560:1898;;42456:2002;;;:::o;56682:152::-;56776:4;56796:32;56806:14;56812:7;56806:5;:14::i;:::-;56822:5;;56796:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56796:9:0;;-1:-1:-1;;;56796:32:0:i;:::-;56789:39;56682:152;-1:-1:-1;;;;56682:152:0:o;57178:151::-;57264:4;57284:39;57301:14;57307:7;57301:5;:14::i;:::-;57317:5;;57284:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57284:16:0;;-1:-1:-1;;;57284:39:0:i;35337:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;35440:16:0;35448:7;39713:4;39747:12;-1:-1:-1;39737:22:0;39656:111;35440:16;35432:71;;;;-1:-1:-1;;;35432:71:0;;22183:2:1;35432:71:0;;;22165:21:1;22222:2;22202:18;;;22195:30;22261:34;22241:18;;;22234:62;-1:-1:-1;;;22312:18:1;;;22305:40;22362:19;;35432:71:0;21981:406:1;35432:71:0;35561:7;35541:245;35608:31;35642:17;;;:11;:17;;;;;;;;;35608:51;;;;;;;;;-1:-1:-1;;;;;35608:51:0;;;;;-1:-1:-1;;;35608:51:0;;;-1:-1:-1;;;;;35608:51:0;;;;;;;;35682:28;35678:93;;35742:9;35337:537;-1:-1:-1;;;35337:537:0:o;35678:93::-;-1:-1:-1;;;35581:6:0;35541:245;;56223:146;56313:4;56333:30;56341:14;56347:7;56341:5;:14::i;:::-;56357:5;;56333:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56333:7:0;;-1:-1:-1;;;56333:30:0:i;49695:191::-;49788:6;;;-1:-1:-1;;;;;49805:17:0;;;-1:-1:-1;;;;;;49805:17:0;;;;;;;49838:40;;49788:6;;;49805:17;49788:6;;49838:40;;49769:16;;49838:40;49758:128;49695:191;:::o;45337:804::-;45492:4;-1:-1:-1;;;;;45513:13:0;;13109:19;:23;45509:625;;45549:72;;-1:-1:-1;;;45549:72:0;;-1:-1:-1;;;;;45549:36:0;;;;;:72;;30575:10;;45600:4;;45606:7;;45615:5;;45549:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45549:72:0;;;;;;;;-1:-1:-1;;45549:72:0;;;;;;;;;;;;:::i;:::-;;;45545:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45795:13:0;;45791:273;;45838:61;;-1:-1:-1;;;45838:61:0;;;;;;;:::i;45791:273::-;46014:6;46008:13;45999:6;45995:2;45991:15;45984:38;45545:534;-1:-1:-1;;;;;;45672:55:0;-1:-1:-1;;;45672:55:0;;-1:-1:-1;45665:62:0;;45509:625;-1:-1:-1;46118:4:0;45337:804;;;;;;:::o;3284:98::-;3342:7;3369:5;3373:1;3369;:5;:::i;4605:98::-;4663:7;4690:5;4694:1;4690;:5;:::i;50806:95::-;50866:13;50890:8;50883:15;;;;;:::i;9822:723::-;9878:13;10099:10;10095:53;;-1:-1:-1;;10126:10:0;;;;;;;;;;;;-1:-1:-1;;;10126:10:0;;;;;9822:723::o;10095:53::-;10173:5;10158:12;10214:78;10221:9;;10214:78;;10247:8;;;;:::i;:::-;;-1:-1:-1;10270:10:0;;-1:-1:-1;10278:2:0;10270:10;;:::i;:::-;;;10214:78;;;10302:19;10334:6;-1:-1:-1;;;;;10324:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10324:17:0;;10302:39;;10352:154;10359:10;;10352:154;;10386:11;10396:1;10386:11;;:::i;:::-;;-1:-1:-1;10455:10:0;10463:2;10455:5;:10;:::i;:::-;10442:24;;:2;:24;:::i;:::-;10429:39;;10412:6;10419;10412:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10412:56:0;;;;;;;;-1:-1:-1;10483:11:0;10492:2;10483:11;;:::i;:::-;;;10352:154;;34906:229;34967:7;-1:-1:-1;;;;;34995:19:0;;34987:81;;;;-1:-1:-1;;;34987:81:0;;24262:2:1;34987:81:0;;;24244:21:1;24301:2;24281:18;;;24274:30;24340:34;24320:18;;;24313:62;-1:-1:-1;;;24391:18:1;;;24384:47;24448:19;;34987:81:0;24060:413:1;34987:81:0;-1:-1:-1;;;;;;35094:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;35094:32:0;;-1:-1:-1;;;;;35094:32:0;;34906:229::o;39775:104::-;39844:27;39854:2;39858:8;39844:27;;;;;;;;;;;;:9;:27::i;56069:119::-;56156:25;;-1:-1:-1;;24627:2:1;24623:15;;;24619:53;56156:25:0;;;24607:66:1;56123:7:0;;24689:12:1;;56156:25:0;;;;;;;;;;;;56146:36;;;;;;56139:43;;56069:119;;;:::o;56840:160::-;56919:4;56943:51;56962:5;56969:18;;56989:4;56943:18;:51::i;57335:164::-;57421:4;57441:52;57460:5;57467:19;;57488:4;57441:18;:52::i;56375:148::-;56452:4;56472:45;56491:5;56498:12;;56512:4;56472:18;:45::i;40242:163::-;40365:32;40371:2;40375:8;40385:5;40392:4;40365:5;:32::i;7991:190::-;8116:4;8169;8140:25;8153:5;8160:4;8140:12;:25::i;:::-;:33;;7991:190;-1:-1:-1;;;;7991:190:0:o;40664:1538::-;40803:20;40826:12;-1:-1:-1;;;;;40857:16:0;;40849:62;;;;-1:-1:-1;;;40849:62:0;;24914:2:1;40849:62:0;;;24896:21:1;24953:2;24933:18;;;24926:30;24992:34;24972:18;;;24965:62;-1:-1:-1;;;25043:18:1;;;25036:31;25084:19;;40849:62:0;24712:397:1;40849:62:0;40930:13;40922:66;;;;-1:-1:-1;;;40922:66:0;;25316:2:1;40922:66:0;;;25298:21:1;25355:2;25335:18;;;25328:30;25394:34;25374:18;;;25367:62;-1:-1:-1;;;25445:18:1;;;25438:38;25493:19;;40922:66:0;25114:404:1;40922:66:0;-1:-1:-1;;;;;41340:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;41340:45:0;;-1:-1:-1;;;;;41340:45:0;;;;;;;;;;41400:50;;;;;;;;;;;;;;41467:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;41517:66:0;;;;-1:-1:-1;;;41567:15:0;-1:-1:-1;;;;;41517:66:0;;;;;;41467:25;;41652:415;41672:8;41668:1;:12;41652:415;;;41711:38;;41736:12;;-1:-1:-1;;;;;41711:38:0;;;41728:1;;41711:38;;41728:1;;41711:38;41772:4;41768:249;;;41835:59;41866:1;41870:2;41874:12;41888:5;41835:22;:59::i;:::-;41801:196;;;;-1:-1:-1;;;41801:196:0;;;;;;;:::i;:::-;42037:14;;;;;41682:3;41652:415;;;-1:-1:-1;42083:12:0;:27;42134:60;39046:355;8543:675;8626:7;8669:4;8626:7;8684:497;8708:5;:12;8704:1;:16;8684:497;;;8742:20;8765:5;8771:1;8765:8;;;;;;;;:::i;:::-;;;;;;;8742:31;;8808:12;8792;:28;8788:382;;9294:13;9344:15;;;9380:4;9373:15;;;9427:4;9411:21;;8920:57;;8788:382;;;9294:13;9344:15;;;9380:4;9373:15;;;9427:4;9411:21;;9097:57;;8788:382;-1:-1:-1;8722:3:0;;;;:::i;:::-;;;;8684:497;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;956:258::-;1028:1;1038:113;1052:6;1049:1;1046:13;1038:113;;;1128:11;;;1122:18;1109:11;;;1102:39;1074:2;1067:10;1038:113;;;1169:6;1166:1;1163:13;1160:48;;;-1:-1:-1;;1204:1:1;1186:16;;1179:27;956:258::o;1219:::-;1261:3;1299:5;1293:12;1326:6;1321:3;1314:19;1342:63;1398:6;1391:4;1386:3;1382:14;1375:4;1368:5;1364:16;1342:63;:::i;:::-;1459:2;1438:15;-1:-1:-1;;1434:29:1;1425:39;;;;1466:4;1421:50;;1219:258;-1:-1:-1;;1219:258:1:o;1482:220::-;1631:2;1620:9;1613:21;1594:4;1651:45;1692:2;1681:9;1677:18;1669:6;1651:45;:::i;1707:180::-;1766:6;1819:2;1807:9;1798:7;1794:23;1790:32;1787:52;;;1835:1;1832;1825:12;1787:52;-1:-1:-1;1858:23:1;;1707:180;-1:-1:-1;1707:180:1:o;2100:173::-;2168:20;;-1:-1:-1;;;;;2217:31:1;;2207:42;;2197:70;;2263:1;2260;2253:12;2278:254;2346:6;2354;2407:2;2395:9;2386:7;2382:23;2378:32;2375:52;;;2423:1;2420;2413:12;2375:52;2446:29;2465:9;2446:29;:::i;:::-;2436:39;2522:2;2507:18;;;;2494:32;;-1:-1:-1;;;2278:254:1:o;2537:328::-;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2722:29;2741:9;2722:29;:::i;:::-;2712:39;;2770:38;2804:2;2793:9;2789:18;2770:38;:::i;:::-;2760:48;;2855:2;2844:9;2840:18;2827:32;2817:42;;2537:328;;;;;:::o;2870:186::-;2929:6;2982:2;2970:9;2961:7;2957:23;2953:32;2950:52;;;2998:1;2995;2988:12;2950:52;3021:29;3040:9;3021:29;:::i;3061:632::-;3232:2;3284:21;;;3354:13;;3257:18;;;3376:22;;;3203:4;;3232:2;3455:15;;;;3429:2;3414:18;;;3203:4;3498:169;3512:6;3509:1;3506:13;3498:169;;;3573:13;;3561:26;;3642:15;;;;3607:12;;;;3534:1;3527:9;3498:169;;;-1:-1:-1;3684:3:1;;3061:632;-1:-1:-1;;;;;;3061:632:1:o;3883:156::-;3949:20;;4009:4;3998:16;;3988:27;;3978:55;;4029:1;4026;4019:12;4044:759;4146:6;4154;4162;4170;4223:2;4211:9;4202:7;4198:23;4194:32;4191:52;;;4239:1;4236;4229:12;4191:52;4262:27;4279:9;4262:27;:::i;:::-;4252:37;;4308:38;4342:2;4331:9;4327:18;4308:38;:::i;:::-;4298:48;;4397:2;4386:9;4382:18;4369:32;-1:-1:-1;;;;;4461:2:1;4453:6;4450:14;4447:34;;;4477:1;4474;4467:12;4447:34;4515:6;4504:9;4500:22;4490:32;;4560:7;4553:4;4549:2;4545:13;4541:27;4531:55;;4582:1;4579;4572:12;4531:55;4622:2;4609:16;4648:2;4640:6;4637:14;4634:34;;;4664:1;4661;4654:12;4634:34;4717:7;4712:2;4702:6;4699:1;4695:14;4691:2;4687:23;4683:32;4680:45;4677:65;;;4738:1;4735;4728:12;4677:65;4044:759;;;;-1:-1:-1;;4769:2:1;4761:11;;-1:-1:-1;;;4044:759:1:o;4808:127::-;4869:10;4864:3;4860:20;4857:1;4850:31;4900:4;4897:1;4890:15;4924:4;4921:1;4914:15;4940:275;5011:2;5005:9;5076:2;5057:13;;-1:-1:-1;;5053:27:1;5041:40;;-1:-1:-1;;;;;5096:34:1;;5132:22;;;5093:62;5090:88;;;5158:18;;:::i;:::-;5194:2;5187:22;4940:275;;-1:-1:-1;4940:275:1:o;5220:952::-;5304:6;5335:2;5378;5366:9;5357:7;5353:23;5349:32;5346:52;;;5394:1;5391;5384:12;5346:52;5434:9;5421:23;-1:-1:-1;;;;;5504:2:1;5496:6;5493:14;5490:34;;;5520:1;5517;5510:12;5490:34;5558:6;5547:9;5543:22;5533:32;;5603:7;5596:4;5592:2;5588:13;5584:27;5574:55;;5625:1;5622;5615:12;5574:55;5661:2;5648:16;5683:2;5679;5676:10;5673:36;;;5689:18;;:::i;:::-;5735:2;5732:1;5728:10;5718:20;;5758:28;5782:2;5778;5774:11;5758:28;:::i;:::-;5820:15;;;5890:11;;;5886:20;;;5851:12;;;;5918:19;;;5915:39;;;5950:1;5947;5940:12;5915:39;5974:11;;;;5994:148;6010:6;6005:3;6002:15;5994:148;;;6076:23;6095:3;6076:23;:::i;:::-;6064:36;;6027:12;;;;6120;;;;5994:148;;;6161:5;5220:952;-1:-1:-1;;;;;;;;5220:952:1:o;6177:592::-;6248:6;6256;6309:2;6297:9;6288:7;6284:23;6280:32;6277:52;;;6325:1;6322;6315:12;6277:52;6365:9;6352:23;-1:-1:-1;;;;;6435:2:1;6427:6;6424:14;6421:34;;;6451:1;6448;6441:12;6421:34;6489:6;6478:9;6474:22;6464:32;;6534:7;6527:4;6523:2;6519:13;6515:27;6505:55;;6556:1;6553;6546:12;6505:55;6596:2;6583:16;6622:2;6614:6;6611:14;6608:34;;;6638:1;6635;6628:12;6608:34;6683:7;6678:2;6669:6;6665:2;6661:15;6657:24;6654:37;6651:57;;;6704:1;6701;6694:12;6651:57;6735:2;6727:11;;;;;6757:6;;-1:-1:-1;6177:592:1;;-1:-1:-1;;;;6177:592:1:o;6774:407::-;6839:5;-1:-1:-1;;;;;6865:6:1;6862:30;6859:56;;;6895:18;;:::i;:::-;6933:57;6978:2;6957:15;;-1:-1:-1;;6953:29:1;6984:4;6949:40;6933:57;:::i;:::-;6924:66;;7013:6;7006:5;6999:21;7053:3;7044:6;7039:3;7035:16;7032:25;7029:45;;;7070:1;7067;7060:12;7029:45;7119:6;7114:3;7107:4;7100:5;7096:16;7083:43;7173:1;7166:4;7157:6;7150:5;7146:18;7142:29;7135:40;6774:407;;;;;:::o;7186:451::-;7255:6;7308:2;7296:9;7287:7;7283:23;7279:32;7276:52;;;7324:1;7321;7314:12;7276:52;7364:9;7351:23;-1:-1:-1;;;;;7389:6:1;7386:30;7383:50;;;7429:1;7426;7419:12;7383:50;7452:22;;7505:4;7497:13;;7493:27;-1:-1:-1;7483:55:1;;7534:1;7531;7524:12;7483:55;7557:74;7623:7;7618:2;7605:16;7600:2;7596;7592:11;7557:74;:::i;7642:182::-;7699:6;7752:2;7740:9;7731:7;7727:23;7723:32;7720:52;;;7768:1;7765;7758:12;7720:52;7791:27;7808:9;7791:27;:::i;7829:254::-;7897:6;7905;7958:2;7946:9;7937:7;7933:23;7929:32;7926:52;;;7974:1;7971;7964:12;7926:52;8010:9;7997:23;7987:33;;8039:38;8073:2;8062:9;8058:18;8039:38;:::i;:::-;8029:48;;7829:254;;;;;:::o;8455:347::-;8520:6;8528;8581:2;8569:9;8560:7;8556:23;8552:32;8549:52;;;8597:1;8594;8587:12;8549:52;8620:29;8639:9;8620:29;:::i;:::-;8610:39;;8699:2;8688:9;8684:18;8671:32;8746:5;8739:13;8732:21;8725:5;8722:32;8712:60;;8768:1;8765;8758:12;8712:60;8791:5;8781:15;;;8455:347;;;;;:::o;8807:667::-;8902:6;8910;8918;8926;8979:3;8967:9;8958:7;8954:23;8950:33;8947:53;;;8996:1;8993;8986:12;8947:53;9019:29;9038:9;9019:29;:::i;:::-;9009:39;;9067:38;9101:2;9090:9;9086:18;9067:38;:::i;:::-;9057:48;;9152:2;9141:9;9137:18;9124:32;9114:42;;9207:2;9196:9;9192:18;9179:32;-1:-1:-1;;;;;9226:6:1;9223:30;9220:50;;;9266:1;9263;9256:12;9220:50;9289:22;;9342:4;9334:13;;9330:27;-1:-1:-1;9320:55:1;;9371:1;9368;9361:12;9320:55;9394:74;9460:7;9455:2;9442:16;9437:2;9433;9429:11;9394:74;:::i;:::-;9384:84;;;8807:667;;;;;;;:::o;9479:127::-;9540:10;9535:3;9531:20;9528:1;9521:31;9571:4;9568:1;9561:15;9595:4;9592:1;9585:15;9611:338;9753:2;9738:18;;9786:1;9775:13;;9765:144;;9831:10;9826:3;9822:20;9819:1;9812:31;9866:4;9863:1;9856:15;9894:4;9891:1;9884:15;9765:144;9918:25;;;9611:338;:::o;9954:260::-;10022:6;10030;10083:2;10071:9;10062:7;10058:23;10054:32;10051:52;;;10099:1;10096;10089:12;10051:52;10122:29;10141:9;10122:29;:::i;:::-;10112:39;;10170:38;10204:2;10193:9;10189:18;10170:38;:::i;10219:356::-;10421:2;10403:21;;;10440:18;;;10433:30;10499:34;10494:2;10479:18;;10472:62;10566:2;10551:18;;10219:356::o;10985:380::-;11064:1;11060:12;;;;11107;;;11128:61;;11182:4;11174:6;11170:17;11160:27;;11128:61;11235:2;11227:6;11224:14;11204:18;11201:38;11198:161;;;11281:10;11276:3;11272:20;11269:1;11262:31;11316:4;11313:1;11306:15;11344:4;11341:1;11334:15;11198:161;;10985:380;;;:::o;12613:331::-;12815:2;12797:21;;;12854:1;12834:18;;;12827:29;-1:-1:-1;;;12887:2:1;12872:18;;12865:38;12935:2;12920:18;;12613:331::o;13356:127::-;13417:10;13412:3;13408:20;13405:1;13398:31;13448:4;13445:1;13438:15;13472:4;13469:1;13462:15;13488:127;13549:10;13544:3;13540:20;13537:1;13530:31;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13620:135;13659:3;-1:-1:-1;;13680:17:1;;13677:43;;;13700:18;;:::i;:::-;-1:-1:-1;13747:1:1;13736:13;;13620:135::o;14930:339::-;15132:2;15114:21;;;15171:2;15151:18;;;15144:30;-1:-1:-1;;;15205:2:1;15190:18;;15183:45;15260:2;15245:18;;14930:339::o;15274:353::-;15476:2;15458:21;;;15515:2;15495:18;;;15488:30;15554:31;15549:2;15534:18;;15527:59;15618:2;15603:18;;15274:353::o;15632:128::-;15672:3;15703:1;15699:6;15696:1;15693:13;15690:39;;;15709:18;;:::i;:::-;-1:-1:-1;15745:9:1;;15632:128::o;15765:340::-;15967:2;15949:21;;;16006:2;15986:18;;;15979:30;-1:-1:-1;;;16040:2:1;16025:18;;16018:46;16096:2;16081:18;;15765:340::o;16110:168::-;16150:7;16216:1;16212;16208:6;16204:14;16201:1;16198:21;16193:1;16186:9;16179:17;16175:45;16172:71;;;16223:18;;:::i;:::-;-1:-1:-1;16263:9:1;;16110:168::o;18720:415::-;18922:2;18904:21;;;18961:2;18941:18;;;18934:30;19000:34;18995:2;18980:18;;18973:62;-1:-1:-1;;;19066:2:1;19051:18;;19044:49;19125:3;19110:19;;18720:415::o;19556:781::-;19937:3;19975:6;19969:13;19991:53;20037:6;20032:3;20025:4;20017:6;20013:17;19991:53;:::i;:::-;-1:-1:-1;;;20066:16:1;;;20091:26;;;20142:13;;20164:65;20142:13;20216:1;20205:13;;20198:4;20186:17;;20164:65;:::i;:::-;-1:-1:-1;;;20292:1:1;20248:20;;;;20284:10;;;20277:27;20328:2;20320:11;;19556:781;-1:-1:-1;;;;19556:781:1:o;22808:489::-;-1:-1:-1;;;;;23077:15:1;;;23059:34;;23129:15;;23124:2;23109:18;;23102:43;23176:2;23161:18;;23154:34;;;23224:3;23219:2;23204:18;;23197:31;;;23002:4;;23245:46;;23271:19;;23263:6;23245:46;:::i;:::-;23237:54;22808:489;-1:-1:-1;;;;;;22808:489:1:o;23302:249::-;23371:6;23424:2;23412:9;23403:7;23399:23;23395:32;23392:52;;;23440:1;23437;23430:12;23392:52;23472:9;23466:16;23491:30;23515:5;23491:30;:::i;23556:125::-;23596:4;23624:1;23621;23618:8;23615:34;;;23629:18;;:::i;:::-;-1:-1:-1;23666:9:1;;23556:125::o;23686:127::-;23747:10;23742:3;23738:20;23735:1;23728:31;23778:4;23775:1;23768:15;23802:4;23799:1;23792:15;23818:112;23850:1;23876;23866:35;;23881:18;;:::i;:::-;-1:-1:-1;23915:9:1;;23818:112::o;23935:120::-;23975:1;24001;23991:35;;24006:18;;:::i;:::-;-1:-1:-1;24040:9:1;;23935:120::o

Swarm Source

ipfs://8b4a62cfae1e1c4c1495d18ef38578736a288f5277ba6c116b9378aa0a7d7073
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.